#popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Hide the popup on screens narrower than 1100px */
@media screen and (max-width: 1099px) {
  #popup-overlay {
    display: none !important;
  }
}
#popup-box {
  width: 1100px;
  height: 650px;
  background: #FCFAF5;
  position: relative;
  padding: 30px;
  box-sizing: border-box;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border: 4.5px solid black;
}

#popup-close {
  position: absolute;
  top: -15px;
  inset-inline-end: -15px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.popup-content {
  display: flex;
  gap: 20px;
  height: 100%;
}
.popup-content .inset-end-div {
  width: 62%;
}
.popup-content .inset-end-div .img {
  width: 100%;
  min-height: 200px;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.popup-content .inset-start-div {
  width: 38%;
}
.popup-content .inset-start-div .lg-text {
  padding-top: 20px;
  font-size: 54px;
  line-height: 53px;
  margin-bottom: 17px;
}
.popup-content .inset-start-div .md-text {
  font-size: 20px;
  line-height: 22px;
}
.popup-content .inset-start-div .faq-container {
  width: -moz-fit-content !important;
  width: fit-content !important;
  min-width: 0px !important;
}
.popup-content .inset-start-div .faq {
  margin-top: 50px;
}
.popup-content .inset-start-div .start-now-btn {
  margin-bottom: 7px;
}
.popup-content .inset-start-div .beta-note {
  font-size: 10px;
  color: rgba(34, 34, 34, 0.5);
}/*# sourceMappingURL=popup.css.map */