.overlay-1{
    background-color:rgba(234, 114, 140, 0.3);    
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999; 
    display: none;   
}
.overlay-1.is-open-1{
    display: block;    
}
.popup{
    /*background-image: url(../img/popup.png);*/
    background-color: #ea728c;
    position: relative; 
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);   
    padding: 20px;
    box-shadow: 0px 2px 5px 5px rgba(250, 46, 90, 0.3);
    transition: all 2s ease-in-out; 
    width:60%;
    z-index: auto;
    border-radius: 30px;
}
@media only screen and (max-width: 600px) {
    .popup{
        width:90%;
     }
   }
@media only screen and (max-width: 780px) {
    .popup{
        width:90%;
     }
   }
   .popup .close-btn{
    background: #f5345e;
    border-color: #ea728c;
    color: #ffffff;  
    border-radius: 5px;
    cursor: pointer;
   
}
    .popup .close-btn:hover{
      
    background: #ea728c;
    border-color: #f5345e;
    color: #ffffff;
    }