/* ------------------------------------------------------------
   POPUP CONFIRMATION
------------------------------------------------------------ */

.popup-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;

background:rgba(0,0,0,0.45);

display:flex;
align-items:center;
justify-content:center;

z-index:9999;
}

.popup-box{

background:white;
padding:40px;
border-radius:16px;

text-align:center;

max-width:420px;

box-shadow:0 20px 50px rgba(0,0,0,0.2);

animation:popupAppear 0.4s ease;
}

.popup-icon{
font-size:55px;
color:#22c55e;
margin-bottom:15px;
}

.popup-box h2{
color:#113356;
margin-bottom:10px;
}

.popup-box p{
color:#555;
line-height:1.6;
}

@keyframes popupAppear{

from{
transform:scale(0.8);
opacity:0;
}

to{
transform:scale(1);
opacity:1;
}

}
