.airport-booking-form {
  --ab-primary: #2f7fc8;
  --ab-primary-dark: #195c9a;
  --ab-accent: #e97537;
  --ab-accent-dark: #c95f25;
  --ab-accent-soft: #fff3ec;
  --ab-route-soft: #eef6ff;
  --ab-success: #e97537;
  --ab-success-dark: #c95f25;
  --ab-border: #d7dce2;
  --ab-muted: #64748b;
  --ab-surface: #ffffff;
  --ab-soft: #f5f9fd;
  box-sizing: border-box;
  display: grid;
  gap: 22px;
  max-width: 1120px;
  width: min(100%, 1120px);
  margin: 32px auto;
  padding: 28px;
  border: 1px solid #e1e6ee;
  border-radius: 8px;
  background: var(--ab-surface);
  color: #111827;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  box-shadow: 0 12px 34px rgba(15, 23, 42, .08);
}

.airport-booking-form .airport-booking-form__choice-group--trip,
.airport-booking-form .airport-booking-form__choice-group--airport-location {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding: 0;
  border: 0;
}

.airport-booking-form .airport-booking-form__choice-group--trip legend,
.airport-booking-form .airport-booking-form__choice-group--airport-location legend {
  margin-bottom: 2px;
  color: #111827;
  font-size: 16px;
  font-weight: 800;
}

.airport-booking-form .airport-booking-form__choice-group--trip .airport-booking-form__choice-options,
.airport-booking-form .airport-booking-form__choice-group--airport-location .airport-booking-form__choice-options {
  display: grid;
  align-items: stretch;
  gap: 8px;
}

.airport-booking-form .airport-booking-form__choice-group--trip .airport-booking-form__choice-options {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 610px;
}

.airport-booking-form .airport-booking-form__choice-group--airport-location .airport-booking-form__choice-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
}

.airport-booking-form .airport-booking-form__choice-group--trip .airport-booking-form__choice-options label,
.airport-booking-form .airport-booking-form__choice-group--airport-location .airport-booking-form__choice-options label {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
  min-height: 44px;
  max-width: 100%;
  gap: 9px;
  margin: 0;
  padding: 9px 12px;
  border: 1px solid #c8d7e8;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 2px 8px rgba(47, 127, 200, .06);
  cursor: pointer;
}

.airport-booking-form .airport-booking-form__choice-group--trip .airport-booking-form__choice-options input,
.airport-booking-form .airport-booking-form__choice-group--airport-location .airport-booking-form__choice-options input {
  position: static;
  display: inline-block;
  width: 18px;
  height: 18px;
  min-height: 0;
  flex: 0 0 18px;
  margin: 0;
  padding: 0;
  border: 2px solid #8fb5db;
  border-radius: 999px;
  appearance: none;
  background: #fff;
  box-shadow: inset 0 0 0 4px #fff;
  opacity: 1;
  pointer-events: auto;
}

.airport-booking-form .airport-booking-form__choice-group--trip .airport-booking-form__choice-options input:checked,
.airport-booking-form .airport-booking-form__choice-group--airport-location .airport-booking-form__choice-options input:checked {
  border-color: var(--ab-primary);
  background: var(--ab-primary);
}

