#sp-overlay {

position:fixed;
top:0;
left:0;
width:100%;
height:100%;

background:rgba(0,0,0,.65);

display:flex;
align-items:center;
justify-content:center;

z-index:999999;

}


#sp-popup {


background:white;

width:90%;
max-width:500px;

padding:30px;

border-radius:15px;

text-align:center;

position:relative;

box-shadow:0 10px 40px rgba(0,0,0,.3);

}



#sp-close {

position:absolute;

right:15px;
top:10px;

border:0;

background:none;

font-size:30px;

cursor:pointer;

}



.sp-buttons {


display:flex;

gap:15px;

justify-content:center;

margin-top:25px;

}



.sp-btn {


padding:14px 25px;

background:#2271b1;

color:white;

text-decoration:none;

border-radius:8px;

font-weight:bold;

}



/* Portrait mobile */

@media(max-width:600px){


.sp-buttons {

flex-direction:column;

width:100%;

}


.sp-btn {

width:100%;

box-sizing:border-box;

}


}