/**
 * Shared first-screen rules for all tours with dlit_day > 1.
 * This file is enqueued by PHP only when the theme classifier returns
 * multi_day, so selectors stay independent of body classes, IDs and slugs.
 */
.walk-slide__content,
.walk-slide__box {
  height: auto;
  min-height: 0;
  max-height: none;
}

.walk-slide__title {
  max-width: 100%;
  font-size: clamp(1.75rem, calc(1.55rem + 1vw), 2.25rem);
  line-height: 1.2;
  overflow-wrap: break-word;
  word-break: normal;
  text-wrap: wrap;
}

.walk-slide__list,
.walk-slide__price {
  max-width: 100%;
}

/* Keep the price prefix visually separate from every dynamic amount. */
html body .section._first .walk-slide__price {
  display: flex !important;
  align-items: baseline !important;
  flex-wrap: nowrap !important;
  column-gap: 0 !important;
  white-space: nowrap;
}

html body .section._first .walk-slide__price-prefix {
  flex: 0 0 auto;
  margin-inline-end: 8px !important;
}

html body .section._first .walk-slide__price-amount,
html body .section._first .walk-slide__price-unit {
  flex: 0 0 auto;
}

/**
 * Give the open date list its own visual surface instead of merging with the
 * white inputs below it. The colors reuse the site's blue/teal palette.
 */
html body .walk-form .tour-date-select._open .select-head {
  background: #f7fcff !important;
  border: 1px solid rgba(41, 170, 236, 0.32) !important;
  border-bottom: 0 !important;
  box-shadow: 0 8px 22px rgba(17, 60, 104, 0.12) !important;
}

