.bsj-transfers-page {
  --bsj-transfer-ink: #09111f;
  --bsj-transfer-muted: #6c7485;
  --bsj-transfer-soft: #f5f7fa;
  --bsj-transfer-panel: rgba(255, 255, 255, 0.96);
  --bsj-transfer-line: rgba(9, 17, 31, 0.12);
  --bsj-transfer-blue: #123f86;
  --bsj-transfer-gold: #b9975b;
  --bsj-transfer-deep: #050910;
  --bsj-transfer-action-color: #2f6fbb;
  --bsj-transfer-action-hover-color: #245fa8;
  --bsj-transfer-action-overlay: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
  --bsj-transfer-action-background: var(--bsj-transfer-action-overlay), var(--bsj-transfer-action-color);
  --bsj-transfer-action-hover-background: var(--bsj-transfer-action-overlay), var(--bsj-transfer-action-hover-color);
  --bsj-transfer-action-shadow: rgba(18, 63, 134, 0.18);
  --bsj-transfer-action-shadow-strong: rgba(18, 63, 134, 0.24);
  --bsj-transfer-action-hover-shadow: rgba(18, 63, 134, 0.24);
  --bsj-transfer-action-soft: rgba(18, 63, 134, 0.08);
  --bsj-transfer-action-border: rgba(18, 63, 134, 0.18);
  --bsj-transfer-surface-radius: 18px;
  --bsj-transfer-surface-shadow: 0 22px 56px rgba(9, 17, 31, 0.09), 0 6px 18px rgba(9, 17, 31, 0.04);
  --bsj-transfer-page-pad-top: clamp(22px, 2vw, 34px);
  --bsj-transfer-page-pad-bottom: clamp(14px, 1.35vw, 22px);
  --bsj-transfer-page-pad-x: 5%;
  --bsj-transfer-available-height: calc(100dvh - 118px);
  min-height: 0;
  background: #fff;
  color: var(--bsj-transfer-ink);
  font-family: Poppins, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.bsj-transfers-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.bsj-transfers-platform {
  min-height: 0;
  height: var(--bsj-transfer-available-height);
  padding: var(--bsj-transfer-page-pad-top) var(--bsj-transfer-page-pad-x) var(--bsj-transfer-page-pad-bottom);
  background: #fff;
}

.bsj-transfers-shell {
  display: grid;
  grid-template-columns: minmax(360px, 460px) minmax(0, 1fr);
  gap: clamp(14px, 1.5vw, 22px);
  height: 100%;
  min-height: 0;
  background: transparent;
  transition: grid-template-columns 420ms cubic-bezier(.2, .9, .2, 1), gap 420ms cubic-bezier(.2, .9, .2, 1);
}

.bsj-transfers-panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.8vh, 22px);
  min-height: 0;
  overflow: auto;
  padding: clamp(18px, 2.25vw, 32px);
  background: var(--bsj-transfer-panel);
  border: 4px solid rgba(138, 138, 138, 0.1);
  border-radius: var(--bsj-transfer-surface-radius);
  box-shadow: none;
  transition: padding 420ms cubic-bezier(.2, .9, .2, 1), border-color 420ms cubic-bezier(.2, .9, .2, 1), box-shadow 420ms cubic-bezier(.2, .9, .2, 1);
}

.bsj-transfers-sheet-handle {
  display: none;
}

.bsj-transfers-panel__brand span,
.bsj-transfers-section-head span,
.bsj-transfers-map-toolbar span,
.bsj-transfers-map-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--bsj-transfer-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.bsj-transfers-panel__brand h1 {
  max-width: 340px;
  margin: 0;
  color: var(--bsj-transfer-ink);
  font-size: clamp(30px, 3.3vw, 46px);
  line-height: 1;
  font-weight: 650;
  letter-spacing: 0;
}

.bsj-transfers-panel__brand p {
  max-width: 330px;
  margin: 10px 0 0;
  color: var(--bsj-transfer-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.bsj-transfers-panel__brand[hidden],
.bsj-transfers-form[hidden],
.bsj-transfers-panel.is-choosing-transfer-class .bsj-transfers-panel__brand,
.bsj-transfers-panel.is-choosing-transfer-class .bsj-transfers-form {
  display: none !important;
}

.bsj-transfers-form {
  display: grid;
  gap: clamp(10px, 1.35vh, 14px);
}

.bsj-transfer-field {
  position: relative;
}

.bsj-transfer-field label,
.bsj-transfers-guests label {
  display: block;
  margin: 0 0 8px;
  color: #3f4858;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.bsj-transfer-field__control {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--bsj-transfer-line);
  border-radius: 12px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.bsj-transfer-field__control:focus-within {
  border-color: var(--bsj-transfer-action-border);
  box-shadow: 0 0 0 4px var(--bsj-transfer-action-soft);
}

.bsj-transfer-field.is-invalid .bsj-transfer-field__control,
.bsj-transfers-timing.is-invalid .bsj-transfers-timing__toggle {
  border-color: rgba(190, 18, 60, 0.5);
  box-shadow: 0 0 0 4px rgba(190, 18, 60, 0.08);
}

.bsj-transfer-field__control input {
  width: 100%;
  min-width: 0;
  height: 50px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--bsj-transfer-ink);
  font-size: 15px;
  font-weight: 500;
}

.bsj-transfer-field__control input::placeholder {
  color: #9299a7;
}

.bsj-transfer-pin {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bsj-transfer-action-color);
  box-shadow: 0 0 0 5px var(--bsj-transfer-action-soft);
}

.bsj-transfer-pin--dropoff {
  border-radius: 2px;
  background: var(--bsj-transfer-action-color);
  transform: rotate(45deg);
  box-shadow: 0 0 0 5px var(--bsj-transfer-action-soft);
}

.bsj-transfer-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 20;
  display: none;
  max-height: 322px;
  overflow: auto;
  border: 1px solid var(--bsj-transfer-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 20px 46px rgba(9, 17, 31, 0.16);
}

.bsj-transfer-suggestions.is-open {
  display: block;
}

.bsj-transfer-suggestion {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  min-height: 52px;
  padding: 9px 13px;
  border: 0;
  border-bottom: 1px solid rgba(9, 17, 31, 0.08);
  background: #fff;
  color: var(--bsj-transfer-ink);
  text-align: left;
  cursor: pointer;
}

.bsj-transfer-suggestion__pin {
  position: relative;
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  border: 2px solid rgba(18, 63, 134, 0.18);
  border-radius: 999px 999px 999px 2px;
  background: #fff;
  transform: rotate(-45deg);
}

.bsj-transfer-suggestion__pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--bsj-transfer-blue);
  transform: translate(-50%, -50%);
}

.bsj-transfer-suggestion__content {
  display: grid;
  min-width: 0;
}

.bsj-transfer-suggestion:hover,
.bsj-transfer-suggestion:focus-visible {
  outline: 0;
  background: #f4f7fb;
}

.bsj-transfer-suggestion strong,
.bsj-transfer-suggestion small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bsj-transfer-suggestion strong {
  font-size: 14px;
  line-height: 1.25;
}

.bsj-transfer-suggestion small {
  margin-top: 3px;
  color: var(--bsj-transfer-muted);
  font-size: 11px;
  line-height: 1.25;
}

.bsj-transfer-suggestion--empty {
  cursor: default;
}

.bsj-transfer-suggestion--empty:hover {
  background: #fff;
}

.bsj-transfer-suggestion--loading {
  min-height: 66px;
  gap: 12px;
  color: var(--bsj-transfer-ink);
}

.bsj-transfer-suggestion--loading:hover {
  background: #fff;
}

.bsj-transfer-suggestion__spinner {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(18, 63, 134, 0.16);
  border-top-color: var(--bsj-transfer-blue);
  border-radius: 999px;
  animation: bsj-transfer-spin 0.78s linear infinite;
}

.bsj-transfer-suggestion__loading-copy {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 8px;
}

.bsj-transfer-suggestion__loading-dots {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding-top: 2px;
}

.bsj-transfer-suggestion__loading-dots span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--bsj-transfer-blue);
  opacity: 0.32;
  animation: bsj-transfer-loading-dot 0.9s ease-in-out infinite;
}

.bsj-transfer-suggestion__loading-dots span:nth-child(2) {
  animation-delay: 0.15s;
}

.bsj-transfer-suggestion__loading-dots span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes bsj-transfer-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes bsj-transfer-loading-dot {
  0%,
  80%,
  100% {
    opacity: 0.28;
    transform: translateY(0);
  }

  40% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bsj-transfer-suggestion__spinner,
  .bsj-transfer-suggestion__loading-dots span,
  .bsj-transfer-classes__loader,
  .bsj-transfer-classes__loading-track i {
    animation: none;
  }
}

.bsj-transfers-timing {
  z-index: 15;
}

