#active-popup {
  background-color: rgba(0,0,0, 0.7);
  position: absolute;
  width: 100%;
  height: 100% !important;
  top: 0;
  left: 0;
  z-index: 9999;
}
#popup-container {
  width: 600px;
  height: 500px;
  margin: 0 auto;
  margin-top: 3%;
  z-index: 9999;
  position: fixed;
  left:10%;
  right:10%;
  top:5%;
  background:rgba(0,0,0,0);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-device-width: 768px) {
	#popup-container { 
	width:90%;
	height:90%;
	left:5%;
    right:5%;
  }
}
.popup-content {
  position: relative;
  text-align:center;
}
.popup-content img {
	width: auto;
	max-width:100%;
	}
#popup-window { position: relative; }
#popup-container a.ad-close {
  font-family: Arial, Helvetica, sans-serif;
  position: absolute;
  float: right;
  top: 0px;
  right: -25px;
  z-index: 99;
  font-weight: bold;
  font-size: 10px;
  padding: 5px 7px 5px 7px;
  line-height: 1em;
  text-align: center;
  background: #000;
  border: 1px solid #fff;
  cursor: pointer;
  color:#fff;
}
@media (max-width: 767px) {
#popup-container a.ad-close {
  top: -25px !important;
  right: 0px !important;
}
}