.fq__progress span { width: 25%; }

.fq-modal {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5vh 4vw;
}
.fq-modal.is-open { display: flex; }
.fq-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .76);
  backdrop-filter: blur(1px);
}
.fq-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1120px, 92vw);
  max-height: 90vh;
  overflow: auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
}
.fq-modal__close {
  position: sticky;
  z-index: 5;
  top: 8px;
  display: block;
  width: 46px;
  height: 46px;
  margin: 8px 10px -54px auto;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: #fff;
  color: #111;
  font: 38px/44px Arial, sans-serif;
  cursor: pointer;
  box-shadow: none;
}
.fq-modal__close:hover { background: #f1f1f1; }
.fq-modal__close:focus-visible { outline: 3px solid #3d55d8; outline-offset: 2px; }
.fq-modal .fq { min-height: min(680px, 84vh); }
.fq-modal-open { overflow: hidden; }
.fq-launch {
  border: 0;
  border-radius: 10px;
  padding: 18px 28px;
  background: #e7a844;
  color: #111;
  font: 700 18px Manrope, Arial, sans-serif;
  cursor: pointer;
}
@media (max-width: 600px) {
  .fq-modal { align-items: flex-start; padding: 30px 18px; }
  .fq-modal__dialog {
    width: 100%;
    max-height: calc(100vh - 60px);
    max-height: calc(100dvh - 60px);
    min-height: 0;
    border-radius: 0;
  }
  .fq-modal .fq { min-height: 0; padding: 42px 20px 28px; }
  .fq-modal__close {
    top: 6px;
    width: 42px;
    height: 42px;
    margin: 6px 7px -48px auto;
    font-size: 35px;
    line-height: 40px;
  }
}
