html,
body {
  height: 100%;
  max-width: 1920px;
}

html {
  margin: auto;
}

/* milFAQ styles */
html,
body,
main {
  overflow-x: hidden;
}

.eligible-list {
  list-style: none !important;
}
/* Style from sketch */
.inner-list > li {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 24px;
  color: #00095b !important;
}

.section-title {
  font-weight: bolder;
  text-decoration: underline;
}

.list-title {
  font-weight: bold;
}

/* tooltip */
.fmc-tooltip.fmc-tooltip--mobile .fmc-tooltip__wrapper {
  width: 100vw;
  height: 100vh;
  top: 100px !important;
  left: 0;
  position: fixed;
  transform: none !important;
}

/* hero billboardstyling */
.hero-billboard {
  color: white;
}

.hero-billboard h1 {
  font-size: 3.2rem;
  line-height: 4.4rem;
}

@media (min-width: 1024px) {
  .hero-billboard h1 {
    font-size: 6rem;
    line-height: 7.2rem;
  }

  .hero-billboard p {
    font-size: 2rem;
  }
}

/* Steps 1 and 2 styling */
.steps-header {
  font-size: 4.4rem;
  line-height: 5.2rem;
}

.steps-list {
  color: white;
  font-size: 2.2rem;
  line-height: 2.8rem;
  font-weight: 300;
}

.offer-button {
  color: white;
  font-size: 2.4rem;
  line-height: 2.8rem;
}

.steps-heading {
  font-size: 2.8rem;
  line-height: 3.6rem;
  margin-bottom: 1rem;
}

.step-instructions {
  color: #00095b;
  font-size: 2rem;
  line-height: 2.4rem;
  --fmc-type-weight: var(--fmc-type__weight-medium);
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.or-option {
  color: #4d4d4d;
  white-space: nowrap;
  --fmc-type-weight: var(--fmc-type__weight-bold);
  font-size: 2.8rem;
  line-height: 3.6rem;
  align-self: center;
}

.confirm-div {
  width: 345px;
  align-self: center;
}

@media (min-width: 600px) {
  .steps-list p {
    font-size: 2.4rem;
  }

  .steps-heading {
    font-size: 3.2rem;
    line-height: 4rem;
  }

  .step-instructions {
    font-size: 2.2rem;
    line-height: 2.8rem;
  }
}

@media (min-width: 1024px) {
  .step-instructions {
    font-size: 2.4rem;
    line-height: 2.8rem;
  }

  .or-option {
    font-size: 3.2rem;
    line-height: 4rem;
  }
}

/* bg-banner used for banner-style messages on multiple pages */

.bg-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem;
  background-color: #00095b;
}
.bg-banner-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #00095b;
}
.bg-banner-light {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 5rem;
}

.banner-2 {
  text-align: center;
  padding-left: 6rem;
  padding-right: 6rem;
  background-color: #00095b;
}
.banner-2-mobile {
  text-align: center;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 4rem;
  background-color: #00095b;
}

.results {
  display: flex;
  flex-direction: column;
  padding: 4rem;
  background-color: #f4f4f4;
}

/* Unable to verify pop-up */
.couldnotverify {
  border-radius: 1.5rem;
  overflow: hidden;
  width: 40%;
  margin: auto;
  background-color: #fff;
  box-shadow: var(--fmc-elevation__box-shadow--layer2);
}

.verify-text {
  margin: auto;
  max-width: 75%;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 375;
  color: #4d4d4d;
}

.verify-text a {
  color: #266aca;
  text-decoration: underline;
}

.verify-buttons {
  text-align: center;
  justify-content: center;
  height: 7rem;
  border-radius: 0.7rem;
  padding: 2rem;
  font-size: 2rem;
}

.retry-button {
  background-color: #266aca;
  color: #fff;
}
.retry-button a {
  color: #fff;
}

.return-button {
  background-color: #fff;
  color: #266aca;
  border: 3px solid black;
}

/* Eligible Vehicles */

.eligible-container {
  margin: 4rem;
}

.vehicle-con {
  margin-top: 2rem;
  padding: 1rem;
}