html body .walk-form .tour-date-select._open .select-container {
  padding: 8px !important;
  background: linear-gradient(180deg, #eaf7ff 0%, #dff4f5 100%) !important;
  border: 1px solid rgba(41, 170, 236, 0.32) !important;
  border-top: 0 !important;
  border-radius: 0 0 30px 30px !important;
  box-shadow: 0 18px 34px rgba(17, 60, 104, 0.2) !important;
}

html body .walk-form .tour-date-select._open .select-list {
  gap: 4px !important;
  margin: 0 !important;
  padding: 0 6px 0 0 !important;
  background: transparent !important;
}

html body .walk-form .tour-date-select._open .select-list li {
  padding: 10px 14px !important;
  color: #113c68 !important;
  background: rgba(255, 255, 255, 0.72) !important;
  border: 1px solid rgba(41, 170, 236, 0.16) !important;
  border-radius: 14px !important;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease !important;
}

html body .walk-form .tour-date-select._open .select-list li:hover,
html body .walk-form .tour-date-select._open .select-list li:focus-visible,
html body .walk-form .tour-date-select._open .select-list li._active,
html body .walk-form .tour-date-select._open .select-list li._selected,
html body .walk-form .tour-date-select._open .select-list li[aria-selected="true"] {
  color: #fff !important;
  background: linear-gradient(90deg, rgba(97, 211, 147, 0.78), rgba(98, 213, 237, 0.78)) !important;
  border-color: rgba(17, 60, 104, 0.16) !important;
  outline: none !important;
}

/**
 * Keep every month range in one vertical list on desktop, tablet and mobile.
 * Each range remains visually light until interaction, then uses the site's
 * green-to-cyan action gradient to make its booking behavior discoverable.
 */
html body .dates-container .dates-count {
  display: flex !important;
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 6px !important;
  width: 100% !important;
  height: auto !important;
}

html body .dates-container .dates-count > .vtmu-tour-date {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  width: auto !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 4px 12px !important;
  color: inherit !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 12px !important;
  cursor: pointer !important;
  box-shadow: none !important;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease !important;
}

html body .dates-container .dates-count > .vtmu-tour-date::after {
  content: "›";
  display: inline-block;
  margin-left: 10px;
  color: currentColor;
  font-size: 1.15em;
  line-height: 1;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

html body .dates-container .dates-count > .vtmu-tour-date:hover,
html body .dates-container .dates-count > .vtmu-tour-date:focus-visible,
html body .dates-container .dates-count > .vtmu-tour-date.is-selected {
  color: #113c68 !important;
  background: #fff !important;
  box-shadow: 0 10px 24px rgba(17, 60, 104, 0.16) !important;
  outline: none !important;
  transform: translateY(-2px);
}

html body .dates-container .dates-count > .vtmu-tour-date:active {
  background: #f2f5f8 !important;
  box-shadow: 0 5px 14px rgba(17, 60, 104, 0.12) !important;
  transform: translateY(0);
}

html body .dates-container .dates-count > .vtmu-tour-date:hover::after,
html body .dates-container .dates-count > .vtmu-tour-date:focus-visible::after,
html body .dates-container .dates-count > .vtmu-tour-date.is-selected::after {
  opacity: 1;
  transform: translateX(0);
}

html body .dates-container .dates-count > .vtmu-tour-date:focus-visible {
  box-shadow: 0 12px 28px rgba(17, 60, 104, 0.22) !important;
}

/**
 * The reference ticket-assistance form is a full-width vertical flow. A
 * Customizer rule applied that layout only to the generated arctic-wow form
 * ID, while the shared rule forced other tours into two narrow columns.
 */
html body form.advice-form.feedback-form[data-visit-unified-lead-layout="1"] {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  grid-template-areas: none !important;
  grid-auto-flow: row !important;
  gap: 12px !important;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
}

html body form.advice-form.feedback-form[data-visit-unified-lead-layout="1"] > .input.phone,
html body form.advice-form.feedback-form[data-visit-unified-lead-layout="1"] > .advice-form__button,
html body form.advice-form.feedback-form[data-visit-unified-lead-layout="1"] > .messenger-choice,
html body form.advice-form.feedback-form[data-visit-unified-lead-layout="1"] > .feed-form__checkbox {
  grid-area: auto / 1 / auto / -1 !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin-inline: 0 !important;
}

html body form.advice-form.feedback-form[data-visit-unified-lead-layout="1"] > .advice-form__button .button {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
}

html body form.advice-form.feedback-form[data-visit-unified-lead-layout="1"] > .messenger-choice.bookHotel-radio[data-visit-fixed-messenger="1"] {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 0 !important;
  width: 100% !important;
  max-width: none !important;
}

html body form.advice-form.feedback-form[data-visit-unified-lead-layout="1"] > .messenger-choice.bookHotel-radio[data-visit-fixed-messenger="1"] > .messenger-choice__item {
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 0 !important;
  margin: 0 !important;
}

/*
 * At compressed desktop widths the shared script uses a 3-column max-content
 * grid. Two fewer pixels between each circle and label keep that grid inside
 * the narrow sidebar without changing the typography or column spacing.
 */
@media (min-width: 1024px) and (max-width: 1320px) {
  html body form.advice-form.feedback-form[data-visit-unified-lead-layout="1"]
    > .messenger-choice.bookHotel-radio[data-visit-fixed-messenger="1"]
    > .messenger-choice__item {
    gap: 5px !important;
    column-gap: 5px !important;
  }
}

/**
 * The reference tour has a Customizer rule tied to its generated form ID that
 * cancels the theme's sticky `top: 100px`. Apply the same first-screen
 * geometry to every multi-day tour without IDs, slugs or page-specific rules.
 */
@media (min-width: 1025px) {
  .section._first .walk > .conten {
    align-self: start !important;
    margin-top: 0 !important;
    top: 0 !important;
    bottom: auto !important;
    transform: none !important;
  }

  html body .section._first .walk > .conten > form.walk-form.visit-main-tour-form--custom {
    position: relative !important;
    align-self: start !important;
    margin-top: 0 !important;
    top: 0 !important;
    bottom: auto !important;
    inset-block: 0 auto !important;
    transform: none !important;
  }
}

@media (max-width: 767px) {
  .walk-slide__title {
    font-size: clamp(1.65rem, calc(1.5rem + 1.2vw), 1.9rem);
  }
}

/*
 * The theme splits tablet heroes into a 150px text strip and a separate image.
 * Keep the whole first screen as one rounded card instead: the photo fills the
 * card, the copy has a real inset, and one light veil connects copy and image.
 */
@media (min-width: 768px) and (max-width: 1023px) {
  html body .section._first .walk-slide {
    position: relative !important;
    display: block !important;
    height: clamp(600px, 78.15vw, 614px) !important;
    overflow: hidden !important;
    border-radius: 30px !important;
  }

  html body .section._first .walk-slide__content {
    position: absolute !important;
    inset: 0 !important;
    z-index: 3 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    padding: 28px 32px !important;
    overflow: visible !important;
    border-radius: inherit !important;
    background: none !important;
    box-sizing: border-box !important;
  }

  html body .section._first .walk-slide__box,
  html body .section._first .walk-slide__title,
  html body .section._first .walk-slide__list,
  html body .section._first .walk-slide__price {
    width: 100% !important;
    max-width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    box-sizing: border-box !important;
  }

  html body .section._first .walk-slide__img {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: inherit !important;
  }

  html body .section._first .walk-slide__img img {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: inherit !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  html body .section._first .walk-slide__img::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 0 auto !important;
    z-index: 2 !important;
    display: block !important;
    width: 100% !important;
    height: clamp(350px, 48vw, 440px) !important;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.99) 0%,
      rgba(250, 252, 254, 0.97) 36%,
      rgba(241, 246, 250, 0.88) 56%,
      rgba(231, 240, 247, 0.52) 78%,
      rgba(225, 235, 244, 0) 100%
    ) !important;
    pointer-events: none !important;
  }
}

