#hsp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

#hsp-overlay.active {
  display: flex;
}

#hsp-popup {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  transform: scale(0.7);
  opacity: 0;
  transition: 0.4s ease;
  position: relative;
}

#hsp-popup.active {
  transform: scale(1);
  opacity: 1;
}

#hsp-popup img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

#hsp-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 22px;
  cursor: pointer;
}