.bsj-transfers-timing__toggle {
  width: 100%;
  color: var(--bsj-transfer-ink);
  text-align: left;
  cursor: pointer;
}

.bsj-transfers-timing__icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border: 2px solid var(--bsj-transfer-action-color);
  border-top-width: 5px;
  border-radius: 5px;
  box-shadow: inset 0 5px 0 var(--bsj-transfer-action-soft);
}

.bsj-transfers-timing__summary {
  display: block;
  overflow: hidden;
  min-width: 0;
  color: var(--bsj-transfer-ink);
  font-size: 15px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bsj-transfers-timing__dropdown {
  position: fixed;
  top: var(--bsj-timing-dropdown-top, 0);
  left: var(--bsj-timing-dropdown-left, 0);
  z-index: 1000;
  display: none;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  width: var(--bsj-timing-dropdown-width, 100%);
  max-height: var(--bsj-timing-dropdown-max-height, calc(100dvh - 32px));
  padding: 16px 20px;
  border: 1px solid var(--bsj-transfer-line);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
  box-shadow: 0 24px 60px rgba(9, 17, 31, 0.18);
  overflow: auto;
  scrollbar-width: none;
}

.bsj-transfers-timing__dropdown::-webkit-scrollbar {
  display: none;
}

.bsj-transfers-timing.is-open .bsj-transfers-timing__dropdown {
  display: grid;
}

.bsj-transfers-timing__mobile-head {
  display: none;
}

.bsj-transfers-timing__back {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(18, 63, 134, 0.18);
  border-radius: 12px;
  background: #fff;
  color: var(--bsj-transfer-action-color);
  cursor: pointer;
}

.bsj-transfers-timing__back::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-left: 4px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.bsj-transfers-timing__back:hover,
.bsj-transfers-timing__back:focus-visible {
  outline: 0;
  border-color: rgba(18, 63, 134, 0.38);
  background: var(--bsj-transfer-action-soft);
}

.bsj-transfers-timing-section {
  min-width: 0;
}

.bsj-transfers-timing-section + .bsj-transfers-timing-section {
  padding-top: 10px;
  border-top: 1px solid rgba(9, 17, 31, 0.08);
}

.bsj-transfers-timing-section__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  min-width: 0;
  padding: 6px 2px;
  border: 0;
  background: transparent;
  color: #3f4858;
  font: inherit;
  cursor: pointer;
}

.bsj-transfers-timing-section__toggle:focus-visible {
  outline: 0;
  border-radius: 10px;
  box-shadow: 0 0 0 3px rgba(18, 63, 134, 0.12);
}

.bsj-transfers-timing-section__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.bsj-transfers-timing-section__icon {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  background-color: var(--bsj-transfer-action-color);
}

.bsj-transfers-timing-section__copy {
  display: grid;
  gap: 3px;
  min-width: 0;
  text-align: left;
}

.bsj-transfers-timing-section__title {
  color: #303949;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.15;
  text-transform: uppercase;
}

.bsj-transfers-timing-section__subtitle {
  color: var(--bsj-transfer-muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
}

.bsj-transfers-timing-section__icon--calendar {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 2v4'/%3E%3Cpath d='M16 2v4'/%3E%3Crect width='18' height='18' x='3' y='4' rx='2'/%3E%3Cpath d='M3 10h18'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 2v4'/%3E%3Cpath d='M16 2v4'/%3E%3Crect width='18' height='18' x='3' y='4' rx='2'/%3E%3Cpath d='M3 10h18'/%3E%3C/svg%3E") center / contain no-repeat;
}

.bsj-transfers-timing-section__icon--time {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E") center / contain no-repeat;
}

.bsj-transfers-timing-section__chevron {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-right: 1px;
  border-right: 2px solid #7a8498;
  border-bottom: 2px solid #7a8498;
  transform: rotate(45deg);
  transition: transform .18s ease;
}

.bsj-transfers-timing-section.is-open .bsj-transfers-timing-section__chevron {
  transform: rotate(225deg);
}

.bsj-transfers-timing-section__body {
  padding-top: 10px;
}

.bsj-transfers-timing-section__body[hidden] {
  display: none;
}

.bsj-transfers-calendar {
  min-width: 0;
}

.bsj-transfers-calendar__grid {
  display: grid;
  gap: 18px;
  max-height: min(316px, 40.5dvh);
  overflow: auto;
  padding: 1px 2px 4px 1px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(9, 17, 31, 0.24) transparent;
}

.bsj-transfers-calendar__grid::-webkit-scrollbar {
  width: 6px;
}

.bsj-transfers-calendar__grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(9, 17, 31, 0.24);
}

.bsj-transfers-calendar__month {
  min-width: 0;
}

.bsj-transfers-calendar__month h3 {
  margin: 0 0 14px;
  color: var(--bsj-transfer-ink);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-transform: capitalize;
}

.bsj-transfers-calendar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.bsj-transfers-calendar__head strong {
  color: var(--bsj-transfer-ink);
  font-size: 15px;
  font-weight: 700;
  text-transform: capitalize;
}

.bsj-transfers-calendar__head button,
.bsj-transfers-calendar__day,
.bsj-transfers-time-slot {
  border: 0;
  background: #fff;
  color: var(--bsj-transfer-ink);
  cursor: pointer;
}

.bsj-transfers-calendar__head button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(9, 17, 31, 0.1);
  border-radius: 999px;
  font-size: 20px;
  line-height: 1;
  transition: background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.bsj-transfers-calendar__weekdays,
