#rsvpModal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 500px;
  height: 100%;
  max-height: 720px;
  background-color: white;
  z-index: 101;
  padding: 0;
  border: 1px solid #e0e2e2;
  border-radius: 2px;
  box-shadow: 1px 1px 8px 1px #b6b7b7;
}

#rsvpFrame {
  margin: auto;
  width: 100%;
  height: 100%;
  border: 0;
  -webkit-overflow-scrolling: touch;
}

#bodyModalOverlay {
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #f7f8f8;
  opacity: 0.6;
  backdrop-filter: blur(2px);
  display: none;
}

.modal-opened {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  touch-action: none;
  -webkit-overflow-scrolling: none;
  overflow: hidden;
  overscroll-behavior: none;
}

@media (max-width: 576px) {
  #rsvpModal {
    top: 0;
    transform: translate(0, 0);
    left: 0;
  }
}
