/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

@font-face {
  font-family: 'CircularXX-Web';
  src: url("/fonts/66ba0780bf98e604403abbdf_CircularXX-Light.otf") format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'CircularXX-Web';
  src: url("/fonts/66ba0780eca7497b7d257132_CircularXX-Book.otf") format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'CircularXX-Web';
  src: url("/fonts/66ba078013f514e188adb1f6_CircularXX-Medium.otf") format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'CircularXX-Web';
  src: url("/fonts/66ba0780f9939310fc9f102b_CircularXX-Bold.otf") format('opentype');
  font-weight: 700;
  font-style: normal;
}

:root {
  /* Colors */
  --color-primary: #2D85FF; /* Primary Blue */
  --color-primary-dark: #143C55; /* Dark Blue */
  --color-secondary: #F5F5F4; /* Light Gray */
  --color-secondary-dark: #EBEBE9; /* Light Gray */
  --color-text-dark: #143C55; /* Dark Blue Text */
  --color-text-light: #6c757d; /* Lighter Gray Text */
  --color-border: #dee2e6; /* Gray Border */
  --color-black: #000000;
  --color-orange: #FF7E28;
  --color-light-blue: #EBF7FF;
  --color-white: #ffffff;
  --color-danger: #ab281f;
  --color-dark-gray: #666666; /* Dark Gray */
  --color-input-border: #ccc;

  /* Fonts */
  --font-family-base: 'CircularXX-Web', sans-serif;

  /* Spacing */
  --spacing-xs: 0.25rem; /* 4px */
  --spacing-sm: 0.5rem;  /* 8px */
  --spacing-md: 1rem;    /* 16px */
  --spacing-lg: 1.5rem;  /* 24px */
  --spacing-xl: 2rem;    /* 32px */
  --spacing-xxl: 3rem;   /* 48px */
  --spacing-3xl: 4rem;   /* 64px */
  --spacing-4xl: 5rem;   /* 80px */
  --spacing-5xl: 6rem;   /* 96px */
  --spacing-6xl: 7rem;   /* 112px */
  --spacing-7xl: 8rem;   /* 128px */
  --spacing-8xl: 9rem;   /* 144px */

  /* Borders */
  --border-radius-sm: 0.25rem; /* 4px */
  --border-radius-md: 0.5rem; /* 8px */
  --border-radius-lg: 1rem; /* 16px */
  --border-radius-xl: 1.5rem; /* 24px */
  --border-radius-xxl: 2rem; /* 32px */

  /* Shadows */
  --shadow-sm:
    0 1px 3px rgba(0, 0, 0, 0.05),    /* Original bottom part */
    0 -1px 2px -1px rgba(0, 0, 0, 0.03); /* Subtle top part */
  --shadow-md:
    0 4px 6px rgba(0, 0, 0, 0.1),     /* Original bottom part */
    0 -2px 4px -1px rgba(0, 0, 0, 0.06); /* Subtle top part */
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.15), /* Larger bottom part */
    0 -4px 8px -2px rgba(0, 0, 0, 0.08);   /* Larger subtle top part */
}

*, *::after, *::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 1rem;
  height: 100%
}

body {
  background-color: var(--color-secondary);
  color: var(--color-black);
  display: flex;
  font-family: var(--font-family-base);
  flex-direction: column;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

main {
  flex: 1;
  padding: var(--spacing-md) var(--spacing-md) var(--spacing-xxl);
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: var(--color-primary);
  text-decoration: underline;
}

h1, h2, h3 {
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: 2.7rem;
  font-weight: 500;
}

h2 {
  font-size: 2rem;
  line-height: 2.5rem;
}

h3 {
  font-size: 1.3rem;
}

ul {
  list-style: none;
}

.form-group {
  margin: var(--spacing-md) 0;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--color-input-border);
  border-radius: var(--border-radius-md) !important;
  font-size: 1.2rem !important;
  font-family: var(--font-family-base);
  height: 70px;
  padding: var(--spacing-lg) !important;
}

