.overflow-hidden {
    overflow: hidden;
}

.popup {
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: flex-end;
    color: #09253A;
    z-index: 5;
}

.popup.active {
    display: flex;
}

.popup__wrap {
    position: relative;
    height: 100%;
    width: 70vw;
}

.popup__register-3 .popup__wrap:before {
    background-image: url(../img/popup-3.png);
}

.popup__register-2 .popup__wrap:before {
    background-image: url(../img/popup-2.png);
}

.popup__box {
    background-color: #D0D3C6;
    background-image: url(../img/popup-reg-bg.png);
    background-position: left center;
    background-repeat: no-repeat;
    padding: 70px 130px;
    position: relative;
    overflow-y: auto;
    height: 100%;
}

.popup__wrap:before {
    content: '';
    position: absolute;
    background-image: url(../img/popup-1.png);
    left: -107px;
    width: 410px;
    top: 0;
    height: 80%;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.popup-close {
    position: absolute;
    top: 50px;
    right: 50px;
    cursor: pointer;
    transition: .4s opacity;
}

.popup-close {
    opacity: .7;
}

.popup__signup .popup__box {
    max-width: 850px;
}

.popup__signup .popup__box:before {
    background-image: url(https://newretrocasino8.com/landing/first3/assets/img/signup.png);
}

.popup__signin .popup__box:before {
    background-image: url(https://newretrocasino8.com/landing/first3/assets/img/signin.png);
}

.popup__title {
    font-weight: 800;
    font-size: 26px;
    text-transform: uppercase;
    color: #09253A;
    margin-bottom: 60px;
}

.popup__name {
    font-weight: 800;
    font-size: 36px;
    text-transform: uppercase;
    color: #09253A;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
}

.icon-close {
    background-image: url(../img/icon-close.svg);
    width: 30px;
    height: 30px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.popup__register .popup__content {
    display: flex;
    gap: 60px;
}

.popup__right-content {
    max-width: 432px;
    width: 100%;
}

.popup__right-content .form__register {
    display: flex;
    flex-direction: column;
    /* gap: 40px; */
}

.popup__right-content .form__field {
    margin-bottom: 40px;
}

.popup__register input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #7C8A8B;
    outline: none;
    color: black;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
    font-family: 'Fira Sans';
    border-radius: 0;
    -webkit-appearance: none;
}

.popup__register input::placeholder {}

.popup__right-content .form__field-select {
    margin-bottom: 0;
}

.popup__register .main__link {
    background: #FF7E00;
    border-radius: 8px;
    background: #FF7E00;
    color: #F4FBE0;
    font-size: 32.331px;
    font-weight: 700;
    display: inline-block;
    padding: 29px 0;
    transition: opacity .7s ease;
    border: none;
    text-transform: uppercase;
    filter: drop-shadow(0.5px 0.8999999761581421px 20px rgba(0, 0, 0, 0.25));
}
.btn--disabled {
    background-color: #858585;
    color: #b1b1b1;
}
.btn--disabled:hover {
    background-color: #858585;
    color: #b1b1b1;
}
.form__field-select select {
    background: transparent;
    border: none;
    outline: none;
}

.popup__left-content .main__title {
    font-size: 6.667vw;
    font-weight: bold;
}

.popup__left-content p {
    color: #09253A;
    font-size: 1.875vw;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
}

.form__acceptance {
    display: flex;
    gap: 15px;
    color: #7C8A8B;
    font-size: 19px;
    font-weight: 400;
    line-height: 23px;
    margin-top: 40px;
}

.form__acceptance a {
    color: #7C8A8B;
    text-decoration: underline;
}

.form__field-label {
    color: #7C8A8B;
    font-size: 16px;
    font-weight: 400;
    line-height: 38px;
}

.icon-eye {
    cursor: pointer;
    width: 25px;
    height: 20px;
    display: inline-block;
    background-image: url(../img/icon-eye-show.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: .4s opacity;
}

.icon-eye:hover {
    opacity: .7;
}

.icon-eye.active {
    background-image: url(../img/icon-eye-close.svg);
}

.form__field {
    position: relative;
}

.form__field .icon-eye {
    position: absolute;
    right: -30px;
    top: 13px;
}

.select__field {
    width: 100%;
    text-align: left;
    color: #09253A;
    font-size: 23px;
    font-weight: 700;
    text-transform: uppercase;
}

.select__field-default {
    width: 100%;
    cursor: pointer;
    transition: .4s opacity;
    border: 1px solid #DCDFE5;
    display: flex;
    padding: 10px 20px;
    border-radius: 6px;
    background-image: url(../img/icon-chevron-down.svg);
    background-repeat: no-repeat;
    background-position: 96% 17px;
    background-size: 14px 8px;
}

.select__field-default:hover {
    opacity: .7;
}

.select__field-list {
    padding: 20px;
    position: absolute;
    left: 0;
    right: 0;
    width: calc(100%);
    display: none;
    flex-direction: column;
    gap: 10px;
    background: #d1d3c6;
    z-index: 3;
}

.select__field.active {}

.select__field.active .select__field-list {
    display: flex;
    box-shadow: 10px 5px 20px -8px rgba(0, 0, 0, 0.2);
}

.select__field-default,
.select__field-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #d1d3c6;
}

.select__field-item {
    cursor: pointer;
    transition: .4s opacity;
}

.select__field-item:hover {
    opacity: .7;
}

.select__field-default img,
.select__field-item img {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.hidden {
    display: none;
}

.form__checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.form__checkbox-label input {
    display: none;
}

.form__acceptance-checkbox input+span {
    width: 18px;
    height: 18px;
    background-color: #FFF;
    display: inline-block;
    transition: .4s background-color;
}

.form__acceptance-checkbox input:checked+span {
    background-color: #FF7E00;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='11' viewBox='0 0 12 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.6659 1.32328C11.2308 0.888168 10.5256 0.888168 10.0905 1.32281L4.14814 7.2654L1.90017 5.01715C1.46518 4.58258 0.759997 4.58258 0.325345 5.01715C-0.109751 5.45216 -0.109751 6.15734 0.325345 6.59247L3.40816 9.67522C3.84315 10.1102 4.54845 10.1102 4.98343 9.67522C5.07477 9.58378 5.14263 9.47846 5.19573 9.36799L11.6659 2.89806C12.1005 2.46311 12.1005 1.75793 11.6659 1.32328Z' fill='white'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center;
}

.form__field-button {
    margin-top: 40px;
    cursor: pointer;
}
@media screen and (min-width: 1919px) {
    .popup__wrap {
        width: 50vw;
    }
}
@media screen and (max-width: 767px) {
    .popup__left-content {
        display: none;
    }

    .popup__right-content {
        max-width: unset;
        width: calc(100% - 10px);
    }

    .popup__box {
        padding: 22px;
        width: 100%;
    }

    .popup__wrap {
        width: 100%;
    }

    .popup__wrap:before {
        display: none;
    }

    .select__field,
    .popup__register input {
        font-size: 16px;
    }

    .form__acceptance {
        font-size: 14px;
    }

    .popup__register .main__link {
        font-size: 24px;
        position: static;
    }

    .popup__register .popup__title {
        margin-top: 40px;
    }

    .icon-close {
        width: 20px;
        height: 20px;
    }

    .popup-close {
        top: 30px;
        right: 30px;
    }

    .popup__mobile-desc {
        display: flex;
        gap: 10px;
        margin: 0;
        margin-top: 30px;
    }

    .popup__mobile-desc .main__title {
        font-size: 48px;
        display: flex;
        align-items: center;
    }

    .popup__mobile-desc p {
        color: #09253A;
        font-family: Fira Sans;
        font-size: 14px;
        font-weight: 700;
        line-height: 16.48px;
        text-transform: uppercase;
    }
}