.ilia-popup-blur{
    display: none;
    position:fixed;
    width:100%;
    height:100%;
    background-color:black;
    top:0;
    right:0;
    z-index:99999;
    opacity:0.7;
}
.ilia-popup-div{
    display: none;
    position:fixed;
    left:0px;
    right: 0px;
    top:14%;
    margin:0px auto;
    max-width:35%;
    z-index:999999;
    border-radius:5px;
    box-shadow:3px 3px 8px black;
    border:1px solid white;
    animation:iliapopup 1s ease-in;

}
@-webkit-keyframes iliapopup {
   from { width:0%; }
   to {width:100%;}

}

@keyframes iliapopup {
    from { width:0%; }
   to {width:100%;}
}
.ilia-popup-img{
    border-radius:5px;
    width:100%;
    height:auto;
}
.ilia-popup-close{
    position: absolute;
    right: 7px;
    top: 7px;
    background-color: #222;
    padding: 1.2%;
    border-radius:9%;
    width: 22px;
    height: 22px;
    transition: all 300ms;
    z-index:1;
}
.ilia-popup-close:hover{
        background-color: white;
        cursor: pointer;
}
.ilia-popup-call{
    filter: drop-shadow(2px 2px 4px #555);
    -webkit-filter: drop-shadow(2px 2px 4px #555);
    position:absolute;
    bottom: 19%;
    right: 34%;
    width:10%;
    opacity:0;
    animation:callfade 2s ease-in forwards;
}
@keyframes callfade{
    0% {width:0%;opacity:0}
    50% {opacity:0}
    60% {opacity:1}
    100% {width:10%;opacity:1}
}
@-webkit-keyframes callfade{
    0% {width:0%;opacity:0}
    50% {opacity:0}
    60% {opacity:1}
    100% {width:10%;opacity:1}
}
.ilia-popup-call:hover{
    filter: drop-shadow(3px 3px 4px white);
    -webkit-filter: drop-shadow(3px 3px 4px white);
    cursor:pointer;
}
a.ilia-popup-button {
    position: absolute;
    bottom: 6%;
    background-color: #ffd40099;
    padding: 1% 3%;
    width:fit-content;
    border-radius: 10%;
    color: black;
    border: 1px solid black;
}
a.ilia-popup-button:hover{
    color:white;
}
.ilia-popup-div{
max-width:800px;
}
.ilia-popup-close{
width:4%;
height:8%;
}
@media only screen and (max-width:767px) {
    .ilia-popup-div{
        max-width:90%;
    }
    .ilia-popup-close{
    width:4%!important;
    padding:1%;
    }
}