input:not([type=submit]):disabled,
select:disabled,
textarea:disabled {
  background-color: light-dark(rgba(239, 239, 239, 0.3), rgba(59, 59, 59, 0.3)) !important;
  border: 1px solid light-dark(rgb(204, 204, 204), rgb(51, 51, 51)) !important;
  color: light-dark(rgb(84, 84, 84), rgb(170, 170, 170)) !important;
  cursor: not-allowed;
  text-shadow: none !important;
}
:where(input,select,textarea,fieldset,.grid)[aria-invalid=true]+small,
.input-error {
  color: var(--color-danger);
  font-size: 14px;
  margin-top: 4px;
  min-height: 18px;
}

.input-error:empty {
  display: none;
}

input:focus, select:focus, .StripeElement--focus {
  outline: .5px solid var(--color-primary);
  border-color: var(--color-primary) !important;
}

input:not(:focus):not(:placeholder-shown):invalid {
  border-color: var(--color-danger);
}

input:not(:placeholder-shown):invalid {
  border-color: var(--color-danger);
}

fieldset {
  border: none;
}

/* Shared */
.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 960px;
}

.button {
  align-items: center;
  border-radius: var(--border-radius-xl);
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-weight: 500;
  font-size: 1.3rem;
  height: 55px;
  justify-content: center;
  line-height: inherit;
  min-width: max-content;
  padding: var(--spacing-sm) var(--spacing-lg);
  text-align: center;
  width: 100%;
}

.button--primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.button--primary:hover {
  color: var(--color-white);
  text-decoration: none;
}

.button:disabled, .button[disabled] {
  opacity: .3;
  border: none;
}

.divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: var(--spacing-xl) 0;
  width: 100%;
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

.header {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  padding: var(--spacing-md) 0;
  position: relative;
}

.header__wrapper {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
  width: 100%;
}

.header__logo {
  display: block;
  height: 30px;
}

.header__menu-icon {
  height: 24px;
  width: auto;
}

.header__menu-link {
  align-items: center;
  color: var(--color-orange);
  display: flex;
  font-size: 1.1rem;
  font-weight: 400;
  gap: var(--spacing-sm);
  text-decoration: none;
}

.footer-large {
  background-color: var(--color-primary-dark);
  flex-shrink: 0;
  padding: var(--spacing-3xl) 0;
  line-height: 1.3rem;
  text-align: center;
}

.footer-large__content-wrapper {
  color: var(--color-white);
  display: flex;
  gap: var(--spacing-3xl);
  text-align: left;
}

.footer-large__content-headliner {
  flex: 0 0 40%;
  font-size: 1.8rem;
  line-height: 2rem;
}

.footer-large__links-wrapper {
  padding: var(--spacing-xxl) 0;
  background-color: #0A2537;
  text-align: center;
}

.footer-large__links {
  align-items: center;
  color: var(--color-text-light);
  display: flex;
  font-size: 0.9rem;
  justify-content: space-between;
}

.footer-large__links-logo {
  height: 25px;
}

.footer-large__links-link {
  color: var(--color-white);
  font-size: .8rem;
  margin-left: var(--spacing-md);
  text-decoration: none;
}

.footer-large__links-divider {
  border: .25px solid #768C9C;
  height: 0px;
  margin: var(--spacing-xl) 0 var(--spacing-sm);
}

.footer-large__links-copyright {
  color: var(--color-text-light);
  font-size: .7rem;
  font-weight: 300;
}

.footer-small {
  background-color: var(--color-secondary);
  align-items: center;
  display: flex;
  flex-shrink: 0;
  justify-content: space-between;
  padding: var(--spacing-xxl) 0;
}

.modal {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 0;
  display: none;
  justify-content: center;
  left: 0;
  padding: var(--spacing-xl);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1050;
}

.modal__container {
  background-color: var(--color-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 2 * var(--spacing-md));
  max-width: 960px;
  overflow-y: auto;
  position: relative;
  width: 100%;
}

.modal__container--wide {
  max-width: 860px;
}

.modal__header {
  padding: var(--spacing-md);
  position; relative;
  text-align: center;
  margin-bottom: 0;
}

.modal__close-btn {
  background: none;
  border: none;
  color: var(--color-text-light);
  cursor: pointer;
  line-height: 1;
  position: absolute;
  right: var(--spacing-md);
  top: var(--spacing-md);
}

.modal__close-icon {
  display: block;
  width: 24px;
  height: 24px;
}

