.popup_cont {
  top: 5% !important;
}
div.popup {
  background: #fff;
  padding: 15px 15px 45px;
  background: url(../img/bg-top.png) top left no-repeat, 
            url(../img/bg-bottom.png) bottom left no-repeat;
            background-size: contain;
}
div.popup:before {
  content: '';
  position: absolute;
  z-index: -1; /* push it to the background */
  top: 12px; /* position it off the top background */
  right: 0;
  bottom: 12px; /* position it off the bottom background */
  left: 0;
  background: url(../img/bg-middle.png) top left repeat-y;
            background-size: 100%;
}
div.popup .title {
  font-size: 18px;
  margin: 5px auto 0px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  position: absolute;
  z-index: 999;
  top: -30px;
}
div.popup .footer {
  margin:5px auto 0px;
  color:#fff;
  font-weight: bold;
  text-align:center;
}
.popup_close {
  right: -8px;
  top: -8px;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  background: #000;
  border: solid 4px #222;
  width: 35px;
  height: 35px;
  padding: 0px;
  border-radius: 50%;
  z-index: 9999999 !important;
  text-align: center;
}
.popup_close:hover {
  color: #dadada;
}

@media (max-width: 768px) {
  .popup_cont {
    width: 90%;
    margin: 5% auto;
    opacity: 1;
    top:3% !important;
  }
  .popup_content, .popup iframe {
    width:100% !important;
  }

}