#popup-message-wrapper {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

#popup-message-background {
  position: fixed;
  inset: 0;
  background: #000;
}

#popup-message-window {
  position: fixed !important;
  /* top: 50% !important; */
  /* left: 50% !important; */
  /* transform: translate(-50%, -50%); */
  width: min(90vw, 480px) !important;
  height: auto !important;
  max-height: 80vh;
  overflow-y: auto;
  border: 1px solid #000000;
  background: #fff;
  color: #222;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
  z-index: 10000;
}

#popup-message-close {
  position: absolute;
  top: 12px;
  right: 14px;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  color: #222;
}

.popup-message-title {
  margin: 0 32px 16px 0;
  font-size: 1.5rem;
  line-height: 1.25;
}

#popup-message-content {
  font-size: 1rem;
  line-height: 1.5;
}