/**
 * Restore the theme's ticket/form composition for the multi-day request modal.
 * A legacy Customizer block forces every viewport into a 620px form-first
 * column. The extra modal classes deliberately outrank that legacy rule while
 * keeping the original theme breakpoints and responsive order.
 */
html body #requestModal.requestModal.requestModal--multi.modal .modal-dialog {
  width: calc(100% - 32px) !important;
  max-width: none !important;
  min-height: calc(100% - 3.5rem) !important;
  margin: 1.75rem auto !important;
}

html body #requestModal.requestModal.requestModal--multi.modal .modal-content {
  width: 100% !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

html body #requestModal.requestModal.requestModal--multi.modal .requestModal-container {
  display: grid !important;
  grid-template-columns: 100% !important;
  flex-direction: initial !important;
  gap: 0 !important;
  width: 100% !important;
  max-height: none !important;
  padding: 0 !important;
  overflow: visible !important;
}

html body #requestModal.requestModal.requestModal--multi.modal .requestModal-ticket,
html body #requestModal.requestModal.requestModal--multi.modal #cont1 {
  order: 0 !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  align-self: stretch !important;
}

html body #requestModal.requestModal.requestModal--multi.modal .requestModal-ticket {
  gap: 30px !important;
  padding: 33px 65px !important;
  border-radius: 54px 28px 28px 54px !important;
}

html body #requestModal.requestModal.requestModal--multi.modal #cont1 {
  display: block !important;
}

html body #requestModal.requestModal.requestModal--multi.modal form.eriberka-form {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  row-gap: 6px !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  padding: 30px 40px !important;
  color: #000 !important;
  background: #fff !important;
  background-image: none !important;
  border-radius: 28px 54px 54px 28px !important;
  box-shadow: none !important;
}

html body #requestModal.requestModal.requestModal--multi.modal form.eriberka-form::before {
  content: "";
  position: absolute;
  top: 30px;
  left: -4px;
  z-index: 2;
  width: 7px;
  height: calc(100% - 60px);
  background: radial-gradient(circle, #113c68 0 2px, transparent 2.5px) center top / 7px 14px repeat-y;
  pointer-events: none;
}

html body #requestModal.requestModal.requestModal--multi.modal .requestModal-form__title {
  margin: 0 !important;
  color: #111827 !important;
  font-size: 30px !important;
  line-height: 1.3 !important;
  text-align: left !important;
}

