/* ==== MODAL ==== */
div#otherInterestField {
    margin-top: 12px;
}
div#waitlistThanks h1.funding-title.thankyou-fund-title img {
    width: 80px;
}
.waitlist-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(7.5px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
.waitlist-modal-content {
  max-width: 895px;
  width: 100%;
  padding: 54px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-height: calc(100% - 60px);
  border-radius: 16px;
  border: 2px solid #edf1f5;
  background: #f9fbfd;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
}
.model-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.model-heading h2 {
  color: var(--Black, #1a1a1a);
  font-family: "Space Grotesk";
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 64px */
}

.model-heading p.subtitle {
  color: #000;
  text-align: right;
  font-family: Inter;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  margin: 0;
}
form#waitlistForm {
    margin-top: 54px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.interest-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.interest-radio-group label.radio-btn-label {
  position: relative;
  margin: 0;
}
.interest-radio-group label.radio-btn-label .radio-text {
  border-radius: 100px;
  border: 1px solid #edf1f5;
  background: #fff;
  padding: 15px 16px;
  cursor: pointer;
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  color: #000;
  width: fit-content;
  box-shadow: none;
  display: inline-block;
}
.interest-radio-group label.radio-btn-label input:checked  + .radio-text {
    background: #FF6B35;
    color: #fff;
}
.interest-radio-group label.radio-btn-label input {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
form#waitlistForm .form-row {
    display: grid;
    grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
    gap: 24px;
}
.form-actions {
    margin-top: 22px;
    display: grid;
    grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
    gap: 10px;
}
.button-bg-gray.btn {
    background: rgb(237 241 245);
    color: #000;
    font-size: 20px;
    font-weight: 500;
    line-height: 100%;
}
select.timezone-select {
    appearance: none;
    background-image: url(/wp-content/uploads/2025/11/fi_pocket.svg);
    background-position: right 16px center;
    background-size: 20px;
    cursor: pointer;
    background-repeat: no-repeat;
}
form#waitlistForm input, form#waitlistForm select {
    color: rgb(0 0 0 / 50%) !important;
}
div#waitlistThanks h1.funding-title.thankyou-fund-title svg {
    width: 80px;
    height: 80px;
    display: block;
    flex: 0 0 80px;
}
div#waitlistThanks h1.funding-title.thankyou-fund-title {
   font-size: 64px;
   line-height: 125%;
}
div#waitlistThanks p {
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: normal;
    margin-bottom: 16px;
}
.mediumfont {
    font-weight: 600 !important;
}
div#waitlistThanks p:last-child {
    margin-bottom: 0;
}
.form-field label small {
    font-size: 100%;
    color: rgb(0 0 0 / 50%);
}
@media screen and (max-width: 767px){
    .waitlist-modal-content {
    padding: 16px;
}
.model-heading {
    grid-template-columns: 1fr;
    gap: 16px;
}
.model-heading h2 {
    font-size: 48px;
    line-height: 125%;
}
.model-heading p.subtitle {
    text-align: left;
    font-size: 16px;
}
form#waitlistForm {
    margin-top: 40px;
}

.interest-radio-group label.radio-btn-label .radio-text {
    font-size: 14px;
    padding: 11px 16px;
}
form#waitlistForm .form-row {
    grid-template-columns: minmax(0, 12fr);
    gap: 32px;
}
.form-actions {
    grid-template-columns: minmax(0, 12fr);
    margin-top: 8px;
}
div#waitlistThanks .top-label {
    font-size: 14px;
    line-height: normal;
}
div#waitlistThanks p {
    font-size: 16px;
}
div#waitlistThanks h1.funding-title.thankyou-fund-title{
    font-size: 32px;
}
}