input[type="radio"]:checked + .radio {
    background-color: #20247A;
    outline: 1px solid #20247A;
}

.wave {
    margin-bottom: 154px;
}

.page-empty {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-empty__image {
    max-width: 395px;
}

.page-empty__img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.page-empty__content {
    display: flex;
    align-items: center;
    flex-grow: 1;
    gap: 40px;
}

.page-empty__content-info{
    max-width: 508px;
}

.page-empty__title {
    margin-bottom: 8px;
    color: #343e4a;
}
.page-empty__text {
    line-height: 1.4;
    font-size: 15px;
    color: #343e4a;
}

.page-empty__btn {
    padding: 18px 23px;
    gap: 8px;
    display: inline-flex;
    margin-left: auto;
    flex-shrink: 0;
}

.tooltip-top {
    position: relative;
}
.tooltip-top__window {
    display: inline-block;
    position: absolute;
    left: 50%;
    bottom: 100%;
    white-space: nowrap;
    padding: 10px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.80);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.43;
    color: #fff;
    transform: translateX(-50%) translateY(-5px); /* Y -10px on show */
    z-index: 10;
    transition: .3s;
    opacity: 0;
    pointer-events: none;
}
.tooltip-top__window::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);

    border-width: 10px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
    pointer-events: none;
}

.tooltip-top:hover .tooltip-top__window {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(-10px);
}


.checkbox-switch {
    margin-top: 4px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
}
.checkbox-switch__title {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    color: #343E4A;
}
.checkbox-switch__value {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    color: #92969A;
}

.checkbox-switch input {
    display: none;
    opacity: 0;
    font-size: 0;
    width: 0;
    height: 0;
}
.checkbox-switch__track {
    padding: 2px;
    width: 46px;
    height: 24px;
    border-radius: 100vmax;
    background-color: #E7EDF3;
    position: relative;
    transition: 0.3s
}
.checkbox-switch__track::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0px 11px 18px 0px rgba(8, 37, 67, 0.06);
    transition: 0.3s;
}
.checkbox-switch__inputs>input:checked  + .checkbox-switch__track::after {
    left: calc(100% - 22px);
}
.checkbox-switch__inputs>input:checked  + .checkbox-switch__track {
    background-color: #5E920A;
}

/* //////POPUP PRODUCT/////// */
.popup-product {
    display: flex;
    align-items: center;
    gap: 16px;
}
.popup-product__image {
    aspect-ratio: 112.20/106.86;
    max-width: 112px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #F3F4F5;
    flex-shrink: 0;
}
.popup-product__img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.popup-product__info {
    display: flex;
    margin-bottom: 5px;
}
.popup-product__title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.57;
    color: #343E4A;
}
.popup-product__prices {
    padding-top: 0;
    margin-top: 8px;
}


@media screen and (max-width: 991px) {
    .wave {
        margin-bottom: 62px;
    }

    .page-empty {
        gap: 20px;
    }
    .page-empty__image {
        max-width: 285px;
    }
    .page-empty__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .page-empty__title {
        margin-bottom: 4px;
    }
    .page-empty__text {
        font-size: 14px;
    }
    .page-empty__btn {
        padding: 12px 16px;
        font-size: 13px;
        margin-left: 0;
    }

}


@media screen and (max-width: 580px) {
    .wave {
        margin-bottom: 8.056vw;
    }

    .page-empty {
        flex-direction: column;
        align-items: center;
    }
    .page-empty__content {
        text-align: center;
    }
    .page-empty__btn {
        width: 100%;
    }

    .popup-product__image {
        width: 92px;
    }
}

/* INPUTS */

.tel-check {
    position: relative;
}
.tel-check::before {
    content: '';
    width: 18px;
    height: 18px;
    position: absolute;
    left: 15px;
    bottom: 15px;
    background-image: url('../img/icon-check.svg');
    background-repeat: no-repeat;
    background-position: center center;
}

.tel-check > input {
    padding-left: 43px;
}


.fg__icon {
    display: flex;
    align-items: center;
    border-radius: 9px;
    border: 1.4px solid #F3F4F5;
    background: #FFF;
    padding-left: 15px;
    transition: border-color .3s
}
.fg__icon-svg svg {
    display: block;
    object-fit: contain;
}
.fg__icon > input {
    border: none;
    padding-left: 7px;
}
.fg__icon:focus-within {
    border-color: #20247A;
}




/* REG */

.block-padding-header {
    padding-top: 218px;
}

.register-banner {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 25px;
    background-color: #E2EDF8;
    background-image: url('../img/reg-banner-pattern.svg');
    background-repeat: repeat-y;
    background-position: center center;
    background-size: cover;
}
.register-banner__title {
    color: #191C21;
    font-size: 21px;
    font-weight: 700;
    line-height: 143%; /* 30.03px */
}
.register-banner__item {
    display: flex;
    column-gap: 12px;
}
.register-banner__item-icon {
    flex-shrink: 0;
}
.register-banner__item-icon img,
.register-banner__item-icon svg {
    display: block;
    max-width: 38px;
    height: auto;
    object-fit: contain;
}
.register-banner__item-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.57;
    margin-bottom: 3px;
}
.register-banner__item-text {
    color: #57616C;
    font-size: 13px;
    font-weight: 500;
    line-height: 138%; /* 17.94px */
}


/* BTNS */

.btn-blue:disabled {
    background-color: #C8CBCC;
    color: #FFF;
    pointer-events: none;
}

@media screen and (max-width: 1260px) {
    .block-padding-header {
        padding-top: 144px;
    }
}

@media screen and (max-width: 768px) {
    .block-padding-header {
        padding-top: 116px;
    }
}