.bsj-transfers-calendar__month-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.bsj-transfers-calendar__weekdays {
  margin-bottom: 8px;
  color: var(--bsj-transfer-muted);
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.bsj-transfers-calendar__day,
.bsj-transfers-calendar__day-placeholder {
  aspect-ratio: 1;
  min-width: 0;
  border-radius: 8px;
}

.bsj-transfers-calendar__day {
  font-size: 13px;
  font-weight: 700;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.bsj-transfers-calendar__day:hover,
.bsj-transfers-calendar__day:focus-visible,
.bsj-transfers-time-slot:hover,
.bsj-transfers-time-slot:focus-visible,
.bsj-transfers-calendar__head button:hover,
.bsj-transfers-calendar__head button:focus-visible {
  outline: 0;
  background: #f3f6fa;
}

.bsj-transfers-calendar__day:focus-visible,
.bsj-transfers-time-slot:focus-visible,
.bsj-transfers-calendar__head button:focus-visible {
  box-shadow: 0 0 0 3px rgba(18, 63, 134, 0.12);
}

.bsj-transfers-calendar__day.is-muted {
  color: var(--bsj-transfer-ink);
}

.bsj-transfers-calendar__day:disabled,
.bsj-transfers-time-slot:disabled,
.bsj-transfers-calendar__day.is-disabled,
.bsj-transfers-time-slot.is-disabled {
  cursor: not-allowed;
  color: #aab1bd;
  opacity: 0.52;
}

.bsj-transfers-calendar__day:disabled:hover,
.bsj-transfers-calendar__day:disabled:focus-visible,
.bsj-transfers-time-slot:disabled:hover,
.bsj-transfers-time-slot:disabled:focus-visible {
  background: #fff;
}

.bsj-transfers-calendar__day.is-today {
  box-shadow: inset 0 0 0 1px var(--bsj-transfer-action-border);
}

.bsj-transfers-calendar__day.is-selected,
.bsj-transfers-time-slot.is-selected {
  background: var(--bsj-transfer-action-background);
  color: #fff;
  box-shadow: 0 8px 18px var(--bsj-transfer-action-shadow);
}

.bsj-transfers-times {
  display: grid;
  gap: 10px;
  min-height: 0;
}

.bsj-transfers-times__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-content: start;
  gap: 8px;
  max-height: clamp(220px, 36dvh, 292px);
  overflow: auto;
  padding: 1px;
  scrollbar-width: none;
}

.bsj-transfers-times__grid::-webkit-scrollbar {
  display: none;
}

.bsj-transfers-time-slot {
  min-height: 38px;
  border: 1px solid rgba(9, 17, 31, 0.1);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  transition: background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.bsj-transfers-guests {
  position: relative;
  z-index: 14;
}

.bsj-transfers-guests__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 52px;
  padding: 10px 16px;
  border: 1px solid var(--bsj-transfer-line);
  border-radius: 12px;
  background: #fff;
  color: var(--bsj-transfer-ink);
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.bsj-transfers-guests__toggle:hover,
.bsj-transfers-guests__toggle:focus-visible {
  outline: 0;
  border-color: rgba(18, 63, 134, 0.48);
  box-shadow: 0 0 0 4px rgba(18, 63, 134, 0.08);
}

.bsj-transfers-guests__summary {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.bsj-transfers-guests__label {
  display: block;
  color: #3f4858;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

.bsj-transfers-guests [data-bsj-guests-label] {
  display: block;
  color: var(--bsj-transfer-ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

.bsj-transfers-guests__chevron {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-right: 2px solid rgba(9, 17, 31, 0.58);
  border-bottom: 2px solid rgba(9, 17, 31, 0.58);
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s ease;
}

.bsj-transfers-guests.is-open .bsj-transfers-guests__chevron {
  transform: rotate(225deg) translate(-2px, -1px);
}

.bsj-transfers-guests__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 25;
  display: none;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--bsj-transfer-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(9, 17, 31, 0.18);
}

.bsj-transfers-guests.is-open .bsj-transfers-guests__dropdown {
  display: grid;
}

.bsj-transfers-guests__breakdown {
  display: grid;
  gap: 8px;
}

.bsj-transfers-guest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.bsj-transfers-guest-row strong,
.bsj-transfers-guest-row small {
  display: block;
}

.bsj-transfers-guest-row strong {
  color: var(--bsj-transfer-ink);
  font-size: 14px;
  line-height: 1.25;
}

.bsj-transfers-guest-row small {
  margin-top: 2px;
  color: var(--bsj-transfer-muted);
  font-size: 11px;
  line-height: 1.3;
}

.bsj-transfers-stepper {
  display: grid;
  grid-template-columns: 36px 46px 36px;
  align-items: center;
  border: 1px solid rgba(9, 17, 31, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

.bsj-transfers-stepper button {
  width: 36px;
  height: 36px;
  border: 0;
  background: #fff;
  color: var(--bsj-transfer-ink);
  font-size: 20px;
  cursor: pointer;
}

.bsj-transfers-stepper button:hover {
  background: #f3f5f8;
}

.bsj-transfers-stepper input {
  width: 46px;
  height: 36px;
  border: 0;
  border-left: 1px solid rgba(9, 17, 31, 0.08);
  border-right: 1px solid rgba(9, 17, 31, 0.08);
  color: var(--bsj-transfer-ink);
  text-align: center;
  font-weight: 700;
  appearance: textfield;
}

.bsj-transfers-stepper output {
  display: grid;
  place-items: center;
  width: 46px;
  height: 36px;
  border-left: 1px solid rgba(9, 17, 31, 0.08);
  border-right: 1px solid rgba(9, 17, 31, 0.08);
  color: var(--bsj-transfer-ink);
  font-weight: 700;
}

.bsj-transfers-stepper input::-webkit-inner-spin-button,
.bsj-transfers-stepper input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.bsj-transfers-submit {
  min-height: 54px;
  border: 0;
  border-radius: 12px;
  background: var(--bsj-transfer-action-background);
  color: #fff;
  box-shadow: 0 14px 28px var(--bsj-transfer-action-shadow);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.bsj-transfers-submit:hover,
.bsj-transfers-submit:focus-visible {
  background: var(--bsj-transfer-action-hover-background);
  transform: translateY(-1px);
  box-shadow: 0 16px 32px var(--bsj-transfer-action-hover-shadow);
}

.bsj-transfers-form-error {
  padding: 11px 13px;
  border: 1px solid rgba(190, 18, 60, 0.18);
  border-radius: 12px;
  background: rgba(255, 241, 242, 0.86);
  color: #9f1239;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.bsj-transfers-form-error[hidden] {
  display: none;
}

.bsj-transfer-classes {
  display: grid;
  gap: 16px;
}

.bsj-transfer-classes[hidden] {
  display: none;
}

.bsj-transfer-classes__head {
  position: sticky;
  top: 0;
  z-index: 4;
  display: grid;
  gap: 14px;
  padding-bottom: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 76%, rgba(255, 255, 255, 0));
  backdrop-filter: blur(10px);
}

.bsj-transfer-classes__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.bsj-transfer-classes__intro {
  display: grid;
  gap: 6px;
}

.bsj-transfer-classes__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: start;
  min-height: 38px;
  padding: 0 13px 0 8px;
  border: 1px solid var(--bsj-transfer-action-border);
  border-radius: 999px;
  background: var(--bsj-transfer-action-soft);
  color: var(--bsj-transfer-action-hover-color);
  box-shadow: 0 10px 24px var(--bsj-transfer-action-soft);
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
}

.bsj-transfer-classes__back::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bsj-transfer-action-background);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.bsj-transfer-classes__back::after {
  content: "";
  position: absolute;
}

.bsj-transfer-classes__back {
  position: relative;
}

.bsj-transfer-classes__back > span {
  display: none;
}

.bsj-transfer-classes__back:hover,
.bsj-transfer-classes__back:focus-visible {
  border-color: var(--bsj-transfer-action-border);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 30px var(--bsj-transfer-action-shadow);
  transform: translateY(-1px);
}

.bsj-transfer-classes__back:focus-visible {
  outline: 3px solid rgba(18, 63, 134, 0.16);
  outline-offset: 3px;
}

.bsj-transfer-classes__back::after {
  left: 18px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

.bsj-transfer-classes__head h2 {
  margin: 0;
  color: var(--bsj-transfer-ink);
  font-size: 34px;
  line-height: 1.02;
  letter-spacing: 0;
}

.bsj-transfer-classes__topbar p {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0;
  padding: 0 13px;
  border: 1px solid var(--bsj-transfer-action-border);
  border-radius: 999px;
  background: var(--bsj-transfer-action-soft);
  color: var(--bsj-transfer-action-hover-color);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 750;
  white-space: nowrap;
}

.bsj-transfer-classes__intro p {
  max-width: 460px;
  margin: 0;
  color: #687385;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
}

.bsj-transfer-classes__list {
  display: grid;
  gap: 14px;
}

.bsj-transfer-classes .bsj-transfer-class-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, 28%) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  min-height: 212px;
  padding: 0;
  border: 1px solid rgba(9, 17, 31, 0.1);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(249, 251, 254, 0.98));
  box-shadow:
    0 18px 44px rgba(9, 17, 31, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
}

.bsj-transfer-classes .bsj-transfer-class-card:hover,
.bsj-transfer-classes .bsj-transfer-class-card:focus-within {
  border-color: rgba(18, 63, 134, 0.3);
  box-shadow:
    0 24px 54px rgba(9, 17, 31, 0.105),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transform: translateY(-1px);
}

.bsj-transfer-classes .bsj-transfer-class-card:focus-visible {
  outline: 3px solid rgba(18, 63, 134, 0.18);
  outline-offset: 4px;
}

.bsj-transfer-classes .bsj-transfer-class-card.is-selected {
  border-color: rgba(18, 63, 134, 0.58);
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.99), rgba(255, 255, 255, 0.99));
  box-shadow:
    0 24px 56px rgba(18, 63, 134, 0.16),
    inset 0 0 0 1px rgba(18, 63, 134, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.bsj-transfer-classes .bsj-transfer-class-card.is-selected::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 12px;
  height: 12px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--bsj-transfer-blue);
  box-shadow:
    0 0 0 1px rgba(18, 63, 134, 0.38),
    0 8px 18px rgba(18, 63, 134, 0.18);
}

.bsj-transfer-class-card__media {
  min-width: 0;
  min-height: 184px;
  overflow: hidden;
  border: 0;
  border-radius: 16px 0 0 16px;
  background: #edf1f6;
  box-shadow: none;
}

.bsj-transfer-class-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bsj-transfer-class-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(18, 63, 134, 0.16), rgba(185, 151, 91, 0.18)),
    linear-gradient(90deg, transparent 38%, rgba(255, 255, 255, 0.46) 50%, transparent 62%);
}

.bsj-transfer-class-card__body {
  flex: 1 1 auto;
  min-width: 0;
}

.bsj-transfer-class-card__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 22px 14px 22px 26px;
}

.bsj-transfer-class-card__title h3 {
  margin: 0;
  color: var(--bsj-transfer-ink);
  font-size: 20px;
  line-height: 1.14;
  letter-spacing: 0;
}

.bsj-transfer-class-card__title p {
  margin: 5px 0 0;
  color: #5c6676;
  font-size: 13.5px;
  line-height: 1.38;
}

.bsj-transfer-class-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 9px;
}

.bsj-transfer-class-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 23px;
  padding: 0 9px;
  border: 1px solid rgba(18, 63, 134, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #4a5565;
  font-size: 11.5px;
  font-weight: 700;
}

.bsj-transfer-class-card__meta-icon {
  display: inline-block;
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  background: currentColor;
  opacity: .86;
}

.bsj-transfer-class-card__meta-icon--passengers {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E") center / contain no-repeat;
}

