#thankPopup a:hover {
    color: #fff;
}

#thankPopup {
    max-width: 480px;
    width: 100%;
    background: #ffffff;
    padding: 38px 24px;
    border-radius: 26px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: fixed;
    left: 50%;
    top: -500px;
    transform: translateX(-50%);
    opacity: 0;
    transition: all .5s ease;
    z-index: 99999;
    overflow: hidden;
}

/* SHOW CLASS */
#thankPopup.show {
    top: 60px;
    opacity: 1;
}

/* Confetti / Stars Background */
.bg-stars {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, #ff9de6 3px, transparent 3px),
        radial-gradient(circle, #7dc8ff 3px, transparent 3px),
        radial-gradient(circle, #ffd36f 3px, transparent 3px),
        radial-gradient(circle, #b28cff 3px, transparent 3px);
    background-size: 120px 120px, 160px 140px, 180px 180px, 200px 160px;
    background-position: 0 0, 40px 20px, 80px 40px, 120px 60px;
    opacity: .25;
    animation: moveStars 10s linear infinite;
}

#thankPopup .user-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: start;
    align-items: center;
    padding: 0 5px 20px 5px
}

#thankPopup .user-details .detail {
    margin: 0;
}

@keyframes moveStars {
    0% {
        background-position: 0 0, 40px 20px, 80px 40px, 120px 60px;
    }

    100% {
        background-position: 200px 300px, 240px 320px, 280px 340px, 320px 360px;
    }
}

.popup-icon {
    width: 90px;
    height: 90px;
    background: #e8cd04;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

#thankPopup h2 {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    position: relative;
}

#thankPopup p {
    color: #555;
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 28px;
    position: relative;
}

.btn-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #e8cd04;
    color: #fff;
    padding: 14px 0;
    border-radius: 12px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

#notify-container {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999999;
    width: 90vw;
    max-width: 480px;
}

.notify-box {
    width: 100%;
    background: #111;
    border-radius: 5px;
    padding: 18px 20px;
    margin-top: 10px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateY(-20px);
    animation: slideDown .4s forwards;
    position: relative;
}

.notify-remove {
    position: absolute;
    right: 15px;
    top: 50%;
    cursor: pointer;
    transform: translateY(-50%);
}

.notify-icon {
    font-size: 22px;
    margin-top: 2px;
}

.notify-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.notify-content p {
    font-size: 14px;
    margin: 4px 0 0;
    opacity: .8;
}

.notify-success {
    border-left: 4px solid #00c96d;
}

.notify-error {
    border-left: 4px solid #ff4d4d;
}

.notify-warning {
    border-left: 4px solid #ffcc00;
}

.notify-warning-msg {
    border-left: 2px solid #ffcc00;
    padding: 0 5px;
    color: #ffcc00;
}

.notify-error-msg {
    border-left: 2px solid #ff4d4d;
    padding: 0 5px;
    color: #ff4d4d;
}

.notify-info-msg {
    border-left: 2px solid #3fa7ff;
    padding: 0 5px;
    color: #3fa7ff;
}

.form-container>.notify-info-msg {
    display: block;
    margin: 0 0 15px 3px;
}

.notify-success-msg {
    border-left: 2px solid #00c96d;
    padding: 0 5px;
    color: #00c96d;
}

.notify-info {
    border-left: 4px solid #3fa7ff;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.input-box [class*=notify-] {
    margin: 0 0 0 15px;
    display: inline-block;
    text-align: center;
}

.small,
small {
    font-size: .8em;
}

.balance .total {
    margin-left: 5px;
}