#apopupdiv {
  --popupwidth: 1140px;
  display: none;
  position: fixed;
  width: var(--popupwidth);
  height: 80%;
  top: 10%;
  left: calc((100vw - var(--popupwidth))/2);
  background-color: white;
  z-index: 10;
}

@media (max-width: 1140px) {
  #apopupdiv {
	--popupwidth: 95%;
  }
}

#apopupdiv iframe {
  width: 100%;
  height: 94%;
/*  margin-top: 4%; */
  border: 0;
  transition: opacity 0.3s;
  opacity: 0;
  overflow: scroll !IMPORTANT;
}

#apopupdarkbg {
  position: fixed;
  z-index: 5;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, .50);
  display: none;
}

#apopupclose {
  position: absolute;
  top: 0;
  left: 0;
  height: 60px;
  width: 60px;
  cursor: pointer;
}

/* span.apopicon */
#apopupclose::before {
  font-family: "dashicons";
  content: "\f158";
  width: 100%;
  height: 100%;
  font-size: 42px;
  font-weight: bold;
  line-height: 60px;
  color: gray;
  margin-left: 10px;
}