.bsj-transfer-class-card__meta-icon--luggage {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 6V5a2 2 0 0 1 2-2h0a2 2 0 0 1 2 2v1'/%3E%3Crect x='5' y='6' width='14' height='15' rx='2'/%3E%3Cpath d='M9 10h.01'/%3E%3Cpath d='M15 10h.01'/%3E%3Cpath d='M9 18v3'/%3E%3Cpath d='M15 18v3'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 6V5a2 2 0 0 1 2-2h0a2 2 0 0 1 2 2v1'/%3E%3Crect x='5' y='6' width='14' height='15' rx='2'/%3E%3Cpath d='M9 10h.01'/%3E%3Cpath d='M15 10h.01'/%3E%3Cpath d='M9 18v3'/%3E%3Cpath d='M15 18v3'/%3E%3C/svg%3E") center / contain no-repeat;
}

.bsj-transfer-class-card__included {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bsj-transfer-class-card__included li {
  position: relative;
  padding-left: 12px;
  color: #3b4655;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.3;
}

.bsj-transfer-class-card__included li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #1f845c;
}

.bsj-transfer-class-card__price {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
}

.bsj-transfer-class-card__price strong {
  color: var(--bsj-transfer-ink);
  font-size: 27px;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.bsj-transfer-class-card__price small {
  color: #687385;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 3px;
  white-space: nowrap;
}

.bsj-transfer-order {
  display: grid;
  gap: 10px;
  position: sticky;
  bottom: 0;
  z-index: 3;
  margin-top: 2px;
  padding: 14px 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--bsj-transfer-panel) 28%);
}

.bsj-transfer-order__button {
  min-height: 56px;
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: var(--bsj-transfer-action-background);
  color: #fff;
  box-shadow: 0 16px 32px var(--bsj-transfer-action-shadow);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, opacity .18s ease;
}

.bsj-transfer-order__button:hover,
.bsj-transfer-order__button:focus-visible {
  background: var(--bsj-transfer-action-hover-background);
  box-shadow: 0 20px 38px var(--bsj-transfer-action-hover-shadow);
  transform: translateY(-1px);
}

.bsj-transfer-order__button:focus-visible {
  outline: 3px solid rgba(18, 63, 134, 0.16);
  outline-offset: 3px;
}

.bsj-transfer-order__button:disabled {
  cursor: not-allowed;
  opacity: .58;
  transform: none;
  box-shadow: 0 10px 22px var(--bsj-transfer-action-soft);
}

.bsj-transfer-order__button:disabled:hover,
.bsj-transfer-order__button:disabled:focus-visible {
  background: var(--bsj-transfer-action-background);
  box-shadow: 0 10px 22px var(--bsj-transfer-action-soft);
  transform: none;
}

.bsj-transfer-order__button.is-loading:disabled {
  cursor: wait;
  opacity: .72;
  box-shadow: 0 16px 32px var(--bsj-transfer-action-shadow);
}

.bsj-transfer-order__error[hidden] {
  display: none;
}

.bsj-transfer-order__error {
  padding: 11px 13px;
  border: 1px solid rgba(190, 18, 60, 0.18);
  border-radius: 12px;
  background: rgba(255, 241, 242, 0.92);
  color: #9f1239;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.bsj-transfer-classes__empty {
  padding: 18px;
  border: 1px dashed var(--bsj-transfer-line);
  border-radius: 12px;
  background: #fff;
}

.bsj-transfer-classes__empty--loading {
  display: grid;
  justify-items: center;
  gap: 14px;
  min-height: 184px;
  padding: 28px 18px;
  border-style: solid;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  text-align: center;
}

.bsj-transfer-classes__empty strong {
  color: var(--bsj-transfer-ink);
  font-size: 14px;
  line-height: 1.4;
}

.bsj-transfer-classes__loader {
  width: 34px;
  height: 34px;
  border: 3px solid rgba(18, 63, 134, 0.14);
  border-top-color: var(--bsj-transfer-blue);
  border-radius: 999px;
  animation: bsj-transfer-spin 0.82s linear infinite;
}

.bsj-transfer-classes__loading-track {
  display: grid;
  grid-template-columns: repeat(3, 34px);
  gap: 6px;
}

.bsj-transfer-classes__loading-track i {
  display: block;
  height: 4px;
  border-radius: 999px;
  background: rgba(18, 63, 134, 0.18);
  animation: bsj-transfer-loading-pulse 0.9s ease-in-out infinite;
}

.bsj-transfer-classes__loading-track i:nth-child(2) {
  animation-delay: 0.12s;
}

.bsj-transfer-classes__loading-track i:nth-child(3) {
  animation-delay: 0.24s;
}

@keyframes bsj-transfer-loading-pulse {
  0%,
  100% {
    opacity: 0.34;
    transform: scaleX(0.72);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@media (min-width: 1200px) {
  .bsj-transfers-shell.is-choosing-transfer-class {
    grid-template-columns: minmax(680px, 780px) minmax(0, 1fr);
    gap: clamp(18px, 1.8vw, 28px);
  }

  .bsj-transfers-shell.is-choosing-transfer-class .bsj-transfers-panel {
    padding: clamp(22px, 2.1vw, 34px);
    border-color: rgba(18, 63, 134, 0.08);
    box-shadow: 0 18px 50px rgba(9, 17, 31, 0.055);
  }

  .bsj-transfers-shell.is-choosing-transfer-class .bsj-transfer-classes .bsj-transfer-class-card {
    grid-template-columns: minmax(172px, 30%) minmax(0, 1fr);
    gap: 0;
    padding: 0;
  }

  .bsj-transfers-shell.is-choosing-transfer-class .bsj-transfer-class-card__media {
    min-height: 202px;
  }

}

.bsj-transfers-map-stage {
  position: relative;
  min-width: 0;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--bsj-transfer-surface-radius);
  background: #e8edf4;
  box-shadow: none;
}

.bsj-transfers-map,
.bsj-transfers-map__fallback {
  position: absolute;
  inset: 0;
}

.bsj-transfers-map {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.45) 1px, transparent 1px),
    #e7edf5;
  background-size: 68px 68px;
}

.bsj-transfers-map.mapboxgl-map {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.bsj-transfers-map .mapboxgl-canvas {
  outline: 0;
}

.bsj-transfers-map__fallback {
  overflow: hidden;
  pointer-events: none;
  transition: opacity .2s ease;
}

.bsj-transfers-map.is-enhanced .bsj-transfers-map__fallback {
  opacity: 0;
}

.bsj-map-road,
.bsj-map-area {
  position: absolute;
  display: block;
}

.bsj-map-road {
  height: 8px;
  border-radius: 999px;
  background: rgba(83, 113, 165, 0.36);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.8);
  transform-origin: center;
}

.bsj-map-road--one {
  width: 70%;
  left: 14%;
  top: 42%;
  transform: rotate(-22deg);
}

.bsj-map-road--two {
  width: 58%;
  left: 34%;
  top: 62%;
  transform: rotate(38deg);
}

.bsj-map-road--three {
  width: 44%;
  left: -6%;
  top: 72%;
  transform: rotate(-10deg);
}

.bsj-map-area {
  width: 128px;
  height: 92px;
  border-radius: 48% 52% 38% 62%;
  background: rgba(95, 174, 130, 0.28);
}

.bsj-map-area--one {
  left: 68%;
  top: 18%;
}

.bsj-map-area--two {
  left: 15%;
  top: 58%;
  transform: rotate(18deg);
}

.bsj-transfers-map-toolbar {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(9, 17, 31, 0.12);
  backdrop-filter: blur(18px);
}

.bsj-transfers-map-toolbar span,
.bsj-transfers-map-card span {
  margin-bottom: 4px;
}

.bsj-transfers-map-toolbar strong {
  display: block;
  color: var(--bsj-transfer-ink);
  font-size: 18px;
  line-height: 1.2;
}

.bsj-transfers-map-toolbar__meta {
  flex: 0 0 auto;
  color: var(--bsj-transfer-muted);
  font-size: 13px;
  font-weight: 700;
}

.bsj-transfers-map-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 5;
  width: min(330px, calc(100% - 48px));
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.32);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.64), inset 0 -1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(22px) saturate(165%);
  -webkit-backdrop-filter: blur(22px) saturate(165%);
}

.bsj-transfers-map-card strong,
.bsj-transfers-map-card small {
  display: block;
}

.bsj-transfers-map-card strong {
  color: var(--bsj-transfer-ink);
  font-size: 20px;
  line-height: 1.2;
}

.bsj-transfers-map-card small {
  margin-top: 7px;
  color: var(--bsj-transfer-muted);
  font-size: 13px;
  line-height: 1.5;
}

.bsj-transfers-map .mapboxgl-ctrl-bottom-right {
  right: 16px;
  bottom: 16px;
}

.bsj-transfers-map .mapboxgl-ctrl-bottom-right .mapboxgl-ctrl {
  margin: 0;
}

.bsj-transfers-map .mapboxgl-ctrl-group {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.26);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.64), inset 0 -1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(22px) saturate(165%);
  -webkit-backdrop-filter: blur(22px) saturate(165%);
}