html body #requestModal.requestModal.requestModal--multi.modal .requestModal-form__subtitle {
  max-width: 440px !important;
  margin: 0 !important;
  color: #111827 !important;
  font-size: 14px !important;
  line-height: 1.3 !important;
  text-align: left !important;
}

html body #requestModal.requestModal.requestModal--multi.modal .requestModal-form__box {
  display: flex !important;
  flex-direction: column !important;
  grid-template-columns: 100% !important;
  gap: 10px !important;
  width: 100% !important;
  height: auto !important;
  padding: 10px 0 0 !important;
}

html body #requestModal.requestModal.requestModal--multi.modal .requestModal-form__box > * {
  grid-column: 1 !important;
  width: 100% !important;
  max-width: none !important;
}

html body #requestModal.requestModal.requestModal--multi.modal .vt-soft-date,
html body #requestModal.requestModal.requestModal--multi.modal .vt-soft-date__trigger {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  align-self: stretch !important;
  box-sizing: border-box !important;
  transform: none !important;
}

html body #requestModal.requestModal.requestModal--multi.modal .vt-soft-date__trigger,
html body #requestModal.requestModal.requestModal--multi.modal .vt-soft-date__label {
  color: #616161 !important;
  font-family: "Mont Regular", Mont, MONT, Montserrat, Arial, sans-serif !important;
  font-size: 15px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 18px !important;
  letter-spacing: 0.1px !important;
}

html body #requestModal.requestModal.requestModal--multi.modal .vt-soft-date__calendar {
  background-color: #29aaec !important;
}

html body #requestModal.requestModal.requestModal--multi.modal .requestModal-form__box > .messenger-choice {
  order: 10 !important;
}

html body #requestModal.requestModal.requestModal--multi.modal .requestModal-form__box > .requestModal-form__button {
  order: 95 !important;
}

html body #requestModal.requestModal.requestModal--multi.modal .requestModal-form__box > .requestModal-politic {
  order: 30 !important;
}

html body #requestModal.requestModal.requestModal--multi.modal .requestModal-form__box > .input,
html body #requestModal.requestModal.requestModal--multi.modal .requestModal-form__box select.input {
  height: 54px !important;
  min-height: 54px !important;
  padding: 0 33px !important;
  border: 0 !important;
  border-radius: 30px !important;
  color: #676a6d !important;
  background-color: #e6ebf5 !important;
  box-shadow: none !important;
  font-size: 15px !important;
  line-height: 1.2 !important;
}

html body #requestModal.requestModal.requestModal--multi.modal .requestModal-form__box > select.requestModal-date-select {
  padding-right: 52px !important;
  padding-left: 68px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%2329aaec' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4.5' width='18' height='16.5' rx='3'/%3E%3Cpath d='M8 2.5v4M16 2.5v4M3 9h18'/%3E%3Cpath d='M8 13h.01M12 13h.01M16 13h.01M8 17h.01M12 17h.01'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='11' viewBox='0 0 18 11' fill='none'%3E%3Cpath d='M2 2l7 7 7-7' stroke='%23676a6d' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-position: 32px 50%, calc(100% - 26px) 50% !important;
  background-repeat: no-repeat, no-repeat !important;
  background-size: 26px 26px, 16px 10px !important;
}

html body #requestModal.requestModal.requestModal--multi.modal .requestModal-barcode {
  width: 100% !important;
  height: 44px !important;
  margin: 22px 0 0 !important;
}

html body #requestModal.requestModal.requestModal--multi.modal .requestModal-ticket__title {
  margin: 0 0 55px !important;
  font-size: 36px !important;
  line-height: 1.3 !important;
}

html body #requestModal.requestModal.requestModal--multi.modal .requestModal-ticket__info {
  column-gap: 42px !important;
}

html body #requestModal.requestModal.requestModal--multi.modal .requestModal-ticket__name {
  font-size: 85px !important;
  line-height: 1 !important;
}

