@charset "UTF-8";
.modal-overlay {
  display: block;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-overlay.hidden {
  display: none;
}

.modal-body {
  background-color: #fff;
  margin: 10% auto;
  padding: 44px 30px 30px;
  width: 100%;
  max-width: 900px;
  border-radius: 8px;
  position: relative;
  transform: scale(0.9);
}
@media (max-width: 767px) {
  .modal-body {
    padding: 44px 4vw 30px;
  }
}

.close-button {
  position: absolute;
  right: 22px;
  top: 15px;
  font-size: 22px;
  cursor: pointer;
  color: #311b92;
  /* background-color: #311b92; */
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*
.close-button:hover {
  color: #311b92;
  background-color: #fff;
  border: 1px solid #311b92;
}
*/

#thanksModal iframe {
  display: block;
  vertical-align: middle;
  border:none;
  width: 100%;
  height: 400px;
}
@media (max-width: 767px) {
  #thanksModal iframe {
    height: 70dvh;
  }
}