.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1002;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.6);
}
.modal.open {
  visibility: visible;
  opacity: 1;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.modal-bg {
  position: absolute;
  background: var(--black);
  width: 100%;
  height: 100%;
  opacity: 0.2;
}
.modal-container {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  position: relative;
  padding: 20px 25px;
  max-width: 90%;
  width: 100%;
  max-height: 80%;
  overflow-x: hidden;
  overflow-y: auto;
}
@media (min-width: 992px) {
  .modal-container {
    max-width: 623px;
    padding: 24px 48px;
  }
}
@media (min-width: 1200px) {
  .modal-container {
    max-width: 808px;
  }
}
.modal-content {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #262626;
}
.modal-content p {
  margin-top: 0;
}
.modal-content ul {
  margin: 0;
  padding-left: 1.5rem;
}
.modal-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.modal-cta * {
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  display: block;
  border: 0;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 40px;
  cursor: pointer;
}
.modal-cta .cancel-btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  background: #dddddd;
}
@media (min-width: 768px) {
  .modal-cta .cancel-btn {
    width: calc(50% - 4px);
  }
}
.modal-cta .submit-btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgb(255, 232, 175)), color-stop(50%, rgb(255, 197, 51)), to(rgb(255, 232, 175)));
  background: linear-gradient(90deg, rgb(255, 232, 175) 0%, rgb(255, 197, 51) 50%, rgb(255, 232, 175) 100%);
}
@media (min-width: 768px) {
  .modal-cta .submit-btn {
    width: calc(50% - 4px);
  }
}
.modal-cta .submit-btn:hover {
  -webkit-animation: glowing 8s linear infinite;
          animation: glowing 8s linear infinite;
  background-size: 400%;
}/*# sourceMappingURL=modal.css.map */