/** Modal Promo Code  */
.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 #FF7A00;
    color: #fff;
}

.promo-popup-item--cloack {
    color: #fff;
}

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

.promo-popup-item a {
    display: inline-block;
    height: 28px;
    background: #FF7A00;
    color: #fff;
    border-radius: 4px;
    padding: 0 10px;
    font-weight: bold;
    line-height: 28px;
    text-decoration: none;
}

.promo-popup-item a:hover {
    background: #d86800;
}

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

.promo-popup-code {
    display: inline-block;
    height: 28px;
    background: #FF7A00;
    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 {
    float: none;
    padding-left: 15px;
    padding-right: 15px;
    font-weight: bold;
    justify-content: center;
}

.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;
}

.q-auth-modal.popup__body {
    width: 320px;
}

.q-auth-modal .auth-popup__tab form {
    min-height: 270px;
}

@media (max-width : 768px) {

    .popup__body.modal__promo{
        max-width: 90%;
    }
}


@media (max-width: 576px) {

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

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