.bsj-transfers-map .mapboxgl-ctrl-group button {
  width: 40px;
  height: 40px;
  background-color: transparent;
  color: rgba(22, 28, 36, 0.68);
  transition: background-color .16s ease, opacity .16s ease;
}

.bsj-transfers-map .mapboxgl-ctrl button .mapboxgl-ctrl-icon {
  background-size: 16px 16px;
  opacity: .74;
  transition: opacity .16s ease, filter .16s ease;
}

.bsj-transfers-map .mapboxgl-ctrl-group button + button {
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.bsj-transfers-map .mapboxgl-ctrl button:not(:disabled):hover,
.bsj-transfers-map .mapboxgl-ctrl-group button:active {
  background-color: rgba(255, 255, 255, 0.1);
}

.bsj-transfers-map .mapboxgl-ctrl button:not(:disabled):hover .mapboxgl-ctrl-icon {
  opacity: .9;
  filter: saturate(1.02);
}

.bsj-transfer-map-marker {
  position: relative;
  z-index: 4;
  width: 22px;
  height: 22px;
  color: #111827;
  pointer-events: none;
}

.bsj-transfer-map-marker::after {
  content: none;
}

.bsj-transfer-map-marker__icon {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #1E5AA8;
  box-shadow:
    0 1px 2px rgba(9, 17, 31, 0.24),
    0 7px 16px rgba(9, 17, 31, 0.14);
}

.bsj-transfer-map-marker__icon::before,
.bsj-transfer-map-marker__icon::after {
  content: none;
}

.bsj-transfer-map-marker__icon span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #fff;
  opacity: 0.9;
}

.bsj-transfer-map-marker__label {
  position: absolute;
  top: 50%;
  left: 30px;
  z-index: 1;
  display: grid;
  justify-content: start;
  width: max-content;
  max-width: min(168px, 36vw);
  min-height: 36px;
  min-width: 0;
  padding: 7px 11px 7px 10px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 7px 18px rgba(9, 17, 31, 0.075),
    0 1px 1px rgba(9, 17, 31, 0.045);
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
}

.bsj-transfer-map-marker__label small,
.bsj-transfer-map-marker__label strong {
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bsj-transfer-map-marker__label small {
  color: #6B7280;
  font-size: 7.5px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.bsj-transfer-map-marker__label strong {
  margin-top: 4px;
  color: #111827;
  font-size: 11.5px;
  font-weight: 650;
  line-height: 1.15;
}

.bsj-transfer-map-marker--dropoff .bsj-transfer-map-marker__icon {
  border-radius: 7px;
  background: #05070A;
  transform: rotate(45deg) scale(0.86);
}

.bsj-transfer-map-marker--dropoff .bsj-transfer-map-marker__label {
  right: 24px;
  left: auto;
}

.bsj-transfer-map-marker--dropoff .bsj-transfer-map-marker__icon span {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.92);
}

.bsj-transfer-map-marker--dropoff .bsj-transfer-map-marker__label small {
  color: #9B7A43;
}

.bsj-transfer-location-marker {
  position: relative;
  z-index: 1;
  width: 132px;
  height: 38px;
  color: var(--bsj-transfer-ink);
  pointer-events: auto;
}

.bsj-transfer-location-marker__card {
  position: absolute;
  left: 50%;
  bottom: 7px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: auto;
  min-width: 0;
  height: 30px;
  min-height: 0;
  padding: 0 10px 0 8px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 8px 20px rgba(9, 17, 31, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px) saturate(145%);
  -webkit-backdrop-filter: blur(14px) saturate(145%);
  color: inherit;
  cursor: pointer;
  transform: translateX(-50%);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
}

.bsj-transfer-location-marker__card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 10px;
  height: 10px;
  border-right: 1px solid rgba(17, 24, 39, 0.08);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 0 0 4px 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 5px 5px 10px rgba(9, 17, 31, 0.06);
  transform: translateX(-50%) rotate(45deg);
  transform-origin: center;
}

.bsj-transfer-location-marker__card:hover,
.bsj-transfer-location-marker__card:focus-visible,
.bsj-transfer-location-marker.is-active .bsj-transfer-location-marker__card {
  outline: 0;
  border-color: rgba(18, 63, 134, 0.26);
  background: #fff;
  box-shadow:
    0 12px 26px rgba(9, 17, 31, 0.18),
    0 0 0 3px rgba(18, 63, 134, 0.12);
  transform: translateX(-50%) translateY(-2px);
}

.bsj-transfer-location-marker__icon {
  position: relative;
  z-index: 1;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 14px;
  height: 14px;
  overflow: hidden;
  color: #111827;
}

.bsj-transfer-location-marker__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.bsj-transfer-location-marker__copy {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  max-width: 84px;
  min-width: 0;
  pointer-events: none;
  text-align: left;
}

.bsj-transfer-location-marker__copy strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #111827;
  font-size: 11px;
  font-weight: 760;
  line-height: 1.15;
}

