.popup-overlay {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 23, 90, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: white;
  padding: 3rem 4rem;
  width: 80%;
  max-width: 1300px;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
}

.close-popup {
  position: absolute;
  top: 1rem;
  right: 2rem;
  background: transparent;
  border: none;
  color: var(--wp--preset--color--tumma-sininen);
  font-size: 4rem;
  cursor: pointer;
}

body.popup-open {
  overflow: hidden;
}

@media (max-width: 709px) {
  .popup-content {
    padding: 3.5rem 1.5rem 1.5rem 1.5rem;
  }

  .close-popup {
    top: 0rem;
    right: 0.5rem;
  }
}