.container-title {
  font-size: 1.8rem;
  font-weight: 800;
  padding-left: 2rem;
  display: inline-block;
  margin-bottom: 2rem;
}

.fmc-cards img {
  display: block;
  width: 100%;
}

.inner-container {
  margin-left: 4rem;
  margin-right: 4rem;
}

.card-size {
  width: calc(50% - 24px);
}
@supports (display: grid) {
  .card-size {
    width: auto;
    grid-column-end: span 4;
  }
}

@media (min-width: 20em) and (max-width: 50em) {
  .inner-container {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .card-size {
    width: calc(100% - 24px);
  }
  @supports (display: grid) {
    .card-size {
      width: auto;
      grid-column-end: span 8;
    }
  }
}

@media (min-width: 50.1em) and (max-width: 64em) {
  .card-size {
    width: calc(50% - 24px);
  }
  @supports (display: grid) {
    .card-size {
      width: auto;
      grid-column-end: span 4;
    }
  }
}

@media (min-width: 64em) {
  .card-size {
    width: calc(25% - 24px);
  }
  @supports (display: grid) {
    .card-size {
      width: auto;
      grid-column-end: span 3;
    }
  }
}

.not-available[aria-selected="true"] {
  font-family: "FordAntenna";
  font-size: 18px;
  letter-spacing: 0;
  line-height: 24px;
  text-decoration: none;
  color: #6e6e6e;
  border: none;
  cursor: default;
  pointer-events: none;
  background-color: transparent !important;
}
#FDSpanel2024.not-available[aria-selected="false"],
#F2022Panel.not-available[aria-selected="false"],
#F2024Panel.not-available[aria-selected="false"] {
  font-family: "FordAntenna";
  font-size: 18px;
  letter-spacing: 0;
  line-height: 24px;
  text-decoration: none;
  color: #6e6e6e;
  border: none;
  cursor: default;
  pointer-events: none;
  background-color: transparent !important;
}
#FDSpanel2024[aria-selected="true"],
#FDSpanel2023[aria-selected="true"],
#F2022Panel[aria-selected="true"] {
  font-family: "FordAntenna";
  font-size: 18px;
  letter-spacing: 0;
  line-height: 24px;
  text-decoration: none;
  border: none;
  cursor: default;
  pointer-events: none;
  background-color: transparent !important;
}

#FDSpanel2024[aria-selected="true"]::after,
#FDSpanel2023[aria-selected="true"]::after,
#F2022Panel[aria-selected="true"]::after {
  font-family: "FordAntenna";
  font-size: 18px;
  letter-spacing: 0;
  line-height: 24px;
  text-decoration: none;
  border: none;
  cursor: default;
  pointer-events: none;
  background-color: transparent !important;
}

#FDSpanel2024[aria-selected="false"],
#F2022Panel[aria-selected="false"],
#FDSpanel2023[aria-selected="false"] {
  font-family: "FordAntenna";
  font-size: 18px;
  letter-spacing: 0;
  line-height: 24px;
  text-decoration: underline;
  color: #1700f4;
  border: none;
  background-color: transparent !important;
}

#FDSpanel2024[aria-selected="false"]::after,
#F2022Panel[aria-selected="false"]::after,
#FDSpanel2023[aria-selected="false"]::after {
  font-family: "FordAntenna";
  font-size: 18px;
  letter-spacing: 0;
  line-height: 24px;
  text-decoration: underline;
  color: #1700f4;
  border: none;
  background-color: transparent !important;
}

#id-modal-close {
  float: right !important;
  position: relative;
  right: -1em;
  top: -1em;
}

#id-modal {
  display: none;
  position: fixed;
  z-index: 5;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(33, 42, 43, 0.8);
}

.id-modal-content {
  background-color: #fefefe;
  margin: 40% auto;
  padding: 35px;
  width: 70%;
}

/* OFFER BANNER STYLING */

/* Mobile and Small screens */

.icon-image {
  width: 100%;
}

.icon-image-large {
  width: 14vw;
}

.offer-banner-background {
  position: relative;
  width: 100%;
  height: 100%;
}

.offer-info p {
  font-size: 3.5rem;
  line-height: 4.5rem;
}

