@charset "UTF-8";
.wizard {
  max-width: 640px;
  margin: 0 auto;
  padding: 1rem;
  min-height: 80vh;
}

.wizard-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
}

.wizard-intro-hero {
  margin: 1rem;
  width: 280px;
  height: 237px;
  position: relative;
}
.wizard-intro-hero .wizard-intro-gradient {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.wizard-intro-hero .wizard-intro-gradient.wizard-intro-gradient--pink {
  background: radial-gradient(47.88% 47.88% at 50% 50%, rgba(211, 79, 127, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  right: -50px;
  top: -50px;
}
.wizard-intro-hero .wizard-intro-gradient.wizard-intro-gradient--blue {
  background: radial-gradient(47.88% 47.88% at 50% 50%, rgba(30, 136, 229, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  left: -40px;
  bottom: -40px;
}
.wizard-intro-hero img {
  position: relative;
  z-index: 1;
}
.wizard-intro-hero .wizard-hero-badge {
  position: absolute;
  top: -70px;
  right: -40px;
}

.wizard-intro-title {
  color: #181C20;
  margin: 0;
  text-align: center;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.75rem;
  letter-spacing: -0.02475rem;
}

.wizard-intro-lead {
  color: #181C20;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
}

.wizard-intro-btn {
  color: #fff;
  background: #1e88e5;
  border: none;
  border-radius: 0.5rem;
  min-width: 300px;
  margin-top: 5vh;
}
.wizard-intro-btn:hover {
  background: #1565c0;
}

.wizard-step-header {
  background: #fff;
  border-radius: 1rem 1rem 0 0;
  padding: 1rem 0 0.75rem;
}
.wizard-step-header.is-hidden {
  display: none;
}

.wizard-step-header-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.wizard-step-title-row {
  position: relative;
  border-radius: 0.5rem;
  transition: background 0.2s;
}
.wizard-step-title-row:hover {
  background: #f3f4f6;
}

.wizard-step-title-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  text-align: left;
}

.wizard-step-title-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.wizard-step-title-current {
  flex: 1;
  font-size: 1.125rem;
  font-weight: 600;
}

.wizard-step-title-row--contact .wizard-step-title-current {
  color: #181C20;
  font-weight: 600;
}

.wizard-step-title-expand {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.wizard-progress-bar {
  display: flex;
  gap: 0.25rem;
}
.wizard-progress-bar .wizard-progress-bar-segment {
  flex: 1;
  min-height: 6px;
  background: #e5e7eb;
  border-radius: 3px;
  transition: background 0.2s;
}
.wizard-progress-bar .wizard-progress-bar-segment.is-complete {
  background: #1e88e5;
}
.wizard-progress-bar .wizard-progress-bar-segment.is-active {
  background: #1e88e5;
}

.wizard-step-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0.25rem 0 0;
  padding: 1rem 1rem 0.25rem 1rem;
  min-width: 100%;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  list-style: none;
  z-index: 10;
}
.wizard-step-dropdown[hidden] {
  display: none;
}
.wizard-step-dropdown li {
  list-style-type: none;
  padding-left: 0 !important;
  margin-bottom: 0.75rem;
}
.wizard-step-dropdown li:before {
  content: unset !important;
}
.wizard-step-dropdown li::after {
  content: "";
  width: 4px;
  height: 9px;
  background-color: transparent;
  display: block;
  position: absolute;
  left: 2rem;
  border-left: 2px dotted #A8AAAC;
}
.wizard-step-dropdown li:last-child:after {
  content: unset !important;
}

.wizard-step-dropdown-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.wizard-step-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #181C20;
  background: transparent;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.wizard-step-dropdown-item:hover:not(.is-disabled) {
  background: #f3f4f6;
  color: #181C20;
}
.wizard-step-dropdown-item.is-disabled {
  opacity: 0.3;
  cursor: default;
}

.wizard-progress-indicator {
  padding: 1rem 0;
}

.wizard-progress-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.wizard-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #BCBEC0;
  transition: background 0.2s;
}
.wizard-dot.is-active {
  background: #1e88e5;
  transform: scale(1.2);
}
.wizard-dot.is-complete {
  background: #1e88e5;
  opacity: 0.6;
}

.wizard-step {
  display: none;
}
.wizard-step.is-active {
  display: block;
}

.wizard-success {
  display: none;
  height: 40vh;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.wizard-success h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 2rem;
  font-style: normal;
  font-weight: 600;
}
.wizard-success p {
  color: #54585C;
  text-align: center;
  font-size: 1rem;
  font-style: normal;
  line-height: 1.5rem;
}
.wizard-success .wizard-link-back {
  margin-top: 10vh;
  min-width: 300px;
  background: #1e88e5;
  color: #fff;
  border: none;
  font-weight: 500;
}
.wizard-success .wizard-link-back:hover {
  background: #1565c0;
  text-decoration: none !important;
}

.wizard-welcome {
  text-align: center;
  padding: 2rem 0;
}

.wizard-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #181C20;
}
@media (max-width: 640px) {
  .wizard-title {
    font-size: 1.25rem;
  }
}

.wizard-lead {
  color: #374151;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
}

.wizard-path-select {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.wizard-radio-group .wizard-radio, .wizard-path-btn {
  flex: 1;
  min-width: 0;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  background: #fff;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  text-align: left;
  position: relative;
  font-family: "Basier Circle", sans-serif;
}
.wizard-radio-group .wizard-radio::after, .wizard-path-btn::after {
  width: 1rem;
  height: 1rem;
  content: "";
  border: 2px solid #BCBEC0;
  border-radius: 50%;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.wizard-radio-group .wizard-radio:hover::after, .wizard-path-btn:hover::after {
  border-color: #1e88e5;
}

.wizard-path-btn.is-active {
  box-shadow: inset 0 0 0 2px #1e88e5;
  font-weight: 600;
}
.wizard-path-btn.is-active::after {
  border-width: 4px;
  border-color: #1e88e5;
}

.wizard-section {
  margin-bottom: 1.5rem;
}

.wizard-section-box {
  border-radius: 1rem;
  padding: 0;
}

.wizard-intro {
  color: #374151;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.wizard-section-title {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: normal;
  margin-bottom: 1rem;
  color: #181C20;
}

.wizard-section-inner {
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  background: #F2F4F6;
}
.wizard-section-inner:last-child {
  margin-bottom: 0;
}

.wizard-contact-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}
@media (max-width: 640px) {
  .wizard-contact-row {
    grid-template-columns: 1fr;
  }
}

.wizard-field label {
  display: block;
  font-weight: 400;
  font-size: 0.875rem;
  color: #54585C;
}
.wizard-field input[type=text],
.wizard-field input[type=tel],
.wizard-field input[type=email],
.wizard-field input[type=number],
.wizard-field select {
  width: 100%;
  max-width: 320px;
  padding: 0.5rem 0.75rem;
  border: 1px solid #BCBEC0;
  border-radius: 0.5rem;
  font-size: 1rem;
}
.wizard-field.has-error input, .wizard-field.has-error select {
  border-color: #ef4444;
}

.wizard-error {
  display: block;
  color: #ef4444;
  margin-left: 0.75rem;
  font-size: 0.75rem;
  line-height: 1rem;
}

.wizard-required {
  color: #ef4444;
}

.wizard-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.wizard-checkbox-group input[type=checkbox] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wizard-checkbox-group .wizard-checkbox {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 1rem 0.375rem 0.5rem;
  box-shadow: inset 0 0 0 1px #BCBEC0;
  border-radius: 9999px;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #181C20;
  background-color: transparent;
  transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}
.wizard-checkbox-group .wizard-checkbox:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0)"><mask id="mask0" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="20" height="20"><rect width="20" height="20" fill="%23D9D9D9"/></mask><g mask="url(%23mask0)"><path d="M8.9375 10.875L7.6875 9.64583C7.53472 9.49306 7.36111 9.41667 7.16667 9.41667C6.97222 9.41667 6.79861 9.49306 6.64583 9.64583C6.49306 9.79861 6.41667 9.9757 6.41667 10.1771C6.41667 10.3785 6.49306 10.5556 6.64583 10.7083L8.41667 12.4792C8.56944 12.6319 8.74306 12.7083 8.9375 12.7083C9.13194 12.7083 9.30556 12.6319 9.45833 12.4792L13.3542 8.58333C13.5069 8.43056 13.5833 8.25347 13.5833 8.05208C13.5833 7.85069 13.5069 7.67361 13.3542 7.52083C13.2014 7.36806 13.0278 7.29167 12.8333 7.29167C12.6389 7.29167 12.4653 7.36806 12.3125 7.52083L8.9375 10.875ZM10 18C8.90278 18 7.86806 17.7917 6.89583 17.375C5.92361 16.9583 5.07292 16.3854 4.34375 15.6562C3.61458 14.9271 3.04167 14.0764 2.625 13.1042C2.20833 12.1319 2 11.0972 2 10C2 8.88889 2.20833 7.85069 2.625 6.88542C3.04167 5.92014 3.61458 5.07292 4.34375 4.34375C5.07292 3.61458 5.92361 3.04167 6.89583 2.625C7.86806 2.20833 8.90278 2 10 2C11.1111 2 12.1493 2.20833 13.1146 2.625C14.0799 3.04167 14.9271 3.61458 15.6562 4.34375C16.3854 5.07292 16.9583 5.92014 17.375 6.88542C17.7917 7.85069 18 8.88889 18 10C18 11.0972 17.7917 12.1319 17.375 13.1042C16.9583 14.0764 16.3854 14.9271 15.6562 15.6562C14.9271 16.3854 14.0799 16.9583 13.1146 17.375C12.1493 17.7917 11.1111 18 10 18Z" fill="%23BCBEC0"/></g></g><defs><clipPath id="clip0"><rect width="20" height="20" rx="10" fill="white"/></clipPath></defs></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}
.wizard-checkbox-group .wizard-checkbox:hover {
  border-color: #1e88e5;
}
.wizard-checkbox-group .wizard-checkbox.no-check {
  padding: 0.375rem 1rem;
}
.wizard-checkbox-group .wizard-checkbox.no-check:before {
  display: none;
}

.wizard-checkbox-group .wizard-checkbox.is-active,
.wizard-checkbox-group input:checked + .wizard-checkbox {
  box-shadow: inset 0 0 0 2px #1e88e5;
  color: #1e88e5;
  font-weight: 600;
}
.wizard-checkbox-group .wizard-checkbox.is-active::before,
.wizard-checkbox-group input:checked + .wizard-checkbox::before {
  width: 20px;
  height: 20px;
  background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0)"><mask id="mask0" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="20" height="20"><rect width="20" height="20" fill="%23D9D9D9"/></mask><g mask="url(%23mask0)"><path d="M8.9375 10.875L7.6875 9.64583C7.53472 9.49306 7.36111 9.41667 7.16667 9.41667C6.97222 9.41667 6.79861 9.49306 6.64583 9.64583C6.49306 9.79861 6.41667 9.9757 6.41667 10.1771C6.41667 10.3785 6.49306 10.5556 6.64583 10.7083L8.41667 12.4792C8.56944 12.6319 8.74306 12.7083 8.9375 12.7083C9.13194 12.7083 9.30556 12.6319 9.45833 12.4792L13.3542 8.58333C13.5069 8.43056 13.5833 8.25347 13.5833 8.05208C13.5833 7.85069 13.5069 7.67361 13.3542 7.52083C13.2014 7.36806 13.0278 7.29167 12.8333 7.29167C12.6389 7.29167 12.4653 7.36806 12.3125 7.52083L8.9375 10.875ZM10 18C8.90278 18 7.86806 17.7917 6.89583 17.375C5.92361 16.9583 5.07292 16.3854 4.34375 15.6562C3.61458 14.9271 3.04167 14.0764 2.625 13.1042C2.20833 12.1319 2 11.0972 2 10C2 8.88889 2.20833 7.85069 2.625 6.88542C3.04167 5.92014 3.61458 5.07292 4.34375 4.34375C5.07292 3.61458 5.92361 3.04167 6.89583 2.625C7.86806 2.20833 8.90278 2 10 2C11.1111 2 12.1493 2.20833 13.1146 2.625C14.0799 3.04167 14.9271 3.61458 15.6562 4.34375C16.3854 5.07292 16.9583 5.92014 17.375 6.88542C17.7917 7.85069 18 8.88889 18 10C18 11.0972 17.7917 12.1319 17.375 13.1042C16.9583 14.0764 16.3854 14.9271 15.6562 15.6562C14.9271 16.3854 14.0799 16.9583 13.1146 17.375C12.1493 17.7917 11.1111 18 10 18Z" fill="%231E88E5"/></g></g><defs><clipPath id="clip0"><rect width="20" height="20" rx="10" fill="white"/></clipPath></defs></svg>');
}

.wizard-radio-option {
  flex: 1;
  min-width: 0;
}

.wizard-radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.wizard-radio-group input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.wizard-radio-group.wizard-radio-group--row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.wizard-radio-group .wizard-radio {
  display: block;
  color: #181C20;
}

.wizard-radio-group .wizard-radio.is-active,
.wizard-radio-group input:checked + .wizard-radio {
  box-shadow: inset 0 0 0 2px #1e88e5;
  font-weight: 600;
}
.wizard-radio-group .wizard-radio.is-active::after,
.wizard-radio-group input:checked + .wizard-radio::after {
  border-color: #1e88e5;
  border-width: 4px;
}

.wizard-other-reason {
  margin-top: 1rem;
}

.wizard-contact-time-field {
  margin-bottom: 0;
}

.wizard-contact-chips-days {
  margin-bottom: 1rem;
}

.wizard-chip {
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border: 1px solid #e5e7eb;
  border-radius: 2rem;
  background: #fff;
  color: #374151;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px transparent;
  transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}
.wizard-chip:hover {
  border-color: #1e88e5;
  color: #1e88e5;
}
.wizard-chip.is-active {
  border-width: 1px;
  border-color: #1e88e5;
  box-shadow: inset 0 0 0 1px #1e88e5;
  background: rgba(30, 136, 229, 0.08);
  color: #1e88e5;
  font-weight: 600;
}

.wizard-contact-no-slots {
  font-size: 0.9375rem;
  color: #374151;
}

.wizard-nav {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  justify-content: flex-end;
}
.wizard-nav.wizard-nav--first-step .wizard-btn-back {
  display: none;
}

.wizard-btn {
  padding: 0.75rem 1.5rem;
  font-family: "Basier Circle", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}
.wizard-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.wizard-btn-next,
.wizard-btn-submit {
  background: #1e88e5;
  color: #fff;
  border: none;
  font-weight: 500;
}
.wizard-btn-next:hover:not(:disabled),
.wizard-btn-submit:hover:not(:disabled) {
  background: #1565c0;
}

.wizard-btn-back {
  background: transparent;
  border: 1px solid #BCBEC0;
  color: #374151;
}
.wizard-btn-back:hover {
  background: #f3f4f6;
}

.wizard-offer {
  border-radius: 1rem 1rem 0 0;
  padding: 1rem;
  margin: 0 -1rem;
}

.wizard-offer-header {
  margin-bottom: 1rem;
}

.wizard-offer-lead {
  margin: 0.75rem 1rem 0;
  font-size: 1.25rem;
  line-height: 1.5rem;
  color: #181C20;
}
.wizard-offer-lead strong {
  color: #181C20;
  font-weight: 600;
}
.wizard-offer-lead span {
  color: #374151;
}

.wizard-offer-cards {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem;
  margin: 0 -0.5rem 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  cursor: grab;
  user-select: none;
}
.wizard-offer-cards:active {
  cursor: grabbing;
}
.wizard-offer-cards::-webkit-scrollbar-track, .wizard-offer-cards::-webkit-scrollbar-thumb {
  background: transparent;
}

.wizard-offer-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 auto;
  width: 240px;
  height: 220px;
  padding: 1rem;
  background: #fff;
  border-radius: 1.5rem;
  font-size: 1.125rem;
  color: #181C20;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
  user-select: none;
}
.wizard-offer-card strong {
  font-weight: 600;
}

