a {
    color: var(--main-color, #09daa1);
}

.form-component {
    margin-bottom: 20px;
}

.form-component.has-error, .error, .form-component:hover:not(.has-error) {
    background: #fff2f2;
    border: unset;
}

/* Account login */

header .account {
    display: flex;
}

header .account .user-info {
    text-align: end;
    padding-right: 10px;
}

header .account .user-info .user-name {
    font-size: 16px;
}

header .account .user-info .user-balance {
    font-size: 16px;
}

.balance-integer {
    font-size: 1.625em; /* 26px при родительском 16px */
}

/* Стили для всех тем */
header .account .user-info .user-name a {
    font-size: 16px;
}

header .account .account-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background: var(--gradient, linear-gradient(268deg, #587fef 1.48%, #8ab9ff 98.33%));
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.15);
    border-radius: 40px;
    position: relative;
    cursor: pointer;
}

header .account .account-link:after {
    content: "";
    width: 17px;
    height: 20px;
    display: block;
    background-image: url(/assets/common/img/icons/account.svg);
    background-repeat: no-repeat;
    background-size: 17px;
    background-position: center;
}

header .account .account-link a {
    position: absolute;
    display: none;
    background: #fff;
    bottom: -21px;
    text-transform: capitalize;
}

header .account .account-link:hover a {
    display: block;
}

/* Account login end */

/* Account form */

.auth-form__top .auth-form__label {
    color: var(--main-color, #2cdb94);
}

.auth-form .form-component {
    border: 1px solid #fff;
}

.auth-form .form-component input {
    padding: 12px 15px;
    border: 1px solid #E5E5E5;
    border-radius: 5px;
    font-size: 12px;
    color: #444444;
    width: 100%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    background: #fff;
}

.auth-form .form-component input:focus {
    outline: none;
    border: 1px solid #97db6c;
}

.auth-form .form-component:hover:not(.has-error) {
    background: none;
    border: 1px solid #fff;
}

.auth-form .form-component.error, .auth-form .form-component .help-block.with-errors {
    background-color: #FFDFE0;
    border: 1px solid #EFC2C4;
    margin: 5px;
    padding: 5px;
}

.auth-form .form-component.error label:before {
    content: '';
    position: relative;
    top: 3px;
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.auth-form .form-component .choice-wrapper {
    display: flex;
}

.auth-form .form-component .choice-wrapper label {
    font-weight: normal;
    padding-left: 5px;
}

.auth-form .btn {
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    background: var(--gradient, linear-gradient(268deg, #587fef 1.48%, #8ab9ff 98.33%));
    box-shadow: 3px 3px 30px rgba(0, 0, 0, 0.2);
    border-radius: 40px;
    padding: 13px 50px;
    display: block;
    width: max-content;
    cursor: pointer;
}

.auth-form .password-wrapper .auth-form__recover {
    top: 11px;
}

.auth-form .help-block.with-errors {
    display: none;
}

/* Account form end */

/* Order section */


.order-section {
    background: #fafafa;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
}

.order-section h1 {
    font-weight: 700;
    font-size: 35px;
    text-align: center;
    color: #444444;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.order-section .order_form {
    display: flex;
    justify-content: center;
    padding-top: 30px;
}

.order-section .order_form .configurator {
    width: 607px;
    background: #FFFFFF;
    box-shadow: 0 4px 75px 6px rgba(0, 0, 0, 0.04);
    border-radius: 10px;
    margin-right: 28px;
    height: fit-content;
    padding: 20px 30px
}

.order-section .order_form .configurator .slider-wrapper {
    border-bottom: none;
    padding-bottom: 20px;
    padding-top: 25px;
}

.order-section .order_form .configurator .slider-wrapper .labels {
    margin-bottom: 30px;
}

.order-section .order_form .configurator .slider-wrapper .labels label {
    padding: 0 0 10px 0;
    font-weight: 700;
    font-size: 17px;
    color: #000000;
    border-bottom: none;
}

.order-section .order_form .configurator .slider-wrapper #payment_months1_Slider .slider-tick.in-selection {
    background: var(--gradient, linear-gradient(268deg, #09DAA1 1.48%, #97DB6C 98.33%));
}

.order-section .order_form .configurator .slider-wrapper #payment_months1_Slider .slider-tick-label {
    font-weight: 700;
    font-size: 10px;
    color: #444444;
    padding-top: 10px;
}

.order-section .order_form .configurator .slider-wrapper #payment_months1_Slider .slider-handle {
    background: var(--gradient, linear-gradient(268deg, #09DAA1 1.48%, #97DB6C 98.33%));
}

.order-section .order_form .configurator .form-component:hover {
    border: none;
    background: none;
}

.order-section .order_form .configurator .form-component .labels {
    margin-bottom: 20px;
}

.order-section .order_form .configurator .form-component .labels label {
    font-weight: 700;
    font-size: 17px;
    color: #000000;
    border-bottom: none;
}

.order-section .order_form .configurator .form-component input {
    padding: 12px 15px;
    border: 1px solid #E5E5E5;
    border-radius: 5px;
    font-size: 12px;
    color: #444444;
    width: 100%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: calc(100% - 114px);
    padding: 12px 20px 12px 15px;
    line-height: inherit;
    border-right: none;
    border-radius: 5px 0 0 5px;
}

.order-section .order_form .configurator .form-component input:focus {
    outline: none;
    border: 1px solid #97db6c;
}

.order-section .order_form .configurator .form-component input:focus {
    border-right: none;
}

.order-section .order_form .configurator .dropdown-list-wrapper {
    display: flex;
    flex-direction: column;
}

.order-section .order_form .configurator .dropdown-hidden {
    display: none;
}

.order-section .order_form .configurator .dropdown-list-wrapper label {
    font-weight: 700;
    font-size: 17px;
    color: #000000;
    border-bottom: none;
    padding-bottom: 25px;
}

.order-section .order_form .configurator .dropdown-list-wrapper select {
    padding: 12px 15px;
    border: 1px solid #E5E5E5;
    border-radius: 5px;
    font-size: 12px;
    color: #444444;
    width: 100%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    background: #fff;
    font-weight: 700;
    color: #444444;
}

.order-section .order_form .configurator .dropdown-list-wrapper select:focus {
    outline: none;
}

.order-section .order_form .configurator .dropdown-list-wrapper select option {
    padding: 10px 0;
}

.order-section .order_form .configurator .dropdown-list-wrapper select option:hover {
    background: red !important;
}

.order-section .order_form .configurator .promocode-wrapper {
    position: relative;
}

.order-section .order_form .configurator .promocode-wrapper .promocode-btn {
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    background: var(--gradient, linear-gradient(268deg, #09DAA1 1.48%, #97DB6C 98.33%));
    box-shadow: 3px 3px 30px rgba(0, 0, 0, 0.2);
    border-radius: 40px;
    padding: 13px 50px;
    display: block;
    width: max-content;
    cursor: pointer;
    position: absolute;
    top: 39px;
    right: 0;
    min-width: auto;
}

.order-section .order_form .configurator .order_btn {
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
    position: relative;
}

.order-section .order_form .configurator .order_btn .configurator-loader {
    position: absolute;
    right: 220px;
}

.order-section .order_form .configurator .order_btn .info-box {
    display: flex;
    align-items: center;
}

.order-section .order_form .configurator .order_btn .info-box > span {
    font-size: 14px;
    color: #000000;
    margin-left: 20px;
}

.order-section .order_form .configurator .order_btn .order-link {
    display: block;
}

.order-section .order_form .configurator .order_btn .order-link .order__doorder {
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    background: var(--gradient, linear-gradient(268deg, #09DAA1 1.48%, #97DB6C 98.33%));
    box-shadow: 3px 3px 30px rgba(0, 0, 0, 0.2);
    border-radius: 40px;
    padding: 13px 50px;
    display: block;
    width: max-content;
    cursor: pointer;
}

.order-section .order_form .configurator-details {
    width: 304px;
    background: #FFFFFF;
    box-shadow: 3px 3px 30px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.order-section .order_form .configurator-details .colored_table {
    border-collapse: collapse;
    width: 100%;
}

.order-section .order_form .configurator-details .colored_table .order-part-name h2 {
    font-size: 16px;
}

.order-section .order_form .configurator-details .colored_table tr {
    border-bottom: 1px solid #eeeeee;
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
}

.order-section .order_form .configurator-details .colored_table tr:nth-child(1) {
    justify-content: center;
}

.order-section .order_form .configurator-details .colored_table tr:nth-child(2) {
    border-top: 1px solid #eeeeee;
}

.order-section .order_form .configurator-details .colored_table tr td {
    font-weight: 500;
    font-size: 12px;
}

.order-section .order_form .configurator-details .colored_table tr td.label {
    font-weight: 700;
    font-size: 12px;
    color: #444444;
}

.order-section .order_form .configurator-details .colored_table tr td.value {
    font-weight: 500;
    font-size: 12px;
    color: #444444;
    padding-left: 20px;
    text-align: right;
}

.order-section .order_form .configurator-details .colored_table tfoot tr {
    border-bottom: none;
}

.order-section .order_form .configurator-details .colored_table tfoot tr .value-total {
    text-align: right;
    width: 100%;
    font-size: 14px;
    background: var(--gradient, linear-gradient(268deg, #09DAA1 1.48%, #97DB6C 98.33%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-style: italic;
    padding: 20px 0 0px 0;
}

.order-section .order_form .configurator-details .colored_table tfoot tr .value-total .configurator-price__total, .order-section .order_form .configurator-details .colored_table tfoot tr .value-total .configurator-price__monthly_total {
    font-weight: 700;
    font-size: 24px;
    background: var(--gradient, linear-gradient(268deg, #09DAA1 1.48%, #97DB6C 98.33%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-style: normal;
    padding: 0 25px 0 5px;
    position: relative;
}

.order-section .price-fmt {
    margin-right: 20px;
}

.order-section .price-fmt .price-remainder {
    font-weight: 700;
    font-size: 16.6px;
    background: var(--gradient, linear-gradient(268deg, #09DAA1 1.48%, #97DB6C 98.33%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    position: absolute;
    top: -11px;
}

.order-section .order_form .configurator-details .order_btn .info-box {
    display: flex;
    padding: 5px 15px 20px 15px;
}

.order-section .order_form .configurator-details .order_btn .info-box > span {
    font-size: 14px;
    color: #000000;
    margin-left: 20px;
}

.order-section .order_form .configurator-details .order_btn .order-link {
    display: flex;
    justify-content: center;
}

.order-section .order_form .configurator-details .order_btn .order-link .order__doorder {
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    background: var(--gradient, linear-gradient(268deg, #09DAA1 1.48%, #97DB6C 98.33%));
    box-shadow: 3px 3px 30px rgba(0, 0, 0, 0.2);
    border-radius: 40px;
    padding: 13px 50px;
    display: block;
    width: max-content;
    cursor: pointer;
    margin-bottom: -21px;
}

.order-section .order_form .info-mobile_toggle {
    display: none;
    position: fixed;
    bottom: 0;
    border-radius: 20px 20px 0 0;
    padding: 10px;
    background: var(--gradient, linear-gradient(268deg, #09DAA1 1.48%, #97DB6C 98.33%));
    color: white;
    width: 280px;
    left: calc(50% - 150px);
    margin: 0 auto;
    cursor: pointer;
    z-index: 200;
    text-align: center;
    font-weight: 700;
}

.order-section .slider-selection {
    background-color: var(--main-color, #587fef);
    background-image: var(--gradient, linear-gradient(268deg, #587fef 1.48%, #5799fb 98.33%));
}

@media (max-width: 980px) {

    .order-section .order_form {
        flex-wrap: wrap;
    }

    .order-section .order_form .configurator {
        width: 100%;
        margin-right: 0;
    }

    .order-section .order_form .configurator .slider-wrapper {
        border-bottom: none;
        padding-bottom: 20px;
        padding-top: 25px;
    }

    .order-section .order_form .configurator .slider-wrapper .labels {
        margin-bottom: 30px;
    }

    .order-section .order_form .configurator .slider-wrapper .labels label {
        padding: 0 0 10px 0;
        font-weight: 700;
        font-size: 17px;
        color: #000000;
        border-bottom: none;
    }

    .order-section .order_form .configurator-details {
        margin: 0 !important;
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: white;
        z-index: 210;
        overflow: auto;
        -webkit-transition: 0.25s ease-out;
        -moz-transition: 0.25s ease-out;
        -o-transition: 0.25s ease-out;
        transition: 0.25s ease-out;
    }

    .order-section .order_form .configurator-details.mobile-open {
        top: 0;
        border-radius: 0;
    }

    .order-section .order_form .configurator-details.mobile-open .mobile-close {
        position: absolute;
        top: 30px;
        right: 20px;
        width: 20px;
        height: 15px;
        font-size: 30px;
        color: #9a9696;
        z-index: 1;
        cursor: pointer;
        display: block;
    }

    .order-section .order_form .configurator-details.mobile-open .mobile-close:after, .order-section .order_form .configurator-details.mobile-open .mobile-close:before {
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        border-radius: 20px;
        background: var(--gradient, linear-gradient(268deg, #09DAA1 1.48%, #97DB6C 98.33%));
        position: absolute;
    }

    .order-section .order_form .configurator-details.mobile-open .mobile-close:after {
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        -o-transform: rotate(135deg);
        transform: rotate(135deg);
        top: 0;
    }

    .order-section .order_form .configurator-details.mobile-open .mobile-close:before {
        -webkit-transform: rotate(-135deg);
        -moz-transform: rotate(-135deg);
        -o-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }

    .order-section .order_form .info-mobile_toggle {
        display: block;
    }

    .order-section .order_form .info-mobile_toggle {
        display: block;
    }
}

@media (max-width: 424px) {

    .order-section .order_form .configurator .slider-wrapper #payment_months1_Slider .slider-tick-label {
        font-size: 12px;
    }

    .order-section .order_form .configurator .slider-wrapper #payment_months1_Slider .slider-tick-label .discount {
        top: -10px;
        font-size: 12px;
    }

    .order-section .order_form .configurator .order_btn {
        flex-wrap: wrap;
    }

    .order-section .order_form .configurator .order_btn .order-link {
        display: flex;
        justify-content: center;
        width: 100%;
        padding-top: 25px;
    }

    .order-section .order_form .configurator-details .order_btn .info-box {
        display: flex;
        padding: 20px 15px;
    }
}

/* Order section end */

/* Terms section */


.terms-section {
    background: #fafafa;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 130px;
}

.terms-section h1 {
    font-weight: 700;
    font-size: 35px;
    text-align: center;
    color: #444444;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Terms section end*/

/* Tariffs */

.tariffs-list .tariff .tariff-prices .tariff-sale {
    background: var(--gradient, linear-gradient(268deg, #09DAA1 1.48%, #97DB6C 98.33%));
}

.tariffs-list .tariff .tariff-prices .tariff-price .price {
    background: var(--gradient, linear-gradient(268deg, #09DAA1 1.48%, #97DB6C 98.33%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    position: relative;
}

.tariffs-list .tariff .tariff-prices .tariff-price .price span.price-remainder {
    background: var(--gradient, linear-gradient(268deg, #09DAA1 1.48%, #97DB6C 98.33%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.tariffs-list .tariff .tariff-prices .tariff-price .price-period {
    background: var(--gradient, linear-gradient(268deg, #09DAA1 1.48%, #97DB6C 98.33%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.tariffs-list .tariff .tariff-period .tariff-period-item {
    background: var(--gradient, linear-gradient(268deg, #09DAA1 1.48%, #97DB6C 98.33%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.tariffs-list .tariff .tariff-period .tariff-period-item.active {
    background: var(--gradient, linear-gradient(268deg, #09DAA1 1.48%, #97DB6C 98.33%));
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}


.tariffs-list .tariff .tariff-order .order-btn {
    background: var(--gradient, linear-gradient(268deg, #09DAA1 1.48%, #97DB6C 98.33%));
}

/* End tariffs */

/* FEATURES */
i.icon-feature__discounted,
i.icon-feature__elevated {
    display: inline-block;
    margin-left: 5px;
}

i.icon-feature__ipv6_unavailable {
    position: relative;
    margin-left: 5px;
}

i.icon-feature__discounted:after,
i.icon-feature__elevated:after {
    display: inline-block;
    width: 14px;
    height: 14px;
    content: ' ';
    background-size: contain;
    position: absolute;
    top: calc(100% - 24px);
}

i.icon-feature__discounted:after {
    background-image: url('/assets/common/img/features_icons/discounted.png');
}

i.icon-feature__elevated:after {
    background-image: url('/assets/common/img/features_icons/elevated.png');
}

i.icon-feature__ipv6_unavailable:after {
    display: inline-block;
    width: 30px;
    height: 30px;
    content: '';
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: calc(100% - 24px);
    left: 0;
    background-position: center;
    background-image: url('/assets/common/img/features_icons/unavailable_ipv6.png');
}

.select2-results__option {
    position: relative;
}

.select2-container--krajee-bs3 .select2-results__option.select2-results__option--selected, .select2-container--krajee-bs3 .select2-results__option[aria-selected=true] {
    background: var(--gradient, linear-gradient(268deg, #09DAA1 1.48%, #97DB6C 98.33%));
    color: #ffffff;
}

.select2-container--krajee-bs3 .select2-results__option--highlighted[aria-selected] {
    background: var(--main-color, #09DAA1);

}

/* END FEATURES */