.offer-info-zip {
  font-size: 3.5rem;
  line-height: 4.5rem;
}

.offer-text {
  white-space: nowrap;
  font-size: 1.5rem;
  line-height: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.02rem;
}

.money-text {
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: 0.02rem;
  padding-bottom: 0.5rem;
}

.offer-or-text {
  font-weight: 500;
  font-size: 1.75rem;
  letter-spacing: 0.02rem;
}

.offer-bottom-line {
  font-size: 1.5rem;
}

.offer-banner p {
  color: #fff;
}

.offer-title {
  right: 10%;
  top: 5%;
}

.offer-title p {
  white-space: nowrap;
  font-size: 2rem;
  letter-spacing: 0.02rem;
}

.offer-banner-img {
  position: relative;
  width: 100%;
}

.ob-text {
  font-size: 25px;
  line-height: 3.5rem;
}

.offer-banner-border-text {
  padding-top: 1rem;
  border-top: 1px solid white;
}

/* Small screens */
@media (min-width: 600px) {
  .offer-title p {
    font-size: 2.2rem;
    line-height: 2.8rem;
  }

  .offer-text {
    white-space: nowrap;
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 500;
    letter-spacing: 0.02rem;
  }

  .money-text {
    font-weight: 700;
    font-size: 4.25rem;
    letter-spacing: 0.02rem;
    padding-bottom: 0.5rem;
  }

  .offer-or-text {
    font-weight: 500;
    font-size: 2.75rem;
    letter-spacing: 0.02rem;
  }
}

/* Medium screens */
@media (min-width: 1024px) {
  .offer-title p {
    font-size: 2.2rem;
    line-height: 2.8rem;
  }

  .offer-text {
    white-space: nowrap;
    font-size: 1.65rem;
    line-height: 2rem;
    font-weight: 500;
    letter-spacing: 0.02rem;
  }

  .money-text {
    font-weight: 700;
    font-size: 3.5rem;
    letter-spacing: 0.02rem;
    padding-bottom: 0.5rem;
  }

  .offer-or-text {
    font-weight: 500;
    font-size: 2rem;
    letter-spacing: 0.02rem;
  }
}

/* Large screens */
@media (min-width: 1440px) {
  .offer-text {
    white-space: nowrap;
    font-size: 2.5rem;
    line-height: 2.75rem;
    font-weight: 500;
    letter-spacing: 0.02rem;
  }

  .money-text {
    font-weight: 700;
    font-size: 4.5rem;
    letter-spacing: 0.02rem;
    padding-bottom: 0.5rem;
  }

  .offer-or-text {
    font-weight: 500;
    font-size: 2.75rem;
    letter-spacing: 0.02rem;
  }

  .offer-title p {
    white-space: nowrap;
    font-size: 3rem;
    letter-spacing: 0.02rem;
  }

  .offer-bottom-line {
    font-size: 2rem;
  }
}

/* fds-xs */
@media (max-width: 360px) {
  .ob-regional {
    font-size: 17px;
  }
  .ob-text {
    font-size: 20px;
    line-height: 2.5rem;
  }
}

@media (min-width: 361px) and (max-width: 450px) {
  .ob-text {
    font-size: 20px;
  }

  .ob-regional {
    font-size: 17px;
    line-height: 3rem;
  }
}

/* Between xs and sm */
@media (min-width: 451px) and (max-width: 600px) {
  .ob-regional {
    font-size: 20px;
    line-height: 3.5rem;
  }

  .ob-text {
    font-size: 26px;
    line-height: 4rem;
  }
}

/* small to medium */
@media (min-width: 601px) and (max-width: 720px) {
  .ob-text {
    font-size: 30px;
  }

  .ob-regional {
    font-size: 25px;
    line-height: 4.5rem;
  }
}

/* between sm and md */
@media (min-width: 720px) and (max-width: 825px) {
  .ob-text {
    font-size: 40px;
    line-height: 5rem;
  }

  .ob-regional {
    font-size: 30px;
    line-height: 4.5rem;
    padding-right: 2rem;
  }
}

