:root {
    --white: #FFF;
    --white2: #F6F7F9;
    --white3: #D4D7C3;
    --white4: #f7f7f7;
    --whitegrey: #f4f3f1;
    --grey1: #D6D6D6;
    --grey2: #AEADAD;
    --grey3: #7B7B7B;
    --grey4: #515151;
    --grey5: #242424;
    --grey6: #8b8b8b;
    --gray7: #7D7D7D;
    --dark-gray: #333;
    --black: #000;
    --black2: #212121;
    --black3: #121212;
    --black-grey: #121211;
    --orange: #D95911;
    --green: #32DE84;
    --green2: #155724;
    --lightgreen: #d4edda;
    --olive: #CED1C3;
    --grey-green: #EFEEEB;
    --gold: #F0B800;
    --dark-blue: #051945;
    --red: #DC6152;
    --brown-grey: #A3998F;
    --outline: 1px solid var(--black3);

}
body.fixed {
    overflow: hidden;
}
.footer .popup-container {
    --transition-duration: 0.3s;
    --padding-y: 70px;

    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.footer .popup-container:not(.active) {
    pointer-events: none;
    opacity: 0;
    transform: scale(0);
    transition-delay: var(--transition-duration);
}

.footer .popup {
    position: static;
    max-width: 450px;
    width: 100%;
    height: 100%;
    opacity: 1;
    left: auto;
    right: 0;
    pointer-events: all;
    padding: var(--padding-y) 15px;
    background: var(--white);
    visibility: visible;
}

.footer .popup-side {
    margin-left: auto;
    transform: translateX(200%);
    transition: transform var(--transition-duration) ease;
}

.footer .popup-container.active .popup-side {
    transform: none;
}

.footer.popup__wrapper {
    height: 100%;
    overflow: auto;
    scrollbar-width: none;
}

/* WebKit */
.footer .popup__wrapper::-webkit-scrollbar {
    display: none;
}

.footer .popup__header {
    position: relative;
    display: flex;
    margin-bottom: 30px;
}

.footer .popup__close {
    position: relative;
    width: 20px;
    height: 20px;
    margin-left: auto;
    padding: 0;
    border: 0;
    background: none;
}

.footer .popup__close::before,
.footer .popup__close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 1px;
    background: var(--black3);
    transform: translate(-50%, -50%) rotate(45deg);
}

.footer .popup__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.footer .popup__title {
    font-size: 24px;
    line-height: 1.2;
}

.footer .popup__body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    padding-bottom: var(--padding-y);
}

@media (min-width: 768px) {
    .footer .login-reg.popup {
        padding: 42px 50px;
    }
}

.footer .login-reg.popup {
    padding-bottom: 30px;
}

@media (min-width: 450px) {
    .footer .popup {
        padding-left: 74px;
        padding-right: 74px;
    }
}
.btn-dark:hover{
    background-color: #2c606f !important;
}

.form-end .radio-box label span::before {
    background: rgba(255, 255, 255, .4) !important;
}
.old-price{
    text-decoration: line-through;
}