@font-face {
    font-family: 'Zen Kaku Gothic Antique';
    src: url('../fonts/ZenKakuGothicAntique-Bold.eot');
    src: local('Zen Kaku Gothic Antique Bold'), local('ZenKakuGothicAntique-Bold'), url('../fonts/ZenKakuGothicAntique-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/ZenKakuGothicAntique-Bold.woff2') format('woff2'), url('../fonts/ZenKakuGothicAntique-Bold.woff') format('woff'), url('../fonts/ZenKakuGothicAntique-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'Zen Kaku Gothic Antique';
    src: url('../fonts/ZenKakuGothicAntique-Medium.eot');
    src: local('Zen Kaku Gothic Antique Medium'), local('ZenKakuGothicAntique-Medium'), url('../fonts/ZenKakuGothicAntique-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/ZenKakuGothicAntique-Medium.woff2') format('woff2'), url('../fonts/ZenKakuGothicAntique-Medium.woff') format('woff'), url('../fonts/ZenKakuGothicAntique-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'Jost Medium';
    src: url('../fonts/Jost-Medium.ttf');
    src: local('Jost Medium'), local('Jost-Medium'), url('../fonts/Jost-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Jost-Medium.woff2') format('woff2'), url('../fonts/Jost-Medium.woff') format('woff'), url('../fonts/Jost-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

.checkbox-container {
    display: block;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding-left: 28px
}

.checkbox-container input, .radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    border: 1px solid #2a6355;
    border-radius: 4px
}

.checkbox-container input:checked ~ .checkmark {
    background: url("../img/elements/check.svg") 0 2px no-repeat
}

.checkbox-container:after {
    content: "";
    position: absolute;
    display: none
}

.checkbox-container input:checked ~ .checkmark:after, .radio-container input:checked ~ .checkmark:after {
    display: block
}

.checkbox-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.radio-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.radio-container .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    border: 1px solid #2a6355
}

.radio-container:hover input ~ .checkmark {
    background-color: #e1efec
}

.radio-container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    top: 2px;
    left: 2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2a6355
}

#modalEditEmail {
    font-weight: 400;
    line-height: 20px;
    font-size: 1.2rem;
}

/*затемнение и размытие заднего фона*/