.bsj-transfer-location-marker.is-zoomed-out .bsj-transfer-location-marker__card {
  bottom: 6px;
  gap: 5px;
  height: 26px;
  padding: 0 8px 0 7px;
  box-shadow:
    0 6px 15px rgba(9, 17, 31, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.bsj-transfer-location-marker.is-zoomed-out .bsj-transfer-location-marker__card::after {
  bottom: -4px;
  width: 8px;
  height: 8px;
  border-radius: 0 0 3px 0;
}

.bsj-transfer-location-marker.is-zoomed-out .bsj-transfer-location-marker__card:hover,
.bsj-transfer-location-marker.is-zoomed-out .bsj-transfer-location-marker__card:focus-visible,
.bsj-transfer-location-marker.is-zoomed-out.is-active .bsj-transfer-location-marker__card {
  transform: translateY(-1px);
}

.bsj-transfer-location-marker.is-zoomed-out .bsj-transfer-location-marker__icon {
  width: 12px;
  height: 12px;
}

.bsj-transfer-location-marker.is-zoomed-out .bsj-transfer-location-marker__copy {
  max-width: 68px;
}

.bsj-transfer-location-marker.is-zoomed-out .bsj-transfer-location-marker__copy strong {
  font-size: 10px;
  font-weight: 720;
  line-height: 1.1;
}

@media (min-width: 1081px) {
  .bsj-transfers-page {
    --bsj-transfer-panel: rgba(255, 255, 253, 0.985);
    --bsj-transfer-line: rgba(9, 17, 31, 0.105);
    --bsj-transfer-surface-radius: 20px;
    --bsj-transfer-surface-shadow: 0 24px 62px rgba(9, 17, 31, 0.105), 0 6px 18px rgba(9, 17, 31, 0.045);
    --bsj-transfer-page-pad-top: clamp(20px, 1.75vw, 30px);
    --bsj-transfer-page-pad-bottom: clamp(14px, 1.25vw, 20px);
    --bsj-transfer-page-pad-x: clamp(46px, 4.6vw, 86px);
    background: linear-gradient(180deg, #fff 0%, #fbfaf7 100%);
  }

  .bsj-transfers-platform {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(251, 250, 247, 0.96) 100%);
  }

  .bsj-transfers-shell {
    grid-template-columns: minmax(360px, 400px) minmax(0, 1fr);
    gap: clamp(16px, 1.35vw, 24px);
    align-items: stretch;
  }

  .bsj-transfers-panel {
    gap: clamp(10px, 1.25vh, 16px);
    padding: clamp(20px, 1.65vw, 26px);
    border: 1px solid rgba(18, 63, 134, 0.095);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 253, 249, 0.985) 100%);
    box-shadow: var(--bsj-transfer-surface-shadow);
    scrollbar-width: thin;
    scrollbar-color: rgba(18, 63, 134, 0.26) transparent;
  }

  .bsj-transfers-panel::-webkit-scrollbar {
    width: 8px;
  }

  .bsj-transfers-panel::-webkit-scrollbar-track {
    background: transparent;
  }

  .bsj-transfers-panel::-webkit-scrollbar-thumb {
    border: 2px solid transparent;
    border-radius: 999px;
    background: rgba(18, 63, 134, 0.24);
    background-clip: padding-box;
  }

  .bsj-transfers-panel:has(.bsj-transfers-guests.is-open) {
    z-index: 20;
    overflow: visible;
  }

  .bsj-transfers-panel__brand h1 {
    max-width: 100%;
    font-size: clamp(26px, 2vw, 34px);
    line-height: 1.06;
    font-weight: 700;
  }

  .bsj-transfers-panel__brand p {
    max-width: 350px;
    margin-top: 8px;
    font-size: 12.5px;
    line-height: 1.45;
  }

  .bsj-transfers-form {
    gap: clamp(12px, 1.35vh, 17px);
  }

  .bsj-transfer-field label,
  .bsj-transfers-guests__label,
  .bsj-transfers-times > span {
    margin-bottom: 8px;
    color: #465164;
    font-size: 10.5px;
    font-weight: 750;
  }

  .bsj-transfer-field__control,
  .bsj-transfers-guests__toggle {
    min-height: 46px;
    padding: 0 14px;
    border-color: rgba(9, 17, 31, 0.105);
    border-radius: 13px;
    background: linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      0 1px 2px rgba(9, 17, 31, 0.035);
  }

  .bsj-transfer-field__control:hover,
  .bsj-transfers-guests__toggle:hover {
    border-color: rgba(18, 63, 134, 0.24);
  }

  .bsj-transfer-field__control:focus-within,
  .bsj-transfers-guests__toggle:focus-visible {
    border-color: rgba(18, 63, 134, 0.54);
    box-shadow:
      0 0 0 4px rgba(18, 63, 134, 0.095),
      0 8px 20px rgba(18, 63, 134, 0.075);
  }

  .bsj-transfer-field__control input {
    height: 44px;
    font-size: 13.5px;
    font-weight: 600;
  }

  .bsj-transfers-timing__summary,
  .bsj-transfers-guests [data-bsj-guests-label] {
    font-size: 13.5px;
    font-weight: 650;
  }

  .bsj-transfer-pin {
    width: 11px;
    height: 11px;
    box-shadow: 0 0 0 5px var(--bsj-transfer-action-soft);
  }

  .bsj-transfer-pin--dropoff {
    box-shadow: 0 0 0 5px var(--bsj-transfer-action-soft);
  }

  .bsj-transfers-timing__icon {
    width: 17px;
    height: 17px;
  }

  .bsj-transfer-suggestions,
  .bsj-transfers-guests__dropdown,
  .bsj-transfers-timing__dropdown {
    border-color: rgba(9, 17, 31, 0.105);
    box-shadow: 0 24px 58px rgba(9, 17, 31, 0.16);
  }

  .bsj-transfers-guests__dropdown {
    top: calc(100% + 10px);
    gap: 14px;
    padding: 16px;
    border-color: rgba(18, 63, 134, 0.12);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.995) 0%, rgba(250, 252, 255, 0.985) 100%);
    box-shadow:
      0 28px 64px rgba(9, 17, 31, 0.14),
      0 1px 0 rgba(255, 255, 255, 0.9) inset;
  }

  .bsj-transfers-guests__breakdown {
    gap: 8px;
    padding-top: 14px;
    border-top-color: rgba(9, 17, 31, 0.075);
  }

  .bsj-transfers-guest-row {
    min-height: 58px;
    padding: 10px 10px 10px 12px;
    border: 1px solid rgba(9, 17, 31, 0.075);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.78);
    transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
  }

  .bsj-transfers-guest-row:hover {
    border-color: rgba(18, 63, 134, 0.16);
    background: #fff;
    box-shadow: 0 8px 20px rgba(9, 17, 31, 0.045);
  }

  .bsj-transfers-guest-row strong {
    font-size: 14.5px;
    font-weight: 750;
  }

  .bsj-transfers-guest-row small {
    margin-top: 3px;
    font-size: 12px;
  }

  .bsj-transfers-stepper {
    grid-template-columns: 34px 42px 34px;
    border-color: rgba(9, 17, 31, 0.105);
    background: #fff;
    box-shadow: 0 1px 2px rgba(9, 17, 31, 0.035);
  }

  .bsj-transfers-stepper button {
    width: 34px;
    height: 34px;
    background: transparent;
    color: #0b1220;
    font-size: 20px;
    font-weight: 650;
    line-height: 1;
    transition: background .18s ease, color .18s ease, box-shadow .18s ease;
  }

  .bsj-transfers-stepper button:hover,
  .bsj-transfers-stepper button:focus-visible {
    outline: 0;
    background: rgba(18, 63, 134, 0.08);
    color: var(--bsj-transfer-blue);
  }

  .bsj-transfers-stepper button:focus-visible {
    box-shadow: inset 0 0 0 2px rgba(18, 63, 134, 0.18);
  }

  .bsj-transfers-stepper button:disabled {
    color: rgba(9, 17, 31, 0.28);
    cursor: not-allowed;
  }

  .bsj-transfers-stepper button:disabled:hover {
    background: transparent;
  }

  .bsj-transfers-stepper input,
  .bsj-transfers-stepper output {
    width: 42px;
    height: 34px;
    border-color: rgba(9, 17, 31, 0.075);
    background: #fff;
    font-size: 14px;
    font-weight: 750;
  }

  .bsj-transfers-submit {
    min-height: 50px;
    margin-top: 2px;
    border-radius: 13px;
    background: var(--bsj-transfer-action-background);
    box-shadow:
      0 14px 26px var(--bsj-transfer-action-shadow),
      inset 0 1px 0 rgba(255, 255, 255, 0.16);
    font-size: 14.5px;
  }

  .bsj-transfers-submit:hover,
  .bsj-transfers-submit:focus-visible {
    background: var(--bsj-transfer-action-hover-background);
    box-shadow:
      0 18px 34px var(--bsj-transfer-action-hover-shadow),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }

  .bsj-transfers-map-stage {
    border: 1px solid rgba(18, 63, 134, 0.11);
    background: #e9eef3;
    box-shadow:
      0 24px 62px rgba(9, 17, 31, 0.095),
      0 1px 0 rgba(255, 255, 255, 0.72) inset;
  }

  .bsj-transfers-map-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22), inset 0 0 72px rgba(255, 255, 255, 0.2);
  }

  .bsj-transfers-map {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.56) 1px, transparent 1px),
      linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
      #e9eef3;
    background-size: 72px 72px;
  }

  .bsj-transfers-map-card {
    left: 22px;
    bottom: 22px;
    width: min(292px, calc(100% - 44px));
    padding: 14px 16px;
    border-color: rgba(255, 255, 255, 0.78);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow:
      0 18px 42px rgba(15, 23, 42, 0.13),
      inset 0 1px 0 rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
  }

  .bsj-transfers-map-card strong {
    font-size: 16.5px;
    line-height: 1.18;
  }

  .bsj-transfers-map-card small {
    margin-top: 6px;
    color: #5d6677;
    font-size: 12px;
    line-height: 1.45;
  }

  .bsj-transfers-map .mapboxgl-ctrl-bottom-right {
    right: 18px;
    bottom: 18px;
  }

  .bsj-transfers-map .mapboxgl-ctrl-group {
    border-color: rgba(255, 255, 255, 0.76);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(14px) saturate(135%);
    -webkit-backdrop-filter: blur(14px) saturate(135%);
  }

  .bsj-transfers-map .mapboxgl-ctrl-group button {
    color: rgba(22, 28, 36, 0.76);
  }
}

@media (max-width: 991px) {
  .bsj-transfer-map-marker {
    width: 20px;
    height: 20px;
  }

  .bsj-transfer-map-marker__icon {
    width: 20px;
    height: 20px;
  }

  .bsj-transfer-map-marker__icon span {
    width: 5px;
    height: 5px;
  }

  .bsj-transfer-map-marker__label {
    left: 24px;
    max-width: min(138px, 38vw);
    min-height: 34px;
    padding: 6px 10px 6px 9px;
  }

  .bsj-transfer-map-marker__label small {
    font-size: 7px;
  }

  .bsj-transfer-map-marker__label strong {
    margin-top: 3px;
    font-size: 10.5px;
  }

  .bsj-transfer-map-marker--dropoff .bsj-transfer-map-marker__label {
    right: 22px;
    left: auto;
  }

  .bsj-transfer-location-marker {
    width: 118px;
    height: 36px;
  }

  .bsj-transfer-location-marker__card {
    bottom: 7px;
    height: 30px;
    min-height: 0;
    gap: 6px;
    padding: 0 10px 0 8px;
    box-shadow:
      0 7px 18px rgba(9, 17, 31, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.82);
  }

  .bsj-transfer-location-marker__card::after {
    bottom: -4px;
    width: 10px;
    height: 10px;
  }

  .bsj-transfer-location-marker__icon {
    width: 14px;
    height: 14px;
  }

  .bsj-transfer-location-marker__copy {
    max-width: 74px;
  }

  .bsj-transfer-location-marker__copy strong {
    font-size: 10.5px;
    line-height: 1.1;
  }
}

@media (max-width: 430px) {
  .bsj-transfer-map-marker__label {
    max-width: min(124px, 36vw);
  }
}

@media (max-width: 1080px) and (min-width: 992px) {
  .bsj-transfers-platform {
    height: auto;
    min-height: var(--bsj-transfer-available-height);
    padding: 14px;
  }

  .bsj-transfers-shell {
    grid-template-columns: 1fr;
    height: auto;
  }

  .bsj-transfers-panel {
    border-right: 1px solid rgba(9, 17, 31, 0.1);
  }

  .bsj-transfers-map-stage {
    min-height: min(540px, 58dvh);
  }

}

