html.with--no_scroll {
    overflow: hidden;
    margin-right: 17px;
}

.popup__layout {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #1D262D !important;
    opacity: .85 !important;
    z-index: 1000;
    will-change: top;
    visibility: visible;
    -webkit-transition: opacity 300ms cubic-bezier(.2, 0, .2, 1), visibility 0ms 0ms;
    transition: opacity 300ms cubic-bezier(.2, 0, .2, 1), visibility 0ms 0ms;
}

.popup__container {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-perspective: 600px;
    perspective: 600px;
    z-index: 1001;
    text-align: center;
    visibility: visible;
    overflow-y: scroll;
    padding: 50px 0;
}

.popup__container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.popup__body {
    color: rgba(255, 255, 255, 0.6);
    background-color: #374956;
    max-width: 600px;
    padding: 40px 20px 20px 20px;
    border-radius: 4px;
}

.q-auth-modal.popup__body {
    min-height: 460px;
    position: relative;
    width: 320px;
    background: none;
}

.q-auth-modal .popup__close {
    position: absolute;
    right: 0px;
    top: 10px;
    filter: brightness(0) saturate(100%);
    z-index: 1000;
}

.auth-popup__wrapper {
    margin: 0;
}

.popup__body .popup__close {
    background-color: unset;
    width: 36px;
    height: 36px;
    padding: 10px;
}

.popup__body .popup__close svg {
    width: 100%;
    height: 100%;
    display: none;
}

.promo-popup-box {
    color: rgba(255, 255, 255, 0.6);
    text-align: left;
    line-height: 1.5;
}

.promo-popup-box ul {
    padding: 0;
    margin: 0;
}

.promo-popup-box ul li {
    counter-increment: steps;
    display: flex;
    align-items: center;
    list-style: none;
    margin-bottom: 15px;
}

.promo-popup-box ul li::before {
    content: counter(steps);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 36px;
    max-width: 36px;
    height: 36px;
    margin-right: 15px;
    border-radius: 4px;
    border: 1px solid #4e8ce8;
    color: #fff;
}

.promo-popup-item img {
    margin: 0 4px;
}

.promo-popup-white {
    color: #fff;
    font-weight: bold;
}

.promo-popup-code {
    display: inline-block;
    height: 28px;
    background: #4e8ce8;
    color: #fff;
    border-radius: 4px;
    padding: 0 10px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 28px;
}

.zoom__image {
    background: #1D262D;
    color: #fff;
    padding: 15px 10px 10px;
    margin: 25px 0 15px;
}

.zoom__image img {
    width: 100%;
    max-width: 600px;
    padding: 15px 10px 10px;
}

.popup__body .btn {
    min-width: 123px;
    padding-left: 15px;
    padding-right: 15px;
    font-weight: bold;
    justify-content: center;
    margin: 0 auto;
}

.popup__body .btn--official-site {
    min-width: 171px;
    margin: 0;
}

.promo-popup__close .force-close {
    margin-top: 15px;
    background: none;
    box-shadow: none;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    cursor: pointer;
    opacity: .7;
}

.promo-popup__close .force-close:hover {
    opacity: 1;
}

.promo-popup__close .force-close:after {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none'%3E%3Cg fill='%23fff'%3E%3Cpath d='M4.227 2.813 14.833 13.42l-1.06 1.06L3.166 3.874z'/%3E%3Cpath d='M14.833 3.874 4.227 14.481l-1.06-1.06L13.772 2.812z'/%3E%3C/g%3E%3C/svg%3E") no-repeat center;
}

@media (max-width: 768px) {
    .popup__container {
        padding: 20px;
    }

    .popup__body {
        min-width: auto;
    }
}

@media (max-width: 576px) {
    .popup__body.modal-promocode {
        padding: 30px 15px 15px 15px;
    }

    .promo-popup-box ul li {
        align-items: flex-start;
    }

    .promo-popup-box ul li::before {
        margin-top: 7px;
    }
}