.overlay-popup-bg {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    display: none;
    z-index: 99999999;
}
.popup {
    margin: 35px auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    min-width: 370px;
    width: 28%;
    position: relative;
    transition: all .5s ease-in-out;
   
}
.popup{
  
}
.popup .close {
  position: absolute;
    top: -5px;
    right: 10px;
    transition: all 200ms;
    font-size: 22px;
    font-weight: 500;
    text-decoration: none;
    color: #333;
    cursor: pointer;
}
.popup img{
  width: 100%;
  
}
.cdownload-btn{
  display: inline-block;
    background: #da0800;
    color: #fff;
    font-size: 16px;
    font-weight: 200;
    letter-spacing: 0.80px;
    padding: 4px 12px;
    border-radius: 3px;
    margin: 8px auto 4px auto;
    text-align: center;
    transition: all 0.5s linear;
}
.cdownload-btn:hover{
  cursor: pointer;
  transform: scale(1.1);
  transition: all 0.5s linear;
}
.popup{
  text-align: center;
}
@media (max-width:767px){
  .popup{
    min-width:auto;
    width: 90%;
  }
}