/* Popup overlay */
#popupOverlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup container max-width: 900px; */
#popupContainer {
  position: relative;
  background: #000;
  top: 5%; left: 5%;
  width: 90%;
  height: 90%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* Embedded website */
#popupIframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Close button background: transparent;*/
#closePopup {
  position: absolute;
  top: 10px;
  right: 15px;
  color: white;
  font-size: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
}
#closePopup:hover {
  color: #ff0066;
}