#eco-popup-overlay{
display:none;
position:fixed;
inset:0;
background:rgba(0,0,0,.8);
z-index:999999;
justify-content:center;
align-items:center;
}

#eco-popup{
background:#fff;
width:800px;
max-width:95%;
border-radius:10px;
overflow:hidden;
position:relative;
animation:ecoFade .4s;
}

#eco-popup img{
width:100%;
display:block;
}

.eco-content{
padding:25px;
}

.eco-button{
background:#7bc142;
color:#fff;
padding:12px 24px;
display:inline-block;
text-decoration:none;
border-radius:5px;
}

.eco-close{
position:absolute;
right:15px;
top:10px;
font-size:32px;
cursor:pointer;
}

@keyframes ecoFade{
from{
opacity:0;
transform:scale(.9);
}
to{
opacity:1;
transform:scale(1);
}
}