/*
**I
** NFORD Easy Popups Style
**
*/

#inford-ec-popup-layer {
 position: fixed;
 top: 0;
 left: 0;
 bottom :0;
 right: 0; 
 z-index: -99999;
 opacity: 0;
 visibility: hidden;
 background: rgba(0,0,0,.5);
 display: flex;
 justify-content: center;
 align-items: center;
 transition: all .5s ease;
}

#inford-ec-popup-layer.active {
 position: fixed;
 top: 0;
 left: 0;
 bottom :0;
 right: 0; 
 z-index: 99999;
 opacity: 1;
 visibility: visible;
 background: rgba(0,0,0,.5);
 display: flex;
 justify-content: center;
 align-items: center;
 transition: all .5s ease;
}

#inford-ec-popup-layer.popup-hidden {
 z-index: -99999!important;
 opacity: 0!important;
 visibility: hidden!important;
 transition: all .5s ease;
}

#inford-ec-popup-layer .inford-ec-popup {
 max-width: 850px;
 /*max-height: 80vh;*/
 width: 100%; 
 padding: 20px;
 background: #fff; 
}


#inford-ec-popup-layer .inford-ec-popup-close {
 position: absolute;
 top: 30px;
 right: 30px;
 width: 25px;
 height: 25px;
 font-size: 25px;
 line-height: 25px;
 text-align: center; 
 color: #fff;
 display: block;
 font-weight: 600;
 cursor: pointer;
}