
/* ======================== */
/* === Desktop Section === */
/* ======================== */

/*******************************    Hero Section      ***************************************/

.campaign-desktop {
  display: block;
}

.campaign-image {
  position: relative;
  width: 100vw;
  aspect-ratio: 3.2 / 1;
  overflow: hidden;
}

/* Replaces background image */
.campaign-img-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.hero-frame {
  position: absolute;
  right: 0;
  top: 75px;
  bottom: 0;
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 32px;
  text-align: center;
  background: transparent;
  z-index: 1; /* Make sure it's above the image */
}

.hero-title {
  font-family: 'Tilt Neon', sans-serif;
  font-size: 40px;
  line-height: 44px;
  color: #1D2D3A;
  padding-right: 85px;
}

.hero-description {
  font-size: 32px;
  line-height: 38px;
  color: #1D2D3A;
  margin-top: 30px;
  padding-right: 85px;
}

/* Responsive Mobile Styling */
@media (max-width: 768px) {
  .campaign-image {
    aspect-ratio: auto;
    height: auto;
  }

  .hero-frame {
    position: static;
    width: 100%;
    padding: 24px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-description {
    font-size: 18px;
  }
}

@media (max-width: 1200px) {
  .hero-frame {
    width: 50%;
    padding: 24px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 38px;
    padding-right: 32px;
    margin-left: 50px;
  }

  .hero-description {
    font-size: 12px;
    line-height: 30px;
    padding-right: 32px;
    margin-left: 50px;
  }
}

@media (max-width: 1024px) {
  .hero-frame {
    align-items: flex-start;
    text-align: left;
  }
}


/* ======================== */
/* === Mobile Section ==== */
/* ======================== */
.campaign-mobile {
  display: none;
}

.mobile-campaign-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #F16B50;
  padding-bottom: 24px;
}

.mobile-hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.mobile-logo {
  background: linear-gradient(
    96.81deg,
    #DEE1E3 0%,
    #FFFBE6 30.56%,
    #D4CBBF 71.51%,
    #EDECEC 95.73%,
    #D6D4BA 119.95%
  );
  border-radius: 0 0 16px 16px;
  padding: 16px;
}

.mobile-logo img {
  width: 144px;
  display: block;
  margin: 0 auto;
}

.mobile-hero-title {
  font-family: 'Tilt Neon', sans-serif;
  font-size: 32px;
  color: #1D2D3A;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 22px;
}

.mobile-hero-description {
  font-size: 20px;
  line-height: 24px;
  color: #1D2D3A;
  text-align: center;
  margin: 12px 30px 0;
}

/* ======================== */
/* === Media Queries ===== */
/* ======================== */
@media (max-width: 768px) {
  .campaign-desktop {
    display: none;
  }

  .campaign-mobile {
    display: block;
  }
}

/* Ipad Pro */
@media only screen
and (min-device-width: 1024px)
and (max-device-width: 1366px) {
  .campaign-desktop { display: none; }
  .campaign-mobile { display: block; }
}

/* Ipad Air */
@media only screen
and (min-device-width: 820px)
and (max-device-width: 1180px) {
  .campaign-desktop { display: none; }
  .campaign-mobile { display: block; }
}

/*******************************    Cards Section      ***************************************/

.dawnzera-section {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  font-family: agenda, -apple-system, Roboto, Helvetica, sans-serif;
  position: relative;
  z-index: -1;

  @media (max-width: 375px) {
    &>div.container {
      display: flex;
      flex-direction: column;
    }
  }

  .container {
    @media (max-width: 767px) {
      display: flex;
      flex-direction: column;
    }
  }
}

.dawnzera-heading {
  font-family: 'Tilt Neon', sans-serif;
  font-size: 40px;
  line-height: 54px;
  color: #1d2d3a;
  text-align: center;
  max-width: 1024px;
  margin: 0 auto;
  font-weight: 400;
  padding: 70px 20px 20px;
}

.dawnzera-cards {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
}

