
.pop-up-footer-help span {
    color: rgb(244, 174, 61);
}

.pop-up-footer-help h3 {
    padding-top: 19.5px;
    padding-left: 19px;

    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0px;
    margin-top: 19.4px;
    margin-bottom: 21px;
}

.footer-help-btn {
    cursor: pointer;
    margin-left: 19px;
    width: 164px;
    height: 32.2px;
    border-radius: 7px;
    color: white;
    background: rgb(244, 174, 61);
    border: 0.8px solid rgb(248, 162, 23)
}


.user-agreement-block {
    padding-top: 10px;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.user-agreement-block-right {
    display: flex;
    align-items: flex-start;

}

.user-agreement-block-right img {
    margin-right: 10px;
}

.user-agreement-block-right p {
    margin: 0;
}

.user-agreement-block p {
    color: #828282;
    font-weight: 400;
    font-size: 10px;
}

.user-agreement-block-left {
    display: flex;
    align-items: flex-start;

}

.user-agreement-block-left img {
    margin-right: 10px;
    cursor: pointer;
}

.user-agreement-block-left p {
    margin: 0;
}


.user-agreement-basic {
    color: #39ba7d;
}

.user-agreement-error {
    color: #bf0101;
}

.user-agreement-link {
    text-decoration: underline;
    cursor: pointer;
}

.user-agreement-link:hover {
    text-decoration: none;
    opacity: 0.8;
}


.hidden {
    display: none;
}


.checkbox-icon {
    transition: all 0.3s ease;
    cursor: pointer;
}

.fade-out {
    opacity: 0;
    transform: scale(0.8);
}

.fade-in {
    opacity: 1;
    transform: scale(1);
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    20%, 60% {
        transform: translateX(-5px);
    }
    40%, 80% {
        transform: translateX(5px);
    }
}

.shake {
    animation: shake 0.5s ease-in-out;
}

.fitcontent {
    height: auto;
    overflow: visible;
    display: block;
}

.close-popup-btn-b {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #777;
}
.close-popup-btn-b:hover img {
    content: url('../../images/icons/close-ico.png');
    opacity: 1;
    visibility: visible;
}

.payment-methods-title {
    margin-top: 10px;
}

.email-code-input {
    flex: 1;
    padding: 10px;
    color: white;
    background: #1C181C;
    border: 0.8px solid #1C181C;
    border-radius: 6px;
}

.payment-popup-text-lower {
    font-family: "SFP";
    font-weight: 500;
    font-size: 9.6px;
    line-height: 19.2px;
    color: white;
}



.payment-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    border: 0.8px solid #2C292C;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.payment-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.payment-popup-container {
    position: relative;
    z-index: 999;
    background: #141114;
    border-radius: 12px;
    width: 491px;
    /*height: 551px;*/
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}



.payment-popup-header h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    color: #333;

    font-family: "SF";
    font-weight: 700;
    font-size: 22.74px;
    line-height: 25.6px;
    letter-spacing: -0.14px;
    color: white;
}

.promo-code-section {
    display: flex;
    gap: 10px;
    margin: 8px 0px;
}

#promo-code-input {
    flex: 1;
    padding: 10px;
    color: white;
    background: #1C181C;
    border: 0.8px solid #1C181C;
    border-radius: 6px;
    font-size: 14px;
}

#apply-promo-btn {
    padding: 10px 15px;
    color: #707070;
    background-color: #1C181C;
    border: none;
    border-radius: 6px;
    cursor: not-allowed;
    font-size: 14px;
    transition: all 0.2s;
}


.payment-methods {
    display: flex;
    /*justify-content: space-between;*/
    gap: 10px;
    margin: 20px 0;
}

.payment-method {
    width: 78px;
    height: 78px;

    border-radius: 13px;
    display: flex;
    align-items: self-start;
    justify-content: start;
    cursor: pointer;
    transition: all 0.2s;

}

.payment-method.selected {
    border-color: #4CAF50;
    background: rgba(28, 24, 28, 1);
}


.pay-button, .pay-button-error {
    width: 100%;
    padding: 15px;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-position 0.4s linear;
}

.pay-button {
    background: linear-gradient(90deg, #00BF56, #00DDCB, #00BF56);
    background-size: 200% 100%;
}

.pay-button-error {
    background: linear-gradient(90deg, #be0000, #fd4646);
    background-size: 200% 100%;
}