@media (min-width: 826px) and (max-width: 1024px) {
  .ob-text {
    font-size: 40px;
    line-height: 5rem;
  }

  .ob-regional {
    font-size: 35px;
    line-height: 5rem;
    padding-right: 2rem;
  }
}

/* med to large */
@media (min-width: 1024px) and (max-width: 1439px) {
  .ob-text {
    font-size: 50px;
    line-height: 5rem;
  }

  .ob-regional {
    font-size: 40px;
    line-height: 5.5rem;
  }

  .offer-info-zip {
    font-size: 2.25rem;
    line-height: 3rem;
  }
}

.offer-disclaimer-line {
  font-size: 0.55em;
}

/* PROGRAM DETAILS PAGE */
.prog-details {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.prog-billboard h1 {
  font-size: 4.4rem;
  line-height: 5.2rem;
}

.prog-details h2 {
  font-size: 3.4rem;
  line-height: 4rem;
  font-weight: var(--fmc-type__weight-bold);
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.prog-details h3 {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: var(--fmc-type__weight-bold);
}
.prog-details p li {
  font-weight: var(--fmc-type__weight-medium);
}

.hero-billboard-light h1 {
  font-size: 4.4rem;
}

/* ELIGIBLE VEHICLES PAGE */
.info-pages h1 {
  font-size: 3.4rem;
  line-height: 4rem;
}

.info-pages h2 {
  font-size: 2rem;
  font-weight: 800;
}

/* ADDITIONAL BENEFITS PAGE */
.program-link {
  font-size: 1.3rem;
}

@media (min-width: 600px) {
  .program-link {
    font-size: 1.8rem;
  }
}

/* FAQ STYLING */
.faq-accordion h2 {
  font-size: 1.6rem;
  line-height: 2.4rem;
}

.faq-accordion h3 {
  font-size: 1.6rem;
  line-height: 2.4rem;
}

/* Centralized Responsive Promo Banner Styles */
.promo-content {
    /* Mobile Base Styles (Stacked) */
    width: 60%;
    color: white;
    text-shadow: 1px 1px 3px #000000;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.promo-label {
    font-weight: normal;
    font-size: 1.2rem;
    line-height: 1.2;
}

.promo-amount-box {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    white-space: nowrap;
}

.promo-symbol {
    font-weight: bold;
    font-size: 2rem;
    line-height: 1;
    margin-top: 5px;
}

.promo-value {
    font-weight: bold;
    font-size: 4.5rem;
    line-height: 0.9;
}

.promo-footer {
    font-weight: normal;
    font-size: 1.2rem;
    line-height: 1.2;
}

/* Tablet/Small Desktop Intermediate */
@media (min-width: 600px) {
    .promo-content {
        flex-direction: row;
        max-width: 100%;
        justify-content: flex-start;
    }

    .promo-label {
        font-size: 1.8rem;
        margin-right: 10px;
    }

    .promo-symbol {
        font-size: 3rem;
        margin-top: 5px;
    }

    .promo-value {
        font-size: 7rem;
    }

    .promo-footer {
        font-size: 1.8rem;
        display: flex;
        flex-direction: row;
        gap: 5px;
        white-space: nowrap;
    }
}

/* Desktop Overrides (Horizontal, Larger) */
@media (min-width: 1024px) {
    .promo-content {
        flex-direction: row;
        width: auto;
        max-width: 100%;
        text-shadow: 2px 2px 4px #000000;
    }

    .promo-label {
        font-size: 2.25rem;
        letter-spacing: 0.5px;
        margin-right: 7px;
        white-space: nowrap;
        margin-top: -3.2rem;
    }

    .promo-symbol {
        font-size: 3.5rem;
        margin-top: 0.8rem;
    }

    .promo-value {
        font-size: 8rem;
        line-height: 0.8;
    }

    .promo-footer {
        font-size: 2.25rem;
        text-align: left;
        display: flex;
        flex-direction: column;
    }
}

@media (min-width: 1920px) {
    .promo-label {
        font-size: 3rem;
    }

    .promo-symbol {
        font-size: 4.5rem;
    }

    .promo-value {
        font-size: 11rem;
    }

    .promo-footer {
        font-size: 3rem;
    }
}