.gradient-border-wrapper {
  background: linear-gradient(90deg, #DEE1E3, #FFFBE6, #D4CBBF, #EDECEC, #D6D4BA);
  padding: 8px;
  border-radius: 20px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.dawnzera-card {
  border-radius: 12px;
  text-align: center;
  background: #fff;
  padding: 80px 20px 30px; /* more top padding for the icon overlap */
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  box-sizing: border-box;
}

/* New wrapper to vertically center content */
.card-content {
  flex: 1;
  display: flex;
  justify-content: center;
  text-align: center;

  p {
    font-size: 20px;
  }
}

.dawnzera-card .icon-wrapper {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 125px;
  border-radius: 24px;
}

.dawnzera-card img {
  width: 100%;
  height: auto;
}

.dawnzera-card p {
  font-size: 20px;
  line-height: 24px;
  color: #515861;
}

.dawnzera-footnote {
  color: #515861;
  font-family: agenda, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.dawnzera-subtext {
  font-size: 18px;
  color: #515861;
  text-align: center;
  max-width: 1134px;
  margin-top: 10px;
  margin-bottom: 15px;
  padding: 0 16px;
}

@media (max-width: 767px) {
  .dawnzera-subtext {
    margin-top: 25px;
    margin-bottom: 10px;
  }
}

.dawnzera-footer-cta {
  background: #fff;
  border-radius: 12px;
  padding: 36px 24px;
  max-width: 1134px;
  font-size: 18px;
  text-align: center;
  color: #515861;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  text-wrap-mode: nowrap;
  white-space: nowrap;
  justify-content: center;
  font-weight: 700;
  flex-direction: row;
}

/* =============== Responsive =============== */

@media (min-width: 768px) {
  .dawnzera-cards {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 16px;
  }

  .dawnzera-heading {
    font-size: 40px;
    line-height: 54px;
    padding: 80px;
  }

  .dawnzera-card {
    max-width: 367px;
    width: auto;
    padding: 60px 16px 16px 16px;
  }

  .dawnzera-card p {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .dawnzera-heading {
    font-size: 28px;
    line-height: 36px;
    padding: 40px 16px 0;
    margin-bottom: 45px;
    text-align: left;
  }

  .dawnzera-card {
    width: 80vw;
    padding: 55px 16px 16px 16px;
  }

  .dawnzera-footer-cta {
    font-size: 20px;
    padding: 36px 24px;
    width: 100%;
    max-width: 100%;
    line-height: 22px;
    font-weight: 700;
    flex-direction: column;
  }

  .dawnzera-subtext {
    font-size: 18px;
    padding: 0 16px;
  }
}

@media only screen
and (device-width: 390px)
and (device-height: 844px)
and (-webkit-device-pixel-ratio: 3) {

  .dawnzera-footer-cta {
    width: 330px;
  }

}

/*******************************    Main CTA Section      ***************************************/

/* Wrapper Section */

.cta-section {
  margin: 0px auto;
  width: 100%;
  height: 136px;
  flex-shrink: 0;
  margin-bottom: -80px;
  margin-top: 70px;
  position: relative;
  z-index: 9;
  display: flex;
  justify-content: center;

  @media (max-width: 768px) {
    width: 85%;
  }
}

/* CTA Button */
.cta-button {
  position: relative;
  width: fit-content;
  height: 136px;
  background: #F16B50;
  border: 8px solid #B95643;
  box-shadow:
    2px 2px 16px rgba(85, 26, 7, 0.8),
    inset -1.5px -1.5px 1.5px rgba(255, 255, 255, 0.4),
    inset -1.5px 1.5px 1.5px rgba(255, 255, 255, 0.4);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Glow Effect */
.cta-glow {
  position: absolute;
  width: 500px;
  height: 131px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  filter: blur(1px);
  border-radius: 2.375rem;
  mix-blend-mode: normal;
  pointer-events: none;
  top: 2px;
}

/* CTA Text */
.cta-text {
  font-family: agenda, -apple-system, Roboto, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 36px;
  text-align: center;
  color: #FFFFFF;
  width: 100%;
  max-width: 490px;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 600px) {
  .cta-button {
    height: 100px;
    border-radius: 32px;
    right: 5px;
  }

  .cta-glow {
    border-radius: 29px;
    height: 5.875rem;
    top: 0.1875rem;
    width: 98%;
    left: -0.125rem;
  }

  .cta-text {
    font-size: 20px;
    line-height: 26px;
  }
}

/*******************************    Info Section      ***************************************/

.info-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  /* max-width: 1134px; */
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
}

/* H2 Style */
.info-heading {
  font-family: 'Tilt Neon', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 48px;
  line-height: 54px;
  text-align: center;
  color: #F16B50;
  max-width: 724px;
  width: 100%;
  margin: 0;
}

/* H3 Style */
.subheading {
  font-family: 'Tilt Neon', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 44px;
  text-align: center;
  color: #1D2D3A;
  width: 100%;
  margin: 0;
}

/* ===== Responsive for smaller screens ===== */
@media (max-width: 768px) {
  .info-heading {
    font-size: 38px;
    line-height: normal;
  }

  .subheading {
    font-size: 28px;
    line-height: 34px;
  }
}

/*******************************    Form Section      ***************************************/

.background-wrapper {
  background-image: url(../../dawnzera/images/brickwall.svg);
  padding-top: 8.75rem;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 100vh;

  @media (max-width: 600px) {
    padding-top: 5.3125rem;
  }

  @media (min-width: 601px) and (max-width: 767px) {
    padding-top: 7.1875rem;
  }
}

.form-container {
  /* background-color: aliceblue; */
  /* background-image: url(); */

  /* padding: 40px 24px; */
  border-radius: 8px;
  gap: 0px;
  /* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);  */

  .webform-submission-form {
    background-color: #fff;
    padding: 0px;
    margin: 80px auto;
  }

  @media (max-width: 767px) {
    .webform-submission-form {
      margin: 40px auto;
    }
  }
}

.form-section {
  max-width: 768px;
  margin: 60px auto;
  font-family: sans-serif;
  color: #333;
  padding: 0 16px;
}

.form-intro {
  font-size: 16px;
  margin-bottom: 16px;
}

.form-highlight {
  color: #d63d00;
  font-weight: bold;
  margin-bottom: 24px;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group,
.form-group-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-row {
  flex-direction: row;
  gap: 16px;
}

.form-group-row .form-group {
  flex: 1;
}

/* label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
} */

input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #999;
  border-radius: 4px;
}

fieldset {
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

legend {
  font-weight: bold;
  margin-bottom: 8px;
}

.highlight-box {
  background-color: #fde8dd;
  padding: 16px;
  border-left: 5px solid #d63d00;
  font-size: 14px;
}

.disclaimer {
  font-size: 12px;
  color: #555;
}

.disclaimer a {
  color: #1d2d3a;
  text-decoration: underline;
}

.submit-btn {
  background-color: #1d2d3a;
  color: white;
  font-weight: bold;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  align-self: flex-start;
}

/*******************************    Every Step Section      ***************************************/

.every-step-section {
  background-color: #ed6e4f;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  color: #2e2f3e;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 80px;

  @media (max-width: 983px) {
    gap: 40px;
    padding: 40px 20px;
  }

}

@media (max-width: 767px) {
  .every-step-section {
    padding: 40px 20px;
  }
}

.header {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  text-align: left;
  padding-right: 40px;

  @media (max-width: 983px) {
    padding-right: 0px;
  }
}

.logo-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  gap: 40px;
  flex-wrap: wrap;

  @media (max-width: 983px) {
    gap: 24px;
    justify-content: flex-start !important;
  }
}


.logo {
  width: 400px;
  object-fit: contain;

  @media (min-width: 984px) {
    height: 112px;
  }
}

.tagline h2 {
  color: white;
  font-size: clamp(2.625rem, 4vw, 1.75rem);
  font-weight: 400;
  margin: 0;
  line-height: 1.4;
  display: flex;
  flex-direction: column;

  @media (min-width: 984px) {
    font-size: 48px;
  }
}

.highlight {
  font-weight: 600;
}

.content-card {
  background: #fff;
  border-radius: 24px;
  max-width: 1134px;
  margin: 0 auto;
  padding: 30px 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

  @media (max-width: 983px) {
    padding: 24px !important;
    width: auto;
  }
}

.small-text {
  font-size: 20px;
  color: var(--color-steel, #515861);
  margin-bottom: 25px;
  line-height: 22px;
}

.main-cta {
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 24px;
  font-family: 'Tilt Neon', sans-serif;

}

@media (min-width: 1025px) {
  .main-cta {
    font-size: 32px;
    line-height: 36px;
  }

  .contact-info {
    font-size: 32px;
    line-height: 36px;
    font-family: 'Tilt Neon', sans-serif;
  }

}

.orange-text {
  color: #f16141;
  font-weight: 500;
}



.contact-info {
  color: var(--color-charcol, #1D2D3A);

  a {
    color: var(--color-charcol, #1D2D3A);
    font-weight: bold;
    text-decoration: underline;
  }
}

.phone {
  color: #f16141;
  font-weight: bold;
}

/* ---------- Mobile Styles ---------- */
@media screen and (min-width: 768px) {
  .header {
    flex-direction: row;
    text-align: left;
    width: 1134px;
    height: auto;
    max-width: 100%;
  }

  .logo-text {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: left;
  }

  .tagline h2 {
    font-weight: 400;
    line-height: 54px;
    display: flex;
    flex-direction: column;
  }

}

@media (min-width: 1025px) {
  .content-card {
    padding: 60px;
    border-radius: 40px;
    border: 8px solid var(--SILVER-GRADIENT, #DEE1E3);
    background: var(--color-white, #FFF);
    box-shadow: 0px 4px 24px -4px rgba(81, 88, 97, 0.16);
  }

  .small-text {
    color: var(--color-steel, #515861);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
  }
}


@media screen and (max-width: 767px) {


  .logo-text {
    flex-direction: column;
    align-items: flex-start;
  }

  .tagline h2 {
    text-align: left;
    font-size: 28px;
  }

}

@media  (max-width: 1024px) {
  .content-card {
    padding: 40px;
    border-radius: 24px;
    border: 8px solid var(--SILVER-GRADIENT, #DEE1E3);
    background: var(--White, #FFF);
    box-shadow: 0px 4px 24px -4px rgba(81, 88, 97, 0.16);
  }


  .contact-info {
    font-size: 20px;
    font-family: 'Tilt Neon', sans-serif;
    font-style: normal;
  }
}


SILVER GRADIENT

/* Default: hide mobile version */
.mobile-only {
  display: none;
}

/* Show desktop by default */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

/* On screens ≤ 767px, switch */
@media screen and (max-width: 767px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
}

/*******************************    ISI Section      ***************************************/
.isi-section {
  width: 100%;
  background: #fff;
  box-shadow: 0px -4px 24px -4px rgba(81, 88, 97, 0.08);
  padding: 40px 392px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 999999;
}

.isi-container {
  max-width: 1134px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.isi-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.isi-heading {
  font-family: agenda, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 22px;
  color: #C94808;
  margin-bottom: 1rem;
}

.isi-subheading {
  font-family: agenda, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: #515861;
  margin: 0;
}

.isi-text {
  font-family: agenda, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  color: #515861;
  margin: 0;
}

.isi-text.pink {
  color: #FF00B7;
}

.isi-subsection {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.isi-subsection-2 {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}

.isi-prescription {
  font-family: 'Proxima Nova', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: #C94808;
}

.isi-prescription a {
  color: inherit;
  text-decoration: underline; /* optional, for link styling */
}

.isi-footer-content p a {
  color: #C94808;
}

@media screen and (max-width: 768px) {
  .isi-section {
    padding: 24px 16px;
  }

  .isi-container {
    gap: 20px;
  }

  .isi-heading {
    font-size: 1.25rem;
    line-height: 20px;
  }

  .isi-subheading {
    font-size: 14px;
    line-height: 18px;
  }

  .isi-text,
  .isi-prescription {
    font-size: 14px;
    line-height: 18px;
  }

  .isi-subsection {
    margin-top: 8px;
    gap: 2px;
  }

  .isi-subsection-2 {
    margin-top: 8px;
    gap: 2px;
  }

  .isi-prescription {
    margin-top: 24px;
  }
}

.main-container-internal {
  & .internal-bg-wire-home-top {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    aspect-ratio: 9 / 2;
    background-repeat: no-repeat;
    --container-max-content-width: 1134px;
    background-position: calc(((100vw - var(--container-max-content-width)) /2) - 8vw ) 0px;
    background-size: auto;
    z-index: 0;
    pointer-events: none;
    background-size: 97%;
    background-position-x: right;
    height: 100%;
    background-image: url(../../dawnzera/images/vector-background/bg-wire-home-mobile.svg);
    background-size: contain;
    top: -27vw;

    @media (min-width: 625px) {
      background-image: url(../../dawnzera/images/vector-background/bg-horizontal-hompage.svg);
      top: -13vw;
      background-size: 98vw;
    }

    @media (min-width: 1360px) {
      top: -13vw;
      background-size: 97%;
    }

    @media (min-width: 1441px) {
      top: -12.5vw;
      background-size: 96vw;
      background-position: left 4vw top;
    }

    @media (min-width: 1600px) {
      background-size: 95vw;
      background-position: left 6vw top;
    }

    @media (min-width: 1800px) {
      background-size: 93vw;
      background-position: left 7.5vw top;
    }

    @media (min-width: 2000px) {
      background-size: 90vw;
      background-position: top right;
    }

  }
  & .internal-bg-wire-home-bottom {
    position: absolute;
    height: 110%;
    left: 0;
    width: 100%;
    aspect-ratio: 9 / 2;
    background-image: url(../../dawnzera/images/vector-background/bg-vertical-hp.svg);
    background-repeat: no-repeat;
    --container-max-content-width: 1134px;
    background-position: calc(((100vw - var(--container-max-content-width)) /2) - 8vw ) 0px;
    background-size: auto;
    z-index: 1;
    pointer-events: none;
    top: 600px;
    display: none;

    @media (min-width: 1300px) {
      /* background-size: 93% 97%; */
      background-size: auto 97%;
      top: 38vw;
      background-position: left 1.5vw top;
      display: block;
      height: 116%;
    }

    @media (min-width: 1360px) {
      background-size: 93% 97%;
      top: 38vw;
      background-position: left 2.3vw top;
      display: block;
      height: 116%;
    }

    @media (min-width: 1390px) {
      top: 38vw;
      background-position: left 2.5vw top;
      background-size: 93% 100%;
      height: 117%;
      display: block;
    }

    @media (min-width: 1441px) {
      background-position: left 3.5vw top;
      top: 36vw;
      background-size: 93% 100%;
    }

    @media (min-width: 1490px) {
      background-position: left 3.5vw top;
      top: 36vw;
      background-size: contain;
    }

    @media (min-width: 1600px) {
      background-position: left 6vw top;
      top: 36vw;
    }

    @media (min-width: 1800px) {
      background-position: left 7.5vw top;
      top: 36vw;
    }

    @media (min-width: 2000px) {
      top: 35vw;
      background-position: left 10vw top;
    }

    @media (min-width: 2300px) {
      background-size: auto 123%;
    }



  }
}
#webform-submission-homepage-node-1-add-form #edit-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.isi-section-error {
  padding: 40px 0px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.isi-tray__body {
  overflow-y: auto;
}

@media (max-width: 767px) {
  .isi-section-error {
    padding: 24px 0px;
  }
}

.info-section-wrapper {
  position: relative;
  z-index: 1;
  background: #fff;
}

.tan-section {
  height: 24px;
  background: linear-gradient(
    96.81deg,
    #DEE1E3 0%,
    #FFFBE6 30.56%,
    #D4CBBF 71.51%,
    #EDECEC 95.73%,
    #D6D4BA 119.95%
  );
  position: relative;
  z-index: 1;
}

#ot-pc-desc,#ot-pc-title,#ot-category-title{
   color: #A20067 !important;
}

.ot-pc-refuse-all-handler,.save-preference-btn-handler{
   background-color: #A20067 !important;
   border-color: #A20067 !important;
}

footer {
  position: relative;
  z-index: 1;
}

.font-26 {
  font-size: 20px;
}

.signup-btn {
  background-color: var(--color-coral, #F8B095);
  border: var(--color-coral, #F8B095);
  line-height: 1.375rem;
  height: 3rem;
}

.form-type-radios {
  .form-required::after {
    content: '(Select 1)';
    font-size: 20px;
    padding-left: 1rem;
    vertical-align: baseline;
    width: auto;
    height: auto;
    background-position: left top 0.126rem;
  }
}

