.elementor-15115 .elementor-element.elementor-element-400df5f{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}#elementor-popup-modal-15115{background-color:rgba(0,0,0,.8);justify-content:center;align-items:center;pointer-events:all;}#elementor-popup-modal-15115 .dialog-message{width:640px;height:auto;}#elementor-popup-modal-15115 .dialog-close-button{display:flex;}#elementor-popup-modal-15115 .dialog-widget-content{box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);}/* Start custom CSS for html, class: .elementor-element-48c4e8d *//* Fullscreen Overlay */
.apGold-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    z-index: 999999999 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.6s ease-out;
}

/* Confetti behind the popup */
#apGoldConfetti {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Popup Box */
.apGold-box {
    position: relative;
    z-index: 5;
    background: linear-gradient(
        145deg,
        #ffffff,
        #f9f4e7,
        #fff8d1
    );
    padding: 40px 45px;
    width: 90%;
    max-width: 460px;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    animation: bounceIn 0.8s ease-out;
    border: 1px solid #e8d79b;
}

/* Golden Glow */
.apGold-glow {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    height: 260px;
    background: radial-gradient(
        circle,
        rgba(255, 215, 0, 0.4),
        transparent
    );
    filter: blur(60px);
    z-index: -1;
}

/* Badge */
.apGold-badge {
    display: inline-block;
    background: linear-gradient(
        135deg,
        #ffd700,
        #ffcc55,
        #ffb300
    );
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

/* Titles */
.apGold-title {
    font-size: 22px;
    margin-top: 15px;
    font-weight: 600;
    color: #2a2a2a;
}

.apGold-sub {
    font-size: 15px;
    margin-top: 8px;
    color: #555;
    line-height: 1.5;
}

/* Button */
.apGold-btn {
    margin-top: 25px;
    padding: 10px 22px;
    font-size: 16px;
    border-radius: 10px;
    background: linear-gradient(
        135deg,
        #ffca2c,
        #ffb100
    );
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 200, 0, 0.4);
}

.apGold-btn:hover {
    background: linear-gradient(
        135deg,
        #ffb700,
        #e69c00
    );
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    60% {
        transform: scale(1.08);
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}/* End custom CSS */