.wizard-offer-card-icons {
  display: flex;
  flex-shrink: 0;
  margin-top: 0.5rem;
  margin-left: 0.5rem;
}
.wizard-offer-card-icons img {
  margin-left: -0.5rem;
}

.wizard-offer-card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.wizard-offer-guarantee {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 1rem;
}

.wizard-offer-guarantee-title {
  font-size: 1.125rem;
  line-height: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #EF5350 0%, #AB47BC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wizard-price-comparison {
  display: flex;
  margin-bottom: 1rem;
}

.wizard-price-col {
  flex: 1;
  padding: 1rem;
}
.wizard-price-col.wizard-price-infakt {
  background: linear-gradient(135deg, #EF5350 0%, #AB47BC 100%);
  border-radius: 1rem;
  padding: 2px;
}
.wizard-price-col .wizard-price-infakt--inner {
  background: #fff;
  border-radius: calc(1rem - 2px);
  padding: 1rem;
}

.wizard-price-label {
  font-size: 1rem;
  color: #54585C;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.wizard-price-amount {
  font-size: 0.75rem;
  color: #54585C;
  margin-bottom: 1.5rem;
}
.wizard-price-amount strong {
  color: #181C20;
  font-size: 1rem;
  font-weight: 600;
}

.wizard-price-features {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #181C20;
  overflow: hidden;
}
.wizard-price-features li {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  padding-left: 0;
}
.wizard-price-features li img {
  height: 22px;
}

.wizard-feature-icon {
  flex-shrink: 0;
}

.wizard-transfer-stepper {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.wizard-stepper-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #181C20;
}

.wizard-stepper-steps {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wizard-stepper-step {
  position: relative;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.wizard-stepper-step img {
  margin-top: 0.375rem;
}
.wizard-stepper-step::after {
  content: "";
  width: 4px;
  height: 40%;
  background-color: transparent;
  display: block;
  position: absolute;
  left: 7px;
  top: 2rem;
  border-left: 2px dotted #A8AAAC;
}
.wizard-stepper-step:last-child:after {
  content: unset !important;
}

.wizard-stepper-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #1e88e5;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}

.wizard-stepper-step strong {
  display: block;
  font-size: 1rem;
}

.wizard-stepper-step p {
  margin: 0;
  font-size: 0.75rem;
  color: #54585C;
}

.wizard-transfer-benefits {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.5rem;
}

.wizard-benefits-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #181C20;
}

.wizard-benefit {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.wizard-benefit:last-child {
  margin-bottom: 0;
}
.wizard-benefit p {
  margin: 0;
  font-size: 1rem;
  color: #54585C;
}
.wizard-benefit strong {
  color: #181C20;
  font-weight: 600;
}

.wizard-benefit-icon {
  color: #1e88e5;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.input-with-label {
  position: relative;
  border: 1px solid #BCBEC0;
  border-radius: 0.5rem;
  background: #fff;
  transition: border-color 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.input-with-label label {
  position: absolute;
  top: 0.5rem;
  left: 0.75rem;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #54585C;
  margin: 0;
  z-index: 1;
}

.input-with-label input {
  flex: 1;
  border: none !important;
  background: transparent !important;
  font-size: 1rem !important;
  line-height: 1.5rem !important;
  font-weight: 500 !important;
  padding: 1.5rem 0.75rem 0.5rem !important;
  box-shadow: none !important;
  max-width: 100% !important;
  color: #181C20;
}
.input-with-label input::placeholder {
  color: #BCBEC0;
}
.input-with-label input::-webkit-outer-spin-button, .input-with-label input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0;
}
.input-with-label input[type=number] {
  -moz-appearance: textfield !important;
}

.input-with-label:focus-within {
  border-color: #1e88e5;
  box-shadow: inset 0 0 0 1px #1e88e5;
}
.input-with-label:focus-within label {
  color: #1e88e5;
}

.input-with-label--suffix {
  margin-right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  color: #54585C;
  pointer-events: none;
}

.wizard-field:has(.wizard-error:not(:empty)) .input-with-label {
  border-color: #ef4444;
  box-shadow: inset 0 0 0 1px #ef4444;
}
.wizard-field:has(.wizard-error:not(:empty)) .input-with-label label {
  color: #ef4444;
}

.wizard-consent {
  padding: 0 1rem;
}
.wizard-consent label {
  line-height: 1rem;
}
.wizard-consent label:hover .wizard-consent-label::before {
  border-color: #1e88e5;
}
.wizard-consent .wizard-consent-label {
  display: inline-block;
  position: relative;
  padding-left: 28px;
  font-size: 0.75rem;
  color: #54585C;
  user-select: none;
}
.wizard-consent .wizard-consent-label::before {
  position: absolute;
  content: "";
  background: #fff;
  height: 16px;
  width: 16px;
  left: 0;
  position: absolute;
  top: -1px;
  border-radius: 2px;
  border: solid 1px #bcc0c4;
  transition: border-color 0.3s, background-color 0.3s;
}
.wizard-consent .wizard-consent-label::after {
  background-image: url(data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3Csvg%20width%3D%2216px%22%20height%3D%2216px%22%20viewBox%3D%220%200%2016%2016%22%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20xmlns%3Asketch%3D%22http%3A//www.bohemiancoding.com/sketch/ns%22%3E%0A%20%20%20%20%3C%21--%20Generator%3A%20Sketch%203.0.3%20%287892%29%20-%20http%3A//www.bohemiancoding.com/sketch%20--%3E%0A%20%20%20%20%3Ctitle%3Echeckbox%2016x16%3C/title%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C/desc%3E%0A%20%20%20%20%3Cdefs%3E%3C/defs%3E%0A%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20sketch%3Atype%3D%22MSPage%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22checkbox-16x16%22%20sketch%3Atype%3D%22MSArtboardGroup%22%20stroke%3D%22%23ffffff%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M11.5%2C4%20L6.1195%2C11.5%20L4%2C9.3805%22%20id%3D%22Imported-Layers%22%20sketch%3Atype%3D%22MSShapeGroup%22%3E%3C/path%3E%0A%20%20%20%20%20%20%20%20%3C/g%3E%0A%20%20%20%20%3C/g%3E%0A%3C/svg%3E);
  background-color: #1e88e5;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  top: -1px;
  transform: scale(0);
  transition: all 0.1s ease;
}
.wizard-consent .wizard-consent-label a {
  color: inherit;
  text-decoration: underline;
}

input[type=checkbox]:checked + .wizard-consent-label::before {
  border-color: #1e88e5;
}
input[type=checkbox]:checked + .wizard-consent-label::after {
  opacity: 1;
  transform: scale(1);
}

.wizard-error-alert {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 1rem;
  background: #ef4444;
  color: white;
  border-radius: 0.5rem;
  animation: slideDown 0.3s ease-out;
}

.wizard-error-alert-message {
  flex: 1;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.wizard-error-alert-close {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  padding: 0;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}
.wizard-error-alert-close::before {
  content: "✕";
}
.wizard-error-alert-close:hover {
  opacity: 0.8;
}
.wizard-error-alert-close:focus {
  outline: 2px solid white;
  outline-offset: 2px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 640px) {
  .wizard {
    padding: 2rem;
    border-radius: 1rem;
  }
  .wizard-step-header {
    border-radius: 1rem 1rem 0 0;
  }
  .wizard-offer {
    margin: 0;
    border-radius: 1rem;
  }
  .wizard-path-select {
    max-width: 100%;
  }
}