.blur {
    background: rgba(89, 89, 89, .5);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

/*стилизация выпадающего меню(выбор договора)*/

.select {
    display: block;
    max-width: 215px;
    width: 100%;
    position: relative;
    font-size: 1.2rem;
}

.new-select {
    position: relative;
    border: 1px solid #2A6355;;
    border-radius: 0.5rem;
    padding: 10px 15px;
    cursor: pointer;
    user-select: none;
    color: #2A6355;
}

.new-select__list {
    position: absolute;
    top: 50px;
    left: 0;
    border: 1px solid #2A6355;
    border-radius: 0.5rem;
    cursor: pointer;
    width: 100%;
    z-index: 2;
    background: #fff;
    user-select: none;
    height: 9.5rem;
    overflow-y: auto;
}

/*Стилизация скролла*/

.new-select__list::-webkit-scrollbar {
    width: 14px; /* ширина всей полосы прокрутки */
}

.new-select__list::-webkit-scrollbar-thumb {
    background-color: #2A6355; /* цвет бегунка */
    border-radius: 20px; /* округлось бегунка */
    border: 4px solid #ffffff; /* отступ вокруг бегунка */
}


.new-select__list.on {
    display: block;
}

.new-select__item span {
    display: block;
    padding: 10px 15px;
    color: #000000;
}

.new-select__item span:hover {
    background-color: rgb(42, 99, 85, 0.25);
}

.new-select:after {
    content: '';
    display: block;
    width: 25px;
    height: 25px;
    position: absolute;
    right: 9px;
    top: 9px;
    background: url('static/theme/img/elements/chevron-down-outline.svg') no-repeat right center / cover;
    opacity: 0.6;

    -webkit-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;

    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}

.new-select.on:after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.text-field__input {
    display: block;
    font-size: 1.2rem;
    width: 30%;
    height: calc(2.25rem + 2px);
    padding: 0.375rem 0.75rem;
    font-family: inherit;
    font-weight: 400;
    line-height: 1.5;
    color: rgb(138 138 138);
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #2A6355;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.text-field__input::placeholder {
    color: rgb(138 138 138);
    opacity: 0.4;
}

.text-field__input:focus {
    color: rgb(138 138 138);
    background-color: #fff;
    border-color: #2A6355;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(42, 99, 85, 0.25);
}

.text-field__input:disabled,
.text-field__input[readonly] {
    background-color: #f5f5f5;
    opacity: 1;
}

.fontJost {
    font-family: 'Jost Medium', sans-serif;
}

.border-radius {
    border-radius: 0.5rem !important;
}

.border-green {
    border: 1px solid #296254 !important;
}

/*Кнопки по новому дизайну*/

.btn-outline-green {
    color: #296254;
    border: 1px solid #296254;
    border-radius: 0.5rem;
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
    background-color: #ffffff;
}

.btn-outline-green:hover {
    background-color: #296254;
    color: #ffffff;
}

.btn-green-sm {
    color: #ffffff;
    border: 1px solid #296254;
    border-radius: 0.5rem;
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
    background-color: #296254;
}

.btn-green {
    background-color: #296254 !important;
    color: #ffffff;
    border: 1px solid #296254;
    border-radius: 0.5rem;
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
}

.btn-orange {
    background-color: #F38173;
    color: #ffffff;
    border: 1px solid #F38173;
    border-radius: 0.5rem;
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
}

.btn-orange:hover,
.btn-orange.btn-xxl-my:hover {
    background-color: #ffffff;
    color: #F38173;
}

.btn-green-sm:hover,
.btn-green:hover,
.btn-green.btn-xxl-my:hover {
    background-color: #ffffff !important;
    color: #296254 !important;
}

.btn-outline-green.btn-xxl-my:hover {
    border: 2px solid #296254;
    background-color: #ffffff;
    color: #296254;
    text-shadow: 0 2px 2px #0000008f;
}

.btn-sm-my {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

.btn-lg-my {
    padding: 0 1.5rem;
    font-size: 1.5rem;
}

.btn-xxl-my {
    padding: 2rem 6rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1rem;
}

.btn-modal {
    padding: 1rem 1.5rem;
    font-size: 1.5rem;
}

.btn-outline-green.btn-modal:hover {
    border: 2px solid #296254;
    background-color: #ffffff;
    color: #296254;
    text-shadow: 0 2px 2px #0000008f;
}

.hover-outline-green:hover {
    border: 2px solid #296254;
    background-color: #ffffff;
    color: #000000;
}

.btn-exit {
    height: 3.125rem;
    width: 10.5rem;
    color: #000000;
    border: 1px solid #296254;
    border-radius: 0.5rem;
    font-size: 1rem;
    background-color: #ffffff;
}

/*цвет текста по новому дизайну*/

.text-green {
    color: #296254 !important;
}

.text-gray {
    color: rgb(138 138 138);
}

.text-orange {
    color: #F38173;
}

.hover-text-orange:hover {
    color: #F38173 !important;
}

/*значок по новому дизайну*/

.newBadge {
    padding: 0.1rem 0.65rem;
    font-size: 0.9rem;
    font-weight: 400;
    border-radius: 0.7rem;
    display: inline-block;
    line-height: 12px;
    text-align: center;
    white-space: nowrap;
}

/*цвета, тексты */

.text-bg-grey {
    color: #000000;
    background-color: #D9D9D9;
}

.text-0\.75 {
    font-size: .75rem;
}

.text-1 {
    font-size: 1rem;
}

.text-1\.31 {
    font-size: 1.3125rem;
}

.text-3 {
    font-size: 3rem;
}

.text-1\.5 {
    font-size: 1.5rem;
}

.body-font {
    font-size: 1rem;
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.shadow-header {
    box-shadow: 0px -2px 24px rgba(0, 0, 0, 0.25);
}

.w-96 {
    width: 24rem;
}

.w-2\.5 {
    width: 2.5rem;
}

.min-vh-50 {
    min-height: 50vh;
}

.pt-7\.5 {
    padding-top: 7.5rem;
}

.mt-40 {
    margin-top: 10rem;
}

.mt-footer {
    margin-top: 10rem;
}

.my-step-two {
    margin-bottom: 10rem;
    margin-top: 10rem;
}

@media (min-width: 280px) and (max-width: 766px) {
    .my-step-two {
        margin-bottom: 4rem;
        margin-top: 4rem;
    }

    .mt-footer {
        margin-top: 4rem;
    !important
    }
}

@media (min-width: 976px) and (max-width: 3600px) {
    .my-step-two {
        margin-bottom: 20rem;
    !important margin-top: 10 rem;
    !important
    }
}

.errorMessage {
    max-width: 490px;
    margin-top: 7px;
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 1.1;
    color: #c24b41;
}

.text-D3 {
    --tw-text-opacity: 1;
    color: rgb(211 22 22 / var(--tw-text-opacity))
}

.justify-end {
    justify-content: end;
}

.bg-gray-dark {
    background-color: rgba(63, 63, 63);
}

@media screen and (max-width: 992px) {
    .text-3 {
        font-size: 2rem !important;
    }

    .btn-green {
        font-size: 1rem;
    }

    .btn-outline-green {
        font-size: 1rem;
    }

    .text-1\.5 {
        font-size: 1rem;
    }

    .btn-xxl-my {
        padding: 1rem;
        font-size: 1rem;
    }

    .btn-outline-green.btn-xxl-my {
        padding: 0.6rem;
        font-size: 1rem;
    }

    .text-field__input {
        width: 50%;
    }

}

@media screen and (max-width: 1200px) {
    .text-2xl {
        font-size: 1.5rem !important;
        font-weight: 700 !important;
    }
}

@media screen and (min-width: 992px) {
    .btn-xxl-my {
        padding: 1.5rem;
        font-size: 1.2rem;
    }

    .btn-outline-green.btn-xxl-my {
        padding: 1.1rem;
        font-size: 1.2rem;
    }

}

@media screen and (min-width: 1400px) {
    .btn-xxl-my {
        padding: 2rem 6rem;
        font-size: 1.5rem;
    }

    .btn-outline-green.btn-xxl-my {
        padding: 1.5rem 6rem;
        font-size: 1.5rem;
    }

}

@media screen and (max-width: 1400px) {
    .text-1\.31 {
        font-size: 1.2rem;
    }
}

.disabled-step {
    -moz-appearance: textfield;
}

.disabled-step::-webkit-inner-spin-button {
    display: none;
}

.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7
}

.alert-success {
    color: #2a8420;
    background-color: #d7f8da;
    border-color: #c2f5c5
}

.alert {
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem
}

.main-border-width {
    border-width: 1rem;
}

@media (min-width: 976px) {
    .lg\:mx-0 {
        margin-left: 0;
        margin-right: 0;
    }

    .lg\:mr-0 {
        margin-right: 0;
    }

    .lg\:mr-6 {
        margin-right: 1.5rem;
    }
}

@media (min-width: 1408px) {
    .xl\:mx-auto {
        margin-right: auto;
        margin-left: auto;
    }
}

@media (min-width: 768px) and (max-width: 976px) {
    .md\:block {
        display: block;
    }
}

.mt-cabinet {
    margin-top: 2rem !important
}

@media (min-width: 410px) and (max-width: 766px) {
    .mt-cabinet {
        margin-top: 3rem !important
    }
}

@media (max-width: 409px) {
    .mt-cabinet {
        margin-top: 1rem !important
    }
}

.text-ex-space {
    white-space: nowrap; /* Запрещаем перенос слов */
}

@media (min-width: 576px) {
    .rounded-end-sm-0 {
        border-top-right-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }

    .rounded-start-sm-0 {
        border-top-left-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
    }
}

@media (max-width: 575px) {
    .rounded-end-xs-3 {
        border-top-right-radius: var(--bs-border-radius-lg) !important;
        border-bottom-right-radius: var(--bs-border-radius-lg) !important;
    }
}

.payment-card {
    width: 250px;
    height: 124px;
    border-radius: 10px;
    padding: 10px;
    font-size: 18px;
    font-weight: 700;
}

.payment-card-active {
    background-color: #2A6355;
    border: solid 3px #2A6355;
    color: white;
}

.payment-card-active path {
    fill: white;
}

.payment-card-unselected {
    background-color: white;
    border: solid 3px white;
    color: #2A6355;
    cursor: pointer;
}

.payment-card-unselected path {
    fill: #2A6355;
}

.payment-card-unselected:hover {
    border: solid 3px #2A6355;
}

.qr-list-sq {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    background-color: #F38173;
    color: white;
    border-radius: 6px;
    font-size: 55px;
    font-weight: 500;
}

.qr-list-text {
    font-size: 20px;
    font-weight: 700;
    color: #F38173;
}

.qr-block {
    font-size: 20px;
    color: white;
    background-color: #2A6355;
    border-radius: 24px;
    padding: 20px;
}

.dark-btn {
    color: white;
    background-color: #2A6355 !important;
    border-radius: 8px;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.gray-btn {
    color: white;
    background-color: #D9D9D9 !important;
    border-radius: 8px;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.dark-btn:hover {
    background-color: #F38173 !important;
}

.green-link {
    color: #2A6355;
    text-decoration: underline;
}

.green-link:hover {
    color: #F38173;
}

.no-decoration {
    text-decoration: none !important;
}

.ms-10 {
    margin-left: 150px;
}

.progress-dot {
    width: 14px;
    height: 14px;
    border-radius: 5px;
    background-color: #F38173;
}

.sq-disabled {
    background-color: #D9D9D9;
}

.sq-disabled-text {
    color: #999999;
}

.green-border {
    border-color: #2A6355 !important;
}

.green-text {
    color: #2A6355;
}

.salmon-text {
    color: #F38173;
}

input[type='radio'] {
    accent-color: #2A6355;
}

.cabinet-gray-text {
    color: #787878 !important;
}