/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 16 2026 | 08:44:18 */
.sb-popup-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    visibility:hidden;
    transition:0.3s;
    z-index:9999;
}

.sb-popup-overlay.active{
    opacity:1;
    visibility:visible;
}

.sb-popup-box{
    width:90%;
    max-width:420px;
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    transform:translateY(20px);
    transition:0.3s;
}

.sb-popup-overlay.active .sb-popup-box{
    transform:translateY(0);
}

.sb-popup-icon{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#16a34a;
    color:#fff;
    font-size:32px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.sb-popup-box h3{
    margin-bottom:10px;
    font-size:28px;
    color:#111;
}

.sb-popup-box p{
    color:#666;
    line-height:1.6;
    margin-bottom:25px;
}

.sb-popup-box button{
    padding:12px 28px;
    border:none;
    border-radius:10px;
    background:#111;
    color:#fff;
    cursor:pointer;
}