.heymax-modal-container {
  display: none;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  min-height: -webkit-fill-available;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999999;
  align-items: center;
  justify-content: center;
}

.heymax-modal-container.active {
  display: flex;
}

.heymax-modal-content {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: -webkit-fill-available;
}

#heymax-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.heymax-btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  cursor: pointer;
  z-index: 99999999;
  font-size: 32px;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.heymax-btn-close:hover {
  background: rgba(0, 0, 0, 0.8);
}