@media (max-width: 991px) {
  body.bsj-transfers-mobile {
    overflow: hidden;
  }

  .bsj-transfers-page {
    --bsj-transfer-mobile-header: 0px;
    --bsj-transfer-mobile-sheet-y: 0px;
    --bsj-transfer-mobile-action-bar-height: 70px;
    position: relative;
    min-height: calc(100dvh - var(--bsj-transfer-mobile-header));
    overflow: hidden;
    background: #e8edf4;
    overscroll-behavior: contain;
  }

  body.bsj-transfers-sheet-dragging {
    user-select: none;
    -webkit-user-select: none;
  }

  body.bsj-transfers-sheet-dragging .bsj-transfers-map-stage,
  body.bsj-transfers-sheet-dragging .bsj-transfers-map-stage * {
    pointer-events: none;
  }

  .bsj-transfers-platform {
    position: relative;
    height: calc(100dvh - var(--bsj-transfer-mobile-header));
    min-height: 520px;
    padding: 0;
    overflow: hidden;
    background: #e8edf4;
  }

  .bsj-transfers-shell {
    display: block;
    height: 100%;
    min-height: 0;
  }

  .bsj-transfers-map-stage {
    position: fixed;
    inset: var(--bsj-transfer-mobile-header) 0 0;
    z-index: 1;
    min-height: 0;
    height: auto;
    border-radius: 0;
  }

  .bsj-transfers-map,
  .bsj-transfers-map__fallback {
    border-radius: 0;
  }

  .bsj-transfers-map-card {
    display: none;
  }

  .bsj-transfers-map .mapboxgl-ctrl-bottom-right {
    top: 14px;
    right: 14px;
    bottom: auto;
  }

  .bsj-transfers-panel {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    height: min(86dvh, calc(100dvh - var(--bsj-transfer-mobile-header) - 8px));
    min-height: 320px;
    max-height: calc(100dvh - var(--bsj-transfer-mobile-header) - 8px);
    padding: 0 24px calc(18px + env(safe-area-inset-bottom, 0px));
    gap: 10px;
    overflow-y: auto;
    overflow-x: hidden;
    border: 0;
    border-radius: 24px 24px 0 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -18px 46px rgba(9, 17, 31, 0.18);
    transform: translate3d(0, var(--bsj-transfer-mobile-sheet-y), 0);
    transition: transform 420ms cubic-bezier(.2, .9, .2, 1);
    will-change: transform;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
  }

  .bsj-transfers-panel:not(.is-choosing-transfer-class) {
    bottom: calc(var(--bsj-transfer-mobile-action-bar-height) + env(safe-area-inset-bottom, 0px));
    height: min(86dvh, calc(100dvh - var(--bsj-transfer-mobile-header) - var(--bsj-transfer-mobile-action-bar-height) - env(safe-area-inset-bottom, 0px) - 8px));
    max-height: calc(100dvh - var(--bsj-transfer-mobile-header) - var(--bsj-transfer-mobile-action-bar-height) - env(safe-area-inset-bottom, 0px) - 8px);
    padding-bottom: 18px;
  }

  .bsj-transfers-panel.is-choosing-transfer-class {
    bottom: calc(var(--bsj-transfer-mobile-action-bar-height) + env(safe-area-inset-bottom, 0px));
    height: min(86dvh, calc(100dvh - var(--bsj-transfer-mobile-header) - var(--bsj-transfer-mobile-action-bar-height) - env(safe-area-inset-bottom, 0px) - 8px));
    max-height: calc(100dvh - var(--bsj-transfer-mobile-header) - var(--bsj-transfer-mobile-action-bar-height) - env(safe-area-inset-bottom, 0px) - 8px);
    padding-bottom: 18px;
  }

  .bsj-transfers-mobile-actionbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 38;
    display: flex;
    align-items: center;
    gap: 10px;
    height: calc(var(--bsj-transfer-mobile-action-bar-height) + env(safe-area-inset-bottom, 0px));
    padding: 10px 24px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -12px 32px rgba(9, 17, 31, 0.12);
  }

  .bsj-transfers-mobile-actionbar:empty {
    display: none;
  }

  .bsj-transfers-mobile-actionbar .bsj-transfers-submit {
    flex: 1 1 auto;
    width: auto;
    min-height: 50px;
  }

  .bsj-transfers-mobile-actionbar .bsj-transfer-order__button {
    flex: 1 1 auto;
    width: auto;
    min-height: 50px;
    border-radius: 12px;
  }

  .bsj-transfers-mobile-actionbar .bsj-transfers-timing__back,
  .bsj-transfers-mobile-actionbar .bsj-transfer-classes__back {
    flex: 0 0 54px;
    width: 54px;
    height: 50px;
    min-height: 50px;
    border-radius: 12px;
  }

  .bsj-transfers-mobile-actionbar .bsj-transfer-classes__back {
    display: grid;
    place-items: center;
    gap: 0;
    padding: 0;
    border-color: rgba(18, 63, 134, 0.18);
    background: #fff;
    box-shadow: none;
    color: var(--bsj-transfer-blue);
    font-size: 0;
    transform: none;
  }

  .bsj-transfers-mobile-actionbar .bsj-transfer-classes__back::before {
    display: none;
  }

  .bsj-transfers-mobile-actionbar .bsj-transfer-classes__back::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    margin: 0;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translate(-40%, -50%) rotate(45deg);
  }

  .bsj-transfer-classes .bsj-transfer-class-card {
    grid-template-columns: minmax(86px, 25%) minmax(0, 1fr);
    gap: 14px;
    height: 96px;
    min-height: 96px;
    padding: 10px 12px;
  }

  .bsj-transfers-panel.is-choosing-transfer-class .bsj-transfer-classes__list {
    padding-bottom: calc(var(--bsj-transfer-mobile-action-bar-height) + 22px + env(safe-area-inset-bottom, 0px));
  }

  .bsj-transfer-classes__head {
    top: 26px;
    margin-inline: -24px;
    gap: 0;
    padding: 0 24px;
    background: transparent;
    backdrop-filter: none;
  }

  .bsj-transfer-classes__intro {
    display: none;
  }

  .bsj-transfer-classes__topbar {
    display: block;
    margin: 0;
    padding: 0 0 10px;
    border-bottom: 1px solid rgba(9, 17, 31, 0.08);
  }

  .bsj-transfer-classes__head .bsj-transfer-classes__back {
    display: none;
  }

  .bsj-transfer-classes__topbar p {
    display: block;
    min-height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--bsj-transfer-blue);
    font-size: 12px;
    font-weight: 650;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
  }

  .bsj-transfer-classes .bsj-transfer-class-card {
    border-radius: 18px;
  }

  .bsj-transfer-classes .bsj-transfer-class-card.is-selected {
    height: auto;
    min-height: 140px;
    overflow: visible;
  }

  .bsj-transfer-classes .bsj-transfer-class-card.is-selected::after {
    display: none;
  }

  .bsj-transfer-class-card__media {
    min-height: 100%;
    border-radius: 14px;
  }

  .bsj-transfer-class-card__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 8px;
    padding: 0 2px 0 0;
  }

  .bsj-transfer-class-card__title h3 {
    font-size: 14.5px;
    line-height: 1.1;
  }

  .bsj-transfer-class-card__title p {
    display: block;
    margin: 3px 0 0;
    overflow: hidden;
    color: #687385;
    font-size: 10.5px;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .bsj-transfer-classes .bsj-transfer-class-card:not(.is-selected) .bsj-transfer-class-card__title p {
    color: #7a8494;
    font-size: 10px;
    line-height: 1.1;
  }

  .bsj-transfer-class-card__meta {
    gap: 4px;
    margin: 4px 0 0;
  }

  .bsj-transfer-class-card__meta span {
    min-height: 18px;
    padding: 0 6px;
    font-size: 9.5px;
  }

  .bsj-transfer-class-card__meta span > span,
  .bsj-transfer-class-card__included {
    display: none;
  }

  .bsj-transfer-classes .bsj-transfer-class-card.is-selected .bsj-transfer-class-card__content {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: stretch;
    row-gap: 7px;
    padding-bottom: 0;
  }

  .bsj-transfer-classes .bsj-transfer-class-card.is-selected .bsj-transfer-class-card__media {
    height: 100%;
    min-height: 0;
    max-height: 100%;
    align-self: stretch;
  }

  .bsj-transfer-classes .bsj-transfer-class-card.is-selected .bsj-transfer-class-card__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    column-gap: 10px;
    row-gap: 6px;
    align-self: start;
    align-items: start;
    min-width: 0;
  }

  .bsj-transfer-classes .bsj-transfer-class-card.is-selected .bsj-transfer-class-card__title {
    grid-column: 1;
    min-width: 0;
  }

  .bsj-transfer-classes .bsj-transfer-class-card.is-selected .bsj-transfer-class-card__title h3 {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .bsj-transfer-classes .bsj-transfer-class-card.is-selected .bsj-transfer-class-card__title p {
    margin-top: 5px;
    padding-right: 22px;
    overflow-wrap: anywhere;
    text-overflow: initial;
    white-space: normal;
  }

  .bsj-transfer-classes .bsj-transfer-class-card.is-selected .bsj-transfer-class-card__meta {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    justify-self: end;
    margin: 0;
    flex-wrap: nowrap;
  }

  .bsj-transfer-classes .bsj-transfer-class-card.is-selected .bsj-transfer-class-card__included {
    grid-column: 1 / -1;
    display: grid;
    gap: 6px;
    margin-top: 10px;
    padding-right: 86px;
  }

  .bsj-transfer-classes .bsj-transfer-class-card.is-selected .bsj-transfer-class-card__included li {
    padding-left: 10px;
    font-size: 9.5px;
    font-weight: 500;
    line-height: 1.15;
  }

  .bsj-transfer-classes .bsj-transfer-class-card.is-selected .bsj-transfer-class-card__included li::before {
    top: .42em;
    width: 4px;
    height: 4px;
  }

  .bsj-transfer-class-card__meta span b {
    font: inherit;
  }

  .bsj-transfer-classes__head h2 {
    font-size: 28px;
  }

  .bsj-transfer-classes__topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .bsj-transfer-classes__topbar p,
  .bsj-transfer-classes__intro p {
    max-width: 100%;
    white-space: normal;
  }

  .bsj-transfer-class-card__price strong {
    font-size: 17.5px;
  }

  .bsj-transfer-class-card__price {
    align-self: center;
    justify-self: end;
    align-items: flex-end;
    flex-direction: column;
    gap: 3px;
    margin-top: 0;
    padding-top: 0;
  }

  .bsj-transfer-classes .bsj-transfer-class-card.is-selected .bsj-transfer-class-card__price {
    position: absolute;
    right: 14px;
    bottom: 12px;
    align-self: auto;
    justify-self: auto;
  }

  .bsj-transfer-class-card__price small {
    font-size: 9.5px;
  }

  .bsj-transfers-panel.is-dragging {
    transition: none;
  }

  .bsj-transfers-sheet-handle {
    position: sticky;
    top: 0;
    z-index: 30;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: calc(100% + 48px);
    height: 26px;
    margin: 0 -24px;
    border: 0;
    border-radius: 24px 24px 0 0;
    background: rgba(255, 255, 255, 0.98);
    cursor: grab;
    touch-action: none;
  }

  .bsj-transfers-sheet-handle:active {
    cursor: grabbing;
  }

  .bsj-transfers-sheet-handle span {
    width: 48px;
    height: 5px;
    border-radius: 999px;
    background: rgba(9, 17, 31, 0.18);
  }

  .bsj-transfers-panel__brand {
    display: none;
  }

  .bsj-transfers-form.is-mobile-timing-open {
    gap: 0;
    min-height: 0;
  }

  .bsj-transfers-form.is-mobile-timing-open > :not(.bsj-transfers-timing):not(.bsj-transfers-form-error) {
    display: none;
  }

  .bsj-transfers-timing.is-mobile-timing-open {
    display: grid;
    min-height: 0;
  }

  .bsj-transfers-timing.is-mobile-timing-open > label,
  .bsj-transfers-timing.is-mobile-timing-open .bsj-transfers-timing__toggle {
    display: none;
  }

  .bsj-transfers-timing__dropdown {
    padding: 14px;
  }

  .bsj-transfers-timing.is-mobile-timing-open .bsj-transfers-timing__dropdown {
    position: static;
    top: auto;
    left: auto;
    z-index: auto;
    display: grid;
    width: 100%;
    max-height: none;
    min-height: 0;
    padding: 6px 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .bsj-transfers-timing__mobile-head {
    position: sticky;
    top: 26px;
    z-index: 28;
    display: none;
    align-items: center;
    justify-content: flex-start;
    margin: -6px -24px 8px;
    padding: 10px 24px 12px;
    background: rgba(255, 255, 255, 0.98);
  }

  .bsj-transfers-timing.is-mobile-timing-open .bsj-transfers-timing-section {
    padding: 14px 16px;
    border: 1px solid var(--bsj-transfer-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(9, 17, 31, 0.08);
  }

  .bsj-transfers-timing.is-mobile-timing-open .bsj-transfers-timing-section + .bsj-transfers-timing-section {
    margin-top: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--bsj-transfer-line);
  }

  .bsj-transfers-timing.is-mobile-timing-open .bsj-transfers-calendar__grid {
    max-height: min(38dvh, 300px);
  }

  .bsj-transfers-timing.is-mobile-timing-open .bsj-transfers-times__grid {
    max-height: min(32dvh, 250px);
  }

  .bsj-transfers-times__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-height: clamp(208px, 32dvh, 252px);
  }

  .bsj-transfers-guests {
    grid-template-columns: 1fr;
  }

  .bsj-transfers-guests__dropdown {
    position: static;
    margin-top: 8px;
  }

  .bsj-transfer-suggestions {
    position: static;
    margin-top: 8px;
    max-height: min(36dvh, 290px);
  }

  .bsj-transfer-field__control input,
  .bsj-transfers-stepper input {
    font-size: 16px;
  }

  .bsj-transfers-guest-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
  }

  .bsj-transfers-map-toolbar {
    top: 14px;
    left: 14px;
    right: 14px;
    align-items: flex-start;
    flex-direction: column;
  }

  .bsj-transfers-map-toolbar__meta {
    font-size: 12px;
  }

}

