/**
 * @file
 * Cobalt theme styling for quiz webforms + confirmation pages.
 * Mobile-first — all defaults target the smallest viewport, then layer
 * up via min-width media queries.
 *
 * Two scopes:
 *   1. `.webform-type-quiz-question` — renders wherever a quiz question
 *      appears (in-progress form embedded via webform_embed paragraph).
 *   2. `.quiz-result-page` — the wrapper emitted by the shared module's
 *      quiz-result-page.html.twig template (confirmation page only).
 */

/* ============================================================
 * 1. In-progress quiz form
 * ============================================================ */

/* White text on navy (.fc.bg-primary) backgrounds — legends, labels,
 * progress titles. Scoped to the quiz so we don't fight other widgets.
 */

.fc.bg-primary .webform-type-quiz-question .fieldset-legend,
.fc.bg-primary .webform-type-quiz-question legend,
.fc.bg-primary .webform-type-quiz-question label,
.fc.bg-primary .webform-progress-tracker .progress-title,
.fc.bg-secondary .webform-type-quiz-question .fieldset-legend,
.fc.bg-secondary .webform-type-quiz-question legend,
.fc.bg-secondary .webform-type-quiz-question label,
.fc.bg-secondary .webform-progress-tracker .progress-title,
.fc.bg-tertiary .webform-type-quiz-question .fieldset-legend,
.fc.bg-tertiary .webform-type-quiz-question legend,
.fc.bg-tertiary .webform-type-quiz-question label,
.fc.bg-tertiary .webform-progress-tracker .progress-title,
.fc.primary-gradient .webform-type-quiz-question .fieldset-legend,
.fc.primary-gradient .webform-type-quiz-question legend,
.fc.primary-gradient .webform-type-quiz-question label,
.fc.primary-gradient .webform-progress-tracker .progress-title,
.fc.secondary-gradient .webform-type-quiz-question .fieldset-legend,
.fc.secondary-gradient .webform-type-quiz-question legend,
.fc.secondary-gradient .webform-type-quiz-question label,
.fc.secondary-gradient .webform-progress-tracker .progress-title,
.fc.gray-gradient .webform-type-quiz-question .fieldset-legend,
.fc.gray-gradient .webform-type-quiz-question legend,
.fc.gray-gradient .webform-type-quiz-question label,
.fc.gray-gradient .webform-progress-tracker .progress-title,
.fc.bg-gray .webform-type-quiz-question .fieldset-legend,
.fc.bg-gray .webform-type-quiz-question legend,
.fc.bg-gray .webform-type-quiz-question label,
.fc.bg-gray .webform-progress-tracker .progress-title
 {
  color: #fff;
}

/* ----- Question fieldset ------------------------------------ */

.webform-type-quiz-question {
  border: 0;
  margin: 1rem 0;
  padding: 0;
}

.webform-type-quiz-question legend {
 
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .webform-type-quiz-question legend {
    font-size: 1.35rem;
  }
}

/* Stack answers 1-col on mobile, 2-col on tablet+. Consistent row height
 * via `align-items: stretch` so each option card is the same height.
 */
