.asp-popup-overlay{
    position: fixed;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.6);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:999999;
}
.asp-popup-box{
    background:#ffffff;
    color:#222;
    padding:20px 30px;
    font-size:18px;
    border-radius:8px;
    position:relative;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    max-width:90%;
}
.asp-close{
    position:absolute;
    top:6px; right:10px;
    cursor:pointer;
    font-size:22px;
    line-height:1;
}