html body #requestModal.requestModal.requestModal--multi.modal .requestModal-ticket__subname {
  font-size: 35px !important;
  line-height: 1 !important;
}

html body #requestModal.requestModal.requestModal--multi.modal .requestModal-ticket__arrow {
  width: 60px !important;
  height: 50px !important;
  margin-top: 15px !important;
}

html body #requestModal.requestModal.requestModal--multi.modal .requestModal-ticket__row {
  gap: 20px 40px !important;
  margin-bottom: 16px !important;
}

html body #requestModal.requestModal.requestModal--multi.modal .requestModal-ticket__status {
  font-size: 18px !important;
  line-height: 1.3 !important;
}

html body #requestModal.requestModal.requestModal--multi.modal .requestModal-ticket__boarding {
  font-size: 24px !important;
  line-height: 1.3 !important;
}

html body #requestModal.requestModal.requestModal--multi.modal .btn-close {
  position: absolute !important;
  top: -24px !important;
  right: 12px !important;
  z-index: 999 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  min-height: 46px !important;
  padding: 0 !important;
  border: 1px solid rgba(16, 43, 85, 0.14) !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 4px 14px rgba(8, 24, 52, 0.18) !important;
  opacity: 1 !important;
}

html body #requestModal.requestModal.requestModal--multi.modal .btn-close > svg {
  width: 26px !important;
  height: 26px !important;
  filter: none !important;
}

html body #requestModal.requestModal.requestModal--multi.modal .btn-close > svg path {
  stroke: #102b55 !important;
  stroke-width: 2 !important;
}

@media (min-width: 576px) {
  html body #requestModal.requestModal.requestModal--multi.modal .modal-dialog {
    max-width: 514px !important;
  }
}

@media (min-width: 768px) {
  html body #requestModal.requestModal.requestModal--multi.modal .modal-dialog {
    max-width: 694px !important;
  }
}

@media (min-width: 1024px) {
  html body #requestModal.requestModal.requestModal--multi.modal .modal-dialog {
    max-width: 935px !important;
  }

  html body #requestModal.requestModal.requestModal--multi.modal .requestModal-container {
    grid-template-columns: 66% 34% !important;
  }
}

@media (min-width: 1200px) {
  html body #requestModal.requestModal.requestModal--multi.modal .modal-dialog {
    max-width: 1110px !important;
  }
}

@media (max-width: 1199px) {
  html body #requestModal.requestModal.requestModal--multi.modal .requestModal-ticket {
    padding: 40px 50px !important;
  }

  html body #requestModal.requestModal.requestModal--multi.modal .requestModal-ticket__name {
    font-size: 60px !important;
  }

  html body #requestModal.requestModal.requestModal--multi.modal .requestModal-ticket__subname {
    font-size: 30px !important;
  }

  html body #requestModal.requestModal.requestModal--multi.modal .requestModal-ticket__arrow {
    width: 46px !important;
    height: 32px !important;
    margin-top: 12px !important;
  }

  html body #requestModal.requestModal.requestModal--multi.modal form.eriberka-form {
    padding: 30px !important;
  }
}

@media (max-width: 1023px) {
  html body #requestModal.requestModal.requestModal--multi.modal #cont1 {
    order: 1 !important;
  }

  html body #requestModal.requestModal.requestModal--multi.modal .requestModal-ticket {
    order: 2 !important;
    padding: 30px 40px !important;
    border-radius: 24px 24px 40px 40px !important;
  }

  html body #requestModal.requestModal.requestModal--multi.modal .requestModal-ticket__title {
    margin-bottom: 16px !important;
  }

  html body #requestModal.requestModal.requestModal--multi.modal form.eriberka-form {
    padding: 30px 40px !important;
    border-radius: 40px 40px 24px 24px !important;
  }

  html body #requestModal.requestModal.requestModal--multi.modal form.eriberka-form::before {
    top: auto;
    bottom: -4px;
    left: 30px;
    width: calc(100% - 60px);
    height: 7px;
    background: radial-gradient(circle, #113c68 0 2px, transparent 2.5px) left center / 14px 7px repeat-x;
  }
}