@media (max-width: 430px) {
  .bsj-transfers-panel {
    padding-inline: 22px;
  }

  .bsj-transfers-panel:not(.is-choosing-transfer-class),
  .bsj-transfers-panel.is-choosing-transfer-class {
    height: min(88dvh, calc(100dvh - var(--bsj-transfer-mobile-header) - var(--bsj-transfer-mobile-action-bar-height) - env(safe-area-inset-bottom, 0px) - 8px));
  }

  .bsj-transfers-sheet-handle {
    width: calc(100% + 44px);
    margin-inline: -22px;
  }

  .bsj-transfer-field__control,
  .bsj-transfers-guests__toggle {
    min-height: 50px;
    padding-inline: 14px;
  }

  .bsj-transfers-submit {
    min-height: 52px;
  }

  .bsj-transfers-mobile-actionbar {
    padding-inline: 22px;
  }

  .bsj-transfer-classes .bsj-transfer-class-card {
    grid-template-columns: minmax(84px, 25%) minmax(0, 1fr);
    height: 96px;
    min-height: 96px;
  }

  .bsj-transfer-classes__back {
    min-height: 38px;
  }

  .bsj-transfer-class-card__media {
    min-height: 100%;
    max-height: none;
    aspect-ratio: auto;
    border-radius: 14px;
  }

  .bsj-transfer-class-card__content {
    padding: 1px 2px 1px 0;
  }

  .bsj-transfer-class-card__price {
    flex-direction: column;
    align-items: flex-end;
  }

  .bsj-transfers-map .mapboxgl-ctrl-bottom-right {
    top: 12px;
    right: 12px;
    bottom: auto;
  }

}

.bsj-transfers-panel__brand h1 {
  font-weight: 580;
}

.bsj-transfers-panel__brand p,
.bsj-transfer-field__control input,
.bsj-transfers-timing__summary {
  font-weight: 440;
}

.bsj-transfer-field label,
.bsj-transfers-guests label,
.bsj-transfers-guests__label,
.bsj-transfers-timing-section__label,
.bsj-transfers-calendar__weekdays {
  font-weight: 580;
}

.bsj-transfers-calendar__month h3,
.bsj-transfers-calendar__day,
.bsj-transfers-time-slot,
.bsj-transfers-guests [data-bsj-guests-label],
.bsj-transfers-stepper input,
.bsj-transfers-stepper output {
  font-weight: 560;
}

.bsj-transfers-submit {
  font-weight: 580;
}

@media (min-width: 992px) {
  .bsj-transfers-panel:not(.is-choosing-transfer-class) {
    overflow: visible;
  }

  .bsj-transfer-suggestions,
  .bsj-transfers-timing__dropdown,
  .bsj-transfers-guests__dropdown {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px) scale(0.985);
    transform-origin: top center;
    transition:
      opacity 180ms ease,
      transform 220ms cubic-bezier(.2, .8, .2, 1),
      visibility 0s linear 220ms;
    will-change: opacity, transform;
  }

  .bsj-transfer-suggestions {
    display: block;
  }

  .bsj-transfers-timing__dropdown,
  .bsj-transfers-guests__dropdown {
    display: grid;
  }

  .bsj-transfer-suggestions.is-open,
  .bsj-transfers-timing.is-open .bsj-transfers-timing__dropdown,
  .bsj-transfers-guests.is-open .bsj-transfers-guests__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
  }
}
