#popup-global-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

#popup-global-modal {
  position: relative;
  background: transparent;
  border-radius: 10px;
  max-width: 90%;
  max-height: 90%;
}

#popup-global-modal img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

#popup-global-close {
  position: absolute;
  top: -10px; right: -10px;
  background: #fff;
  border: none;
  font-size: 24px;
  width: 35px; height: 35px;
  border-radius: 50%;
  cursor: pointer;
  line-height: 1;
}