@media (max-width: 767px) {
  html body #requestModal.requestModal.requestModal--multi.modal .modal-dialog {
    width: calc(100% - 20px) !important;
    margin: 10px auto !important;
  }

  html body #requestModal.requestModal.requestModal--multi.modal .requestModal-container {
    max-height: none !important;
  }

  html body #requestModal.requestModal.requestModal--multi.modal .requestModal-ticket__title {
    font-size: 30px !important;
  }

  html body #requestModal.requestModal.requestModal--multi.modal .requestModal-ticket__name {
    font-size: 40px !important;
  }

  html body #requestModal.requestModal.requestModal--multi.modal .requestModal-ticket__subname {
    font-size: 22px !important;
  }

  html body #requestModal.requestModal.requestModal--multi.modal .requestModal-ticket__arrow {
    width: 30px !important;
    height: 22px !important;
    margin-top: 6px !important;
  }

  html body #requestModal.requestModal.requestModal--multi.modal .requestModal-ticket__status {
    font-size: 14px !important;
  }

  html body #requestModal.requestModal.requestModal--multi.modal .requestModal-ticket__boarding {
    font-size: 18px !important;
  }

  html body #requestModal.requestModal.requestModal--multi.modal .btn-close {
    position: fixed !important;
    top: calc(12px + env(safe-area-inset-top, 0px)) !important;
    right: 12px !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    border-radius: 16px !important;
  }
}

@media (max-width: 575px) {
  html body #requestModal.requestModal.requestModal--multi.modal .requestModal-ticket,
  html body #requestModal.requestModal.requestModal--multi.modal form.eriberka-form {
    padding: 30px !important;
  }

  html body #requestModal.requestModal.requestModal--multi.modal .requestModal-ticket__title,
  html body #requestModal.requestModal.requestModal--multi.modal .requestModal-form__title {
    font-size: 22px !important;
  }

  html body #requestModal.requestModal.requestModal--multi.modal .requestModal-ticket__name {
    font-size: 30px !important;
  }

  html body #requestModal.requestModal.requestModal--multi.modal .requestModal-ticket__subname {
    font-size: 18px !important;
  }

  html body #requestModal.requestModal.requestModal--multi.modal .requestModal-ticket__status,
  html body #requestModal.requestModal.requestModal--multi.modal .requestModal-form__subtitle {
    font-size: 12px !important;
  }

  html body #requestModal.requestModal.requestModal--multi.modal .requestModal-ticket__boarding {
    font-size: 14px !important;
  }
}

/* Compact desktop rhythm matches the reference ticket at short laptop heights. */
@media (min-width: 1024px) {
  html body #requestModal.requestModal.requestModal--multi.modal form.eriberka-form {
    padding: 24px 30px !important;
  }

  html body #requestModal.requestModal.requestModal--multi.modal .requestModal-form__title {
    line-height: 1.08 !important;
  }

  html body #requestModal.requestModal.requestModal--multi.modal .requestModal-form__box {
    gap: 8px !important;
    padding-top: 8px !important;
  }

  html body #requestModal.requestModal.requestModal--multi.modal .requestModal-form__box > .input,
  html body #requestModal.requestModal.requestModal--multi.modal .requestModal-form__box select.input,
  html body #requestModal.requestModal.requestModal--multi.modal .vt-soft-date,
  html body #requestModal.requestModal.requestModal--multi.modal .vt-soft-date__trigger {
    height: 50px !important;
    min-height: 50px !important;
  }

  html body #requestModal.requestModal.requestModal--multi.modal .requestModal-form__button,
  html body #requestModal.requestModal.requestModal--multi.modal .requestModal-form__button .button {
    height: 50px !important;
    min-height: 50px !important;
  }

  html body #requestModal.requestModal.requestModal--multi.modal .requestModal-barcode {
    height: 32px !important;
    margin-top: 10px !important;
  }
}
