.w-promo-progress-bar {
  --promo-progress-track-height: 0.625rem;
  --promo-progress-badge-height: 1.625rem;
  --promo-progress-badge-padding-x: 0.5rem;
  --promo-progress-badge-min-width: 4rem;
  --promo-progress-badge-gap: 0.25rem;
  --promo-progress-badge-border-width: 0.125rem;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-12-rem);
  width: 100%;
}
.w-promo-progress-bar__label,
.w-promo-progress-bar__completed-label {
  display: block;
}
.w-promo-progress-bar__track {
  position: relative;
  width: 100%;
  height: var(--promo-progress-track-height);
  border-radius: var(--corner-radius-full-rem);
  background: var(--color-container-default-tone-20);
  overflow: visible;
}
.w-promo-progress-bar__fill {
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(
      90deg,
      var(--color-bg-brand-strong-2),
      var(--color-container-brand-highlight));
  transition: width 300ms ease-out;
}
.w-promo-progress-bar__badge {
  position: absolute;
  top: 50%;
  height: var(--promo-progress-badge-height);
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: var(--promo-progress-badge-min-width);
  padding: 0 var(--promo-progress-badge-padding-x);
  border-radius: var(--corner-radius-full-rem);
  transform: translateY(-50%);
  white-space: nowrap;
}
.w-promo-progress-bar__badge--total {
  inset-inline-end: 0;
  background: var(--color-container-default-lightest);
  border: var(--promo-progress-badge-border-width) solid var(--color-container-brand-highlight);
  z-index: 1;
}
.w-promo-progress-bar__badge--complete {
  inset-inline-end: clamp(var(--promo-progress-badge-min-width) + var(--promo-progress-badge-padding-x)*2 + var(--promo-progress-badge-gap), 100% - var(--promo-progress-pct, 0%), 100% - var(--promo-progress-badge-min-width) - var(--promo-progress-badge-padding-x)*2);
  background: var(--color-container-brand-highlight);
  transition: inset-inline-end 300ms ease-out;
  z-index: 2;
}
.w-promo-progress-bar--label-start .w-promo-progress-bar__label {
  text-align: start;
}
.w-promo-progress-bar--label-center .w-promo-progress-bar__label {
  text-align: center;
}
.w-promo-progress-bar--label-end .w-promo-progress-bar__label {
  text-align: end;
}

.w-toast {
  --toast-bg-color: var(--color-container-default-subtle);
  --toast-color: var(--color-fg-default-primary);
  --toast-align-items: center;
  --toast-message-white-space: normal;
  --toast-gap: var(--spacing-16-rem);
  --toast-spacing: var(--spacing-16-rem);
  position: fixed;
  z-index: 1000;
  pointer-events: none;
  bottom: var(--toast-spacing);
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 1024px) {
  .w-toast {
    --toast-message-white-space: nowrap;
    left: auto;
    right: var(--toast-spacing);
    transform: none;
  }
}
.w-toast--type-large .w-toast {
  --toast-message-white-space: normal;
  --toast-gap: var(--spacing-8-rem);
}
.w-toast__surface {
  pointer-events: auto;
  display: flex;
  align-items: var(--toast-align-items);
  gap: var(--toast-gap);
  padding: var(--spacing-16-rem);
  min-width: calc(280/var(--size-rem-base)*1rem);
  max-width: min(calc(480 / var(--size-rem-base) * 1rem), 100vw - var(--toast-spacing)*2);
  background-color: var(--toast-bg-color);
  border-radius: var(--corner-radius-md-rem);
  box-shadow: 0 1px 3px 0 rgba(85, 85, 85, .1), 1px 3px 8px 0 rgba(51, 51, 51, .08);
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition:
    opacity 300ms ease-in-out,
    transform 300ms ease-in-out,
    visibility 0s 0s;
}
.w-toast__surface--hidden {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 300ms ease-in-out,
    transform 300ms ease-in-out,
    visibility 0s 300ms;
}
.w-toast__sr-only {
  position: absolute;
  width: calc(1/var(--size-rem-base)*1rem);
  height: calc(1/var(--size-rem-base)*1rem);
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.w-toast__message {
  flex: 1;
  color: var(--toast-color);
  white-space: var(--toast-message-white-space);
}
.w-toast__divider {
  display: block;
  flex-shrink: 0;
  width: calc(1/var(--size-rem-base)*1rem);
  height: var(--spacing-24-rem);
  background-color: var(--toast-color);
}
.w-toast__action {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-bg-brand-primary);
}
.w-toast__close {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: var(--spacing-16-rem);
  height: var(--spacing-16-rem);
  padding: 0;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--toast-color);
  aspect-ratio: 1/1;
}

.w-registration-modal {
  display: contents;
}

.steps-cards__header {
  text-align: center;
  margin-block-end: var(--spacing-32-rem);
}
.steps-cards__title {
  font-weight: var(--web-type-values-headline-lg-reg-weight);
  font-size: calc(var(--web-type-values-headline-lg-reg-size)/var(--size-rem-base)*1rem);
  line-height: calc(var(--web-type-values-headline-lg-reg-line-height)/var(--size-rem-base)*1rem);
  letter-spacing: calc(var(--web-type-values-headline-lg-reg-letter-spacing)/var(--size-rem-base)*1rem);
  font-family:
    var(--web-type-family-brand),
    Helvetica,
    Arial,
    sans-serif;
}
.steps-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-24-rem);
}

.w-registration-offer-steps-card {
  display: block;
  width: 100%;
  max-width: 1280px;
  padding: var(--spacing-12-rem);
  margin-inline: auto;
}
.w-registration-offer-steps-card__progress-footer {
  margin-inline: calc(-1*var(--spacing-24-rem));
  margin-block-end: calc(-1*var(--spacing-32-rem));
  padding: var(--spacing-20-rem) var(--spacing-24-rem) var(--spacing-24-rem);
  background: color-mix(in srgb, var(--color-bg-brand-strong-2) 10%, var(--color-container-default-subtle));
  border-radius: 0 0 var(--corner-radius-lg-rem) var(--corner-radius-lg-rem);
  text-align: start;
}
.w-registration-offer-steps-card__description-link {
  color: var(--color-fg-brand-link);
  text-decoration: none;
}
.w-registration-offer-steps-card__description-link:hover,
.w-registration-offer-steps-card__description-link:focus-visible {
  text-decoration: underline;
}


/*# sourceMappingURL=c-registration-offer-steps-card.9f827585.css.map*/