#exit-prevention-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7);
}
#exit-prevention-popup.active {
  display: flex;
}

#exit-prevention-popup-content {
  position: relative;
  max-width: 480px;
  max-height: 90%;
  text-align: center;
}
#exit-prevention-popup-content img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

#exit-prevention-popup-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
}
#exit-prevention-popup-close:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  #exit-prevention-popup-content {
    max-width: 90%;
  }
  #exit-prevention-popup-close {
    top: -35px;
    font-size: 30px;
    width: 35px;
    height: 35px;
  }
}

/*# sourceMappingURL=exit-prevention-popup.css.map */