.modal__body {
  color: var(--color-text-dark);
  font-size: 1rem;
  line-height: 1.5;
  padding: var(--spacing-xxl);
  text-align: center;
}

.contact-modal {
  width: 650px;
}

.contact-modal__actions {
  align-items: center;
  display: flex;
  justify-content: center;
}

.contact-modal__action {
  align-items: center;
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  justify-content: center;
  gap: var(--spacing-md);
  max-width: 300px;
}

.contact-modal__link {
  color: var(--color-black);
  font-weight: 300;
  width: 70%;
}

.contact-modal__icon {
  align-self: flex-start;
  height: auto;
  margin: auto;
  max-height: none;
  max-width: none;
  width: auto;
}

@media (max-width: 992px) {
  .container {
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
  }
}

@media (max-width: 640px) {
  input, select {
    font-size: 16px;
    padding: 12px;
  }

  .divider {
    margin: var(--spacing-lg) 0;
  }

  .mobile-only {
    display: block;
  }

  .desktop-only {
    display: none !important;
  }

  .footer-large__content-wrapper {
    flex-direction: column;
    gap: var(--spacing-lg);
    padding: 0 var(--spacing-xxl);
    text-align: center;
  }

  .footer-large__content-headliner {
    flex: 1;
  }

  .footer-large__links {
    flex-direction: column;
    gap: var(--spacing-lg);
  }

  .footer-small {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .modal__title {
    font-size: 1.5rem;
  }

  .contact-modal__text {
    font-size: 1rem;
    margin-bottom: var(--spacing-lg);
  }

  .contact-modal__actions {
    display: flex;
    flex-direction: column;
    font-size: 1.1rem;
    gap: var(--spacing-xxl);
  }


  .contact-modal__button {
    width: 100%;
  }
}

.wizard__input-other {
  border: 1px solid var(--color-primary);
  border-radius: var(--border-radius-md);
  display: none;
  flex: 0 0 100%;
  margin-top: var(--spacing-sm);
  padding: var(--spacing-md);
  width: 100%;
}

.wizard__input-other:focus {
  border-color: var(--color-primary);
  outline: none;
}

.wizard-box__form-field--other:has(.wizard__input--radio:checked) .wizard__textarea {
  display: block;
}

.wizard__text-clear-wrapper {
  position: relative;
}

.wizard__input {
  box-sizing: border-box;
  width: 100%;
}

.wizard__input:not(:placeholder-shown) + .wizard__text-clear-btn {
  align-items: center;
  display: inline-flex;
  justify-content: center;
}

.wizard__text-clear-btn {
  color: var(--color-white);
  background: #000;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  font-size: 1.3em;
  height: 1.2em;
  line-height: 1;
  padding: 0;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2em;
}

.wizard__input--radio {
  align-self: center;
  flex-shrink: 0;
  height: 25px;
  width: 25px;
}

.wizard__input--checkbox {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.wizard__checkbox-custom {
  border: 1px solid var(--color-black);
  border-radius: 50%;
  box-sizing: border-box;
  flex-shrink: 0;
  height: 25px;
  position: relative;
  transition: background-color 0.2s, border-color 0.2s;
  width: 25px;
}

.wizard__input--checkbox:checked + .wizard__checkbox-custom {
  background-color: #007aff;
  border-color: #007aff;
}

.wizard__input--checkbox:checked + .wizard__checkbox-custom::after {
  border: solid white;
  border-width: 0 2px 2px 0;
  content: "";
  height: 13px;
  left: 7px;
  position: absolute;
  top: 4px;
  transform: rotate(32deg);
  width: 8px;
}

.wizard__input--radio {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.wizard__radio-custom {
  border: 1px solid var(--color-black);
  border-radius: 50%;
  box-sizing: border-box;
  flex-shrink: 0;
  height: 25px;
  position: relative;
  transition: background-color 0.2s, border-color 0.2s;
  width: 25px;
}

.wizard__input--radio:checked + .wizard__radio-custom {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.wizard__input--radio:checked + .wizard__radio-custom::after {
  background-color: var(--color-white);
  border-radius: 50%;
  content: "";
  height: 11px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 11px;
}

.wizard-location {
  display: flex;
  flex-direction: row;
  gap: var(--spacing-md);
  justify-content: center;
  margin-top: var(--spacing-xl);
}

.wizard-location__zipcode {
  font-weight: 500;
  text-decoration: underline;
}

.wizard-location__wrapper {
  display: flex;
  flex-direction: row;
  gap: var(--spacing-md);
}

.wizard-header {
	margin-top: var(--spacing-3xl);
	margin-bottom: var(--spacing-3xl);
	text-align: center;
}

.wizard-header__headline {
  margin-bottom: var(--spacing-lg);
}

.wizard-box {
  background-color: color-mix(in srgb, var(--color-white) 40%, transparent);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xxl);
	margin-top: var(--spacing-xl);
  padding: var(--spacing-xxl) var(--spacing-8xl);
}

.wizard-box__inputs{
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.wizard-box__form-field {
  display: flex ;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.wizard__label {
  font-size: 1.2rem;
}

.wizard__label--selection {
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  cursor: pointer;
  display: flex ;
  flex-direction: column;
  gap: var(--spacing-sm);
  padding: var(--spacing-lg);
  position: relative;
  user-select: none;
}

.wizard__radio-wrapper {
  align-items: flex-start;
  display: inline-flex ;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: var(--spacing-md);
}

.wizard__label--selection:has(input:checked) {
  background-color: var(--color-light-blue);
  outline: 2px solid var(--color-primary);
}

.wizard-box__form-field--other:has(
  .wizard__input--radio:checked,
  .wizard__input--checkbox:checked
  ) .wizard__input-other {
    display: block;
  }

  /* CTA */
.wizard-cta {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.wizard-cta__small-text {
  color: var(--color-dark-gray);
  font-size: .8rem;
  line-height: 1.1rem;
  text-align: center;
}

.wizard-cta__skip {
  font-size: 1.3rem;
  text-align: center;
}

/* Advocate */
.wizard-advocate {
  align-items: center;
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: row;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-md);
  padding: var(--spacing-lg) var(--spacing-xl);
}

.wizard-advocate__photo {
  height: 75px;
  width: 75px;
}

.wizard-advocate__intro {
  font-size: 1.2rem;
  font-weight: 500;
}

.wizard-advocate__timing {
  font-size: 1.2rem;
}

/* Matching Modal */
.wizard-matching-modal {
  background-color: #B5C1C8;
  height: 100vh;
  inset: 0;
  position: fixed;
  width: 100vw;
  z-index: 9999;
}

.wizard-matching-modal__container {
  background-color: var(--color-white);
  margin-top: var(--spacing-8xl);
}

.wizard-matching-modal__body {
  padding: var(--spacing-3xl) var(--spacing-7xl);
}

.wizard-matching-modal__progress {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.wizard-matching-modal__badge {
  height: 75px;
}

.wizard-matching-modal__progress-bar {
  width: 100%;
  height: .5rem;
  background-color: #D9D9D9;
  border-radius: 0.5rem;
  overflow: hidden;
}

.wizard-matching-modal__progress-bar-fill {
  width: 0%;
  height: 100%;
  background-color: var(--color-primary);
  animation: progress-fill 5.5s linear forwards;
}

@keyframes progress-fill {
  to { width: 100%; }
}

.wizard-matching-modal__success {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xxl);
  text-align: center;
}

@media (max-width: 640px) {
  h1 {
    font-size: 1.4rem;
    line-height: 1.6rem;
  }

  h2 {
    font-size: 1.1rem;
    line-height: 1.3rem;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="date"],
  select {
    font-size: 1.1rem !important;
    height: 35px;
  }

  .button {
    font-size: 1.1rem;
    height: 45px;
  }

  .wizard-box {
    border-radius: 0;
    gap: var(--spacing-xxl);
    padding: var(--spacing-lg) var(--spacing-lg);
  }

  .wizard__label {
    font-size: 1.1rem;
  }

  .wizard-header {
    margin-bottom: var(--spacing-xl);
    margin-top: var(--spacing-xl);
  }

  .wizard-location__wrapper {
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
  }

  .wizard__label--selection {
    padding: var(--spacing-md);
  }

  .wizard-advocate {
    flex-direction: column;
    margin-right: var(--spacing-xl);
    margin-left: var(--spacing-xl);
    text-align: center;
  }

  .wizard-advocate__intro {
    font-size: 1rem;
    line-height: 1.3rem;
  }

  .wizard-advocate__timing {
    font-size: .9rem;
    line-height: 1.3rem;
  }

  .wizard-matching-modal__container {
    margin-right: var(--spacing-xl);
    margin-left: var(--spacing-xl);
    width: unset;
  }

  .wizard-matching-modal__body {
    padding: var(--spacing-xl) !important;
  }

  .wizard-matching-modal__success {
    gap: var(--spacing-lg);
  }

  .wizard-cta__skip {
    font-size: 1.1rem;
  }
}

.wizard-complete-headline {
  margin-bottom: var(--spacing-xxl);
  margin-top: var(--spacing-xxl);
  text-align: center;
}

.wizard-complete-advocate {
  align-items: center;
  background-color: var(--color-secondary-dark);
  border-radius: var(--border-radius-md);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  padding: var(--spacing-xl);
}

.wizard-complete-advocate__assignment {
  text-align: center;
}

.wizard-complete-advocate__summary {
  text-align: center;
}

.wizard-complete-advocate__headline {
  font-size: 1.3rem
}

.wizard-advocate-advocate__name {
  font-size: 2rem;
  line-height: 2.2rem;
}

.wizard-complete-advocate__header {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.wizard-complete-advocate__divider {
  margin-top: var(--spacing-xs);
  margin-bottom: var(--spacing-md);
}

.wizard-complete-protected {
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-xxl);
}

.wizard-complete-protected__header {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  text-align: center;
}

.wizard-complete-protected__badge {
  margin: auto;
  width: 90px;
}

.wizard-complete-protected__title {
  font-size: 1.8rem;
}

.wizard-complete-protected__desc {
  font-size: 1.2rem;
}

.wizard-complete-protected__list {
  column-gap: var(--spacing-3xl);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: var(--spacing-xxl);
  text-align: left;
}

.wizard-complete-protected__item {
  display: grid;
  grid-template-columns: 20px 1fr;
  grid-template-rows: auto auto;
  column-gap: var(--spacing-sm);
  row-gap: var(--spacing-xs);
}

.wizard-complete-protected__checkmark {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  width: 20px;
  height:	20px;
}

.wizard-complete-protected__item-title {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  font-weight: 500;
}

.wizard-complete-protected__item-desc {
  grid-column: 2;
  grid-row: 2;
  font-size: .9rem;
}

.wizard-complete-contact__title {
  font-size: 1.4rem;
}

.wizard-complete-contact {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  font-size: .9rem;
  gap: var(--spacing-xxl);
}

.wizard-complete-contact__method {
  align-items: start;
  column-gap: var(--spacing-sm);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  row-gap: var(--spacing-xs);
}

.wizard-complete-contact__icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  margin-top: 6px;
}

.wizard-complete-contact__text {
  grid-column: 2;
  grid-row: 1;
}

.wizard-complete-contact__link {
  grid-column: 2;
  grid-row: 2;
}

.wizard-complete-contact__explainer {
  flex: 0 0 calc(55% - var(--spacing-lg));
  margin-right: var(--spacing-lg);
}

.wizard-complete-contact__link,
.wizard-complete-contact__link:hover {
  color: var(--color-black);
  font-weight: 400;
}

@media (max-width: 640px) {
  .wizard-complete-advocate,
  .wizard-complete-protected {
    margin: 0 var(--spacing-lg);
  }

  .wizard-complete-advocate__divider {
    margin-top: var(--spacing-xs);
    margin-bottom: var(--spacing-xs);
  }

  .wizard-complete-protected__list {
    gap: var(--spacing-xl);
    grid-template-columns: repeat(1, 1fr);
  }

  .wizard-complete-protected__title {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }

  .wizard-complete-protected__desc {
    font-size: .9rem;
  }

  .wizard-complete-contact__icon {
    margin-top: 0;
  }

  .wizard-complete-contact__explainer {
    flex: 0 0 100%;
  }

  .wizard-complete-headline {
    margin-bottom: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    text-align: center;
  }

  .wizard-complete-contact__method {
    display: flex;
    flex-direction: column;
    flex: 0 0 calc(47% - var(--spacing-xxl));
    font-weight: 500;
    gap: var(--spacing-xs);
  }

  .wizard-complete-contact__title {
    margin-bottom: var(--spacing-md);
  }
}
