/* ==========================================================
   GLOBAL VAULT INVESTMENT POPUP
========================================================== */


#gv-investment-popup{

    position:fixed;

    left:25px;

    bottom:25px;

    width:330px;

    background:var(--gv-card,#ffffff);

    color:var(--gv-text,#343A40);

    border-left:5px solid #D4AF37;

    border-radius:16px;

    padding:18px;

    display:flex;

    align-items:center;

    gap:15px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.18);

    z-index:99998;

    transform:translateX(-400px);

    opacity:0;

    transition:.45s ease;

}



/* SHOW ANIMATION */

#gv-investment-popup.show{

    transform:translateX(0);

    opacity:1;

}



/* ICON */

.gv-popup-icon{

    width:48px;

    height:48px;

    background:#0B1F3A;

    color:#D4AF37;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

    flex-shrink:0;

}



/* CONTENT */

.gv-popup-content{

    flex:1;

}



.gv-popup-title{

    font-size:13px;

    font-weight:700;

    color:#D4AF37;

    margin-bottom:5px;

}



.gv-popup-message{

    font-size:14px;

    font-weight:600;

    line-height:1.5;

}



.gv-popup-time{

    font-size:11px;

    color:#888;

    margin-top:5px;

}



/* CLOSE BUTTON */

.gv-popup-close{

    border:none;

    background:none;

    color:#888;

    font-size:22px;

    cursor:pointer;

}



/* DARK MODE SUPPORT */

[data-theme="dark"] #gv-investment-popup{

    background:#111111;

    color:#ffffff;

}



[data-theme="dark"] .gv-popup-time{

    color:#aaa;

}



/* MOBILE */

@media(max-width:768px){

    #gv-investment-popup{

        left:15px;

        right:15px;

        bottom:15px;

        width:auto;

    }

}