.zpn-overlay{

display:none;

position:fixed;

inset:0;

background:rgba(0,0,0,.70);

backdrop-filter:blur(10px);

z-index:999999;

align-items:center;

justify-content:center;

padding:20px;

}



.zpn-popup{

position:relative;

background:#ffffff;

width:100%;

max-width:430px;

padding:40px 30px;

border-radius:30px;

text-align:center;

box-shadow:0 30px 80px rgba(0,0,0,.25);

animation:zpnPopupShow .45s ease;

}



.zpn-close{

position:absolute;

right:20px;

top:15px;

width:35px;

height:35px;

border-radius:50%;

border:none;

background:#f2f2f2;

font-size:22px;

cursor:pointer;

}



.zpn-popup-icon{

font-size:55px;

margin-bottom:15px;

}



.zpn-popup h2{

font-size:30px;

margin-bottom:15px;

}



.zpn-popup p{

color:#666;

line-height:1.6;

}




@keyframes zpnPopupShow{


from{

opacity:0;

transform:translateY(40px) scale(.9);

}


to{

opacity:1;

transform:translateY(0) scale(1);

}


}



@media(max-width:600px){


.zpn-popup{

padding:35px 20px;

border-radius:22px;

}



.zpn-popup h2{

font-size:24px;

}


}