/* Popups (Configuration globale > Configuration du thème > Configuration des popups) */
.genesii-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.25);
  padding: 20px;
}

body.genesii-popup-open {
  overflow: hidden;
}

.genesii-popup {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.genesii-popup-link,
.genesii-popup img {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
}

.genesii-popup-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
  .genesii-popup-close {
    top: -12px;
    right: -12px;
  }
}