.webform-type-quiz-question .fieldset-wrapper {
  align-items: stretch;
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .webform-type-quiz-question .fieldset-wrapper {
    gap: 0.75rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ----- Radio + label pair rendered as a single clickable card ------ */

/*
 * The rendered HTML is:
 *   <input type="radio" ...> <label for="..." class="option">...</label>
 * — siblings inside .fieldset-wrapper with no wrapper. We style each
 * (radio, label) pair as one card using subgrid and the adjacent-sibling
 * selector. The native radio is hidden visually but stays in the tab
 * order; a custom dot rendered inside the label stands in for it.
 */

.webform-type-quiz-question .fieldset-wrapper > input[type='radio'] {
  /* Visually hidden but keyboard-reachable. */
  clip: rect(0, 0, 0, 0);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.webform-type-quiz-question .fieldset-wrapper > label.option {
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  font-size: 0.95rem;
  gap: 0.75rem;
  line-height: 1.35;
  min-height: 100%;
  padding: 0.75rem 1rem;
  transition: background-color 150ms ease, border-color 150ms ease;
  width: 100%;
}
.bg-white .webform-type-quiz-question .fieldset-wrapper > label.option,.bg-lightgray .webform-type-quiz-question .fieldset-wrapper > label.option {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.bg-white .webform-type-quiz-question .fieldset-wrapper > label.option:hover,.bg-lightgray .webform-type-quiz-question .fieldset-wrapper > label.option:hover {
  border: 1px solid rgba(0, 0, 0, 0.2);
}

/* Custom circular indicator drawn inside the label. Fixed-size so every
 * row is visually identical regardless of label length.
 */
.webform-type-quiz-question .fieldset-wrapper > label.option::before {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  content: '';
  display: inline-block;
  flex-shrink: 0;
  height: 1.1rem;
  margin-top: 0.1rem;
  transition: border-color 150ms ease, background-color 150ms ease, box-shadow 150ms ease;
  width: 1.1rem;
}
.bg-white .webform-type-quiz-question .fieldset-wrapper > label.option::before,.bg-lightgray .webform-type-quiz-question .fieldset-wrapper > label.option::before {
  border: 2px solid rgba(0, 0, 0, 0.1);
}

/* Hover + focus-visible states (focus-visible applies when the hidden
 * radio receives keyboard focus — adjacent-sibling selector targets the
 * companion label). */
.webform-type-quiz-question .fieldset-wrapper > label.option:hover,
.webform-type-quiz-question .fieldset-wrapper > input[type='radio']:focus-visible + label.option {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
}

/* Selected state: checked radio ⇒ next-sibling label.
 * Fill the custom dot with the Cobalt blue and lift the card. */
.webform-type-quiz-question .fieldset-wrapper > input[type='radio']:checked + label.option {
  background: rgba(255, 255, 255, 0.22);
  border-color: #fff;
}
.bg-white .webform-type-quiz-question .fieldset-wrapper > input[type='radio']:checked + label.option,.bg-lightgray .webform-type-quiz-question .fieldset-wrapper > input[type='radio']:checked + label.option {
  background: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.1);
}

.webform-type-quiz-question .fieldset-wrapper > input[type='radio']:checked + label.option::before {
  background: var(--cobalt-blue, #1268b2);
  border-color: #fff;
  box-shadow: inset 0 0 0 2px #fff;
}
.bg-white .webform-type-quiz-question .fieldset-wrapper > input[type='radio']:checked + label.option::before,.bg-lightgray .webform-type-quiz-question .fieldset-wrapper > input[type='radio']:checked + label.option::before {
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 0 0 2px #fff;
}

/* ----- Inline validation error on a quiz question --------------- */

/*
 * Drupal's inline_form_errors renders the validation message as a bare
 * <div> inside the fieldset-wrapper — that dropped it into the first
 * grid cell of the answer grid, shoving "Option 1" out of place. Span
 * the full row and style it as a clear alert banner.
 *
 * Hiding the separate page-level "N errors have been found" summary too
 * (the inline message is sufficient, and the top-summary wasn't scoped
 * to the quiz so it rendered in the main content column at the top of
 * the form — noisy and redundant with the inline message).
 */

.webform-type-quiz-question .fieldset-wrapper > div:not(.form-item) {
  align-items: center;
  background: rgba(255, 107, 107, 0.18);
  border: 1px solid rgba(255, 107, 107, 0.55);
  border-radius: 4px;
  color: #fff;
  display: flex;
  font-size: 0.9rem;
  font-weight: 600;
  gap: 0.6rem;
  grid-column: 1 / -1;
  margin-bottom: 0.25rem;
  padding: 0.7rem 0.95rem;
}
.bg-white .webform-type-quiz-question .fieldset-wrapper > div:not(.form-item),.bg-lightgray .webform-type-quiz-question .fieldset-wrapper > div:not(.form-item) {
  color: var(--color-gray);
}

.webform-type-quiz-question .fieldset-wrapper > div:not(.form-item)::before {
  background: #fff;
  color: #b32424;
  content: '!';
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 800;
  height: 1.25rem;
  line-height: 1;
  width: 1.25rem;
}

/* Suppress Drupal's page-level error summary block on any page rendering
 * a quiz question. Drupal renders the "N errors have been found" block
 * in the page's global `[data-drupal-messages]` region, not inside the
 * form — so it has to be hidden at the page scope. The inline error
 * banner inside the fieldset is the source of truth; the redundant
 * top-level summary adds noise and sits visually disconnected from the
 * form it describes.
 *
 * Scoped via `body:has(.webform-type-quiz-question)` so only quiz pages
 * suppress the summary — the confirmation page and any non-quiz page
 * keep their messaging intact. Targets the error-labelled content
 * block specifically so status / warning messages still render. */
body:has(.webform-type-quiz-question) [data-drupal-messages] > [aria-label='Error message'] {
  display: none;
}

/* The fieldset gets an `.error` class when invalid — lift the legend
 * to make the state obvious at a glance. */
.webform-type-quiz-question.error legend .fieldset-legend,
.webform-type-quiz-question[aria-invalid='true'] legend .fieldset-legend {
  color: #fff;
}
.bg-white .webform-type-quiz-question.error legend .fieldset-legend,.bg-lightgray .webform-type-quiz-question.error legend .fieldset-legend,
.bg-white .webform-type-quiz-question[aria-invalid='true'] legend .fieldset-legend,.bg-lightgray .webform-type-quiz-question[aria-invalid='true'] legend .fieldset-legend {
  color: var(--color-gray);
}

.webform-type-quiz-question.error legend .fieldset-legend::after,
.webform-type-quiz-question[aria-invalid='true'] legend .fieldset-legend::after {
  color: #ff8888;
  content: ' — please choose one';
  font-weight: 400;
  font-size: 0.85rem;
  margin-inline-start: 0.5rem;
}

/* ----- Wizard navigation buttons --------------------------------- */

.webform-type-quiz-question ~ .form-actions,
.js-form-type-webform-wizard-page ~ .form-actions {
  margin-top: 1.5rem;
}

/* ----- Contact wizard page + generic form controls -------------- */

/*
 * The contact page elements (first_name, last_name, email, postal_code,
 * phone, optin) render inside a `[data-webform-key="contact"]` wrapper
 * with no per-item form-item wrappers — labels and inputs are direct
 * siblings. Scope to the contact wrapper + any Cobalt quiz webform
 * rendered on a navy background.
 */

/*.fc.bg-primary [data-webform-key='contact'] > label {
  color: #fff;
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.fc.bg-primary [data-webform-key='contact'] > label.form-required::after {
  color: var(--cobalt-blue, #1268b2);
  content: ' *';
  font-weight: 700;
}

.fc.bg-primary [data-webform-key='contact'] {
  display: grid;
  gap: 1rem 1.25rem;
  grid-template-columns: 1fr;
  max-width: 40rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .fc.bg-primary [data-webform-key='contact'] {
    grid-template-columns: repeat(2, 1fr);
  }

  .fc.bg-primary [data-webform-key='contact'] > label[for='edit-email-address'],
  .fc.bg-primary [data-webform-key='contact'] > input#edit-email-address,
  .fc.bg-primary [data-webform-key='contact'] > label[for='edit-postal-code'],
  .fc.bg-primary [data-webform-key='contact'] > input#edit-postal-code,
  .fc.bg-primary [data-webform-key='contact'] > label[for='edit-phone'],
  .fc.bg-primary [data-webform-key='contact'] > input#edit-phone,
  .fc.bg-primary [data-webform-key='contact'] > input#edit-optin,
  .fc.bg-primary [data-webform-key='contact'] > label[for='edit-optin'] {
    grid-column: 1 / -1;
  }
}*/

/*
 * Each <label> is paired with the <input> that immediately follows it.
 * Collapse their default margins so each label+input reads as a unit.
 */
.fc [data-webform-key='contact'] > input {
  margin-bottom: 0;
}

.fc [data-webform-key='contact'] > label + input {
  margin-top: -0.35rem;
}

/* Styled text / email / tel inputs on the contact page. */
.fc [data-webform-key='contact'] input[type='text'],
.fc [data-webform-key='contact'] input[type='email'],
.fc [data-webform-key='contact'] input[type='tel'] {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  box-sizing: border-box;
  color: var(--cobalt-navy, #162d57);
  display: block;
  font-size: 1rem;
  line-height: 1.4;
  padding: 0.65rem 0.85rem;
  transition: border-color 150ms ease, box-shadow 150ms ease;
  width: 100%;
}

.fc [data-webform-key='contact'] input[type='text']:focus,
.fc [data-webform-key='contact'] input[type='email']:focus,
.fc [data-webform-key='contact'] input[type='tel']:focus {
  border-color: var(--cobalt-blue, #1268b2);
  box-shadow: 0 0 0 3px rgba(18, 104, 178, 0.35);
  outline: none;
}

/* Error state (set by Drupal's FormBuilder on required-empty fields). */
.fc [data-webform-key='contact'] input.error,
.fc [data-webform-key='contact'] .form-item--error input {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.25);
}

/* ----- Opt-in checkbox ----------------------------------------- */

.fc [data-webform-key='contact'] input[type='checkbox'] {
  /* Hide native, draw custom. */
  clip: rect(0, 0, 0, 0);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.fc [data-webform-key='contact'] input[type='checkbox'] + label {
  /* Override the uppercase label convention for this one — reads as a
   * sentence, not a field label. */
  align-items: flex-start;
  cursor: pointer;
  display: flex;
  font-size: 0.9rem;
  font-weight: 400;
  gap: 0.75rem;
  letter-spacing: normal;
  line-height: 1.4;
  margin: 0.25rem 0 0;
  text-transform: none;
}

.fc [data-webform-key='contact'] input[type='checkbox'] + label::before {
  background: transparent;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  content: '';
  display: inline-block;
  flex-shrink: 0;
  height: 1.1rem;
  margin-top: 0.15rem;
  transition: background-color 150ms ease, border-color 150ms ease;
  width: 1.1rem;
}

.fc [data-webform-key='contact'] input[type='checkbox']:checked + label::before {
  background: var(--cobalt-blue, #1268b2);
  border-color: #fff;
}

.fc [data-webform-key='contact'] input[type='checkbox']:checked + label::after {
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  content: '';
  display: block;
  height: 0.35rem;
  left: 0.22rem;
  position: absolute;
  top: 0.5rem;
  transform: rotate(-45deg);
  width: 0.6rem;
}

.fc [data-webform-key='contact'] input[type='checkbox']:focus-visible + label::before {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
}

.fc [data-webform-key='contact'] input[type='checkbox'] + label {
  position: relative;
}

/* ============================================================
 * 2. Progress tracker (mobile-first)
 * ============================================================ */

/* Mobile: compact dots only, horizontally scrollable if overflow, no
 * titles. Active step's title shown as a single line above the markers.
 */

.webform-progress-tracker {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.webform-progress-tracker.progress-tracker {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.35rem;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
}

.webform-progress-tracker.progress-tracker::-webkit-scrollbar {
  display: none;
}

.webform-progress-tracker .progress-step {
  flex: 0 0 auto;
  position: relative;
}

.webform-progress-tracker .progress-marker {
  align-items: center;
  background: rgba(255, 255, 255, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 0.75rem;
  font-weight: 700;
  height: 1.6rem;
  justify-content: center;
  line-height: 1;
  margin: 0 auto;
  position: relative;
  width: 1.6rem;
  z-index: 1;
}
.bg-white .webform-progress-tracker .progress-marker,.bg-lightgray .webform-progress-tracker .progress-marker {
  background: rgba(255, 255, 255, 0.25);
  border: 0px;

}

.webform-progress-tracker .progress-marker::before {
  content: attr(data-text);
}

/* Remove Webform's default connecting-line pseudo-elements — we draw our
 * own below, properly aligned to the marker's vertical center. */
.webform-progress-tracker .progress-marker::after {
  display: none;
}

.webform-progress-tracker .progress-step.is-active .progress-marker {
  background: var(--cobalt-blue, #1268b2);
  border-color: #fff;
}

.bg-white .webform-progress-tracker .progress-step.is-active .progress-marker,.bg-lightgray .webform-progress-tracker .progress-step.is-active .progress-marker {
  border-color: #999;
}

.webform-progress-tracker .progress-step.is-complete .progress-marker {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
  color: var(--cobalt-navy, #162d57);
}
.bg-white .webform-progress-tracker .progress-step.is-complete .progress-marker,.bg-lightgray .webform-progress-tracker .progress-step.is-complete .progress-marker {
	background: #333;
}

/* Mobile: hide titles, hide connecting lines entirely (the scroll gap
 * is enough affordance). */
.webform-progress-tracker .progress-text,
.webform-progress-tracker .progress-title {
  display: none;
}

/* Mobile-only: show the active step's title below the markers via a
 * sibling text element. Since we can't inject new markup, reveal the
 * active step's own title inline as a compact caption. */
@media (max-width: 639px) {
  .webform-progress-tracker .progress-step.is-active .progress-text,
  .webform-progress-tracker .progress-step.is-active .progress-title {
    color: #fff;
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    left: 50%;
    margin-top: 0.35rem;
    position: absolute;
    top: 100%;
    transform: translateX(-50%);
    white-space: nowrap;
  }
}

/* Tablet+: full titles below each marker, grow spacing, connect markers
 * with a horizontal line that spans from the center of one marker to the
 * center of the next. The line sits behind the markers (z-index 0) and
 * is drawn as the ::before pseudo-element of each non-last step. */
@media (min-width: 640px) {
  .webform-progress-tracker.progress-tracker {
    gap: 0;
    margin-bottom: 2.5rem;
    overflow: visible;
  }

  .webform-progress-tracker .progress-step {
    flex: 1 1 0;
    text-align: center;
  }

  .webform-progress-tracker .progress-step:not(:last-child)::before {
    background: rgba(255, 255, 255, 0.3);
    content: '';
    height: 2px;
    left: 50%;
    position: absolute;
    right: -50%;
    top: calc(0.8rem - 1px);
    z-index: 0;
  }

  .bg-white .webform-progress-tracker .progress-step:not(:last-child)::before,.bg-lightgray .webform-progress-tracker .progress-step:not(:last-child)::before {
    background: #999;
  }

  .webform-progress-tracker .progress-step.is-complete:not(:last-child)::before {
    background: rgba(255, 255, 255, 0.9);
  }
  .bg-white .webform-progress-tracker .progress-step.is-complete:not(:last-child)::before,.bg-lightgray .webform-progress-tracker .progress-step.is-complete:not(:last-child)::before {
    background: rgba(0, 0, 0, 0.5);
  }

  .webform-progress-tracker .progress-text,
  .webform-progress-tracker .progress-title {
    display: block;
    margin-top: 0.35rem;
  }

  .webform-progress-tracker .progress-title {
    font-size: 0.75rem;
    line-height: 1.25;
  }
}

@media (min-width: 1024px) {
  .webform-progress-tracker .progress-marker {
    font-size: 0.85rem;
    height: 1.85rem;
    width: 1.85rem;
  }

  .webform-progress-tracker .progress-step:not(:last-child)::before {
    top: calc(0.925rem - 1px);
  }

  .webform-progress-tracker .progress-title {
    font-size: 0.85rem;
  }
}

/* ============================================================
 * 3. Confirmation page (mobile-first)
 * ============================================================ */

.quiz-result-page {
  margin: 0 auto;
  max-width: 72rem;
  padding: 2rem 1rem;
}

@media (min-width: 640px) {
  .quiz-result-page {
    padding: 3rem 1.5rem;
  }
}

.quiz-result-page__intro {
  margin-bottom: 2rem;
  text-align: center;
}

.quiz-result-page__intro h1,
.quiz-result-page__intro h2 {
  color: var(--cobalt-navy, #162d57);
  font-family: var(--font-secondary);
  text-transform: capitalize;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Winners stack on mobile, then grid up on wider screens. */
.quiz-result-page__winners {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .quiz-result-page__winners {
    gap: 2rem;
  }

  .quiz-result-page__winners--count-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .quiz-result-page__winners--count-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.quiz-result-page__winner {
  background: #fff;
  border: 1px solid var(--color-gray-200, #d3d4d9);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(22, 45, 87, 0.08);
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .quiz-result-page__winner {
    padding: 2rem;
  }
}

.quiz-result-page__winner h2 {
  color: var(--cobalt-navy, #162d57);
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
}

@media (min-width: 640px) {
  .quiz-result-page__winner h2 {
    font-size: 1.75rem;
  }
}

.quiz-result-page__winner .field--name-field-body {
  color: var(--color-gray-700, #3f4149);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.quiz-result-page__winner a[data-quiz-cta] {
  background: var(--cobalt-blue, #1268b2);
  border: 1px solid var(--cobalt-blue, #1268b2);
  border-radius: 2px;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0.25rem 0.25rem 0 0;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 150ms ease, border-color 150ms ease;
}

.quiz-result-page__winner a[data-quiz-cta]:hover,
.quiz-result-page__winner a[data-quiz-cta]:focus {
  background: var(--cobalt-navy, #162d57);
  border-color: var(--cobalt-navy, #162d57);
}

.quiz-result-page__winner a[data-quiz-cta='dealer'] {
  background: #fff;
  color: var(--cobalt-blue, #1268b2);
}

.quiz-result-page__winner a[data-quiz-cta='dealer']:hover,
.quiz-result-page__winner a[data-quiz-cta='dealer']:focus {
  background: var(--cobalt-navy, #162d57);
  color: #fff;
}

.quiz-result-page__outro {
  color: var(--color-gray-600, #5c5e69);
  font-size: 0.95rem;
  margin-top: 2rem;
  text-align: center;
}

.quiz-result-page__outro a {
  color: var(--cobalt-blue, #1268b2);
  font-weight: 600;
}

.fc-form-container .webform-submission-form input.webform-button--submit, .fc-form-container .webform-submission-form input.form-submit {
	padding: 0.75em 1em;
	margin: 0 0.25em;
    font-size: 0.85em;
    text-transform: unset;
    letter-spacing: 1px;
}
.fc-form-container .webform-submission-form input.webform-button--submit:hover, .fc-form-container .webform-submission-form input.form-submit:hover {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
}
.webform-type-quiz-question {
	min-width: unset !important;
	max-width: unset !important;
}

.webform-progress-tracker .progress-step.is-complete .progress-marker::before, .webform-progress-tracker .progress-step.is-complete:hover .progress-marker::before, .webform-progress-tracker .progress-step.is-complete .progress-marker::after {
	color: #fff;
}
.webform-progress-tracker .progress-title {
	text-transform: capitalize;
}
.fc-form-container .webform-submission-form .form-optin {
	gap: 1em;
}
.fc-form-container .webform-submission-form .form-optin label.option {
	display: flex;
}