.airport-booking-form .airport-booking-form__choice-group--trip .airport-booking-form__choice-options span,
.airport-booking-form .airport-booking-form__choice-group--airport-location .airport-booking-form__choice-options span {
  display: block;
  min-width: 0;
  color: #111827;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.airport-booking-form .airport-booking-form__choice-group--trip .airport-booking-form__choice-options input:checked + span,
.airport-booking-form .airport-booking-form__choice-group--airport-location .airport-booking-form__choice-options input:checked + span {
  color: var(--ab-primary);
}

.airport-booking-form .airport-booking-form__choice-group--trip .airport-booking-form__choice-options span::before,
.airport-booking-form .airport-booking-form__choice-group--airport-location .airport-booking-form__choice-options span::before {
  content: none;
  display: none;
}

.airport-booking-form .airport-booking-form__choice-group--trip .airport-booking-form__choice-options label:has(input:checked),
.airport-booking-form .airport-booking-form__choice-group--airport-location .airport-booking-form__choice-options label:has(input:checked),
.airport-booking-form .airport-booking-form__choice-group--trip .airport-booking-form__choice-options label:focus-within,
.airport-booking-form .airport-booking-form__choice-group--airport-location .airport-booking-form__choice-options label:focus-within {
  border-color: var(--ab-primary);
  background: var(--ab-route-soft);
  box-shadow: 0 0 0 3px rgba(47, 127, 200, .14);
}

.airport-booking-form__card-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.airport-booking-form__tooltip {
  position: relative;
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(47, 127, 200, .35);
  border-radius: 999px;
  background: #eef6ff;
  color: var(--ab-primary);
  font: 800 13px/1 inherit;
  cursor: help;
}

.airport-booking-form__tooltip span {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  z-index: 20;
  display: none;
  width: min(245px, 74vw);
  padding: 8px 10px;
  border: 1px solid #c8d7e8;
  border-radius: 8px;
  background: #fff;
  color: #111827;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .16);
  transform: translateX(-50%);
}

.airport-booking-form__tooltip:hover span,
.airport-booking-form__tooltip:focus span,
.airport-booking-form__tooltip:focus-within span {
  display: block;
}

.airport-booking-form__phone-field {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 50px;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid #c8d7e8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(47, 127, 200, .08);
}

.airport-booking-form__phone-field:focus-within {
  border-color: var(--ab-primary);
  box-shadow: 0 0 0 3px rgba(47, 127, 200, .14);
}

.airport-booking-form__phone-field input[type="tel"] {
  width: 100%;
  min-height: 0;
  flex: 1 1 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.airport-booking-form__phone-field input[type="tel"]:focus {
  outline: 0;
  box-shadow: none;
}

.airport-booking-form__phone-flag {
  position: relative;
  overflow: hidden;
  width: 30px;
  height: 20px;
  flex: 0 0 30px;
  border-radius: 4px;
  background: #e5e7eb;
  box-shadow: 0 0 0 1px rgba(17, 24, 39, .16);
}

.airport-booking-form__phone-flag::before {
  content: none;
}

.airport-booking-form__phone-flag[data-country="nl"] {
  background: linear-gradient(to bottom, #ae1c28 0 33%, #fff 33% 66%, #21468b 66%);
}

.airport-booking-form__phone-flag[data-country="be"] {
  background: linear-gradient(to right, #111 0 33%, #fdda24 33% 66%, #ef3340 66%);
}

.airport-booking-form__phone-flag[data-country="de"] {
  background: linear-gradient(to bottom, #111 0 33%, #dd0000 33% 66%, #ffce00 66%);
}

.airport-booking-form__phone-flag[data-country="fr"] {
  background: linear-gradient(to right, #0055a4 0 33%, #fff 33% 66%, #ef4135 66%);
}

.airport-booking-form__phone-flag[data-country="it"] {
  background: linear-gradient(to right, #009246 0 33%, #fff 33% 66%, #ce2b37 66%);
}

.airport-booking-form__phone-flag[data-country="ro"] {
  background: linear-gradient(to right, #002b7f 0 33%, #fcd116 33% 66%, #ce1126 66%);
}

.airport-booking-form__phone-flag[data-country="gb"] {
  background: linear-gradient(to bottom, #012169, #012169);
}

.airport-booking-form__phone-flag[data-country="pl"] {
  background: linear-gradient(to bottom, #fff 0 50%, #dc143c 50%);
}

.airport-booking-form__phone-flag[data-country="tr"] {
  background: #e30a17;
}

.airport-booking-form__phone-flag[data-country="ma"] {
  background: #c1272d;
}

.airport-booking-form__phone-flag[data-country="es"] {
  background: linear-gradient(to bottom, #aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75%);
}

.airport-booking-form__phone-flag[data-country="us"] {
  background: repeating-linear-gradient(to bottom, #b22234 0 1.54px, #b22234 1.54px 3.08px, #fff 3.08px 4.62px);
}

.airport-booking-form__phone-flag[data-country="us"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 13px;
  height: 11px;
  background: #3c3b6e;
}

@media (max-width: 640px) {
  .airport-booking-form__steps button {
    min-height: 38px;
  }

  .airport-booking-form__step-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .airport-booking-form__step-icon {
    width: 24px;
    height: 24px;
  }

  .airport-booking-form .airport-booking-form__choice-group--trip .airport-booking-form__choice-options,
  .airport-booking-form .airport-booking-form__choice-group--airport-location .airport-booking-form__choice-options {
    grid-template-columns: 1fr;
    max-width: none;
    gap: 9px 14px;
  }

  .airport-booking-form .airport-booking-form__choice-group--trip .airport-booking-form__choice-options span,
  .airport-booking-form .airport-booking-form__choice-group--airport-location .airport-booking-form__choice-options span {
    font-size: 15px;
  }
}

.airport-booking-form__page--route-concept {
  gap: 0;
  overflow: visible;
  margin: 0 -2px;
  padding: 20px;
  border: 1px solid #d9e6f5;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(47, 127, 200, .045), rgba(255, 255, 255, 0) 42%),
    #fff;
  box-shadow: inset 4px 0 0 var(--ab-primary);
}

.airport-booking-form__page--route-concept .airport-booking-form__grid--route {
  gap: 22px;
  padding: 6px 0 16px;
}

.airport-booking-form__page--route-concept h3 {
  margin-bottom: 12px;
  color: var(--ab-primary);
  font-size: 22px;
  font-weight: 800;
}

.airport-booking-form__page--route-concept label {
  color: #151b2d;
}

.airport-booking-form__page--route-concept input,
.airport-booking-form__page--route-concept select,
.airport-booking-form__page--route-concept .airport-booking-form__datetime-trigger {
  min-height: 48px;
  border: 1px solid #c8d7e8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(47, 127, 200, .08);
}

.airport-booking-form__page--route-concept [data-route-fields] {
  position: relative;
  display: grid;
  gap: 14px;
  padding-left: 0;
  align-items: start;
}

.airport-booking-form__page--route-concept [data-route-fields] > * {
  margin-top: 0;
  margin-bottom: 0;
}

.airport-booking-form__page--route-concept [data-stops]:empty {
  display: none;
}

.airport-booking-form__page--route-concept [data-stops] {
  display: grid;
  gap: 14px;
  margin: 10px 0 14px;
}

.airport-booking-form__page--route-concept [data-route-fields]::before {
  content: none;
}

.airport-booking-form__page--route-concept [data-route-address-row],
.airport-booking-form__page--route-concept [data-route-airport-row] {
  position: relative;
}

.airport-booking-form__page--route-concept [data-route-address-row]::before,
.airport-booking-form__page--route-concept .airport-booking-form__destination-row::before {
  content: none;
}

.airport-booking-form__page--route-concept .airport-booking-form__destination-row::before {
  content: none;
}

.airport-booking-form__page--route-concept .airport-booking-form__destination-row::after {
  content: none;
}

.airport-booking-form__page--route-concept [data-route-address-row] > [data-route-address-label],
.airport-booking-form__page--route-concept [data-route-airport-row] > [data-route-airport-label] {
  position: absolute;
  z-index: 2;
  top: 19px;
  left: 16px;
  color: var(--ab-primary);
  font-size: 16px;
  font-weight: 750;
  line-height: 1;
  pointer-events: none;
}

.airport-booking-form__page--route-concept [data-route-airport-row] > [data-route-airport-label] {
  pointer-events: none;
}

.airport-booking-form__page--route-concept [data-route-address-row] input {
  padding-left: 74px;
}

.airport-booking-form__page--route-concept [data-route-airport-row] input[data-destination-search],
.airport-booking-form__page--route-concept [data-route-airport-row] > [data-route-airport-label] + .airport-booking-form__autocomplete-wrap input {
  padding-right: 52px;
  padding-left: 82px;
}

.airport-booking-form__native-destination {
  display: none !important;
}

.airport-booking-form__page--route-concept [data-route-address-row] > [data-route-address-label] + .airport-booking-form__autocomplete-wrap input {
  padding-left: 74px;
}

.airport-booking-form__page--route-concept [data-route-fields] > label:first-child,
.airport-booking-form__page--route-concept [data-passenger-row],
.airport-booking-form__page--route-concept [data-destination-kind-row] {
  margin-bottom: 0;
}

.airport-booking-form__page--route-concept [data-route-fields] > label:first-child {
  max-width: 100%;
}

.airport-booking-form__page--route-concept [data-passenger-row] {
  max-width: 220px;
  margin-top: 4px;
}

.airport-booking-form__page--route-concept .airport-booking-form__link-button {
  position: relative;
  justify-self: start;
  margin: 0;
  padding: 0;
  color: var(--ab-primary);
}

.airport-booking-form__page--route-concept [data-stops]:not(:empty) + .airport-booking-form__link-button {
  margin: 10px 0 14px;
}

.airport-booking-form__page--route-concept .airport-booking-form__link-button::before {
  content: none;
}

.airport-booking-form__page--route-concept .airport-booking-form__side {
  border-left-color: #d9e6f5;
  align-content: start;
  align-items: start;
  gap: 12px;
}

.airport-booking-form__page--route-concept .airport-booking-form__side > div {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #d7e6f7;
  background: linear-gradient(180deg, #f7fbff, #fff);
  box-shadow: 0 8px 22px rgba(47, 127, 200, .08);
}

.airport-booking-form__page--route-concept .airport-booking-form__side > [data-flight-block] {
  display: grid;
  width: 100%;
  gap: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.airport-booking-form__page--route-concept .airport-booking-form__flight-card {
  padding: 14px;
  border: 1px solid #d7e6f7;
  border-radius: 8px;
  background: linear-gradient(180deg, #f7fbff, #fff);
  box-shadow: 0 8px 22px rgba(47, 127, 200, .08);
}

.airport-booking-form.is-non-flight-destination .airport-booking-form__page--route-concept .airport-booking-form__flight-card {
  width: 100%;
}

.airport-booking-form.is-non-flight-destination .airport-booking-form__page--route-concept .airport-booking-form__flight-card--details,
.airport-booking-form.is-non-flight-destination .airport-booking-form__page--route-concept .airport-booking-form__flight-card--timing {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.airport-booking-form.is-non-flight-destination .airport-booking-form__page--route-concept .airport-booking-form__flight-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.15;
}

.airport-booking-form.is-non-flight-destination .airport-booking-form__page--route-concept .airport-booking-form__side .airport-booking-form__datetime-field,
.airport-booking-form.is-non-flight-destination .airport-booking-form__page--route-concept .airport-booking-form__time-choice {
  margin: 0;
}

.airport-booking-form.is-non-flight-destination .airport-booking-form__page--route-concept .airport-booking-form__time-choice small {
  max-width: 30rem;
}

.airport-booking-form__page--route-concept .airport-booking-form__side > [data-flight-priority-block] {
  padding: 12px 14px;
}

.airport-booking-form__page--route-concept [data-outbound-date-label],
.airport-booking-form__page--route-concept [data-return-date-label] {
  display: none;
}

.airport-booking-form__page--route-concept .airport-booking-form__advice {
  margin-top: 10px;
  border-color: #bed8f4;
  background: #f4f9ff;
}

.airport-booking-form__page--route-concept .airport-booking-form__actions {
  margin: 0 -24px -24px;
  padding: 22px 24px;
  border-top: 1px solid #e5edf7;
  background: linear-gradient(90deg, #f7fbff, #fff7f2);
}

@media (min-width: 901px) {
  .airport-booking-form__page--route-concept {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .8fr);
    column-gap: 22px;
    row-gap: 14px;
  }

  .airport-booking-form__page--route-concept .airport-booking-form__grid--route {
    display: contents;
  }

  .airport-booking-form__page--route-concept .airport-booking-form__grid--route > :first-child {
    grid-column: 1;
    grid-row: 1;
  }

  .airport-booking-form__page--route-concept .airport-booking-form__side {
    grid-column: 2;
    grid-row: 1 / span 4;
  }

  .airport-booking-form__page--route-concept .airport-booking-form__advice {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    margin-top: 6px;
  }

  .airport-booking-form__page--route-concept .airport-booking-form__start-price {
    grid-column: 1;
    grid-row: 3;
    align-self: start;
  }

  .airport-booking-form__page--route-concept .airport-booking-form__actions {
    grid-column: 1 / -1;
    grid-row: 5;
  }
}

.airport-booking-form *,
.airport-booking-form *::before,
.airport-booking-form *::after {
  box-sizing: border-box;
}

.airport-booking-form__header {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.airport-booking-form__header h2 {
  margin: 0;
  color: #111827;
  font-size: 28px;
  font-weight: 750;
  line-height: 1.12;
}

.airport-booking-form__header-actions {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  flex: 0 0 auto;
}

.airport-booking-form__header-actions button {
  appearance: none;
  -webkit-appearance: none;
  min-height: 42px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #fff;
  color: #111827;
  font-family: inherit;
  font-size: 15px;
  font-weight: 750;
  cursor: pointer;
}

.airport-booking-form__language {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 0 12px;
}

.airport-booking-form__language span {
  position: relative;
  width: 26px;
  height: 18px;
  overflow: hidden;
  border-radius: 3px;
  background: linear-gradient(to bottom, #ae1c28 0 33.33%, #fff 33.33% 66.66%, #21468b 66.66% 100%);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, .12);
}

.airport-booking-form__cart {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 0 14px;
  color: var(--ab-primary);
}

.airport-booking-form__cart span {
  font-size: 18px;
  line-height: 1;
  transform: rotate(-8deg);
}

.airport-booking-form__login {
  padding: 0 22px;
}

.airport-booking-form__header p {
  margin: 0;
  color: #526071;
}

.airport-booking-form__steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--ab-border);
  border-radius: 8px;
  background: var(--ab-soft);
}

.airport-booking-form__steps button {
  appearance: none;
  -webkit-appearance: none;
  min-height: 58px;
  padding: 0 12px;
  border: 0;
  border-right: 1px solid var(--ab-border);
  background: transparent;
  color: #6b7280;
  font-family: inherit;
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.airport-booking-form__steps button:last-child {
  border-right: 0;
}

.airport-booking-form__steps button.is-active {
  background: #fff;
  color: var(--ab-primary);
}

.airport-booking-form__step-icon {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: rgba(47, 127, 200, .10);
  color: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.airport-booking-form__step-label {
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 640px) {
  .airport-booking-form__steps button {
    min-height: 38px;
  }

  .airport-booking-form__step-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .airport-booking-form__step-icon {
    width: 24px;
    height: 24px;
  }
}

.airport-booking-form__page {
  display: grid;
  gap: 18px;
}

.airport-booking-form__page[data-step="4"] {
  gap: 12px;
}

.airport-booking-form [hidden],
.airport-booking-form .is-hidden {
  display: none !important;
}

.airport-booking-form .airport-booking-form__page[hidden],
.airport-booking-form .airport-booking-form__page:not(.is-active) {
  display: none !important;
}

.airport-booking-form__grid {
  display: grid;
  gap: 26px;
  align-items: start;
}

.airport-booking-form__grid--route {
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .8fr);
}

.airport-booking-form__destination-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.airport-booking-form__page--route-concept .airport-booking-form__destination-row {
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 100%;
}

.airport-booking-form__page--route-concept .airport-booking-form__destination-row [data-airport-location-row] {
  grid-column: 1 / -1;
}

.airport-booking-form__destination-row label {
  max-width: 100%;
  margin-bottom: 18px;
}

.airport-booking-form__page--route-concept .airport-booking-form__destination-row label {
  margin-bottom: 0;
}

.airport-booking-form__side {
  display: grid;
  gap: 18px;
  padding-left: 24px;
  border-left: 1px solid #e5e7eb;
}

.airport-booking-form h3 {
  margin: 0 0 18px;
  color: var(--ab-primary);
  font-size: 24px;
  font-weight: 650;
  line-height: 1.2;
}

.airport-booking-form fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border: 1px solid #d7dce2;
  border-radius: 8px;
}

.airport-booking-form legend {
  padding: 0 8px;
  font-weight: 700;
}

.airport-booking-form__choice-group {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.airport-booking-form__choice-group legend {
  padding: 0;
  color: #111827;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}

.airport-booking-form__choice-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.airport-booking-form__choice-options label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid #c8d7e8;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  color: #111827;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(47, 127, 200, .06);
}

.airport-booking-form__choice-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.airport-booking-form__choice-options span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.airport-booking-form__choice-options span::before {
  content: "";
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  border: 2px solid #8fb5db;
  border-radius: 999px;
  background: #fff;
}

.airport-booking-form__choice-options input:checked + span {
  color: var(--ab-primary);
}

.airport-booking-form__choice-options input:checked + span::before {
  border-color: var(--ab-primary);
  background: var(--ab-primary);
  box-shadow: inset 0 0 0 4px #fff;
}

.airport-booking-form__choice-options label:has(input:checked) {
  border-color: var(--ab-primary);
  background: var(--ab-route-soft);
  box-shadow: 0 0 0 2px rgba(47, 127, 200, .12);
}

.airport-booking-form__choice-options label:focus-within {
  border-color: var(--ab-primary);
  box-shadow: 0 0 0 3px rgba(47, 127, 200, .16);
}

.airport-booking-form__choice-group--airport-location {
  gap: 8px;
  margin-bottom: 0;
}

.airport-booking-form__choice-options--airport-location {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.airport-booking-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: #111827;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.airport-booking-form .airport-booking-form__choice-options label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  margin: 0;
  padding: 9px 12px;
  border: 1px solid #c8d7e8;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  color: #111827;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(47, 127, 200, .06);
}

.airport-booking-form .airport-booking-form__choice-options input {
  position: absolute;
  width: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
  box-shadow: none;
}

.airport-booking-form .airport-booking-form__choice-options span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.airport-booking-form .airport-booking-form__choice-options span::before {
  content: "";
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  border: 2px solid #8fb5db;
  border-radius: 999px;
  background: #fff;
}

.airport-booking-form h4 {
  margin: 18px 0 8px;
  color: var(--ab-primary);
  font-size: 22px;
  font-weight: 750;
  line-height: 1.2;
}

.airport-booking-form__login-note {
  margin: -2px 0 4px;
  color: #6b7280;
  font-size: 16px;
}

.airport-booking-form__login-note button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ab-primary);
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  cursor: pointer;
}

.airport-booking-form__booking-type {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid #d7dce2;
  border-radius: 7px;
}

.airport-booking-form__booking-type label {
  margin: 0;
  display: block;
  cursor: pointer;
}

.airport-booking-form__booking-type input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.airport-booking-form__booking-type span {
  display: block;
  min-width: 120px;
  padding: 10px 18px;
  background: #fff;
  color: #4b5563;
  font-weight: 650;
  text-align: center;
}

.airport-booking-form__booking-type label + label span {
  border-left: 1px solid #d7dce2;
}

.airport-booking-form__booking-type input:checked + span {
  background: #f4f0ff;
  color: var(--ab-primary);
}

.airport-booking-form__contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.airport-booking-form__contact-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.airport-booking-form__business-fields,
.airport-booking-form__company-address {
  display: grid;
  gap: 8px;
}

.airport-booking-form__page[data-step="4"] h4 {
  margin: 12px 0 4px;
}

.airport-booking-form__page[data-step="4"] label {
  margin-bottom: 10px;
}

.airport-booking-form__page[data-step="4"] .airport-booking-form__contact-grid {
  gap: 12px;
}

.airport-booking-form__removable-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px;
  gap: 10px;
  align-items: end;
}

.airport-booking-form__removable-field label {
  margin-bottom: 18px;
}

.airport-booking-form__removable-field button {
  width: 38px;
  min-height: 38px;
  margin-bottom: 18px;
  border: 1px solid #cbd3dc;
  border-radius: 999px;
  background: #fff;
  color: var(--ab-primary);
  font-family: inherit;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.airport-booking-form__review {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.airport-booking-form__review-card {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 16px;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 4px 14px rgba(15, 23, 42, .05);
}

.airport-booking-form__review-card--total {
  grid-column: 1 / -1;
  background: #eef6ff;
  border-color: #bfdbfe;
}

.airport-booking-form__review-card--total .airport-booking-form__review-row:first-of-type strong {
  color: #111827;
  font-size: 20px;
}

.airport-booking-form__review-card h4 {
  margin: 0 0 2px;
  color: var(--ab-primary);
  font-size: 18px;
  font-weight: 800;
}

.airport-booking-form__review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.airport-booking-form__review-edit {
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid #c8d7e8;
  border-radius: 7px;
  background: #fff;
  color: var(--ab-primary);
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.airport-booking-form__review-row {
  display: grid;
  grid-template-columns: minmax(105px, .42fr) minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding-top: 8px;
  border-top: 1px solid #edf2f7;
}

.airport-booking-form__review-row span {
  color: #64748b;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

.airport-booking-form__review-row strong {
  min-width: 0;
  color: #111827;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.airport-booking-form label.airport-booking-form__review-field,
.airport-booking-form__review-field {
  display: grid;
  gap: 5px;
  margin: 0;
  color: #111827;
  font-size: 14px;
  font-weight: 750;
}

.airport-booking-form__review-field > span {
  color: #526071;
  font-size: 13px;
  font-weight: 750;
}

.airport-booking-form__review-field input,
.airport-booking-form__review-field select {
  min-height: 42px;
  padding: 8px 10px;
  font-size: 15px;
}

.airport-booking-form__review-field input:disabled {
  background: #eef3f8;
  color: #526071;
  cursor: not-allowed;
}

.airport-booking-form label.airport-booking-form__review-check,
.airport-booking-form__review-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #111827;
  font-size: 15px;
  font-weight: 750;
}

.airport-booking-form__review-check input {
  width: 20px;
  min-height: 20px;
  flex: 0 0 20px;
}

.airport-booking-form__payment-methods {
  display: grid;
  gap: 12px;
}

.airport-booking-form__payment-method {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--ab-border);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.airport-booking-form__payment-method:has(input:checked) {
  border-color: var(--ab-primary);
  background: #f1f7fe;
  box-shadow: 0 0 0 2px rgba(47, 127, 200, .12);
}

.airport-booking-form__payment-method input {
  width: 22px;
  height: 22px;
  min-height: 22px;
  margin-top: 2px;
  accent-color: var(--ab-primary);
}

.airport-booking-form__payment-method strong,
.airport-booking-form__payment-method small {
  display: block;
}

.airport-booking-form__payment-method small {
  margin-top: 4px;
  color: #64748b;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.airport-booking-form__payment-summary {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid #bfd8fb;
  border-radius: 8px;
  background: #f1f7fe;
}

.airport-booking-form__payment-summary > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(47, 127, 200, .16);
}

.airport-booking-form__payment-summary > div:last-child {
  border-bottom: 0;
}

.airport-booking-form__payment-summary span {
  color: #344054;
  font-weight: 700;
}

.airport-booking-form__payment-summary strong {
  color: #151b2d;
  text-align: right;
}

.airport-booking-form__payment-message {
  padding: 12px 14px;
  border: 1px solid #c8d7e8;
  border-radius: 8px;
  background: #fff;
  color: #1f3f8f;
  font-weight: 700;
}

.airport-booking-form__payment-message.is-error {
  border-color: #fecaca;
  background: #fef2f2;
  color: #991b1b;
}

.airport-booking-form__payment-message.is-success {
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: #166534;
}

.airport-booking-form__payment-message a {
  color: inherit;
  text-decoration: underline;
}

.airport-booking-form__terms {
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 2px 0 4px;
  padding: 14px;
  border: 1px solid #c8d7e8;
  border-radius: 8px;
  background: #fff;
}

.airport-booking-form__terms.is-invalid {
  border-color: #fecaca;
  background: #fef2f2;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, .1);
}

.airport-booking-form__terms strong {
  color: #111827;
  font-size: 15px;
  line-height: 1.4;
}

.airport-booking-form__terms a {
  color: var(--ab-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.airport-booking-form__terms small {
  display: block;
  flex: 0 0 100%;
  margin: 6px 0 0 34px;
  color: #991b1b;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.airport-booking-form__other-traveller {
  margin: 18px 0;
  padding-top: 18px;
  border-top: 1px solid #e5e7eb;
}

.airport-booking-form__helper-text {
  margin: -2px 0 14px;
  color: var(--ab-muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.4;
}

.airport-booking-form input,
.airport-booking-form select {
  width: 100%;
  min-height: 50px;
  padding: 10px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  background-color: #fff;
  color: #111827;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
}

.airport-booking-form input::placeholder {
  color: #9ca3af;
}

.airport-booking-form input:focus,
.airport-booking-form select:focus {
  outline: 3px solid rgba(47, 127, 200, .18);
  border-color: var(--ab-primary);
}

.airport-booking-form input.airport-booking-form__control--invalid,
.airport-booking-form select.airport-booking-form__control--invalid,
.airport-booking-form button.airport-booking-form__control--invalid {
  border-color: #dc2626;
  outline: 3px solid rgba(220, 38, 38, .12);
}

.airport-booking-form__datetime-field {
  position: relative;
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: #111827;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.airport-booking-form__datetime-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.airport-booking-form__datetime-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  padding: 10px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  background: #fff;
  color: #111827;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
}

.airport-booking-form__page--route-concept .airport-booking-form__side label {
  gap: 6px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.2;
}

.airport-booking-form__page--route-concept .airport-booking-form__side input[type="text"] {
  min-height: 46px;
  font-size: 15px;
}

.airport-booking-form__page--route-concept .airport-booking-form__side .airport-booking-form__datetime-field {
  gap: 6px;
  margin-bottom: 10px;
}

.airport-booking-form__page--route-concept .airport-booking-form__side .airport-booking-form__datetime-trigger {
  min-height: 46px;
  padding: 8px 12px;
  font-size: 15px;
}

.airport-booking-form__datetime-summary {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.airport-booking-form__time-choice {
  display: grid;
  gap: 6px;
  margin: 2px 0 10px;
}

.airport-booking-form__time-choice > span {
  color: #151b2d;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.airport-booking-form__time-choice small {
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.airport-booking-form__checkbox--compact {
  min-height: 0;
  margin: -4px 0 8px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.airport-booking-form__checkbox--compact strong {
  font-size: 14px;
  color: #64748b;
}

.airport-booking-form__start-price {
  display: inline-grid;
  width: fit-content;
  max-width: 100%;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  background: #eff6ff;
  color: #1e3a8a;
}

.airport-booking-form__start-price.has-admin-price {
  grid-template-columns: minmax(180px, auto) minmax(220px, 1fr);
}

.airport-booking-form__start-price-main {
  display: grid;
  gap: 4px;
}

.airport-booking-form__start-price-main span {
  font-size: 15px;
  font-weight: 750;
  color: #334155;
}

.airport-booking-form__start-price-main strong {
  font-size: 30px;
  font-weight: 850;
  line-height: 1.1;
  color: var(--ab-primary);
}

.airport-booking-form__admin-price {
  display: grid;
  gap: 6px;
  padding-left: 12px;
  border-left: 1px solid #bfdbfe;
  color: #334155;
}

.airport-booking-form__admin-price > span {
  font-size: 12px;
  font-weight: 850;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0;
}

.airport-booking-form__admin-price dl {
  display: grid;
  gap: 5px;
  margin: 0;
}

.airport-booking-form__admin-price dl div {
  display: grid;
  grid-template-columns: minmax(100px, auto) 1fr;
  gap: 8px;
  font-size: 12px;
  line-height: 1.35;
}

.airport-booking-form__admin-price dt {
  font-weight: 850;
}

.airport-booking-form__admin-price dd {
  margin: 0;
  color: #475569;
}

.airport-booking-form__datetime-trigger:focus {
  outline: 3px solid rgba(47, 127, 200, .18);
  border-color: var(--ab-primary);
}

.airport-booking-form__datetime-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--ab-primary);
  font-size: 18px;
  line-height: 1;
}

.airport-booking-form__datetime-popover {
  position: absolute;
  z-index: 999998;
  top: calc(100% - 10px);
  left: 0;
  width: min(430px, calc(100vw - 40px));
  padding: 14px;
  border: 1px solid #d6dbe3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .18);
}

.airport-booking-form__datetime-header {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 8px;
  align-items: center;
  margin: -2px -2px 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #edf0f4;
  color: var(--ab-primary);
  text-align: center;
}

.airport-booking-form__datetime-header strong {
  overflow: hidden;
  font-size: 18px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.airport-booking-form__datetime-header button {
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--ab-primary);
  font-family: inherit;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.airport-booking-form__datetime-header button:hover,
.airport-booking-form__datetime-header button:focus {
  background: #f3f0ff;
  outline: 0;
}

.airport-booking-form__datetime-weekdays,
.airport-booking-form__datetime-grid {
  display: grid;
  gap: 6px;
}

.airport-booking-form__datetime-weekdays,
.airport-booking-form__datetime-grid--days {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.airport-booking-form__datetime-weekdays {
  margin-bottom: 6px;
  color: var(--ab-primary);
  font-size: 14px;
  font-weight: 750;
  text-align: center;
}

.airport-booking-form__datetime-grid--hours,
.airport-booking-form__datetime-grid--minutes {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.airport-booking-form__datetime-grid button {
  min-height: 42px;
  padding: 0 8px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #111827;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}

.airport-booking-form__datetime-grid button:hover,
.airport-booking-form__datetime-grid button:focus {
  background: #f3f0ff;
  color: var(--ab-primary);
  outline: 0;
}

.airport-booking-form__datetime-grid button.is-muted {
  color: #9ca3af;
}

.airport-booking-form__datetime-grid button.is-selected,
.airport-booking-form__datetime-grid button:active {
  background: var(--ab-success);
  color: #fff;
}

.airport-booking-form__datetime-grid button:disabled {
  color: #f0a7a7;
  cursor: not-allowed;
  text-decoration: line-through;
}

.airport-booking-form__datetime-grid button:disabled:hover {
  background: transparent;
}

.airport-booking-form__autocomplete-wrap {
  position: relative;
}

.airport-booking-form__destination-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 34px;
  height: 34px;
  padding: 0;
  transform: translateY(-50%);
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #2f7fc8;
  cursor: pointer;
}

.airport-booking-form__destination-toggle::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 10px;
  width: 12px;
  height: 12px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(45deg);
  transition: transform .18s ease, top .18s ease;
}

.airport-booking-form__destination-toggle[aria-expanded="true"]::before {
  top: 14px;
  transform: rotate(225deg);
}

.airport-booking-form__destination-toggle:hover,
.airport-booking-form__destination-toggle:focus {
  background: #eef6ff;
  outline: none;
}

.airport-booking-form__autocomplete-list {
  position: absolute;
  z-index: 999999;
  top: calc(100% + 4px);
  right: 0;
  left: 0;
  max-height: 320px;
  overflow: auto;
  border: 1px solid #cbd3dc;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, .16);
}

.airport-booking-form__autocomplete-list button {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-bottom: 1px solid #eef2f7;
  background: #fff;
  color: #172033;
  font-family: inherit;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
}

.airport-booking-form__autocomplete-list button:hover,
.airport-booking-form__autocomplete-list button:focus {
  background: #f5f7fb;
}

.airport-booking-form__field-status {
  display: block;
  margin-top: 4px;
  color: #475569;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.airport-booking-form__field-status[data-status-type="success"] {
  color: #166534;
}

.airport-booking-form__page--route-concept .airport-booking-form__field-status,
.airport-booking-form__page--route-concept .airport-booking-form__field-status[data-status-type="success"],
.airport-booking-form__page--route-concept .airport-booking-form__field-status[data-status-type="info"] {
  display: none;
}

.airport-booking-form__field-status[data-status-type="warning"] {
  display: block;
  color: #92400e;
}

.airport-booking-form__field-status[data-status-type="error"] {
  display: block;
  color: #b91c1c;
}

.pac-container {
  z-index: 999999;
}

.airport-booking-form__link-button {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  align-self: start;
  min-height: 34px;
  margin: -2px 0 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ab-primary);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.airport-booking-form__link-button--compact {
  margin: -6px 0 18px;
  min-height: 28px;
  font-size: 15px;
}

.airport-booking-form__stop {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
}

.airport-booking-form__stop-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px;
  gap: 8px;
  align-items: center;
}

.airport-booking-form__stop-field {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 54px;
  border: 1px solid #c7d7ea;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.airport-booking-form__stop-field > span {
  flex: 0 0 auto;
  min-width: 74px;
  padding-left: 18px;
  color: var(--ab-primary);
  font-size: 16px;
  font-weight: 750;
  line-height: 1;
}

.airport-booking-form__stop-field input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px 0 0;
  border: 0 !important;
  background: transparent;
  box-shadow: none !important;
}

.airport-booking-form__stop-control .airport-booking-form__autocomplete-wrap {
  min-width: 0;
}

.airport-booking-form__stop-field > .airport-booking-form__autocomplete-wrap {
  flex: 1 1 auto;
  min-width: 0;
}

.airport-booking-form__stop .airport-booking-form__field-status {
  grid-column: 1 / -1;
}

.airport-booking-form__stop-control > button {
  width: 36px;
  min-height: 36px;
  margin: 0;
  border: 1px solid #cbd3dc;
  border-radius: 999px;
  background: #fff;
  color: var(--ab-primary);
  font-family: inherit;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.airport-booking-form__advice {
  padding: 12px 14px;
  border: 1px solid #c7ddff;
  border-radius: 8px;
  background: #eff6ff;
  color: #1e3a8a;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.airport-booking-form__advice.is-flight-alert {
  border-color: #fecaca;
  background: #fef2f2;
  color: #991b1b;
  font-weight: 800;
}

.airport-booking-form__advice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.airport-booking-form__advice-card {
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid #c7ddff;
  border-radius: 8px;
  background: #f8fbff;
}

.airport-booking-form__advice-card.is-flight-alert {
  border-color: #fecaca;
  background: #fff7f7;
  color: #991b1b;
  font-weight: 800;
}

.airport-booking-form__advice-title {
  display: block;
  margin-bottom: 6px;
  color: var(--ab-primary);
}

.airport-booking-form__advice-list {
  margin: 0;
  padding-left: 18px;
}

.airport-booking-form__advice-line {
  display: block;
}

.airport-booking-form__advice-line + .airport-booking-form__advice-line,
.airport-booking-form__advice-line + .airport-booking-form__advice-list,
.airport-booking-form__advice-list + .airport-booking-form__advice-line,
.airport-booking-form__advice-list + .airport-booking-form__advice-list {
  margin-top: 6px;
}

.airport-booking-form__advice-line + .airport-booking-form__advice-action,
.airport-booking-form__advice-list + .airport-booking-form__advice-action {
  display: inline-block;
  margin-top: 6px;
}

.airport-booking-form__advice-action {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ab-primary);
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
}

.airport-booking-form__advice-applied {
  display: inline-block;
  margin-top: 6px;
  color: #166534;
  font-weight: 800;
}

.airport-booking-form__advice-past {
  display: inline-block;
  margin-top: 6px;
  color: #991b1b;
  font-weight: 800;
}

.airport-booking-form__advice-manual {
  display: inline-block;
  margin-top: 6px;
  color: #b45309;
  font-weight: 800;
}

.airport-booking-form__cards,
.airport-booking-form__vehicle-list {
  display: grid;
  gap: 18px;
}

.airport-booking-form__cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.airport-booking-form__cards--passengers {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.airport-booking-form__card--passengers {
  background: linear-gradient(180deg, #fff, #f8fbff);
}

.airport-booking-form__carry-service {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid #c7ddff;
  border-radius: 8px;
  background: #f7fbff;
}

.airport-booking-form__checkbox--carry-service {
  align-items: flex-start;
  margin: 0;
}

.airport-booking-form__checkbox--carry-service > span:last-child {
  display: grid;
  gap: 3px;
}

.airport-booking-form__checkbox--carry-service small {
  color: var(--ab-muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
}

.airport-booking-form__carry-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  align-items: start;
}

.airport-booking-form__carry-options.is-hidden {
  display: none;
}

.airport-booking-form__carry-option {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.airport-booking-form__carry-option > span {
  color: #111827;
  font-weight: 800;
}

.airport-booking-form__carry-inline-option {
  align-self: end;
  min-height: 50px;
  margin: 0;
  padding: 10px 0;
}

.airport-booking-form__carry-trip-options {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
  margin: 0;
  padding: 12px;
  border: 1px solid #cfe1f5;
  border-radius: 8px;
  background: #fff;
}

.airport-booking-form__carry-trip-options.is-hidden {
  display: none;
}

.airport-booking-form__carry-trip-title {
  grid-column: 1 / -1;
  margin: 0;
  color: #111827;
  font-weight: 800;
}

.airport-booking-form__carry-trip-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  min-height: 52px;
  padding: 10px;
  border: 1px solid #dbe7f5;
  border-radius: 8px;
  background: #f8fbff;
  color: #1f2937;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
}

.airport-booking-form__carry-trip-options label span {
  min-width: 0;
}

.airport-booking-form__carry-trip-options input[type="radio"] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  padding: 0;
  border: 2px solid #8fb5db;
  border-radius: 999px;
  appearance: none;
  background: #fff;
  box-shadow: inset 0 0 0 4px #fff;
}

.airport-booking-form__carry-trip-options input[type="radio"]:checked {
  border-color: var(--ab-primary);
  background: var(--ab-primary);
}

.airport-booking-form__carry-options p {
  grid-column: 1 / -1;
  margin: 0;
  padding: 10px 12px;
  border-radius: 7px;
  background: #fff;
  color: #1e3a8a;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.airport-booking-form__pickup-wait-panel {
  display: grid;
  gap: 12px;
  margin: 16px 0;
  padding: 16px;
  border: 1px solid #c7ddff;
  border-radius: 8px;
  background: #f7fbff;
}

.airport-booking-form__pickup-wait-panel.is-hidden {
  display: none;
}

.airport-booking-form__pickup-wait-panel h4 {
  margin: 0;
}

.airport-booking-form__pickup-wait-intro,
.airport-booking-form__pickup-wait-status,
.airport-booking-form__pickup-wait-note {
  margin: 0;
  color: var(--ab-muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.4;
}

.airport-booking-form__pickup-wait-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.airport-booking-form__pickup-wait-grid label {
  margin: 0;
}

.airport-booking-form__pickup-wait-grid select {
  min-height: 54px;
  padding-right: 52px;
  border: 1px solid #c8d7e8;
  border-radius: 8px;
  appearance: none;
  background-color: #fff;
  background-image:
    linear-gradient(45deg, transparent 50%, #2f7fc8 50%),
    linear-gradient(135deg, #2f7fc8 50%, transparent 50%),
    linear-gradient(180deg, #fff, #f8fbff);
  background-position:
    calc(100% - 25px) 22px,
    calc(100% - 17px) 22px,
    0 0;
  background-size: 8px 8px, 8px 8px, 100% 100%;
  background-repeat: no-repeat;
  color: #172033;
  font-weight: 750;
  box-shadow: 0 1px 0 rgba(47, 127, 200, .08);
}

.airport-booking-form__pickup-wait-grid select:focus {
  border-color: var(--ab-primary);
  outline: 3px solid rgba(47, 127, 200, .18);
}

.airport-booking-form__pickup-wait-status {
  padding: 10px 12px;
  border-radius: 7px;
  background: #fff;
  color: #1e3a8a;
  font-weight: 800;
}

.airport-booking-form__pickup-wait-status:empty {
  display: none;
}

.airport-booking-form__pickup-wait-note {
  color: #475569;
}

.airport-booking-form__passenger-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 210px;
  margin: 0;
  padding: 20px;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 4px 14px rgba(15, 23, 42, .06);
}

.airport-booking-form__passenger-card label {
  margin: 0;
  color: #111827;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.15;
}

.airport-booking-form__passenger-card select {
  margin-top: 10px;
  font-size: 18px;
}

.airport-booking-form__passenger-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #eef6ff;
  color: var(--ab-primary);
}

.airport-booking-form__card .airport-booking-form__passenger-icon {
  margin-bottom: 2px;
}

.airport-booking-form__passenger-icon::before,
.airport-booking-form__passenger-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.airport-booking-form__passenger-icon::before {
  top: 12px;
  left: 20px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  box-shadow: -14px 8px 0 -3px currentColor, 14px 8px 0 -3px currentColor;
}

.airport-booking-form__passenger-icon::after {
  right: 11px;
  bottom: 12px;
  left: 11px;
  height: 16px;
  border-radius: 18px 18px 8px 8px;
}

.airport-booking-form__card,
.airport-booking-form__vehicle {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid #e0e4ea;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, .08);
}

.airport-booking-form__card {
  min-height: 210px;
  place-items: center;
  align-content: center;
  text-align: center;
}

.airport-booking-form__card strong,
.airport-booking-form__vehicle strong {
  color: var(--ab-primary);
  font-size: 18px;
  font-weight: 750;
  line-height: 1.2;
}

.airport-booking-form__card span,
.airport-booking-form__vehicle span {
  color: var(--ab-muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}

.airport-booking-form__card .airport-booking-form__card-icon {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 48px;
  color: var(--ab-primary);
}

.airport-booking-form__card-icon--suitcase::before,
.airport-booking-form__card-icon--trolley::before {
  content: "";
  position: absolute;
  right: 7px;
  bottom: 3px;
  left: 7px;
  height: 34px;
  border-radius: 7px;
  background: currentColor;
}

.airport-booking-form__card-icon--suitcase::after,
.airport-booking-form__card-icon--trolley::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 17px;
  width: 18px;
  height: 13px;
  border: 5px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.airport-booking-form__card-icon--trolley {
  transform: scale(.86);
}

.airport-booking-form__card-icon--trolley::before {
  border-radius: 8px 8px 6px 6px;
}

.airport-booking-form__stepper {
  display: inline-grid;
  grid-template-columns: 46px 40px 46px;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}

.airport-booking-form__stepper button {
  display: inline-grid;
  place-items: center;
  width: 46px;
  min-height: 46px;
  padding: 0;
  border: 1px solid var(--ab-primary);
  border-radius: 999px;
  background: #fff;
  color: var(--ab-primary);
  font-family: inherit;
  font-size: 30px;
  font-weight: 450;
  line-height: 1;
  cursor: pointer;
}

.airport-booking-form__stepper button:disabled {
  border-color: #d1d5db;
  color: #c4c8cf;
  cursor: not-allowed;
}

.airport-booking-form__stepper output {
  color: var(--ab-primary);
  font-size: 24px;
  font-weight: 800;
  text-align: center;
}

.airport-booking-form__vehicle {
  position: relative;
  grid-template-columns: 26px 88px minmax(260px, 1fr) minmax(100px, auto) auto;
  gap: 18px;
  align-items: center;
  overflow: hidden;
  min-height: 128px;
  padding: 18px;
}

.airport-booking-form__vehicle input[type="radio"] {
  width: 22px;
  height: 22px;
  min-height: 22px;
  margin: 0;
  padding: 0;
}

.airport-booking-form__vehicle button {
  appearance: none;
  -webkit-appearance: none;
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 7px;
  background: var(--ab-success);
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.airport-booking-form__vehicle button:disabled {
  background: #cbd5e1;
  color: #fff;
  cursor: not-allowed;
  opacity: .85;
}

.airport-booking-form__vehicle button:disabled:hover {
  background: #cbd5e1;
}

.airport-booking-form__vehicle.is-price-loading {
  cursor: wait;
}

.airport-booking-form__vehicle-art {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: #eef6ff;
  color: var(--ab-primary);
  font-size: 16px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.airport-booking-form__vehicle-art::before {
  content: "Taxi";
}

.airport-booking-form__vehicle-art::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 13px;
  left: 14px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  opacity: .22;
}

.airport-booking-form__vehicle-art--luxury::before {
  content: "Luxe";
}

.airport-booking-form__vehicle-art--luxury {
  background: #f3f6fa;
  color: #243244;
}

.airport-booking-form__vehicle-art--van::before {
  content: "MPV";
}

.airport-booking-form__vehicle-art--van {
  background: #fff3ec;
  color: var(--ab-accent);
}

.airport-booking-form__vehicle ul {
  display: grid;
  gap: 6px;
  margin: 12px 0 0;
  padding: 0;
  color: #6b7280;
  font-size: 15px;
  font-weight: 500;
  list-style: none;
}

.airport-booking-form__vehicle li {
  position: relative;
  padding-left: 26px;
}

.airport-booking-form__vehicle li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.airport-booking-form__vehicle-price {
  display: grid;
  gap: 3px;
  justify-items: end;
  color: var(--ab-primary);
  text-align: right;
}

.airport-booking-form__vehicle-price span {
  color: var(--ab-primary);
  font-size: 14px;
}

.airport-booking-form__vehicle-price strong {
  color: var(--ab-primary);
  font-size: 24px;
}

.airport-booking-form__vehicle-breakdown {
  max-width: 180px;
  color: #64748b;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

.airport-booking-form__vehicle-admin-price {
  display: grid;
  gap: 6px;
  width: min(100%, 240px);
  margin-top: 8px;
  padding: 8px;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  background: #f8fbff;
  color: #334155;
  text-align: left;
  justify-self: end;
}

.airport-booking-form__vehicle-admin-price > span {
  font-size: 11px;
  font-weight: 850;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0;
}

.airport-booking-form__vehicle-admin-price div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 8px;
  padding-top: 6px;
  border-top: 1px solid #e0ecff;
  font-size: 12px;
  line-height: 1.25;
}

.airport-booking-form__vehicle-admin-price b {
  grid-column: 1 / -1;
  font-weight: 850;
  color: #1d4f8f;
}

.airport-booking-form__vehicle-admin-price small {
  color: #475569;
  font-size: 12px;
  font-weight: 750;
}

.airport-booking-form__vehicle:has(input[type="radio"]:checked) {
  border-color: var(--ab-primary);
  box-shadow: 0 0 0 2px rgba(47, 127, 200, .18), 0 8px 20px rgba(15, 23, 42, .08);
}

.airport-booking-form__vehicle button:hover,
.airport-booking-form__submit:hover {
  background: var(--ab-success-dark);
}

.airport-booking-form label.airport-booking-form__checkbox,
.airport-booking-form__checkbox {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #111827;
  font-size: 15px;
  font-weight: 650;
}

.airport-booking-form label.airport-booking-form__checkbox--line,
.airport-booking-form__checkbox--line {
  justify-content: flex-start;
  margin: 10px 0;
  color: #111827;
  font-size: 16px;
  font-weight: 650;
}

.airport-booking-form__checkbox--flight-priority {
  margin: 0;
  padding: 2px 0;
}

.airport-booking-form__checkbox--flight-priority strong {
  color: #111827;
  font-size: 15px;
  font-weight: 750;
}

.airport-booking-form__checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.airport-booking-form__checkmark {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border: 2px solid #9ca3af;
  border-radius: 7px;
  background: #fff;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
}

.airport-booking-form__checkmark::before {
  content: "✓";
  transform: translateY(-1px);
}

.airport-booking-form__checkbox input:checked + .airport-booking-form__checkmark {
  border-color: var(--ab-primary);
  background: var(--ab-primary);
}

.airport-booking-form__checkbox--toggle {
  display: inline-flex;
  justify-self: start;
  margin: 2px 0 8px;
  padding: 8px 14px;
  border: 1px solid #d7dce2;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(15, 23, 42, .06);
}

.airport-booking-form__checkbox--toggle strong {
  color: #111827;
  font-weight: 800;
}

.airport-booking-form__special-luggage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 18px;
}

.airport-booking-form__special-luggage label.airport-booking-form__checkbox,
.airport-booking-form__special-luggage .airport-booking-form__checkbox {
  min-height: 58px;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 7px;
  background: #fff;
  color: var(--ab-primary);
  font-size: 15px;
  font-weight: 650;
}

.airport-booking-form__special-luggage .airport-booking-form__checkbox .airport-booking-form__special-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  color: var(--ab-primary);
  font-size: 20px;
  line-height: 1;
}

.airport-booking-form__special-luggage .airport-booking-form__checkbox strong {
  color: var(--ab-primary);
  font-weight: 800;
}

.airport-booking-form__special-luggage .airport-booking-form__checkbox:has(input:checked) {
  border-color: var(--ab-primary);
  background: #f1f7fe;
  color: var(--ab-primary);
}

.airport-booking-form__actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.airport-booking-form__back {
  appearance: none;
  -webkit-appearance: none;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--ab-primary);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.airport-booking-form__submit {
  appearance: none;
  -webkit-appearance: none;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 7px;
  background: var(--ab-success);
  color: #fff;
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 900px) {
  .airport-booking-form__grid--route,
  .airport-booking-form__cards,
  .airport-booking-form__cards--passengers,
  .airport-booking-form__destination-row,
  .airport-booking-form__review,
  .airport-booking-form__vehicle {
    grid-template-columns: 1fr;
  }

  .airport-booking-form__vehicle {
    align-items: start;
    gap: 12px;
  }

  .airport-booking-form__vehicle button {
    justify-self: start;
  }

  .airport-booking-form__vehicle-price {
    justify-items: start;
    text-align: left;
  }

  .airport-booking-form__passenger-card {
    grid-template-columns: 56px minmax(0, 1fr);
    min-height: 0;
    max-width: none;
  }

  .airport-booking-form__page--route-concept .airport-booking-form__destination-row {
    grid-template-columns: 1fr;
  }

  .airport-booking-form__side {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
  }
}

@media (max-width: 720px) {
  .airport-booking-form__start-price.has-admin-price {
    grid-template-columns: 1fr;
  }

  .airport-booking-form__admin-price {
    padding-top: 10px;
    padding-left: 0;
    border-top: 1px solid #bfdbfe;
    border-left: 0;
  }

  .airport-booking-form {
    gap: 14px;
    width: calc(100vw - 16px);
    max-width: none;
    margin: 8px calc(50% - 50vw + 8px);
    padding: 14px;
    border-radius: 8px;
  }

  .airport-booking-form__header {
    align-items: flex-start;
    gap: 12px;
    flex-direction: column;
  }

  .airport-booking-form__header h2 {
    font-size: 22px;
    line-height: 1.1;
  }

  .airport-booking-form__header-actions {
    width: 100%;
    gap: 8px;
  }

  .airport-booking-form__header-actions button {
    min-height: 38px;
    font-size: 14px;
  }

  .airport-booking-form__login {
    margin-left: auto;
    padding: 0 16px;
  }

  .airport-booking-form h3 {
    margin-bottom: 10px;
    font-size: 21px;
  }

  .airport-booking-form h4 {
    margin: 10px 0 4px;
    font-size: 19px;
  }

  .airport-booking-form__advice-grid {
    grid-template-columns: 1fr;
  }

  .airport-booking-form label {
    gap: 6px;
    margin-bottom: 12px;
    font-size: 15px;
  }

  .airport-booking-form .airport-booking-form__choice-options {
    gap: 8px;
  }

  .airport-booking-form .airport-booking-form__choice-options label {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 13px;
  }

  .airport-booking-form .airport-booking-form__choice-options--airport-location {
    grid-template-columns: 1fr;
  }

  .airport-booking-form input,
  .airport-booking-form select,
  .airport-booking-form__datetime-trigger {
    min-height: 46px;
    font-size: 15px;
  }

  .airport-booking-form__steps {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    border-radius: 7px;
  }

  .airport-booking-form__steps button {
    min-height: 42px;
    padding: 0 3px;
    font-size: 12px;
    gap: 4px;
  }

  .airport-booking-form__step-icon {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }

  .airport-booking-form__page--route-concept {
    margin: 0;
    padding: 14px;
    box-shadow: inset 3px 0 0 var(--ab-primary);
  }

  .airport-booking-form__page--route-concept .airport-booking-form__grid--route {
    gap: 16px;
    padding: 0 0 14px;
  }

  .airport-booking-form__page--route-concept [data-route-fields] {
    gap: 10px;
  }

  .airport-booking-form__page--route-concept [data-route-address-row] > [data-route-address-label] {
    top: 15px;
    left: 12px;
    font-size: 15px;
  }

  .airport-booking-form__page--route-concept [data-route-address-row] input,
  .airport-booking-form__page--route-concept [data-route-address-row] > [data-route-address-label] + .airport-booking-form__autocomplete-wrap input {
    padding-left: 62px;
  }

  .airport-booking-form__page--route-concept .airport-booking-form__side > div {
    padding: 14px;
  }

  .airport-booking-form__page--route-concept .airport-booking-form__actions {
    margin: 0 -14px -14px;
    padding: 14px;
  }

  .airport-booking-form__datetime-popover {
    position: fixed;
    top: max(74px, env(safe-area-inset-top));
    right: 8px;
    left: 8px;
    width: auto;
    max-height: calc(100vh - 100px);
    overflow: auto;
    padding: 10px;
  }

  .airport-booking-form__datetime-header {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    margin-bottom: 8px;
    padding-bottom: 8px;
  }

  .airport-booking-form__datetime-grid {
    gap: 4px;
  }

  .airport-booking-form__datetime-grid button {
    min-height: 36px;
    padding: 0 4px;
    font-size: 14px;
  }

  .airport-booking-form__actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .airport-booking-form__submit {
    width: 100%;
  }

  .airport-booking-form__special-luggage {
    grid-template-columns: 1fr;
  }

  .airport-booking-form__carry-service {
    padding: 14px;
  }

  .airport-booking-form__carry-options {
    grid-template-columns: 1fr;
  }

  .airport-booking-form__carry-trip-options {
    grid-template-columns: 1fr;
  }

  .airport-booking-form__cards,
  .airport-booking-form__vehicle-list {
    gap: 12px;
  }

  .airport-booking-form__cards--passengers {
    gap: 12px;
  }

  .airport-booking-form__passenger-card {
    grid-template-columns: 52px minmax(0, 1fr);
    min-height: 132px;
    padding: 14px;
    gap: 12px;
  }

  .airport-booking-form__passenger-card label {
    margin-bottom: 6px;
    font-size: 17px;
    line-height: 1.15;
  }

  .airport-booking-form__passenger-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .airport-booking-form__card {
    min-height: 172px;
    padding: 14px;
    gap: 8px;
  }

  .airport-booking-form__card .airport-booking-form__card-icon {
    width: 42px;
    height: 40px;
  }

  .airport-booking-form__card strong {
    font-size: 17px;
    line-height: 1.15;
  }

  .airport-booking-form__card span {
    font-size: 14px;
  }

  .airport-booking-form__stepper {
    grid-template-columns: 40px 34px 40px;
    gap: 8px;
    margin-top: 4px;
  }

  .airport-booking-form__stepper button {
    width: 40px;
    min-height: 40px;
    font-size: 26px;
  }

  .airport-booking-form__stepper output {
    font-size: 22px;
  }

  .airport-booking-form__vehicle {
    min-height: 0;
    padding: 14px;
    gap: 10px;
  }

  .airport-booking-form__vehicle-art {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    font-size: 13px;
  }

  .airport-booking-form__vehicle ul {
    gap: 4px;
    margin-top: 8px;
    font-size: 14px;
  }

  .airport-booking-form__contact-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .airport-booking-form__contact-grid--two {
    grid-template-columns: 1fr;
  }

  .airport-booking-form__booking-type {
    width: 100%;
    margin-bottom: 6px;
  }

  .airport-booking-form__booking-type span {
    min-width: 0;
    padding: 8px 12px;
  }

  .airport-booking-form label.airport-booking-form__checkbox,
  .airport-booking-form__checkbox {
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
  }

  .airport-booking-form__other-traveller {
    margin: 10px 0;
    padding-top: 12px;
  }

  .airport-booking-form__advice {
    padding: 10px 12px;
    font-size: 14px;
  }
}

/* Compact route radio groups. Keep these late in the file to beat older
   card/pill experiments for the same controls. */
.airport-booking-form .airport-booking-form__choice-group--trip,
.airport-booking-form .airport-booking-form__choice-group--airport-location {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.airport-booking-form .airport-booking-form__choice-group--trip legend,
.airport-booking-form .airport-booking-form__choice-group--airport-location legend {
  margin: 0 0 2px;
  padding: 0;
  color: #111827;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.airport-booking-form .airport-booking-form__choice-group--trip .airport-booking-form__choice-options,
.airport-booking-form .airport-booking-form__choice-group--airport-location .airport-booking-form__choice-options,
.airport-booking-form .airport-booking-form__choice-options--airport-location {
  display: flex;
  grid-template-columns: none;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 28px;
  max-width: none;
}

.airport-booking-form .airport-booking-form__choice-group--trip .airport-booking-form__choice-options label,
.airport-booking-form .airport-booking-form__choice-group--airport-location .airport-booking-form__choice-options label {
  position: relative;
  display: inline-flex;
  width: auto;
  max-width: 100%;
  min-width: 0;
  min-height: 28px;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #111827;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.15;
  box-shadow: none;
  cursor: pointer;
}

.airport-booking-form .airport-booking-form__choice-group--trip .airport-booking-form__choice-options label:has(input:checked),
.airport-booking-form .airport-booking-form__choice-group--airport-location .airport-booking-form__choice-options label:has(input:checked),
.airport-booking-form .airport-booking-form__choice-group--trip .airport-booking-form__choice-options label:focus-within,
.airport-booking-form .airport-booking-form__choice-group--airport-location .airport-booking-form__choice-options label:focus-within {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.airport-booking-form .airport-booking-form__choice-group--trip .airport-booking-form__choice-options input,
.airport-booking-form .airport-booking-form__choice-group--airport-location .airport-booking-form__choice-options input {
  position: static;
  display: inline-block;
  width: 19px;
  min-width: 19px;
  height: 19px;
  min-height: 0;
  flex: 0 0 19px;
  margin: 0;
  padding: 0;
  border: 2px solid #8fb5db;
  border-radius: 999px;
  appearance: none;
  background: #fff;
  box-shadow: inset 0 0 0 4px #fff;
  opacity: 1;
  pointer-events: auto;
}

.airport-booking-form .airport-booking-form__choice-group--trip .airport-booking-form__choice-options input:checked,
.airport-booking-form .airport-booking-form__choice-group--airport-location .airport-booking-form__choice-options input:checked {
  border-color: var(--ab-primary);
  background: var(--ab-primary);
}

.airport-booking-form .airport-booking-form__choice-group--trip .airport-booking-form__choice-options span,
.airport-booking-form .airport-booking-form__choice-group--airport-location .airport-booking-form__choice-options span {
  display: inline;
  min-width: 0;
  color: #111827;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.15;
  overflow-wrap: normal;
  word-break: normal;
}

.airport-booking-form .airport-booking-form__choice-group--trip .airport-booking-form__choice-options input:checked + span,
.airport-booking-form .airport-booking-form__choice-group--airport-location .airport-booking-form__choice-options input:checked + span {
  color: var(--ab-primary);
}

.airport-booking-form .airport-booking-form__choice-group--trip .airport-booking-form__choice-options span::before,
.airport-booking-form .airport-booking-form__choice-group--airport-location .airport-booking-form__choice-options span::before {
  content: none;
  display: none;
}

@media (max-width: 640px) {
  .airport-booking-form__datetime-split {
    grid-template-columns: 1fr;
  }

  .airport-booking-form .airport-booking-form__choice-group--trip,
  .airport-booking-form .airport-booking-form__choice-group--airport-location {
    margin-bottom: 12px;
  }

  .airport-booking-form .airport-booking-form__choice-group--trip .airport-booking-form__choice-options,
  .airport-booking-form .airport-booking-form__choice-group--airport-location .airport-booking-form__choice-options,
  .airport-booking-form .airport-booking-form__choice-options--airport-location {
    display: flex;
    grid-template-columns: none;
    gap: 9px 18px;
  }

  .airport-booking-form .airport-booking-form__choice-group--trip .airport-booking-form__choice-options label,
  .airport-booking-form .airport-booking-form__choice-group--airport-location .airport-booking-form__choice-options label,
  .airport-booking-form .airport-booking-form__choice-group--trip .airport-booking-form__choice-options span,
  .airport-booking-form .airport-booking-form__choice-group--airport-location .airport-booking-form__choice-options span {
    font-size: 15px;
  }
}

@media (max-width: 420px) {
  .airport-booking-form .airport-booking-form__choice-group--trip .airport-booking-form__choice-options,
  .airport-booking-form .airport-booking-form__choice-group--airport-location .airport-booking-form__choice-options,
  .airport-booking-form .airport-booking-form__choice-options--airport-location {
    gap: 9px 14px;
  }
}

/* Final route radio reset: compact radio text, no pills/cards. */
.airport-booking-form .airport-booking-form__choice-group--trip,
.airport-booking-form .airport-booking-form__choice-group--airport-location {
  display: block !important;
  margin: 0 0 16px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.airport-booking-form .airport-booking-form__choice-group--trip legend,
.airport-booking-form .airport-booking-form__choice-group--airport-location legend {
  display: block !important;
  float: none !important;
  width: 100% !important;
  margin: 0 0 8px !important;
  padding: 0 !important;
  color: #111827 !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}

.airport-booking-form .airport-booking-form__inline-radios {
  display: flex !important;
  grid-template-columns: none !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 10px 28px !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.airport-booking-form .airport-booking-form__inline-radios label {
  position: relative !important;
  display: inline-flex !important;
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: none !important;
  min-width: max-content !important;
  min-height: 26px !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #111827 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
}

.airport-booking-form .airport-booking-form__inline-radios label:has(input:checked),
.airport-booking-form .airport-booking-form__inline-radios label:focus-within {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.airport-booking-form .airport-booking-form__inline-radios input[type="radio"] {
  position: static !important;
  display: inline-block !important;
  flex: 0 0 18px !important;
  width: 18px !important;
  min-width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 2px solid #8fb5db !important;
  border-radius: 50% !important;
  appearance: none !important;
  background: #fff !important;
  box-shadow: inset 0 0 0 4px #fff !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.airport-booking-form .airport-booking-form__inline-radios input[type="radio"]:checked {
  border-color: var(--ab-primary) !important;
  background: var(--ab-primary) !important;
}

.airport-booking-form .airport-booking-form__inline-radios span {
  display: inline-block !important;
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: max-content !important;
  max-width: none !important;
  color: #111827 !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

.airport-booking-form .airport-booking-form__inline-radios input[type="radio"]:checked + span {
  color: var(--ab-primary) !important;
}

.airport-booking-form .airport-booking-form__inline-radios span::before {
  content: none !important;
  display: none !important;
}

@media (max-width: 640px) {
  .airport-booking-form .airport-booking-form__inline-radios {
    gap: 9px 18px !important;
  }

  .airport-booking-form .airport-booking-form__inline-radios label,
  .airport-booking-form .airport-booking-form__inline-radios span {
    font-size: 15px !important;
  }
}

@media (max-width: 420px) {
  .airport-booking-form .airport-booking-form__inline-radios {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px 14px !important;
  }

  .airport-booking-form .airport-booking-form__choice-options--airport-location.airport-booking-form__inline-radios {
    grid-template-columns: 1fr !important;
  }

  .airport-booking-form .airport-booking-form__inline-radios label,
  .airport-booking-form .airport-booking-form__inline-radios span {
    min-width: 0 !important;
    max-width: 100% !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }
}

.airport-booking-form .airport-booking-form__choice-options--airport-location.airport-booking-form__inline-radios {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  align-items: start !important;
}

.airport-booking-form .airport-booking-form__choice-options--airport-location.airport-booking-form__inline-radios label {
  width: fit-content !important;
  min-width: 0 !important;
}

.airport-booking-form .airport-booking-form__choice-group--airport-location {
  max-width: 100% !important;
  margin: 4px 0 0 !important;
}

.airport-booking-form .airport-booking-form__choice-options--airport-location.airport-booking-form__inline-radios {
  display: block !important;
}

.airport-booking-form .airport-booking-form__choice-group--airport-location legend {
  margin: 0 0 6px !important;
  color: #111827 !important;
  font-size: 14px !important;
  font-weight: 800 !important;
}

.airport-booking-form__location-select {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.airport-booking-form__location-select-trigger {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 48px;
  padding: 0 46px 0 14px;
  border: 1px solid #c8d7e8;
  border-radius: 8px;
  background: #fff;
  color: #111827;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-align: left;
  box-shadow: 0 1px 0 rgba(47, 127, 200, .08);
  cursor: pointer;
}

.airport-booking-form__location-select-trigger::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 17px;
  width: 11px;
  height: 11px;
  margin-top: -8px;
  border-right: 3px solid var(--ab-primary);
  border-bottom: 3px solid var(--ab-primary);
  transform: rotate(45deg);
  transition: transform .18s ease, margin-top .18s ease;
}

.airport-booking-form__location-select-trigger[aria-expanded="true"]::after {
  margin-top: -2px;
  transform: rotate(225deg);
}

.airport-booking-form__location-select-trigger:hover,
.airport-booking-form__location-select-trigger:focus {
  border-color: var(--ab-primary);
  box-shadow: 0 0 0 3px rgba(47, 127, 200, .14);
  outline: 0;
}

.airport-booking-form__location-select-list {
  position: absolute;
  z-index: 999998;
  top: calc(100% + 4px);
  right: 0;
  left: 0;
  overflow: hidden;
  border: 1px solid #cbd3dc;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, .16);
}

.airport-booking-form__location-select-list button {
  display: block;
  width: 100%;
  padding: 11px 14px;
  border: 0;
  border-bottom: 1px solid #eef2f7;
  background: #fff;
  color: #172033;
  font-family: inherit;
  font-size: 14px;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}

.airport-booking-form__location-select-list button:last-child {
  border-bottom: 0;
}

.airport-booking-form__location-select-list button:hover,
.airport-booking-form__location-select-list button:focus,
.airport-booking-form__location-select-list button[aria-pressed="true"] {
  background: #f5f9ff;
  color: var(--ab-primary);
  outline: 0;
}

@media (max-width: 900px) {
  .airport-booking-form__location-select {
    max-width: none;
  }
}

.airport-booking-form [hidden],
.airport-booking-form .is-hidden,
.airport-booking-form .airport-booking-form__choice-group--airport-location[hidden],
.airport-booking-form .airport-booking-form__choice-group--airport-location.is-hidden {
  display: none !important;
}

.airport-booking-form .airport-booking-form__stop {
  display: grid !important;
  gap: 6px !important;
  margin: 0 !important;
}

.airport-booking-form [data-stops] {
  display: grid !important;
  gap: 14px !important;
  margin: 10px 0 14px !important;
}

.airport-booking-form .airport-booking-form__stop-control {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 44px !important;
  gap: 12px !important;
  align-items: center !important;
}

.airport-booking-form label.airport-booking-form__stop-field {
  position: relative !important;
  display: block !important;
  min-width: 0 !important;
  min-height: 54px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid #c8d7e8 !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 1px 0 rgba(47, 127, 200, .08) !important;
}

.airport-booking-form label.airport-booking-form__stop-field > span {
  position: absolute !important;
  z-index: 2 !important;
  top: 19px !important;
  left: 16px !important;
  width: auto !important;
  min-width: 0 !important;
  padding: 0 !important;
  color: var(--ab-primary) !important;
  font-size: 16px !important;
  font-weight: 750 !important;
  line-height: 1 !important;
  pointer-events: none !important;
}

.airport-booking-form label.airport-booking-form__stop-field .airport-booking-form__autocomplete-wrap {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
}

.airport-booking-form label.airport-booking-form__stop-field input {
  width: 100% !important;
  min-height: 54px !important;
  margin: 0 !important;
  padding: 0 16px 0 74px !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: transparent !important;
  box-shadow: none !important;
}

.airport-booking-form .airport-booking-form__stop-control > button {
  display: inline-grid !important;
  width: 36px !important;
  height: 36px !important;
  min-height: 36px !important;
  place-items: center !important;
  justify-self: center !important;
  margin: 0 !important;
  padding: 0 !important;
}

@media (max-width: 640px) {
  .airport-booking-form label.airport-booking-form__stop-field > span {
    top: 15px !important;
    left: 12px !important;
    font-size: 15px !important;
  }

  .airport-booking-form label.airport-booking-form__stop-field input {
    padding-left: 62px !important;
  }

  .airport-booking-form__review-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

.airport-booking-customer-portal {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
  color: #111827;
  font-family: inherit;
}

.airport-booking-customer-portal__panel {
  padding: 22px;
  border: 1px solid #d7e6f7;
  border-radius: 8px;
  background: linear-gradient(180deg, #f7fbff, #fff);
  box-shadow: 0 10px 28px rgba(47, 127, 200, .09);
}

.airport-booking-customer-portal__panel--wide {
  grid-column: 1 / -1;
}

.airport-booking-customer-portal h2 {
  margin: 0 0 8px;
  color: var(--ab-primary, #2f7fc8);
  font-size: 28px;
  line-height: 1.15;
}

.airport-booking-customer-portal p {
  margin: 0 0 16px;
  color: #64748b;
  font-weight: 650;
}

.airport-booking-customer-portal__form,
.airport-booking-customer-portal form {
  display: grid;
  gap: 12px;
}

.airport-booking-customer-portal label {
  display: grid;
  gap: 6px;
  color: #111827;
  font-weight: 800;
}

.airport-booking-customer-portal input[type="text"],
.airport-booking-customer-portal input[type="email"],
.airport-booking-customer-portal input[type="password"],
.airport-booking-customer-portal input[type="tel"],
.airport-booking-customer-portal input[type="number"],
.airport-booking-customer-portal select,
.airport-booking-customer-portal textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid #c8d7e8;
  border-radius: 8px;
  background: #fff;
  color: #111827;
  font: inherit;
  box-shadow: 0 1px 0 rgba(47, 127, 200, .08);
}

.airport-booking-customer-portal textarea {
  min-height: 92px;
  resize: vertical;
}

.airport-booking-customer-portal__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
  padding: 6px;
  border: 1px solid #dce8f5;
  border-radius: 8px;
  background: #f5f9ff;
}

.airport-booking-customer-portal__tabs a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #64748b;
  font-weight: 850;
  text-decoration: none;
}

.airport-booking-customer-portal__tabs a.is-active {
  border-color: #b9d8f7;
  background: #fff;
  color: var(--ab-primary, #2f7fc8);
  box-shadow: 0 3px 10px rgba(47, 127, 200, .1);
}

.airport-booking-customer-portal__tab-panel {
  display: grid;
  gap: 16px;
}

.airport-booking-customer-portal__tab-panel h3 {
  margin: 10px 0 0;
  color: #111827;
  font-size: 18px;
  line-height: 1.2;
}

.airport-booking-customer-portal__section {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid #d7e6f7;
  border-radius: 8px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 4px 16px rgba(47, 127, 200, .06);
}

.airport-booking-customer-portal__section h3 {
  margin: 0;
  color: var(--ab-primary, #2f7fc8);
  font-size: 20px;
}

.airport-booking-customer-portal__form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.airport-booking-customer-portal__form--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.airport-booking-customer-portal__wide,
.airport-booking-customer-portal__form button {
  grid-column: 1 / -1;
}

.airport-booking-customer-portal button,
.airport-booking-customer-portal input[type="submit"] {
  justify-self: start;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  background: #e8773f;
  color: #fff;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.airport-booking-customer-portal input:disabled {
  background: #eef4fb;
  color: #334155;
}

.airport-booking-customer-portal select {
  appearance: none;
  padding-right: 42px;
  background-color: #fff;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ab-primary, #2f7fc8) 50%),
    linear-gradient(135deg, var(--ab-primary, #2f7fc8) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 14px) 50%;
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.airport-booking-customer-portal__address-field {
  align-content: start;
}

.airport-booking-customer-portal__address-field .airport-booking-form__autocomplete-wrap {
  position: relative;
  display: grid;
  gap: 7px;
}

.airport-booking-customer-portal .airport-booking-form__field-status {
  display: block;
  min-height: 18px;
  color: #64748b;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

.airport-booking-customer-portal .airport-booking-form__field-status[data-status-type="success"] {
  color: #166534;
}

.airport-booking-customer-portal .airport-booking-form__field-status[data-status-type="warning"] {
  color: #b91c1c;
}

.airport-booking-customer-portal .airport-booking-form__autocomplete-list {
  position: absolute;
  z-index: 40;
  top: 52px;
  right: 0;
  left: 0;
  display: grid;
  gap: 4px;
  max-height: 260px;
  overflow: auto;
  padding: 8px;
  border: 1px solid #b9d8f7;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, .14);
}

.airport-booking-customer-portal .airport-booking-form__autocomplete-list[hidden] {
  display: none;
}

.airport-booking-customer-portal .airport-booking-form__autocomplete-list button {
  justify-self: stretch;
  min-height: auto;
  padding: 10px 12px;
  border: 0;
  border-radius: 7px;
  background: #fff;
  color: #111827;
  text-align: left;
  font-weight: 750;
}

.airport-booking-customer-portal .airport-booking-form__autocomplete-list button:hover,
.airport-booking-customer-portal .airport-booking-form__autocomplete-list button:focus {
  background: #eef6ff;
  color: var(--ab-primary, #2f7fc8);
}

.airport-booking-customer-portal__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 18px;
}

.airport-booking-customer-portal__header a {
  color: var(--ab-primary, #2f7fc8);
  font-weight: 800;
}

.airport-booking-customer-portal__bookings {
  display: grid;
  gap: 12px;
}

.airport-booking-customer-portal__booking {
  padding: 16px;
  border: 1px solid #e0eaf5;
  border-radius: 8px;
  background: #fff;
}

.airport-booking-customer-portal__booking header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.airport-booking-customer-portal__booking header span {
  color: #166534;
  font-weight: 800;
}

.airport-booking-customer-portal__booking dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.airport-booking-customer-portal__booking dl > div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 12px;
}

.airport-booking-customer-portal__booking dt {
  color: #64748b;
  font-weight: 800;
}

.airport-booking-customer-portal__booking dd {
  margin: 0;
  font-weight: 750;
}

.airport-booking-customer-portal__summary {
  display: grid;
  gap: 8px;
  margin: 0;
}

.airport-booking-customer-portal__summary > div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid #e5edf6;
}

.airport-booking-customer-portal__summary > div:last-child {
  border-bottom: 0;
}

.airport-booking-customer-portal__summary dt {
  color: #64748b;
  font-weight: 850;
}

.airport-booking-customer-portal__summary dd {
  margin: 0;
  font-weight: 800;
}

.airport-booking-customer-portal__form-grid--change {
  align-items: start;
}

.airport-booking-customer-portal__change-form input[type="date"],
.airport-booking-customer-portal__change-form input[type="time"],
.airport-booking-customer-portal__change-form select {
  min-height: 54px;
  border-radius: 8px;
  border: 1px solid #c8d7e8;
  background-color: #fff;
  color: #111827;
  font-weight: 800;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.airport-booking-customer-portal__change-stops {
  display: grid;
  gap: 14px;
}

.airport-booking-customer-portal__change-stops-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.airport-booking-customer-portal__change-stops-header > span {
  color: #111827;
  font-weight: 850;
}

.airport-booking-customer-portal__change-stops-list {
  display: grid;
  gap: 14px;
}

.airport-booking-customer-portal__change-stop-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

.airport-booking-customer-portal__change-stop-row .airport-booking-customer-portal__address-field {
  margin: 0;
}

.airport-booking-customer-portal__link-button {
  appearance: none;
  grid-column: auto;
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--airport-booking-primary);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.airport-booking-customer-portal__icon-button {
  grid-column: auto;
  min-height: auto;
  padding: 0;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid #c8d7e8;
  background: #fff;
  color: var(--airport-booking-primary);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.airport-booking-customer-portal__change-price {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid #bcd9ff;
  border-radius: 8px;
  background: #eef6ff;
}

.airport-booking-customer-portal__change-price header {
  display: grid;
  gap: 4px;
}

.airport-booking-customer-portal__change-price strong {
  color: var(--airport-booking-primary);
  font-size: 22px;
  font-weight: 900;
}

.airport-booking-customer-portal__change-price header span {
  color: #64748b;
  font-weight: 750;
}

.airport-booking-customer-portal__change-price dl {
  display: grid;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.airport-booking-customer-portal__change-price dl > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, auto);
  gap: 16px;
  padding: 12px 14px;
  border-bottom: 1px solid #e2e8f0;
}

.airport-booking-customer-portal__change-price dl > div:last-child {
  border-bottom: 0;
}

.airport-booking-customer-portal__change-price dt,
.airport-booking-customer-portal__change-price dd {
  margin: 0;
}

.airport-booking-customer-portal__change-price dt {
  color: #64748b;
  font-weight: 850;
}

.airport-booking-customer-portal__change-price dd {
  color: #111827;
  font-weight: 900;
  text-align: right;
}

.airport-booking-customer-portal__change-history {
  display: grid;
  gap: 14px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid #bcd9ff;
  border-radius: 8px;
  background: #f3f8ff;
}

.airport-booking-customer-portal__change-history header {
  display: grid;
  gap: 4px;
}

.airport-booking-customer-portal__change-history header strong,
.airport-booking-customer-portal__change-snapshot h4 {
  margin: 0;
  color: var(--airport-booking-primary);
  font-weight: 900;
}

.airport-booking-customer-portal__change-history header span {
  color: #64748b;
  font-weight: 750;
}

.airport-booking-customer-portal__change-snapshot {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid #d7e6f7;
  border-radius: 8px;
  background: #fff;
}

.airport-booking-customer-portal__change-snapshot dl,
.airport-booking-customer-portal__change-settlement {
  display: grid;
  gap: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.airport-booking-customer-portal__change-snapshot dl > div,
.airport-booking-customer-portal__change-settlement > div {
  display: grid;
  grid-template-columns: minmax(0, 180px) minmax(0, 1fr);
  gap: 14px;
  padding: 10px 12px;
  border-bottom: 1px solid #e2e8f0;
}

.airport-booking-customer-portal__change-snapshot dl > div:last-child,
.airport-booking-customer-portal__change-settlement > div:last-child {
  border-bottom: 0;
}

.airport-booking-customer-portal__change-snapshot dt,
.airport-booking-customer-portal__change-snapshot dd,
.airport-booking-customer-portal__change-settlement dt,
.airport-booking-customer-portal__change-settlement dd {
  margin: 0;
}

.airport-booking-customer-portal__change-snapshot dt,
.airport-booking-customer-portal__change-settlement dt {
  color: #64748b;
  font-weight: 850;
}

.airport-booking-customer-portal__change-snapshot dd,
.airport-booking-customer-portal__change-settlement dd {
  color: #111827;
  font-weight: 850;
}

.airport-booking-customer-portal__option-box {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid #d7e6f7;
  border-radius: 8px;
  background: #f8fbff;
}

.airport-booking-customer-portal__checkbox-line {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  font-weight: 850;
}

.airport-booking-customer-portal__checkbox-line input[type="checkbox"] {
  width: 24px;
  height: 24px;
}

.airport-booking-customer-portal__booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
}

.airport-booking-customer-portal__booking-actions form {
  display: inline-flex;
}

.airport-booking-customer-portal__booking-actions a,
.airport-booking-customer-portal__muted-button {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid #c8d7e8;
  border-radius: 8px;
  background: #fff;
  color: var(--ab-primary, #2f7fc8);
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.airport-booking-customer-portal button.airport-booking-customer-portal__muted-button {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid #fecaca;
  background: #fff;
  color: #991b1b;
}

.airport-booking-customer-portal__muted-text {
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.airport-booking-customer-portal__info-card {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  background: #eff6ff;
  color: #1e3a8a;
}

.airport-booking-customer-portal__info-card strong {
  color: var(--ab-primary, #2f7fc8);
  font-size: 16px;
}

.airport-booking-customer-portal__info-card span {
  color: #475569;
  font-weight: 700;
  line-height: 1.45;
}

.airport-booking-customer-portal__notice {
  padding: 10px 12px;
  border-radius: 8px;
}

.airport-booking-customer-portal__notice--error {
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #991b1b !important;
}

.airport-booking-customer-portal__notice--success {
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
  color: #166534 !important;
}

.airport-booking-customer-portal__quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.airport-booking-customer-portal__quick-grid a {
  display: grid;
  gap: 6px;
  min-height: 98px;
  padding: 16px;
  border: 1px solid #d7e6f7;
  border-radius: 8px;
  background: #fff;
  color: #111827;
  text-decoration: none;
  box-shadow: 0 5px 18px rgba(47, 127, 200, .08);
}

.airport-booking-customer-portal__quick-grid strong {
  color: var(--ab-primary, #2f7fc8);
  font-size: 18px;
}

.airport-booking-customer-portal__quick-grid span {
  color: #64748b;
  font-weight: 650;
}

@media (max-width: 760px) {
  .airport-booking-customer-portal {
    grid-template-columns: 1fr;
  }

  .airport-booking-customer-portal__tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .airport-booking-customer-portal__tabs a,
  .airport-booking-customer-portal__quick-grid a {
    justify-content: center;
    text-align: center;
  }

  .airport-booking-customer-portal__form--two,
  .airport-booking-customer-portal__form-grid,
  .airport-booking-customer-portal__quick-grid {
    grid-template-columns: 1fr;
  }

  .airport-booking-customer-portal__change-stop-row,
  .airport-booking-customer-portal__change-price dl > div,
  .airport-booking-customer-portal__change-snapshot dl > div,
  .airport-booking-customer-portal__change-settlement > div {
    grid-template-columns: 1fr;
  }

  .airport-booking-customer-portal__change-price dd {
    text-align: left;
  }

  .airport-booking-customer-portal__booking dl > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

.airport-booking-form .airport-booking-form__phone-flag {
  display: inline-grid !important;
  place-items: center !important;
  overflow: visible !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 27px !important;
  line-height: 1 !important;
}

.airport-booking-form .airport-booking-form__phone-flag::before {
  content: none !important;
}

.airport-booking-form .airport-booking-form__phone-flag.is-unknown {
  border-radius: 4px !important;
  background: #e5e7eb !important;
  box-shadow: 0 0 0 1px rgba(17, 24, 39, .16) !important;
}

@media (max-width: 720px), (hover: none) and (pointer: coarse) {
  .airport-booking-form.is-contact-step-active {
    box-sizing: border-box !important;
    width: calc(100vw - 16px) !important;
    max-width: none !important;
    min-width: 0 !important;
    margin-right: calc(50% - 50vw + 8px) !important;
    margin-left: calc(50% - 50vw + 8px) !important;
  }

  .airport-booking-form.is-contact-step-active .airport-booking-form__page[data-step="4"] {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
  }

  .airport-booking-form.is-contact-step-active .airport-booking-form__booking-type,
  .airport-booking-form.is-contact-step-active .airport-booking-form__contact-grid,
  .airport-booking-form.is-contact-step-active .airport-booking-form__contact-grid--two,
  .airport-booking-form.is-contact-step-active .airport-booking-form__removable-field,
  .airport-booking-form.is-contact-step-active label,
  .airport-booking-form.is-contact-step-active input,
  .airport-booking-form.is-contact-step-active .airport-booking-form__phone-field,
  .airport-booking-form.is-contact-step-active .airport-booking-form__advice,
  .airport-booking-form.is-contact-step-active .airport-booking-form__submit {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .airport-booking-form.is-contact-step-active .airport-booking-form__contact-grid,
  .airport-booking-form.is-contact-step-active .airport-booking-form__contact-grid--two,
  .airport-booking-form.is-contact-step-active .airport-booking-form__removable-field {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 900px), (max-device-width: 900px), (any-hover: none), (any-pointer: coarse) {
  .airport-booking-form {
    box-sizing: border-box !important;
    width: calc(100vw - 16px) !important;
    max-width: calc(100vw - 16px) !important;
    min-width: 0 !important;
    margin-right: calc(50% - 50vw + 8px) !important;
    margin-left: calc(50% - 50vw + 8px) !important;
    padding-right: 14px !important;
    padding-left: 14px !important;
  }

  .airport-booking-form__page,
  .airport-booking-form__page[data-step="4"],
  .airport-booking-form__page[data-step="5"],
  .airport-booking-form__page[data-step="6"] {
    max-width: 100% !important;
  }

  .airport-booking-form__page,
  .airport-booking-form__page[data-step="4"],
  .airport-booking-form__page[data-step="5"],
  .airport-booking-form__page[data-step="6"],
  .airport-booking-form__contact-grid,
  .airport-booking-form__contact-grid--two,
  .airport-booking-form__review,
  .airport-booking-form__payment-methods,
  .airport-booking-form__payment-summary,
  .airport-booking-form__review-card,
  .airport-booking-form__removable-field,
  .airport-booking-form__booking-type,
  .airport-booking-form__page[data-step="4"] .airport-booking-form__actions,
  .airport-booking-form__page[data-step="5"] .airport-booking-form__actions,
  .airport-booking-form__page[data-step="6"] .airport-booking-form__actions,
  .airport-booking-form__page[data-step="4"] label,
  .airport-booking-form__page[data-step="5"] label,
  .airport-booking-form__page[data-step="6"] label,
  .airport-booking-form__page[data-step="4"] input,
  .airport-booking-form__page[data-step="5"] input,
  .airport-booking-form__page[data-step="6"] input,
  .airport-booking-form__page[data-step="4"] select,
  .airport-booking-form__page[data-step="5"] select,
  .airport-booking-form__page[data-step="6"] select,
  .airport-booking-form__page[data-step="4"] textarea,
  .airport-booking-form__page[data-step="5"] textarea,
  .airport-booking-form__page[data-step="6"] textarea,
  .airport-booking-form__page[data-step="4"] .airport-booking-form__phone-field,
  .airport-booking-form__page[data-step="5"] .airport-booking-form__phone-field,
  .airport-booking-form__page[data-step="6"] .airport-booking-form__phone-field,
  .airport-booking-form__page[data-step="4"] .airport-booking-form__advice,
  .airport-booking-form__page[data-step="5"] .airport-booking-form__advice,
  .airport-booking-form__page[data-step="6"] .airport-booking-form__advice,
  .airport-booking-form__page[data-step="4"] .airport-booking-form__submit,
  .airport-booking-form__page[data-step="5"] .airport-booking-form__submit,
  .airport-booking-form__page[data-step="6"] .airport-booking-form__submit {
    box-sizing: border-box !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .airport-booking-form__contact-grid,
  .airport-booking-form__contact-grid--two,
  .airport-booking-form__review,
  .airport-booking-form__removable-field {
    grid-template-columns: 1fr !important;
  }
}
