@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {

  --logo-path: url('/assets/logo.svg');

  --font-body: 'Inter', Arial, sans-serif;
  --font-title: 'Poppins', Arial, sans-serif;

  --color-error: #FEE2E2;
  --color-error-shadow: #FEF2F2;
  --color-warning: #FDB654;
  --color-warning-shadow: #FEE2E2;

  --color-info-success: #10B981;
  --color-info-error: #fa0415;


  --color-primary: #fa0415;
  --color-primary-50: #FEF2F2;
  --color-primary-100: #FEE2E2;
  --color-primary-200: #FECACA;
  --color-primary-300: #FCA5A5;
  --color-primary-400: #F87171;
  --color-primary-500: #F94B58;
  --color-primary-600: #DC2626;
  --color-primary-700: #B91C1C;
  --color-primary-800: #991B1B;
  --color-primary-900: #7F1D1D;
  --color-primary-950: #450A0A;

  --color-primary-light: #FF6B7A;
  --color-primary-dark: #E63946;
  --color-primary-hover: #FF5A6B;
  --color-primary-active: #E63946;
  --color-primary-focus: rgba(249, 75, 88, 0.25);
  --color-primary-disabled: rgba(249, 75, 88, 0.4);

  /* Grey Palette */
  --color-grey-50: #F9FAFB;
  --color-grey-100: #F3F4F6;
  --color-grey-200: #E5E7EB;
  --color-grey-300: #D1D5DB;
  --color-grey-400: #9CA3AF;
  --color-grey-500: #6B7280;
  --color-grey-600: #4B5563;
  --color-grey-700: #374151;
  --color-grey-800: #1F2937;
  --color-grey-900: #111827;
  --color-grey-950: #030712;

  /* Semantic Grey Colors */
  --color-border: var(--color-grey-200);
  --color-box-bg: var(--color-grey-100);
  --color-body-bg: var(--color-grey-50);
  --color-dark: var(--color-grey-800);
  --color-select-bg: #EBF8FF;
  --color-black-36: rgba(0, 0, 0, 0.36);
  --color-black-60: rgba(0, 0, 0, 0.6);
  --color-black-25: rgba(0, 0, 0, 0.25);
  --color-black: var(--color-grey-900);
  --color-white: #FFFFFF;
  --color-gray: var(--color-grey-100);
  --color-font-body: var(--color-grey-900);
  --color-text-gray: var(--color-grey-500);
  --color-text-blue-gray: var(--color-grey-400);
  --color-input-placeholders: var(--color-grey-400);

  /* Accent Colors */
  --color-accent: #FDB654;
  --color-tag: #42E8D4;
  --color-tag-alt: #FDBD64;
  --color-tag-bg: #E9D5FF;
  --color-tag-dark: #2C5282;

  /* Text Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-md: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --title-h1: 2.75rem;
  --title-h2: 2.5rem;
  --title-h3: 2.25rem;
  --title-h4: 1.75rem;
  --title-h5: 1.5rem;
  --title-h6: 1.25rem;

  /* Utilities */
  --padding-global: 3.75rem;
}

@media (max-width: 992px) {
  :root {
    --padding-global: 1rem;
  }
}

/* Mobile */
@media (max-width: 767px) {
  :root {
    --text-lg: 1rem;
    --text-xl: 1rem;
    --text-2xl: 1.2rem;
    --title-h1: 2rem;
    --title-h2: 1.75rem;
    --title-h3: 1.5rem;
    --title-h4: 1.25rem;
    --title-h5: 1.125rem;
    --title-h6: 1.125rem;
  }
}

@media (max-width: 480px) {
  :root {
    --text-lg: 0.875rem;
    --text-xl: 1rem;
    --text-2xl: 1.2rem;
    --title-h1: 1.75rem;
    --title-h2: 1.5rem;
    --title-h3: 1.25rem;
    --title-h4: 1.2rem;
    --title-h5: 1.125rem;
    --title-h6: 1.125rem;
  }
  .result-card-data .result-card-duration {
    display: none;
  }
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  background-color: white;
  color: var(--color-font-body);
  font-family: var(--font-body);
  font-size: var(--text-md);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  display: inline-block;
  line-height: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-wrap: nowrap;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

textarea {
  resize: vertical;
  min-height: 2rem;
  /* min-height: 7.5rem; */

  field-sizing: content;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  font-weight: 700;
  margin: 0;
}

h1 {
  font-size: var(--title-h1);
  line-height: 1.1;
}

h2 {
  font-size: var(--title-h2);
  line-height: 1.15;
}

h3 {
  font-size: var(--title-h3);
  line-height: 1.2;
}

h4 {
  font-size: var(--text-lg);
  line-height: 1.25;
}

h5 {
  font-size: var(--text-2xl);
  line-height: 1.3;
}

h6 {
  font-size: var(--text-xl);
  line-height: 1.35;
}


p,
li,
span,
a,
label,
input {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

label {
  padding-bottom: 0.25rem!important;
}

textarea {
  font-family: inherit;
  font-weight: inherit;
  margin: 0;
}

select {
  border: unset;
  background-color: unset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

input::placeholder {
  color: var(--color-input-placeholders);
}

p {
  font-size: var(--text-md);
}

.no-margin {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.text-xs {
  font-family: Inter, Arial, sans-serif;
  font-size: var(--text-xs);
  font-weight: 400;
  line-height: 1.33em;
  letter-spacing: -0.03em;
}

.text-sm {
  font-family: Inter, Arial, sans-serif;
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: 1.43em;
}

.text-md {
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: var(--text-md);
  line-height: 1.5em;
  margin: 0;
}

.text-lg {
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: var(--text-lg);
  line-height: 1.5em;
  margin: 0;
}

.text-xl {
  font-size: var(--text-xl);
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5em;
  margin: 0;
}

.text-2xl {
  font-size: var(--text-2xl);
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5em;
  margin: 0;
}

.text-weight-medium {
  font-weight: 500;
}

.text-weight-semibold {
  font-weight: 600;
}

.text-weight-bold {
  font-weight: 700;
}

.text-dark {
  color: var(--color-dark) !important;
}

.text-black {
  color: var(--color-black) !important;
}

.border-top {
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
}

.hero-section {
  padding-top: 3.75rem;
  padding-bottom: 2.5rem;
}

.background-color-grey {
  background: var(--color-body-bg);
}
.bkg-white {
  background: var(--color-white);
}

.gap-32 {
  gap: 2rem !important;
}

.no-box-shadow {
  box-shadow: none !important;
}

.navbar-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem var(--padding-global);
}

.navbar-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}

.navbar-localization {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
}

.navbar-lang {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
  font-size: var(--text-md);
  color: var(--color-font-body);
  line-height: 1.5em;
}

/* Match language select text styling to navbar-lang/mobile-menu-lang */
.lang-select {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
  font-size: var(--text-md);
  color: var(--color-font-body);
  line-height: 1.5em;
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
  height: auto;
  min-width: auto;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.lang-select:focus {
  outline: none;
}

.navbar-localization .lang-select,
.mobile-menu-localization .lang-select {
  color: var(--color-font-body);
}

.lang-select option {
  color: var(--color-font-body);
}

.navbar-link {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
  font-size: var(--text-md);
  color: var(--color-font-body);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.2s;
}

.navbar-link:hover {
  color: var(--color-primary);
}

.navbar-btn {
  background: var(--color-gray);
  color: var(--color-font-body);
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  font-size: var(--text-md);
  border: none;
  border-radius: 1rem;
  padding: 0.5rem 1rem;
  height: 2.5rem;
  cursor: pointer;
  transition: background 0.2s;
}

.navbar-btn:hover {
  background: var(--color-primary) !important;
  color: var(--color-white);
}


.footer {
  background: var(--color-accent);
}

.padding-global {
  padding-left: var(--padding-global);
  padding-right: var(--padding-global);
}

.padding-section-small {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.padding-section-medium {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem
}



.padding-section-large {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem
}

.no-bottom {
  padding-bottom: 0 !important;
}

.no-right {
  padding-right: 0 !important;
}

.no-top {
  padding-top: 0 !important;
}

.bottom-double {
  padding-bottom: 7rem;
}

.bottom-double-L {
  padding-bottom: 7.5rem;
}

.container-global {
  width: 100%;
  max-width: 94.5rem;
  margin: 0 auto;
}

.container-narrow {
  width: 100%;
  max-width: 62rem;
  margin: 0 auto;
}

.footer_content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 2.5rem;
}

.footer-logo {
  height: 100%;
  width: 5.5rem;
  display: block;
}

.footer_links-group {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  flex-grow: 1;
  max-width: 39.375rem;
}

.footer_links-block {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-self: stretch;
}

.footer_links-block> :first-child {
  line-height: 2.6em;
}


.footer_links-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  font-family: 'Inter', Arial, sans-serif;
  font-size: var(--text-sm);
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  line-height: 1.43em;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--color-primary);
}

.footer_bottom-bar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2rem 0;
  margin-top: 0;
}

.footer-stretch-grow {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.footer-payments {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.75rem;
  opacity: 0.8;
}

.footer-payment-logo {
  height: 2rem;
  width: auto;
  display: block;
}

.section-route-search {
  background: linear-gradient(to bottom,
      var(--color-white) 0%,
      var(--color-white) 60%,
      var(--color-accent) 60%,
      var(--color-accent) 100%);
}

.hero-content-wrap {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 0rem;
  justify-content: space-between;
  max-width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  flex-grow: 1;
  width: 100%;
  z-index: 1;
}

.hero-title {
  padding-right: 16rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.title-h1 {
  font-weight: 500;
  font-size: var(--title-h2);
  line-height: 1.2em;
  letter-spacing: -0.03em;
}

.search-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-search-outer {
  position: relative;
}

.search-bar {
  background: var(--color-white);
  border-radius: 1.5rem;
  box-shadow: 0rem 0.5rem 1.5rem 0.75rem rgba(105, 105, 105, 0.1);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 100%;
  flex-grow: 1;
}

.search-bar-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.search-data {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 1rem;
}

.search-cities {
  display: flex;
  flex-grow: 1;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
}

.search-cities button {
  background-color: var(--color-white);
}

.search-input-field {
  background: var(--color-white);
  border-radius: 0.375rem;
  border: 1px solid var(--color-border);
  padding: 0.375rem 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.custom-height {
  padding: 0.875rem 0.75rem;
}

.search-input-field.is-city {
  flex: 1 0 0;
  min-width: 8.7rem;
}

.search-input-field.is-ticket {
  height: 100%;
  position: relative;
  flex: 1;
  max-width: 8.75rem;
}

.search-input-field.is-date .search-text-info {
  cursor: pointer;
}

.search-input-field.is-date .search-input {
  background-image: url('data:image/svg+xml;charset=utf-8,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4 6L8 10L12 6" stroke="%23475569" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 1rem;
  padding-right: 2rem;
}

.search-input-field-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.search-input-field-wrap input {
  background-image: none!important;
}
.input-control-icons {
  margin-left: 0.5rem;
  display: flex;
  flex-direction: column;

  gap: 0.5rem;
}
.input-control-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-text-info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  height: 100%;
  justify-content: space-between;
  position: relative;
}

.search-city.is-date .search-text-info {
  cursor: pointer;
}

.search-value {
  color: var(--color-font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: 1.43em;
  border: none;
  background: transparent;
  outline: none;
  padding: 0;
  margin: 0;
  width: 100%;
  font-family: var(--font-body);
}

.search-value::placeholder {
  color: var(--color-input-placeholders);
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: 1.43em;
}

.search-value:focus {
  outline: none;
}

.search-input {
  border: none;
  background: transparent;
  outline: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.search-input::placeholder {
  color: var(--color-input-placeholders);
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: 1.43em;
}

.search-input:focus {
  outline: none;
}

.search-input-field:hover {
  border-color: var(--color-primary-300);
  transition: border-color 0.2s ease;
}

.search-input-field:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-focus);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-city-change {
  border-radius: 0.375rem;
  padding: 0.75rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.search-city-change:hover svg path {
  fill: var(--color-font-body);
  transition: fill 0.2s;
}

.search-tickets-types {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: stretch;
}

.search-ticket-normal,
.search-ticket-discount {
  background: var(--color-white);
  border-radius: 0.375rem;
  border: 1px solid var(--color-box-bg);
  padding: 0.375rem 0.75rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.search-input-field.is-ticket {
  background-image: none;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 1rem;
}

.search-label {
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
  min-width: fit-content;
  flex-shrink: 0;
  color: var(--color-text-gray);
  font-size: var(--text-xs);
  font-weight: 500;
}

.search-dropdown {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  position: relative;
}

.search-select::-webkit-calendar-picker-indicator {
  opacity: 0;
}

.search-select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  outline: none;
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  cursor: pointer;
  z-index: 2;
}


.search-select option {
  color: var(--color-font-body);
  background: var(--color-white);
  font-family: 'Inter', Arial, sans-serif;
  font-size: var(--text-sm);
  font-weight: 400;
  padding: 0.5rem;
}

.search-select:focus {
  outline: none;
}



.search-display {
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.button {
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 0.375rem;
  padding: 0.625rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  justify-content: center;
  text-decoration: none;
  width: fit-content;
}

.button:hover {
  background: var(--color-primary-dark);
}

.button-icon {
  display: flex;
  align-items: center;
}

.search-payments {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2.125rem;
  width: 100%;
}

.search-payments-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}

.search-payments-label {
  color: var(--color-black);
  opacity: 0.6;
}

.search-payments-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.75rem;
  opacity: 0.8;
}

.search-payment-logo {
  height: 1.5rem;
}

.search-payment-guarantee-note {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.search-payment-guarantee-icon {
  display: flex;
  align-items: center;
}

.search-payment-guarantee-text {
  color: rgba(0, 0, 0, 0.36);
}


.image-deco-absolute {
  width: auto;
  height: auto;
  max-height: 26.25rem;
  position: absolute;
  right: -7rem;
  top: 0;
  bottom: auto;
  left: auto;
}


.search-options-group {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: stretch;
  align-items: stretch;
  align-self: stretch;
  width: 100%;
}

.search-option {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  padding: 1.125rem 1.5rem;
  border-radius: 0.75rem;
  background: var(--color-white);
  box-shadow: 0rem 0.25rem 1.5rem 0.5rem rgba(0, 0, 0, 0.04);
  flex-grow: 1;
}

.search-option-text {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 0.5rem;
}

.search-option-icon svg {
  display: flex;
  align-items: center;
}

.section_text-block {
  align-items: stretch;
  align-self: stretch;
  width: 100%;
  background-color: var(--color-accent);
}

.no-left {
  padding-left: 0 !important;
}

.text-block_content {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: center;
  align-self: stretch;
  gap: 2rem;
  width: 100%;

}

.man-taking-pictures-illustration {
  max-height: 31.25rem;
  aspect-ratio: 1/1;
}

.man-taking-pictures-illustration img {
  width: 100%;
  height: 100%;
  display: block;
}

.text-block_wrap {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin: 0;
  max-width: 45rem;
  width: 100%;
}

.title-h3 {
  color: black;
  font-size: var(--title-h3);
  font-weight: 500;
  line-height: 2.25rem;
  letter-spacing: -0.0675rem;
}

.text-block_wrap-inner {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 1rem;
  width: 100%;
}

.button.with-icon {
  display: flex;
  color: var(--color-font-body);
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  height: fit-content;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

.icon-small {
  width: 1rem;
  height: 1rem;
  color: var(--color-black);
  flex-shrink: 0;
}


.section_link-cards {
  background: linear-gradient(to top,
      var(--color-white) 0%,
      var(--color-white) 60%,
      var(--color-accent) 60%,
      var(--color-accent) 100%);
}

.cards_content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: 100%;
}

.title-h3-centered {
  text-align: left;
  width: auto;
}

.overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.card-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.card-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.card-link_text-group {
  display: flex;
  flex-direction: column;
  width: 85%;
  position: relative;
  z-index: 3;
  color: var(--color-white);
}
.card-link_text-group p {
  min-height: 72px;
}

.card-link.connections-card {
  padding: 1.25rem;
  min-width: 100%;

}

.card-link_text-icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  width: fit-content;
  height: fit-content;
}

.title-h3-alt {
  font-weight: 500;
  font-size: var(--title-h3);
  line-height: 1.125em;
  letter-spacing: -0.03em;
  color: var(--color-white);
  text-align: left;
}

.title-h3-alt.destination {
  width: 100%;
  text-align: left;
}

.east-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-white);
  flex-shrink: 0;
}

.section_partners {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.75rem;
  padding: 3.75rem 0rem;
  width: 100%;
}

.container-medium {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
}

.partners_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.75rem;
  width: fit-content;
  height: fit-content;
}

.partners_grid {
  display: grid;
  width: auto;
  max-width: 68.75rem;
  column-gap: 2.25rem;
  grid-template-columns: repeat(5, 1fr);
}

.partner-logo {
  display: flex;
  padding: 0rem 1.25rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  flex: 1 0 0;
  align-self: stretch;
  height: 4.375rem;
}

.partner-logo img {
  width: auto;
  height: 100%;
  max-width: 9.375rem;
  max-height: 2.1875rem;
  filter: saturate(0)
}

.partner-logo.max-20 img {
  max-height: 1.25rem;
}

.partner-logo.max-40 img {
  max-height: 2.5rem;
}


.faq_content-box {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: stretch;
  gap: 3.25rem;
  width: 100%;
}

.faq-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  max-width: 30.9375rem;
  aspect-ratio: 1/1;
}

.faq-image-container img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

.faq_content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
  flex: 1;
  max-width: 43.75rem;
}

.is-faq-page {
  max-width: 65.9375rem;
  margin: 0 auto;
}

.faq_list {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  width: 100%;
}

.faq_dropdown {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  gap: 0.625rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  width: 100%;
  transition: all 0.3s ease;
}

.faq_trigger {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0rem;
  width: 100%;
  cursor: pointer;
}

.font-headers {
  font-family: 'Poppins', Arial, sans-serif;
}

.faq_trigger .icon-small {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  width: fit-content;
  height: fit-content;
  flex-shrink: 0;
}

.faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.faq_content_text {
  padding: 0 0 1.25rem 0;
  animation: fadeIn 0.3s ease;
}

.faq_content_text p, .faq_content_text li {
  font-family: 'Inter', Arial, sans-serif;
  font-size: var(--text-md);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.7);
  margin: 0;
}

.faq-see-all {
  margin-top: 1.25rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    max-height: 0;
  }

  to {
    opacity: 1;
    max-height: 12.5rem;
  }
}

.section-login {
  width: 100%;
  padding: 0;
}

.login-content {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  position: relative;
  min-height: 100%;
  min-height: calc(100vh - 11.25rem);
}

.login-left-col {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 2.125rem;
  padding: 3.75rem 7.5rem 3.75rem 3.75rem;
  flex: 1;
  min-height: 100%;
  overflow-y: auto;
}

.login-logo img {
  max-height: 3.125rem;
  width: auto;
}

.content-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  max-width: 100%;
}

.button.is-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  height: fit-content;
  background: transparent;
  border: none;
  color: #000000;
  cursor: pointer;
  padding: 0;
  font-family: 'Inter', Arial, sans-serif;
  font-size: var(--text-md);
  font-weight: 400;
  line-height: 1.5em;
}

.button.is-icon:hover {
  color: var(--color-primary);
}

.login-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
  width: 100%;
}

.title-h5 {
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 500;
  font-size: var(--title-h5);
  line-height: 1.33em;
  color: var(--color-dark);
  margin: 0;
}

.form-outer {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 2rem;
  width: 100%;
}

.login-form {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 1.5rem;
  padding: 0 0 1.5rem;
  border-bottom: 1px solid #EFF0F1;
  width: 100%;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 2.5rem;
  width: 100%;
}

.input-group {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 1.25rem;
  width: 100%;
}

.input-wrap {
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.input-label {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
  font-size: var(--text-xs);
  color: var(--color-text-gray);
}

.input {
  gap: 0.625rem;
  padding: 0.875rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 0.375rem;
  width: 100%;
  font-size: var(--text-md);
}

.input::placeholder {
  color: var(--color-text-blue-gray);
}

select.input option[value=""][disabled] {
  color: var(--color-input-placeholders);
}

/* select.input:invalid {
  color: var(--color-input-placeholders);
} */

.input:hover {
  border-color: var(--color-primary-300);
  transition: border-color 0.2s ease;
}

.input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-focus);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.login-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  background: var(--color-primary);
  border: none;
  border-radius: 0.375rem;
  width: 100%;
  cursor: pointer;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  font-size: var(--text-lg);
  line-height: 1.56em;
  color: var(--color-white);
}

.login-btn:hover {
  background: var(--color-primary);
}

.checkbox-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
}

.checkbox-label {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  font-size: var(--text-md);
  line-height: 1.5em;
  cursor: pointer;
}

.login-links {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 1rem;
  width: 100%;
}

.login-link-wrap {
  display: flex;
  flex-direction: row;
  align-self: stretch;
  gap: 0.5rem;
  width: 100%;
  align-items: center;
}

.login-link-wrap .button-show-more {
  margin-left: 0;
}

.button-secondary {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  background: transparent;
  border: none;
  border-bottom: 0.5px solid var(--color-black);
  cursor: pointer;
  width: fit-content;
  height: fit-content;
  padding: 0;
}

.button-secondary:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.login-right-col {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: stretch;
  align-self: stretch;
  gap: 0.625rem;
  padding: 1.5rem;
  flex: 1;
  min-height: 100%;
}

.image-container.radius-xs {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: stretch;
  align-self: stretch;
  gap: 0.625rem;
  border-radius: 0.5rem;
  overflow: hidden;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  position: relative;
}

.login-background-image {
  width: 100%;
  height: 100%;
  background-image: url('/assets/login-background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.lost-ticket-background-image {
  width: 100%;
  height: 100%;
  background-image: url('/assets/lost-ticket-background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.login-overlay-logo {
  position: absolute;
  left: 50%;
  bottom: 50%;
  transform: translateX(-50%);
  width: auto;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;

}

/* Form Info Box Styles */
.form-info-box {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 0.625rem;
  padding: 1.25rem;
  background: var(--color-box-bg);
  border-radius: 0.25rem;
  width: 100%;
}

.form-info-box-inner {
  display: flex;
  flex-direction: row;
  align-self: stretch;
  gap: 0.75rem;
  align-items: flex-start;
  width: 100%;
}

.info-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.625rem;
  width: fit-content;
  height: 1.5rem;
  flex-shrink: 0;
}

.info-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-font-body);
}

/* Register Page Specific Styles */
.register-bottom-section {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 1rem;
  width: 100%;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 0.75rem;
  width: 100%;
  color: var(--color-dark)
}

.register-checkbox {
  display: flex;
  flex-direction: row;
  align-self: stretch;
  gap: 0.5rem;
  width: 100%;
  align-items: flex-start;
}

.register-checkbox-small {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  width: 21.125rem;
  max-width: 100%;
}

.register-label {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  font-size: var(--text-xs);
  line-height: 1.33em;
  color: #718096;
  cursor: pointer;
  flex: 1;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 1.25rem;
}

.login-popup {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: stretch;
  background: var(--color-white);
  border-radius: 0.375rem;
  overflow: hidden;
  max-width: 50rem;
  width: 100%;
  max-height: 90vh;
  box-shadow: 0 0.625rem 1.5625rem rgba(0, 0, 0, 0.15);
}

.login_popup-left {
  display: flex;
  flex-direction: row;
  align-self: stretch;
  padding: 0.5rem;
  flex: 1;
}

.image-container.radius-xxs {
  background: #EFF0F1;
  border-radius: 0.1875rem;
  width: 100%;
  height: 100%;
  position: relative;
  min-height: 25rem;
}

.unsplash-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/modal-background.jpg');
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
  border-radius: 0.1875rem;
}

.group-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logoReady-1 {
  position: relative;
  z-index: 2;
}

.logoReady-1 img {
  max-height: 3.75rem;
  width: auto;
  display: block;
}

.login-popup-right {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  flex: 1;
  min-width: 25rem;
}

.popup-close-box {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  align-self: stretch;
  padding: 0.5rem;
  width: 100%;
}

.close-button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.375rem;
  border-radius: 0.375rem;
  color: var(--color-dark);
  transition: background-color 0.2s;
}

.close-button:hover {
  background-color: #F7FAFC;
}

.popup-wrap {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 1.5rem;
  padding: 0 2.5rem 0 2rem;
  width: 100%;
}

.popup-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
  width: 100%;
}

.title-h6 {
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 500;
  font-size: var(--title-h6);
  line-height: 1.33em;
  color: var(--color-dark);
  margin: 0;
}

.popup-content {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 1.5rem;
  padding: 0 0 1.5rem;
  width: 100%;
}

.popup-form-wrap {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 2rem;
  width: 100%;
}

.popup-input-group {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 1rem;
  width: 100%;
}

.popup-input-wrap {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 0.5625rem;
  width: 100%;
}

.popup-input-label {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
  font-size: var(--text-xs);
  line-height: 1.5em;
  color: var(--black);
  width: 100%;
}

.popup-input {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
  gap: 0.625rem;
  padding: 0 1rem;
  height: 3rem;
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: 0.375rem;
  width: 100%;
  font-family: 'Inter', Arial, sans-serif;
  font-size: var(--text-lg);
  font-weight: 400;
  line-height: 1.21em;
  color: var(--color-black);
}

.popup-input::placeholder {
  color: var(--color-input-placeholders);
}

.popup-input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.popup-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  gap: 0.5rem;
  padding: 0 1rem;
  height: 3rem;
  background: var(--color-primary);
  border: none;
  border-radius: 0.375rem;
  width: 100%;
  cursor: pointer;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  font-size: var(--text-md);
  line-height: 1.5em;
  color: var(--color-white);
  transition: background-color 0.2s;
}

.popup-button:hover {
  background: #e63946;
}

.popup-info-box {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 0.625rem;
  padding: 1.25rem;
  background: var(--color-box-bg);
  border-radius: 0.25rem;
  width: 100%;
}

.popup-info-box-inner {
  display: flex;
  flex-direction: row;
  align-self: stretch;
  gap: 0.75rem;
  align-items: flex-start;
  width: 100%;
}

.popup-info-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.625rem;
  width: fit-content;
  height: 1.5rem;
  flex-shrink: 0;
}

.popup {
  width: 100%;
  margin: 0;
}

/* Modal Responsive Styles */

/* Search Results Page Styles */
.section-results-hero {
  background: var(--color-white);
  width: 100%;
  box-shadow: inset 0em 1px #e5e7eb36;
}

.search-bar-simplified {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  align-self: stretch;
  gap: 0.625rem;
  padding-block: 2.5rem;
}

.content-results {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 65.625rem;
  margin: 0 auto;
}

.result-card {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  border-radius: 0.5rem;
  width: 100%;
  overflow: hidden;
}

.result-card .open {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.card-search {
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  box-shadow: 0px 0.25rem 1.5rem 0.5rem rgba(0, 0, 0, 0.04);
}

.tab {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  width: fit-content;
}

.tab-door-to-door {
  background: #8EE8DD;
}

.tab-promotion {
  background: #FDBD64;
}

.tab-bonus {
  background: #4ee230;
}

.tab-services {
  background: #e6dede;
}

.result-card-content {
  display: flex;
  flex-direction: row;
  align-self: stretch;
  gap: 1.5rem;
  padding-top: 1rem;
}

.result-card-data {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  flex: 1;
}


.result-card-departure-data,
.result-card-arrival-data {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.result-card-time-inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
}

.result-card-time-wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding: 0.5rem 0;
  gap: 0.375rem;
}

.text-3xl {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  font-size: var(--title-h4);
  line-height: 1.2em;
  color: var(--color-font-body);
}

.result-card-place {
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.city-dropdown-select {
  background: var(--color-select-bg);
  border-radius: 0.5rem;
  padding-inline: 0.75rem;
  padding-right: 2.5rem;
  height: 3rem;
  font-size: var(--text-sm);
  z-index: 2;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1rem;
}

.city-dropdown-select:hover {
  background-color: #DBEAFE;
  border-color: #3B82F6;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%233B82F6' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
}

.city-dropdown-select:focus {
  outline: none;
  background-color: #DBEAFE;
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%232563EB' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
}

.city-dropdown svg {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  flex-shrink: 0;
}

.result-card-company-logo {
  height: 1.2rem;

}

.result-card-company-logo span {
  width: 100%;
  text-align: right;
  display: none;
}

/* .company-logo.softy {
  height: 100%;
  object-fit: contain;
} */
.company-logo {
  height: 100%;
  object-fit: contain;
  /* max-width: 100px; */
  max-width: 12rem;
}


.result-card-pricing-data {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  text-align: center;
  max-width: 12.5rem;
}

.result-card-pricing {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

.result-card-price {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 0.5rem;
}

.result-card-price .text-3xl {
  color: var(--color-black);
}

.button-buy {
  background: var(--color-primary);
  border: none;
  border-radius: 0.375rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 2.5rem;
  cursor: pointer;
  transition: background 0.2s;
}

.button-buy:hover {
  background: #e63946;
}

.button-buy {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  font-size: var(--text-md);
  line-height: 1.5em;
  color: var(--color-white);
}

.button-buy svg {
  color: var(--color-white);
  /* stroke: var(--color-white); */
}

.result-card-pricing-info {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.button-show-more {
  background: transparent;
  border: none;
  border-bottom: 0.5px solid var(--color-black);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.125rem;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}

.button-show-more a {
  text-decoration: none;
  color: inherit;
}

.no-underline {
  border-bottom: none !important;
}

.button-show-more:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.button-show-more:hover .register-text {
  color: var(--color-primary);
}

.button-show-more:hover svg {
  color: var(--color-primary);
  stroke: var(--color-primary);
}

.register-text {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  font-size: var(--text-sm);
  line-height: 1.43em;
  color: #000000;
}

.gray-text-frame {
  background: #F5F5F6;
  border-radius: 0.25rem;
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: stretch;
  gap: 0.625rem;
  padding: 1rem;
  width: 11.625rem;
  align-self: center;
}


/* Expanded Details Styles */
.result-info-box {
  display: none;
  background: var(--color-white);
  flex-direction: row;
  justify-content: stretch;
  align-items: stretch;
  align-self: stretch;
  gap: 5.375rem;
  padding: 2rem;
  margin-top: 0;
  transition: all 0.3s ease;
}

.result-card.open .result-info-box {
  display: flex;
  animation: slideDown 0.3s ease;
}

.result-info-left-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.result-info-left-col-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 0 0 0.9375rem;
}

.result-info-route-list {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.result-info-route-list li {
  margin: 0;
  padding: 0;
}

.result-info-route-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
  gap: 0.5rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.result-info-route-item:hover {
  color: var(--color-primary);
}

.result-info-route-item:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 0.125rem;
  border-radius: 0.25rem;
}

.result-info-item-dot {
  display: flex;
  flex-direction: row;
  align-self: stretch;
  gap: 0.625rem;
  padding: 0.5rem 0;
  width: fit-content;
}

.route-dot-circle {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  border: 1px solid #000000;
  background: transparent;
}

.route-dot-circle.filled {
  background: #D13239;
  border-color: #D13239;
}

.route-dot-circle.filled-end {
  background: #000000;
  border-color: #000000;
}

.result-info-item-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-gray {
  color: var(--color-text-gray);
}

.text-blue-gray {
  color: var(--color-text-blue-gray);
}

.result-info-more {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0rem 0rem 0rem 0.9375rem;
}

.result-info-right-col {
  display: flex;
  flex-direction: column;
  gap: 1.625rem;
  flex: 1;
  position: relative;
}

.result-location-wrap {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 0.5rem;
}

.map-plugin {
  background: #EFF0F1;
  border-radius: 0.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  /* 1.3333333333333333 */
  overflow: hidden;
}

.map-image {
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 200"><rect width="300" height="200" fill="%23E2E8F0"/><text x="150" y="105" font-family="Arial" font-size="16" text-anchor="middle" fill="%232D3748">Mapa</text></svg>') no-repeat center;
  background-size: cover;
}

.fullscreen-button {
  position: absolute;
  top: 0.75rem;
  right: 0.875rem;
  background: var(--color-white);
  border-radius: 0.25rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.625rem;
  padding: 0.25rem;
  cursor: pointer;
}

.result-info-extra-details {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 1.5rem;
}

.result-info-text-box {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 0.25rem;
}

.result-info-box-group {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 1.5rem;
}

/* Banner Styles */
.result-banner {
  background: var(--color-white);
  border-radius: 0.25rem;
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: stretch;
  align-self: stretch;
  gap: 0.625rem;
  padding: 1.25rem;
}

.result-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;

}

.result-banner-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  max-width: 37.5rem;

}

.result-banner-text span {
  text-align: center;
}

.button-banner {
  background: var(--color-primary);
  border: none;
  border-radius: 0.375rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1rem;
  width: 18.8125rem;
  height: 2.5rem;
  cursor: pointer;
  transition: background 0.2s;
}

.button-banner:hover {
  background: #e63946;
}

.button-banner span {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  font-size: var(--text-md);
  line-height: 1.5em;
  color: var(--color-white);
}

.button-banner svg {
  color: var(--color-white);
  stroke: var(--color-white);
}

/* Available Routes Section Styles */
.section-available-routes {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background: var(--color-body-bg);
  padding-bottom: 2rem;
}

.available-routes-content {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 1rem;
}

.routes-header {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 2.5rem;
  width: 100%;
}

/* Company Routes Styles */
.company-routes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  max-width: 65.625rem;
}

.company-routes-header {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: stretch;
  align-self: stretch;
  gap: 1.5rem;
  width: 100%;
  margin-top: 0.5rem;
}

.company-routes-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  padding-inline-start: 0;
  margin-block-start: 0!important;
  margin-block-end: 0!important;
}


.company-card {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  background: var(--color-white);
  border-radius: 0.5rem;
  width: 100%;
  box-shadow: 0rem 0.25rem 1.5rem 0.5rem rgba(0, 0, 0, 0.04);
}

.company-card-details {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
}

.company-card-detail-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.company-card-time {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.company-card-more {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.125rem;
  flex: 0 0 auto;
  margin-left: auto;

}

.company-card-time .company-card-more {
  align-items: flex-end;
}



/* Last Position Page Styles */

/* Share Button */
.share-button-frame {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  height: fit-content;
  cursor: pointer;
  color: var(--color-font-body);
  transition: color 0.2s;
}

.share-button-frame:hover {
  color: var(--color-primary);
}

.share-button-frame svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* Route Information Frame */
.route-info-frame {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 0.5rem;
  width: 100%;
}

/* Route Company Details Additional Info */
.route-company-details-add {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: fit-content;
  height: fit-content;
}

.route-title-frame {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  align-self: stretch;
  gap: 0.5rem;
  width: 100%;
}

.route-company-details {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  gap: 1.5rem;
  width: 100%;
  padding: 0.75rem 0;
}

.is-details {
  flex-direction: column;
  align-items: flex-start;
  gap: 0rem;
}

.route-company-contact {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}

.company-contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-font-body);
  text-decoration: none;
}

.company-contact svg {
  flex-shrink: 0;
}

.company-logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9.375rem;
  height: auto;
}

.company-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0.25rem;
}

/* GPS Coordinates */
.route-place-data {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
  gap: 0.625rem;
  padding: 1rem 2rem;
  background: var(--color-white);
  border-radius: 0.5rem;
  width: 100%;
}

.route-place-gps {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.25rem;
}

/* Map and Route Container */
.map-route-container {
  display: flex;
  flex-direction: row;
  align-self: stretch;
  align-items: stretch;
  gap: 0.5rem;
  width: 100%;
}

.map-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.route-list-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: auto;
  height: 100%;
  background-color: var(--color-white);
  border-radius: 0.5rem;
}

.route-list-section .result-info-left-col {
  padding: 2rem;
}

.route-list-section .route-card .bottom-corner-radius {
  height: 100%;
}

/* Map Plugin Specific Styles */


.map-plugin.is-square iframe,
.map-plugin.is-square .map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.25rem;
}

/* Bottom Corner Radius Modifier */
.result-info-box.bottom-corner-radius {
  display: flex;
  border-radius: 0 0 0.5rem 0.5rem;
  width: 100%;
  position: relative;
}

/* Route List Specific Adjustments */
.route-list-section .result-info-box.bottom-corner-radius {
  border-radius: 0.5rem;
}

/* Route-specific modifiers */
.routes-header.is-route {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
  width: 100%;
}

.route-company-details.is-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.route-company-details-add.is-title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 0.5rem;
}

.route-company-details-add.is-title .title-h3 {
  font-family: var(--font-title);
  font-weight: 500;
  line-height: 1.111em;
  color: var(--color-font-body);
}

.route-company-details-add.is-contacts {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}

.route-company-details-contact.is-inline {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.route-company-details-contact.is-inline svg {
  width: 1.5rem;
  height: 1.5rem;
}

.route-company-details-logo {
  max-width: 7.5rem;
  height: auto;
}

.route-card.is-route {
  margin-top: 1.5rem;
  width: 100%;
}

.result-info-box.is-route {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: stretch;
  gap: 5.375rem;
  padding: 2rem;
  background: var(--color-white);
  border-radius: 0.5rem;
  position: relative;
}

.result-info-right-col.is-map {
  flex: 1;
}

.result-info-right-col.is-map .map-plugin.is-square {
  width: 100%;
  height: 25rem;
  background: #EFF0F1;
  border-radius: 0.25rem;
  overflow: hidden;
}

.result-info-left-col.is-stops {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.route-company-details-add.is-stops {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.route-company-details-contact.is-stop {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.stop-indicator {
  width: 0.75rem;
  height: 0.75rem;
  border: 1px solid var(--color-font-body);
  border-radius: 50%;
  position: relative;
  margin: 0.5rem 0;
}

.stop-indicator.is-first,
.stop-indicator.is-last {
  background-color: var(--color-font-body);
}

.stop-indicator:not(.is-first):not(.is-last):after {
  content: '';
  position: absolute;
  left: 50%;
  top: 1.25rem;
  width: 1px;
  height: 1.5rem;
  background-color: var(--color-font-body);
  transform: translateX(-50%);
}

.fullscreen-button.is-route {
  position: absolute;
  top: 3rem;
  right: 3rem;
  background: var(--color-white);
  border: none;
  border-radius: 0.25rem;
  padding: 0.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fullscreen-button.is-route:hover {
  background-color: var(--color-gray);
}

.footer-faq-img {
  position: relative;

}

.footer-faq-img_wrapp {
  position: absolute;
  bottom: 10.625rem;
  right: 5rem;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.footer-faq-img_wrapp img {
  max-width: auto;
  max-height: 23.625rem;
}

.is-faq-footer {
  display: none !important;
}

.store-regulations-content {
  max-width: 65.9375rem;
  margin: 0 auto;
  gap: 2.5rem;
  display: flex;
  flex-direction: column;
}

.regulations-group {
  gap: 1.5rem;
  display: flex;
  flex-direction: column;
}

.regulations-group ol {
  margin-block-start: 0.75em !important;
  padding-inline-start: 1.5rem;

}



.button-show-more svg {
  transition: transform 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  to {
    opacity: 1;
    max-height: 31.25rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.tickets-content {
  width: 100%;
  max-width: 62rem;
  margin: 0 auto;
}

.tickets-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.tickets-wrap:not(:last-child) {
  margin-bottom: 1.5rem;
}

.tickets-wrap .title-h5.canceled {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
}

.tickets-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.tickets-item {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 0.625rem;
  padding: 1.375rem;
  background: var(--color-white);
  border-radius: 0.5rem;
  width: 100%;
  border: none !important;
}

.tickets-item.disabled {
  opacity: 0.5;
}

.content-box {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 2.125rem;
  width: 100%;
  border-radius: 0.5rem;
}

.ticket-card-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  gap: 0.625rem;
  padding: 0 0 1.125rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  width: 100%;
}

.ticket-route {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.ticket-route-text {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
  font-size: var(--text-lg);
  line-height: 1.56em;
  color: #000000;
  margin: 0;
}

.ticket-route svg {
  width: 1rem;
  height: 1rem;
  color: #000000;
  flex-shrink: 0;
}

.ticket-status-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.icons-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}

.ticket-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.ticket-icon.outline {
  color: var(--color-border);
}

.ticket-icon.filled {
  color: #000000;
}

.ticket-card-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-self: stretch;
  gap: 1rem;
}

.ticket-card-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ticket-card-dates {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2.625rem;
}

.ticket-label {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 700;
  font-size: var(--text-md);
  line-height: 1.5em;
  color: #000000;
}

.ticket-date-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.ticket-date {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  font-size: var(--text-lg);
  line-height: 1.56em;
  color: var(--color-font-body);
}

.ticket-card-pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.ticket-carrier-logo {
  height: 1.5rem;
  object-fit: contain;
}

.ticket-card-price {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.price-text {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  font-size: var(--title-h4);
  line-height: 1.2em;
  color: #000000;
}

/* Two-Way Route Styles - New Figma Design */
.route_chosen {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem 2rem;
  width: 100%;
}

.route-chosen_title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.5rem 0;
  width: 100%;
  max-width: 61.71875rem;
}

.route-chosen_details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  align-items: flex-start;
}


.route-chosen_date-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.route-chosen_date {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.route-chosen_price-info {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  gap: 1.1875rem;
  padding: 1.25rem 1.25rem 1rem 0;
  border-radius: 0.25rem;
}

.price-info_wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.25rem;
}

.price-info_item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 2.375rem;
}

.price-info_final span {
  color: #000000 !important;
  font-weight: 600;
}

.payment-summary {
  gap: 1.5rem;
  padding: 1.125rem 1.375rem;
}

.payment-summary .route_summ-top {
  gap: 1.125rem;
  max-width: 20.0625rem;
}



/* Passenger count styling adjustments */
.route_pricing-spec {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
  height: 1.5rem;
  color: var(--color-text-gray);
}

.passenger-count {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.25rem;
}

/* Text adjustments for gray colors */
.text-blue-gray {
  color: var(--color-text-blue-gray) !important;
}

.ticket-info_content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 65.9375rem;
  margin: 0 auto;
}


.ticket-info_content .route_header {
  padding: 0.5rem 0;
}

.content_box {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 2rem;
  padding: 1.375rem;
  background: var(--color-white);
  border-radius: 0.5rem;
  width: 100%;
}

.padding-horizontal {
  padding-top: 0;
  padding-bottom: 0;
}

.padding-vertical {
  padding-left: 0;
  padding-right: 0;
}

.route_header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  gap: 0.625rem;
  width: 100%;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.route_header-title :nth-child(2) {
  display: none;
}

.route_header.is-center {
  justify-content: center;
  text-align: center;
  padding-top: 0rem;
}

.route-chosen_row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.route_company-logo,
.result-card_company-logo {
  /* height: 1.5rem */
  height: 4rem;
}

.route_ticket-info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 3rem;
  width: 100%;
}

.route_base-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  flex: 1 0 0;
}

.route_time {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  flex: 1 0 0;
}

.result-card-time {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.25rem;
}

.is-departure,
.is-arrival {
  justify-content: flex-start;
}
.is-border {
  border-radius: 0.5rem;
  border: 1px solid #DFE1E5;
  background: var(--color-white);
  box-shadow: none;
}

.route_duration {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  height: 2.5rem;
  width: auto;
  flex: 1 0 0;
  padding-top: 1.5rem;
}

.route_duration-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
  gap: 0.375rem;
  width: 100%;
}

.route_cities,
.route_timing {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: auto;
  flex: 1 0 0;
}

.route_cities .route_duration {
  padding-top: 0 !important;
}

.result-card-data>* {
  flex-grow: 1;
}

.route_city {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.route_city.is-departure,
.route_city.is-arrival {
  width: 100%;
  color: var(--color-dark);
}

.route_pricing-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.route_pricing {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}

.route-price-crossed {
  color: var(--color-text-gray);
  text-decoration: line-through;
}

.passenger-count svg {
  width: 1rem;
  height: 1rem;
  color: rgba(0, 0, 0, 0.48);
}

.trip-type-indicator {
  width: 0.25rem;
  height: 0.25rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.48);
}

.gray-text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-self: stretch;
  gap: 0.125rem;
  padding: 1.125rem 1.375rem;
  background: var(--color-box-bg);
  border-radius: 0.25rem;
}

.route_summ-top {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  width: 100%;
  max-width: 20rem;
}

.route_sum-column {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 0.125rem;
}

.route_price-summ {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  justify-content: space-between;
  width: 100%;
  max-width: 20rem;
}

.route-chosen_ticket-info {
  display: flex;
  flex-direction: column;
  padding: 0;
}


/* Return Trip Box */
.content_box.return-trip-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: 4.5rem;
  padding: 0 1.375rem 1.25rem;
}

.return-trip_promo {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: 1.625rem;
  width: 100%;
}

.return-trip_results {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
  width: 62.375rem;
  max-width: 100%;
}

.return-trip-data {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  gap: 2rem;
}

.input-date {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  flex: 1 0 0;
  max-width: 12.5rem
}

.input-date input[type="date"] {
  width: 100%;
  padding: 0.875rem 2.5rem 0.875rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 0.375rem;
  background: var(--white);
  font-family: 'Inter', Arial, sans-serif;
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: 1.43em;
  color: var(--color-dark);
  cursor: pointer;
}

.input-date input[type="date"]:focus {
  outline: none;
  border-color: var(--color-border);
}

.input-date svg {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
  width: 1rem;
  height: 1rem;
}

/* Hide default calendar icon from date inputs */
.input-date input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}

.input-date input[type="date"]::-webkit-inner-spin-button,
.input-date input[type="date"]::-webkit-outer-spin-button {
  display: none;
  -webkit-appearance: none;
}


/* More comprehensive calendar icon hiding for all date inputs */
input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
  opacity: 0;
  color: transparent;
  background: transparent;
  cursor: pointer;
}

/* Alternative method - completely remove the icon */
input[type="date"] {
  position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  background-image: none;
  background: transparent;
  bottom: 0;
  color: transparent;
  cursor: pointer;
  height: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
  opacity: 0;
}

/* For browsers that support it */
input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Ensure the entire input area is clickable */
.input-date {
  cursor: pointer;
}

.result-card_company-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  width: 7.9375rem;
}

/* Passenger Data Box */
.passenger-data-box {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.passenger-data-box-content {
  display: flex;
  flex-direction: row;
  gap: 6rem;
  width: 100%;
}

.route_ticket-data {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.route_payment-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  align-items: stretch;
}

.route_payment-section button {
  width: auto;
}

.route_payment {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 2.25rem;
  width: 100%;
}

.route_payment-methods {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 1rem;
  width: 100%;
  color: var(--color-dark);
}

.payment-info p:last-child {
  margin-bottom: 0;
}


/* Square radio buttons */
input[type="radio"],
input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 0.75rem;
  height: 0.75rem;
  border: 0.125rem solid var(--color-border);
  border-radius: 0.125rem;
  background: var(--color-white);
  cursor: pointer;
  position: relative;
  top: -2px;
  margin: 0;
  flex-shrink: 0;
  cursor: pointer;
}

input[type="radio"]:checked,
input[type="checkbox"]:checked {
  background: #3182CE;
  border-color: #3182CE;
}

input[type="radio"]:checked::after,
input[type="checkbox"]:checked::after {
  content: '✓';
  color: var(--color-white) !important;
  font-size: var(--text-xs);
  font-weight: bold;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: none;
  border-color: #3182CE;
}

/* Logo Management */
.logo-main {
  height: 4rem;
}

@media (max-width: 480px) {
  .logo-main {
    height: 3rem;
  }
}

.logo-main svg {
  height: 100%;
}

.logo-footer {
  background-image: var(--logo-path);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: auto;
  height: 3rem;
  display: block;
  aspect-ratio: 2.15/1;
}

.logo-overlay {
  background-image: var(--logo-path);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: auto;
  height: 3.125rem;
  display: block;
  aspect-ratio: 2.15/1;
}

/* Page Wrapper for proper flex layout */
.page-wrapper {
  overflow: clip;
}

/* Message Section Styles (Error & Success) */
.section-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  width: 100%;
  min-height: calc(100vh - 23.3125rem);
}

.message-error {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  gap: 2.5rem;
  height: 31.25rem;
  width: 100%;
}

.error-content-frame {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 2rem;
  width: 100%;
  text-wrap: balance;
}

.text-center {
  text-align: center !important;
}

/* Success Message Page Styles */
.section-success-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 80vh;
}

.message-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: 2rem;
  width: 100%;
  max-width: 50rem;
  margin: 0 auto;
}

.image-container.is-message {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.625rem;
  width: auto;
  height: auto;
  flex-shrink: 0;
}

.image-container.is-message img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 31.25rem;
  display: block;
}

.layout-column {
  display: flex;
  flex-direction: column;
}

.layout-row {
  display: flex;
  flex-direction: row;
}

.gap-40 {
  gap: 2.5rem !important;
}

.gap-16 {
  gap: 1rem !important;
}
@media screen and (max-width: 767px) {
  .gap-16-mobile {
    gap: 1rem !important;
  }
}
.gap-24 {
  gap: 1.5rem !important;
}

.gap-12 {
  gap: 0.75rem !important;
}

.centered {
  align-items: center !important;
  align-self: stretch !important;
}

.centered p {
  text-align: center !important;
}

.message-title {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  gap: 0.5rem;
}

.message-title svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.gray-text-wrap.gap-16 {
  gap: 1rem;
}

.success-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  width: 100%;
  max-width: 50rem;
  margin: 0 auto;
}

.success-icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.success-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
}

.success-message-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  width: 100%;
}

.success-title {
  color: var(--color-primary);
  margin: 0;
}

.success-description {
  color: var(--color-font-body);
  margin: 0;
  max-width: 37.5rem;
}

.success-booking-summary {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  background: var(--color-white);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 0.25rem 1.5rem 0.5rem rgba(0, 0, 0, 0.04);
}

.booking-summary-header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.booking-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.booking-detail-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 0.5rem 0;
}

.booking-detail-item.booking-total {
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

.success-next-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 37.5rem;
}

.next-steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

.next-step-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
}

.step-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: rgba(249, 75, 88, 0.1);
  flex-shrink: 0;
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.success-actions {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
  flex-wrap: wrap;
}

.button-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 0.375rem;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.button-primary:hover {
  background: var(--color-primary-dark);
}

.button-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 0.375rem;
  padding: 0.625rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.button-secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.success-contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  text-align: center;
}

.contact-options {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.contact-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 500;
  transition: opacity 0.2s;
}

.contact-link:hover {
  opacity: 0.8;
}



/* Tickets Info Section Styles */
.section-tickets-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background: var(--color-body-bg);
}

.ticket-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 65.625rem;
  margin: 0 auto;
}

/* Ticket Navigation Styles */
.ticket_navi {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  width: 100%;
}

.ticket_navi-left-col {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.button-print {
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 0.375rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1rem;
  height: 2.5rem;
  cursor: pointer;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  font-size: var(--text-md);
  line-height: 1.5em;
  transition: background 0.2s;
}

.button-print:hover {
  background: #e63946;
}

.button-print svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  fill: none;
}

.ticket_navi-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
}

.button-link {
  background: transparent;
  border: none;
  border-radius: 0.375rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1rem;
  height: 2.5rem;
  cursor: pointer;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  font-size: var(--text-md);
  line-height: 1.5em;
  color: #000000;
  transition: color 0.2s;
}

.button-link:hover {
  color: var(--color-primary);
}

.button-link:hover .button-underline {
  border-bottom-color: var(--color-primary);
}

.button-underline {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-bottom: 1px solid #000000;
  padding: 0 0.0625rem;
  transition: border-bottom-color 0.2s;
}

.ticket_navi-right-col {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.ticket_navi-link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  font-size: var(--text-md);
  line-height: 1.5em;
  color: #000000;
  transition: color 0.2s;
}

.ticket_navi-link:hover {
  color: var(--color-primary);
}

.dot-divider {
  width: 0.25rem;
  height: 0.25rem;
  background: #D13239;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Ticket Info Styles */
.ticket_info {
  display: flex;
  flex-direction: column;
  padding: 0 1.25rem 1.25rem;
  background: var(--color-white);
  border-radius: 0.5rem;
  width: 100%;
}

.ticket-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  gap: 0.625rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  width: 100%;
}

.carrier-logo {
  width: 6.75rem;
  height: 3.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carrier-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 0.25rem;
  font-weight: bold;
}

.ticket_details {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 63.125rem;
  max-width: 100%;
}

.ticket_details-left {
  display: flex;
  flex-direction: column;
  width: 63.25rem;
  max-width: 100%;
}

/* Route Information Styles */
.ticket_info-route {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1.25rem;
  background: var(--color-body-bg);
  border-bottom: 1px solid #EBEBEB;
  width: 100%;
}

.ticket_info-route-departure {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
  gap: 1rem;
  width: 100%;
}

.route-cities-frame {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1rem;
  flex: 1;
}

.route-city-info {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  flex-grow: 1;
  gap: 0.25rem;
  width: 50%;
}

.city-name {
  font-weight: 600;
  font-size: var(--text-2xl);
  line-height: 1.33em;
  color: var(--color-black);
}

.city-address {
  font-weight: 500;
  font-size: var(--text-sm);
  line-height: 1.43em;
  color: rgba(0, 0, 0, 0.36);
}

.city-destination {
  font-weight: 500;
  font-size: var(--text-md);
  line-height: 1.5em;
  color: #A3A3A3;
}

.route-cities-frame svg {
  width: 1rem;
  height: 1rem;
  stroke: #000000;
  fill: none;
  align-self: center;
  margin: 0 0.25rem;
}

.departure-info {
  display: flex;
  flex-direction: row;
  align-self: stretch;
  gap: 0.5rem;
  width: 100%;
}

.departure-info-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

/* Carrier and Passenger Info Styles */
.ticket-info-row {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: stretch;
  align-self: stretch;
  width: 100%;
  background: var(--color-white);
}

.ticket_info-carrier,
.ticket_info-passenger {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 1rem;
  padding: 1.25rem;
  flex: 1;
  border-bottom: 1px solid #EBEBEB;
}

.ticket_info-carrier {
  border-right: 1px solid #EBEBEB;
}

.ticket_info-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  width: 100%;
}

.ticket_info-data-list {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 0.25rem;
  width: 100%;
}

.ticket_info-passenger .ticket_info-data-list {
  gap: 1.5rem;
}

.passenger-main-info {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 0.25rem;
  width: 100%;
}

.ticket-counts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.ticket-counts .text-md {
  font-weight: 600;
  font-size: var(--text-lg);
  line-height: 1.56em;
  color: #000000;
}

.passenger-payment-info {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 0.25rem;
  width: 100%;
  margin-top: 0.25rem;
}

/* Notes Section Styles */
.ticket_info-notes {
  display: flex;
  flex-direction: row;
  gap: 9.8125rem;
  padding: 1.25rem;
  width: 100%;
  border-top: 1px solid #EBEBEB;
}

.ticket_info-notes-box {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 22.875rem;
  max-width: 100%;
}

.notes-content {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.notes-content .text-md.text-weight-bold {
  font-weight: 700;
  font-size: var(--text-md);
  line-height: 1.5em;
  color: #000000;
}

.notes-content .text-md.text-weight-medium {
  font-weight: 500;
  font-size: var(--text-md);
  line-height: 1.5em;
  color: #000000;
}



/* Ticket Return Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.center-popup {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.875rem;
  padding: 1.25rem;
  background: var(--color-white);
  border-radius: 0.375rem;
  width: auto;
  max-width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0rem 0.625rem 1.5625rem rgba(0, 0, 0, 0.15);
}

.popup_text-content {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 1.5rem;
  width: 100%;
}

.popup_title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  width: 100%;
}

.popup-title-text {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 700;
  font-size: var(--text-lg);
  line-height: 1.56em;
  color: var(--color-dark);
}

.close-button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.375rem;
  border-radius: 0.375rem;
  color: var(--color-dark);
  transition: background-color 0.2s;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.close-button:hover {
  background-color: #F7FAFC;
}

.close-button svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
  fill: none;
}

.popup_data {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: stretch;
  align-self: stretch;
  gap: 1.375rem;
  width: 100%;
}

.popup_data-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0 4.75rem 0 0;
  flex: 1;
}

.popup_data-section:last-child {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding: 0 4.75rem 0 0;
  flex: 1;
}

.popup_data-section .text-md {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
  font-size: var(--text-md);
  line-height: 1.5em;
  color: #000000;
}

.popup_data-section .text-md.text-weight-bold {
  font-weight: 700;
}

.popup_data-list {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 0.25rem;
  padding: 0.5rem 0;
  width: 100%;
}

.popup_data-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  gap: 0.5rem;
  width: 100%;
}

.popup_data-item .text-md {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
  font-size: var(--text-md);
  line-height: 1.5em;
  color: #000000;
}

.popup_data-item .text-md.text-weight-bold {
  font-weight: 700;
}

.ticket-return-info {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  width: 100%;
}

.ticket-return-info .text-md {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
  font-size: var(--text-md);
  line-height: 1.5em;
  color: #000000;
}

.text-box-gray {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--color-box-bg);
  border-radius: 0.25rem;
  width: 100%;
}

.layout-column.gap-8 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 38.0625rem;
  max-width: 100%;
}

.alert-tag {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.alert-tag svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: #DD6B20;
  fill: none;
  flex-shrink: 0;
}

.alert-tag .text-md {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 700;
  font-size: var(--text-md);
  line-height: 1.5em;
  color: #000000;
}

.warning-text {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
  font-size: var(--text-md);
  line-height: 1.5em;
  color: #000000;
  width: 100%;
}

.button-group.is-stretch {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-self: stretch;
  gap: 2.5rem;
  width: 100%;
}

.button-return {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1rem;
  width: 42.6875rem;
  max-width: 100%;
  height: 2.5rem;
  background: #EF4444;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background 0.2s;
}

.button-return:hover {
  background: #DC2626;
}

.button-return span {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  font-size: var(--text-md);
  line-height: 1.5em;
  color: var(--color-white);
}

/* Responsive Styles for Popup */

/* Success Popup Styles */
.success-popup,
.error-popup {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 1.25rem;
  background: var(--color-white);
  border-radius: 0.375rem;
  width: 45.625rem;
  max-width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0rem 0.625rem 1.5625rem rgba(0, 0, 0, 0.15);
}

.success-popup .popup_title.success-title {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  align-self: stretch;
  width: 100%;
}

.success-popup .popup_text-content.success-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  gap: 1.5rem;
  padding: 2.5rem 0;
  height: 18.625rem;
  width: 100%;
}

.alert-tag.success-alert.gap-12 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

.alert-tag.success-alert svg {
  width: 1.5625rem;
  height: 1.5625rem;
  fill: #38A169;
  flex-shrink: 0;
}

.success-title-text {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 700;
  font-size: var(--text-lg);
  line-height: 1.56em;
  text-align: center;
  color: var(--color-dark);
}

.popup_data.success-messages {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 0.5rem;
  width: 100%;
}

.success-message {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
  font-size: var(--text-md);
  line-height: 1.5em;
  text-align: center;
  color: #000000;
  width: 100%;
}

.button-homepage {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  height: 2.5rem;
  background: var(--color-primary);
  border: 1px solid var(--color-white);
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background 0.2s;
  width: auto;
}

.button-homepage:hover {
  background: #e63946;
}

.button-homepage span {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  font-size: var(--text-md);
  line-height: 1.5em;
  color: var(--color-white);
}

/* Responsive Styles for Success Popup */

/* Error Popup Styles */

.error-popup .popup_title.error-title {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  align-self: stretch;
  width: 100%;
}

.error-popup .popup_text-content.error-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  gap: 2.25rem;
  padding: 2.5rem 0;
  height: 18.625rem;
  width: 100%;
}

.alert-tag.error-alert.gap-12 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

.alert-tag.error-alert svg {
  width: 1.5625rem;
  height: 1.5625rem;
  fill: #E53E3E;
  flex-shrink: 0;
}

.error-title-text {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 700;
  font-size: var(--text-lg);
  line-height: 1.56em;
  text-align: center;
  color: var(--color-dark);
}

.popup_data.error-messages {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 1.125rem;
  width: 100%;
}

.error-message {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
  font-size: var(--text-md);
  line-height: 1.5em;
  text-align: center;
  color: #000000;
  width: 100%;
}

/* Responsive Styles for Error Popup */

/* Reservations Page Styles */
.section-reservations {
  background-color: var(--color-body-bg);
}

.reservations-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: 2.5rem;
  width: 100%;
  max-width: 65.9375rem;
  margin: 0 auto;
}

.ticket-reservation,
.ticket-canceled {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 65.9375rem;
}

.ticket-reservation-list,
.ticket-canceled-list {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 1rem;
  width: 100%;
}

/* Result Card Duration Styles */
.route_wrapper-outer {
  padding: 1.375rem;
  padding-top: 0;
  border-radius: 0.5rem;
  gap: 1rem;
  max-width: 100%;
}

.result-card-duration {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  flex: 0 0 auto;
  padding-top: 1.5rem;
}

.result-card-time-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.result-card-time-inner.is-departure,
.result-card-time-inner.is-arrival {
  align-items: flex-start;
}

.result-card-time {
  display: flex;
  flex-direction: column;
}

/* Route Ticket Links Styles */
.route-ticket-links {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 1rem;
  width: 100%;
}

.button-manage-ticket {
  background: var(--color-box-bg);
  border: none;
  border-radius: 0.375rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1rem;
  height: 2.5rem;
  cursor: pointer;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  font-size: var(--text-md);
  line-height: 1.5em;
  color: #000000;
  transition: background 0.2s;
}

.button-manage-ticket:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.button-manage-ticket svg {
  flex-shrink: 0;
}



/* Mobile Menu Styles */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  transition: all 0.3s ease;
}

.hamburger-line {
  display: block;
  width: 1.5rem;
  height: 0.125rem;
  background: var(--color-font-body);
  margin: 0.1875rem 0;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(0.375rem, 0.375rem);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(0.375rem, -0.375rem);
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 17.5rem;
  height: 100vh;
  background: var(--color-white);
  box-shadow: -0.125rem 0 0.625rem rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-menu-drawer.active {
  right: 0;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  padding: 5rem 1.5rem 1.5rem 1.5rem;
  height: 100%;
}

.mobile-menu-localization {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 1.5rem;
}

.mobile-menu-lang {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
  font-size: var(--text-md);
  color: var(--color-font-body);
  line-height: 1.5em;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu-link {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 500;
  font-size: var(--text-lg);
  color: var(--color-font-body);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  transition: color 0.2s;
}

.mobile-menu-link:hover {
  color: var(--color-primary);
}

.mobile-menu-btn-login {
  background: var(--color-primary);
  color: var(--color-white);
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  font-size: var(--text-md);
  border: none;
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  height: 3rem;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  /* margin-top: auto; */
}

.mobile-menu-btn-login:hover {
  background: #e63946;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}


/* Connections Section Styles */
.section_connections {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.connections-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: 7.5rem;
  width: 100%;
}

.connections_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: 2rem;
  width: 100%;
  max-width: 50rem;
  margin: 0 auto;
}

.connections_title-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: 0.75rem;
  width: 100%;
}

/* Red title class override */
.title-h6.is-red {
  color: var(--color-primary);
  font-size: var(--title-h6);
  line-height: 2em;
  text-align: center;
}

/* No Route Data Map Overlay */
.map-plugin-no-data iframe,
.map-plugin-no-data .map-image {

  filter: grayscale(1) blur(0.125rem);
  opacity: 0.75;
}

.map-overlay-no-data {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
  background-color: #00000047;
}

.map-overlay-text {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-white);
  text-align: center;
}

/* Cooperation Page Styles */
.section_cooperation {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: calc(100vh - 5rem);
  /* Subtract header height */
}

.cooperation-hero {
  width: 100%;
  max-width: 100vw;
  height: 25rem;
  position: relative;
  margin-bottom: 3.75rem;
  overflow: hidden;
}

.cooperation-hero-image {
  width: 100%;
  height: 100%;
  max-width: 100vw;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cooperation_wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
  margin: 0 auto;
  max-width: 65.625rem;
}

.cooperation-content {
  width: 100%;
}

.cooperation_header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 46.5rem;
  text-align: center;
}

.cooperation_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.title-h6.is-red {
  color: #F94B58;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: var(--text-xl);
  line-height: 2em;
}

.cooperation_benefits-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 65.9375rem;
  margin: 0 auto;
}

.is-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.is-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.is-grid-1 {
  grid-template-columns: repeat(1, 1fr);
}

.cooperation_benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.icon-round {
  width: 3.75rem;
  height: 3.75rem;
  aspect-ratio: 1/1;
  background-color: var(--color-accent);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-round svg {
  width: 1.625rem;
  height: auto
}

.cooperation_text-content {
  display: flex;
  flex-direction: column;
  gap: 3.1875rem;
  width: 100%;
}

.cooperation_text-box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.company-hero-img-inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === Figma: section_companies === */
.section_companies {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}

.companies-content {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 2.5rem;
  overflow: hidden;
}

.companies_hero {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  gap: 5.625rem;
}

.companies_hero-content {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  padding-left: 3.75rem;
  width: 39.375rem;
  max-width: 100%;
  z-index: 1;
  background: linear-gradient(to right, rgba(255, 255, 255) 70%, rgba(255, 255, 255, 0));
}

.companies_hero-title {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 1rem;
  padding-right: 4.75rem;
}

.companies_title {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 13.8125rem;
}

.text-red {
  color: #F94B58;
}

.companies_hero-title {
  display: flex;
  padding-right: 4.75rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  align-self: stretch;
}

.company_contact-box {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 1.5rem;
}

.company_contact {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}

.company_contact a {
  text-decoration: none;
  color: inherit;
}

.company_contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.company_data {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.company_hero-img {
  border-radius: 999px 0 0 999px;
  overflow: hidden;
  width: 36.5rem;
  height: auto;
  max-height: 28.125rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -4.0625rem;
  overflow: hidden;
}

.company_hero-img img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}


/* === Figma: section_about-company === */


.companies-about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: 2.5rem;
  width: 100%;
  margin: 0 auto;
}

.company_available-routes {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: 2.5rem;
  width: 100%;
  margin-top: 5rem;
  max-width: 65.9375rem;
  margin: 0 auto;
}


.cards_group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  width: 100%;
}

.card-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 1.25rem;
  background: #fff;
  border-radius: 0.75rem;
  aspect-ratio: 3/4;
  box-shadow: 0 0.25rem 1.5rem 0.5rem rgba(0, 0, 0, 0.04);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;

}

.card-link_text-group.is-strech {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* justify-content: flex-end; */
  flex: 1 1 auto;
  width: 100%;
  gap: 0rem;
  z-index: 2;
}



.card-link_hours-group {
  display: flex;
  max-height: 8.75rem;
  padding-right: 2.5rem;
  align-items: flex-end;
  align-content: flex-end;
  gap: 0.5rem;
  flex: 1 0 0;
  align-self: stretch;
  flex-wrap: wrap;
  z-index: 1;
}

.is-underline {
  border-bottom: 1px solid #fff;
  padding-bottom: 0.125rem;
  margin-right: 0.5rem;
  font-family: 'Inter', Arial, sans-serif;
  font-size: var(--text-md);
  color: #fff;
}

.is-underline span {
  font-family: 'Inter', Arial, sans-serif;
  font-size: var(--text-md);
  color: #fff;
}

.passenger-info {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  align-self: stretch;
  gap: 7.5rem;
  width: 100%;
  max-width: 65.625rem;
  margin: 0 auto;
  margin-top: 5rem;
}
.passenger-info > * {
  width: 50%;
}

.passenger-info_content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  flex: 1 0 0;
}

.passenger-info_content {
  text-align: left;
}

.passenger-info_faq {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  width: 100%;
}

.passenger_Dropdown {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  width: 100%;
  transition: all 0.3s ease;
}

.passenger_Dropdown-trigger {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
  width: 100%;
  cursor: pointer;
}

.passenger_Dropdown-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.625rem;
  padding-bottom: 1rem;
  width: 100%;
  animation: fadeIn 0.3s ease;
}

.passenger_text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  max-width: 100%;
}

.passegner-info-immg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26.25rem;
  max-width: 100%;
  height: 26.25rem;
}

.passegner-info-immg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lauout-column.gap-16 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.is-center {
  text-align: center;
}

.error-text-block,
.error-text-wrap {
  text-align: center !important;
  align-items: center !important;
}

.error-404-image {
  position: relative;
}

.image-404-svg {
  width: 12.9375rem;
  aspect-ratio: 1/1;
}

.error-404-image svg {
  position: absolute;
  bottom: 2.9375rem;
  right: 2.9375rem;
}


.contact-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 64rem;
  margin: 0 auto;
  gap: 3rem;
}

.contact-text-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  /* padding-bottom: 7.5rem;
  width: 55%;
  max-width: 40rem; */
  flex: 1;
}

.contact-form button {
  flex-grow: 1;
  width: 100%;
}

.contact-image {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--color-accent);
  max-width: 40rem;
}

.contact-image img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}



/* Improved Cookie Consent Banner Styles to prevent overflow */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  max-width: 100vw;
  background: var(--color-dark, #2D3748);
  color: var(--color-white, #fff);
  z-index: 9999;
  box-shadow: 0 -0.125rem 1rem 0 rgba(0, 0, 0, 0.08);
  padding-top: 0;
  padding-bottom: 0;
  overflow-x: hidden;
}

.cookie-banner-content {
  max-width: 94.5rem;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 0;
  gap: 1rem;
  width: 100%;
}

.cookie-banner-text {
  font-size: var(--text-md);
  line-height: 1.5;
  color: var(--color-white, #fff);
}

.cookie-banner-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner-btn {
  border: none;
  border-radius: 0.375rem;
  padding: 0.625rem 1.5rem;
  font-size: var(--text-md);
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.cookie-banner-btn.cookie-accept {
  background: var(--color-accent, #FDB654);
  color: var(--color-dark, #2D3748);
}

.cookie-banner-btn.cookie-accept:hover {
  background: var(--color-primary, #F94B58);
  color: var(--color-white, #fff);
}

.cookie-banner-btn.cookie-decline {
  background: transparent;
  color: var(--color-white, #fff);
  border: 1px solid var(--color-white, #fff);
}

.cookie-banner-btn.cookie-decline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Hide number input arrows for all browsers */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.custom-dropdown {
  position: relative;
  width: 100%;
}

.dropdown-list {
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 0;
  right: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 0.375rem;
  max-height: 12.5rem;
  overflow-y: auto;
  display: none;
  z-index: 100;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.08);
  padding: 0.5rem 0;
}

.dropdown-list .dropdown-item {
  padding: 0.375rem 0.75rem;
  cursor: pointer;
  font-size: var(--text-sm);
  color: var(--color-font-body);
}

.dropdown-list .dropdown-item:hover {
  background: var(--color-box-bg);
}

/* Keyboard navigation active item */
.dropdown-list .dropdown-item.active {
  background: var(--color-box-bg);
}

input[readonly].search-input {
  cursor: pointer;
}

.custom-date-picker {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 0.375rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
  margin-top: 0.25rem;
  padding: 1rem;
  min-width: 17.5rem;
}

.date-picker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.date-picker-nav {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 0.25rem;
  color: var(--color-font-body);
  display: flex;
  align-items: center;
  justify-content: center;
}

.date-picker-nav:hover {
  background: var(--color-box-bg);
}

.date-picker-nav:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  background: var(--color-box-bg);
}

.date-picker-title {
  font-weight: 600;
  font-size: var(--text-md);
  color: var(--color-font-body);
  text-align: center;
  flex: 1;
}

.date-picker-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.weekday {
  text-align: center;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-font-body);
  padding: 0.5rem 0;
}

.date-picker-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
}

.date-day {
  text-align: center;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 0.25rem;
  font-size: var(--text-sm);
  color: var(--color-font-body);
  border: none;
  background: none;
  transition: background-color 0.2s;
}

.date-day:hover {
  background: var(--color-box-bg);
}

.date-day:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  background: var(--color-box-bg);
}

.date-day.other-month {
  color: var(--color-input-placeholders);
}

.date-day.today {
  border: 2px solid var(--color-primary);
  color: var(--color-font-body);
  font-weight: 600;
}

.date-day.selected {
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
}

.date-day.disabled {
  color: var(--color-input-placeholders);
  cursor: not-allowed;
  background: none;
}

.date-day.disabled:hover {
  background: none;
}

.search-input-field.is-return-date {
  max-width: 10rem;
  height: 3rem;
}

.search-input-field.is-return-date .search-text-info {
  height: 100%;
}

.search-input-field.is-return-date .search-input,
.search-value.search-input {
  height: 100%;
  background-image: url('data:image/svg+xml;charset=utf-8,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4 6L8 10L12 6" stroke="%23475569" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 1rem!important;
  padding-right: 2rem!important;
}

@media screen and (max-width: 1080px) {
  .partners_grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 992px) {
  .cards_content {
    gap: 1.5rem

  }
  .search-container {
    gap: 0.75rem;
  }

  .cards_group {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .cards_group.no-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .cards_group.no-wrap::-webkit-scrollbar {
    display: none;
  }

  .cards_group.no-wrap>* {
    flex: 0 0 18.75rem;
  }

  .hero-section {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .search-payment-guarantee-note {
    margin-left: 0;
  }

  .padding-section-medium {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .routes-header {
    gap: 1rem;
  }

  .hero-title {
    padding-right: 0;
  }

  .footer_links-group .footer_content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .search-payments-wrap {
    flex-shrink: 1;
    gap: 0.75rem;
  }

  .search-data {
    flex-direction: column;
    align-items: stretch;
  }

  .search-input-field.is-ticket,
  .search-ticket-normal,
  .search-ticket-discount,
  .search-data button {
    width: 100%;
    max-width: none;
  }


  .return-trip-data {
    flex-wrap: wrap;
    justify-content: center;
  }
  .return-trip-data .search-input-field.is-return-date {
    max-width: 16rem;
  }
  .login-left-col {
    padding-left: 0;
  }
  .login-right-col {
    display: none;
  }

  .mobile-top-padding1 {
    padding-top: 1rem;
  }
  .form-outer {
    gap: 1rem;
  }
  .content-form-wrap {
    gap: 1.2rem;
  }

  .login-content {
    flex-direction: column;
    min-height: auto;
  }

  .no-right {
    padding-right: var(--padding-global) !important;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .navbar-links {
    display: none;
  }

  .route-list-section {
    width: 100%;
    height: auto;
  }

  .result-info-box.bottom-corner-radius {
    gap: 2rem;
  }

  .cooperation_benefits-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .cooperation-hero {
    height: 18.75rem;
  }

  .companies_hero {
    flex-direction: column;
    gap: 2.5rem;
    align-items: flex-start;
  }

  .passenger-info {
    flex-direction: column-reverse;
    gap: 2.5rem;
    align-items: stretch;
  }

  .passenger_text-block {
    width: 100%;
  }

  .contact-content {
    flex-direction: column-reverse;
    align-items: center;
    padding: 0;
    gap: 1rem;
  }

  .cookie-banner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .cookie-banner-content {
    padding: 1rem 0;
  }

  .result-card-content {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }

  .result-card-data {
    justify-self: center;
    width: 100%;
    justify-content: space-between;
  }

  .result-card-pricing-data {
    max-width: 100%;
  }

  .company_hero-img {
    display: none;
  }

  .section-route-search .no-right {
    padding-right: var(--padding-global) !important;
  }

  .image-deco-absolute {
    display: none;
  }

  .hero-content {
    padding-right: 0;
    gap: 1.5rem;
  }

  .section_faq {
    gap: 2rem;
  }

  .section_faq .container-global {
    gap: 2rem;
  }

  .faq_trigger {
    max-width: 100%;
  }

  .login-left-col {
    padding-right: 0 !important;
  }

  .route-chosen_details {
    flex-direction: column;
    gap: 2rem;
  }

  .route_chosen {
    padding: 0rem 1.375rem 2rem;
  }

  .route-chosen_title {
    max-width: 100%;
  }

  .ticket-info_content {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .message-content {
    gap: 1.5rem;
  }

  .layout-column.gap-40 {
    width: 100%;
  }

  .ticket_navi {
    gap: 2rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .ticket_navi-left-col {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .ticket_navi-links {
    width: 100%;
    justify-content: flex-start;
    gap: 1rem;
  }

  .ticket_navi-right-col {
    width: 100%;
    justify-content: flex-start;
  }

  .ticket_details {
    width: 100%;
  }

  .ticket_details-left {
    width: 100%;
  }

  .reservations-content {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .ticket-reservation,
  .ticket-canceled {
    max-width: 100%;
  }

  .photos-grid {
    padding: 0 2rem;
  }

  .company_hero-img {
    right: -6.875rem;
  }

  .contact-image {
    max-width: 21.875rem;
  }

  .search-payment-logo {
    height: 1rem;
  }

  .mobile-hide {
    display: none;
  }

  /* Partners Section */
  .section_partners {
    padding: 2.5rem 0rem;
    gap: 2.5rem;
  }
  .partners_grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .partners_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }

  .partner-logo {
    padding: 0rem 0.25rem;
    min-height: 4rem;
  }

  .section_faq {
    flex-direction: column;
    gap: 1.5rem;
  }

  .section_faq .container-global {
    flex-direction: column;
    gap: 1.5rem;
  }

  .faq_content {
    gap: 1.5rem;
  }

  .text-md {
    font-size: var(--text-md);
    line-height: 1.5em;
  }

  .faq_trigger {
    height: auto;
    padding: 0.9375rem 0;
  }

  .contact-text-content {
    width: 100%;
    max-width: none;
    gap: 1rem;
    padding-bottom: 3rem;
  }

  .contact-text-content> :nth-child(1) {
    text-align: center;
  }

  .contact-desc {
    text-align: center;
  }

  .login-popup {
    flex-direction: column;
    max-width: 90vw;
    max-height: 90vh;
  }

  .login_popup-left {
    min-height: 12.5rem;
  }

  .login-popup-right {
    min-width: auto;
  }

  .popup-wrap {
    padding: 0 1.25rem 0 1.25rem;
  }


  .tickets-item {
    padding: 1rem;
  }

  .content-box {
    gap: 1.25rem;
  }

  .ticket-card-header {
    flex-direction: column;
    align-items: center;
    padding-bottom: 1rem;
  }

  .ticket-route {
    align-items: space-between;
  }

  .ticket-card-content {
    flex-direction: column;
    gap: 1rem;
  }

  .ticket-card-dates {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .ticket-card-pricing {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }

  .price-text {
    font-size: var(--text-2xl);
  }

  .route-chosen_details {
    gap: 1.5rem;
  }

  .route-chosen_ticket-info {
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 0.25rem;
  }

  .route_header-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
  }

  .route_header-title :nth-child(2) {
    display: block;
  }

  .route_ticket-info {
    flex-direction: column;
    gap: 1rem;
  }


  .route_timing {
    justify-content: space-between;
    align-items: center;
  }

  .route_timing .route_duration,
  .route_cities .route_duration {
    display: none;
  }

  .route_time,
  .route_city,
  .result-card-data>* {
    max-width: 6.25rem;
  }

  .result-card-departure-data,
  .result-card-arrival-data {
    max-width: 100%;
  }

  .route_cities {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    justify-content: space-between;
  }

  .route_pricing-info {
    align-items: flex-start;
    flex-grow: 1;
  }

  .route_pricing-spec {
    width: 100%;
    justify-content: flex-start;
  }

  .route-chosen_price-info {
    padding: 1rem 1rem 0.75rem 0rem;
  }

  .price-info_item {
    gap: 1rem;
  }

  .payment-summary {
    gap: 1rem;
    padding: 1rem 1.25rem;
  }

  .payment-summary .route_summ-top {
    width: 100%;
    max-width: 100%;
  }

  /* Chosen Route Section */

  .route_timing {
    justify-content: space-between;
    align-items: center;
  }

  .route_pricing-info {
    align-items: flex-start;
    flex-grow: 1;
  }

  .return-trip-data {
    flex-direction: column;
    gap: 1rem;
  }

  .return-trip-data>* {
    width: 100%;
    text-align: center;
  }

  .input-date {
    width: 100%;
  }

  .result-card_company-logo {
    width: 100%;
  }

  .passenger-data-box-content {
    flex-direction: column;
    gap: 1rem;
  }
  .route_payment{
    gap: 1rem;
  }

  .passenger-data-box {
    width: 100%;
    gap: 1rem;
  }

  .route_summ-top {
    width: 100%;
  }

  .return-trip_results {
    width: 100%;
  }
 .return-trip_results .card-search {
  padding: 1.2rem;
 }
  .message-content {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .layout-column.gap-40 {
    width: 100%;
    gap: 2rem;
  }

  .image-container.is-message img {
    max-height: 18.75rem;
  }

  .success-content {
    gap: 2rem;
    padding: 0 1rem;
  }

  .success-booking-summary {
    padding: 1.5rem 1.25rem;
  }

  .booking-detail-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .success-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .button-primary,
  .button-secondary {
    width: 100%;
    justify-content: center;
  }

  .contact-options {
    flex-direction: column;
    gap: 0.75rem;
  }

  .next-step-item {
    gap: 0.75rem;
  }

  .step-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .ticket-content {
    gap: 1.5rem;
    flex-direction: column-reverse;
  }

  .ticket_info {
    padding: 1rem;
  }
  .ticket_info-header {
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .ticket-header {
    padding: 0rem;
    flex-direction: column;
    gap: 0rem;
    border-bottom: none;
  }

  .ticket-info-row {
    flex-direction: column;
  }

  .ticket_info-carrier,
  .ticket_info-passenger {
    border-right: none;
    border-bottom: 1px solid #EBEBEB;
    gap: 0.5rem;
  }

  .ticket_info-route {
    padding: 0.75rem;
    gap: 0.5rem;
  }

  .ticket_navi,
  .ticket_navi-left-col {
    flex-direction: column-reverse;
  }

  .ticket_navi-left-col {
    gap: 1rem;
  }

  .ticket_navi-links button {
    padding: 0 0.25rem;
  }

  .ticket_navi-links {
    justify-content: space-between;
  }

  .route-cities-frame {
    flex-direction: column;
    gap: 0.25rem;
  }

  .route-cities-frame svg {
    margin: 0;
    align-self: flex-start;
    transform: rotate(90deg);
  }

  .departure-info-item {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .ticket_info-notes {
    gap: 1rem;
    flex-direction: column;
  }

  .ticket_info-notes-box {
    width: 100%;
  }

  .button-print {
    width: 100%;
  }

  .ticket_navi-links,
  .ticket_navi-right-col {
    flex-wrap: nowrap;
    text-align: center;
    gap: 0.5rem;
  }

  .route-city-info {
    width: auto;
  }


  .center-popup {
    margin: 1.25rem;
    padding: 1rem;
    gap: 1.5rem;
    max-width: calc(100vw - 2.5rem);
  }

  .popup_text-content {
    gap: 1.5rem;
  }

  .popup_data {
    flex-direction: column;
    gap: 1.5rem;
  }

  .popup_data-section {
    padding: 0;
  }

  .popup_data-section:last-child {
    padding: 0;
  }

  .layout-column.gap-8 {
    width: 100%;
  }

  .button-return {
    width: 100%;
  }

  .text-box-gray {
    padding: 1rem;
  }

  .popup_title {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }

  .popup-title-text {
    flex: 1;
  }

  .success-popup {
    margin: 1.25rem;
    padding: 1rem;
    gap: 0.5rem;
    max-width: calc(100vw - 2.5rem);
  }

  .success-popup .popup_text-content.success-content {
    padding: 2rem 0px;
    height: auto;
    gap: 1.25rem;
  }

  .alert-tag.success-alert.gap-12 {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .success-title-text {
    font-size: var(--text-md);
    line-height: 1.5em;
  }

  .popup_data.success-messages {
    gap: 0.375rem;
  }

  .success-message {
    font-size: var(--text-sm);
  }

  .button-homepage {
    width: 100%;
  }

  .error-popup {
    margin: 1.25rem;
    padding: 1rem;
    gap: 0.5rem;
    max-width: calc(100vw - 2.5rem);
  }

  .error-popup .popup_text-content.error-content {
    padding: 2rem 0px;
    height: auto;
    gap: 1.5rem;
  }

  .alert-tag.error-alert.gap-12 {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .error-title-text {
    font-size: var(--text-md);
    line-height: 1.5em;
  }

  .popup_data.error-messages {
    gap: 0.75rem;
  }

  .error-message {
    font-size: var(--text-sm);
  }

  .reservations-content {
    gap: 1.5rem;
  }

  .ticket-reservation,
  .ticket-canceled {
    gap: 2rem;
  }

  .route-ticket-links {
    justify-content: center;
  }

  .button-manage-ticket {
    width: 100%;
  }

  .mobile-menu-drawer {
    width: 100vw;
    right: -100vw;
  }

  .mobile-menu-content {
    padding: 5rem 2rem 4rem 2rem;
  }

  .connections_text {
    gap: 1.5rem;
  }

  .connections_title-group {
    gap: 0.5rem;
  }

  .available-routes-content {
    gap: 0.5rem;
  }

  .company-card {
    padding: 1rem;
  }

  .company-card-details {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .company-card-detail-item,
  .company-card-time {
    width: 100%;
    justify-content: flex-start;
  }

  .company-card-more {
    align-items: flex-end;
  }

  .route-title-frame {
    flex-direction: column;
    gap: 0rem;
  }

  .route-company-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 0 0;
  }

  .route-company-contact {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .company-contact {
    width: 100%;
    justify-content: flex-start;
  }

  .company-logo-placeholder {
    width: 5rem;
    height: 2.8125rem;
    align-self: flex-start;
  }

  .route-place-data {
    padding: 0.75rem 1rem;
  }

  .route-place-gps {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .map-route-container {
    flex-direction: column;
    gap: 0.5rem;
  }

  .route-list-section {
    width: auto;
    height: 100%;
  }

  .result-info-box.bottom-corner-radius {
    gap: 1rem;
    padding: 1.25rem;
  }

  .routes-header.is-route {
    gap: 1rem;
  }

  .route-company-details.is-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .route-company-details-add.is-title {
    flex-direction: column;
  }

  .route-company-details-add.is-contacts {
    flex-direction: column;
    gap: 1rem;
  }

  .result-info-box.is-route {
    flex-direction: column;
    gap: 2rem;
    padding: 1.5rem;
  }

  .result-info-right-col.is-map .map-plugin.is-square {
    height: 18.75rem;
  }


  .fullscreen-button.is-route {
    top: 1rem;
    right: 1rem;
  }

  .search-payments {
    flex-direction: column;
    gap: 0.75rem;
  }

  .result-card-content {
    gap: 1rem;
  }

  .result-info-box {
    gap: 1rem;
    padding: 1.25rem;
  }

  .button-buy {
    width: 100%;
  }


  .align-center span {
    text-align: center;
  }

  .button-banner {
    width: 100%;
  }

  .result-info-box {
    flex-direction: column;
  }

  .search-cities {
    flex-direction: column;
  }

  .faq_content-box {
    flex-direction: column;
    ;
  }

  .faq-image-container,
  .man-taking-pictures-illustration {
    order: 2;
    margin: 0 auto;
  }
  .man-taking-pictures-illustration{
    max-height: 25rem;
  }
  .text-block_content {
    flex-direction: column;
  }

  .no-left {
    padding-left: var(--padding-global) !important;
  }

  .search-options-group {
    flex-direction: column;
  }

  .footer-faq-img {
    display: none
  }

  .is-faq-footer {
    display: block !important;
  }

  .cooperation_benefits-list {
    grid-template-columns: 1fr;
  }

  .cooperation-hero {
    height: 12.5rem;
    margin-bottom: 0;
  }

  .companies_hero-title {
    padding-right: 0;
  }

  .companies_title {
    width: 100%;
  }

  .company_contact {
    flex-direction: column;
    gap: 1rem;
  }

  .companies-about-content {
    gap: 1.5rem;
  }
  .card-link_hours-group {
    padding-right: 0;
  }

  .company_available-routes {
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  .passenger-info {
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  .passegner-info-immg {
    margin-left: 0;
    width: 100%;
    height: 12rem;
  }

  .lauout-column.gap-16 {
    gap: 0.5rem;
  }

  .title-h5.text-weight-medium.is-center {
    font-size: var(--text-lg);
  }

  .text-md.is-center {
    font-size: var(--text-sm);
  }

  .result-card-pricing {
    align-items: flex-start;
  }

  .result-card-pricing-info {
    justify-content: center;
  }

  .result-card-pricing-data {
    order: 3;
    align-items: stretch;
  }

  .button-show-more {
    margin-left: 0;
  }

  .result-card-data {
    order: 2;
  }

  .result-card-company-logo {
    align-items: center;
    flex-grow: 1;
    order: 1;
  }

  .result-card-company-logo span {
    display: block;
    width: 100%;
    text-align: right;
  }

  .result-card-data>.result-card-time {
    display: none;
  }

  .result-info-left-col {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .search-bar {
    padding: 1.125rem;
  }

  .hero-content-wrap {
    overflow: visible;
  }

  .route-info-frame {
    gap: 1rem
  }

  .result-card-duration {
    align-items: flex-start;
    padding-top: 0;
  }

  .result-card-time-wrap span {
    color: var(--color-dark);
  }

  .regulations-group ol {
    margin-block-start: 0.25em !important;
    padding-inline-start: 1rem;

  }

  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    max-width: 100vw;
  }

  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-banner-btn {
    width: 100%;
    text-align: center;
  }

  .message-title {
    flex-direction: column;
  }

  .error-404-circle {
    width: 7.5rem;
    height: 7.5rem;
  }

  .footer_content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer_links-group,
  .footer_bottom-bar {
    flex-direction: column;
  }

  .padding-section-large {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .search-payments-wrap {
    flex-direction: column;
  }

  .gray-text-frame {
    flex-grow: 1;
  }

  .companies_hero-content,
  .section_companies {
    padding-left: 0;
    max-width: 100%;
    gap: 1rem;
  }

  .route_payment-section button {
    width: 100%;
  }

  .contact-image {
    max-width: 10rem;
  }
  .text-block_wrap {
    gap: 1rem;
  }
}

@media (max-width: 767px) {
  .padding-section-medium {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
.card-search {
  padding: 1.5rem 1.75rem;
}
  .search-option {
    padding: 1rem 1.25rem;
  }
  .result-card-data {
    flex-direction: column;
    gap: 1rem;
  }
  .result-card-content {
    gap: 1rem;
  }
  .result-card-departure-data,
  .result-card-arrival-data {
  gap: 0.5rem;
  }
  .search-city-change {
    padding: 0.5rem;
  }
  .search-bar-simplified {
    padding-block: 1rem;
  }
  .cards_group {
    grid-template-columns: repeat(2, 1fr);
  }
  .partners_grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1rem;
  }
  .faq-image-container {
    max-width: 18rem;
  }

  .content_box {
    gap: 0.5rem;
  }
  .cards_content {
    gap: 0.75rem
  }
  .partners_content {
    gap: 1.5rem;
  }

}

@media screen and (max-width: 480px) {
.cards_group {
    grid-template-columns: repeat(1, 1fr);
  }
  .card-link{
    aspect-ratio: 4 / 3;
  }
}

/* Account Dropdown Styles */
.account-dropdown {
  position: relative;
  display: inline-block;
}

.account-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-font-body);
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  font-size: var(--text-md);
  border: none;
  border-radius: 1rem;
  padding: 0.5rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.account-dropdown-trigger:hover {
  background: var(--color-primary) !important;
  color: var(--color-white);
}

.account-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.account-circle svg {
  width: 24px;
  height: 24px;
  color: inherit;
}

.account-name {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: inherit;
}

.dropdown-content-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  padding: 10px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
  margin-top: 8px;
}

.dropdown-content-menu.show {
  display: flex;
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.menu-item:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.menu-text {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
  text-align: right;
}

/* Mobile Account Dropdown */
.mobile-account-dropdown {
  width: 100%;
}

.mobile-account-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-gray);
  color: var(--color-font-body);
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  font-size: var(--text-md);
  border: none;
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  width: 100%;
  cursor: pointer;
  transition: background 0.2s ease;
}

.mobile-account-trigger:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.mobile-account-name {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: inherit;
}

.mobile-dropdown-content {
  display: none;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.mobile-dropdown-content.show {
  display: flex;
}

.mobile-menu-item {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.mobile-menu-item:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

/* ************ MK ************ */
.hide {
  display: none !important;
}

.text-nowrap {
  white-space: nowrap;
  text-wrap: nowrap;
}



.mobile-dropdown-content > hr {
  width: 70%;
  margin: 0 auto;
}

.menu-separator {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0px 12px;
  height: 1px;
}

.menu-separator hr {
  width: 60px;
}

label > a,
.faq_content_text a {
  text-decoration: underline;
  color: var(--color-primary);
}
.faq_content_text ul {
  margin: 0;
  list-style: square;
  padding-left: 30px;
}

.bonus-info {
  color: var(--color-accent);
}

.form-fieldset {
  background-color: #e7f1ff;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  border-radius: 0.375rem;
}

@media (max-width: 992px) {
  .map-plugin {
    aspect-ratio: auto;
  }
}

.content-results {
  max-width: 75rem;
}

.section-add-padding-bottom {
  padding-bottom: 2.5rem;
}

.result-card-pricing-data {
  min-width: 1rem;
}

.city-dropdown-select {
  width: 100%;
}

.result-card-departure-data,
.result-card-arrival-data {
  flex: 3;
}

.result-card-time {
  flex: 1;
}

.result-card-time-wrap {
  margin: 0 auto;
}

.result-card-company-logo {
  height: 2.5rem;
}

.result-card-company-logo img {
  max-width: 6rem;
}

.company-logo {
  width: 100%;
  height: 100%;
}

.message-content submit,
.message-content input[type="submit"] {
  justify-content: center;
  text-decoration: none;
  width: fit-content;

  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 0.375rem;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.store-regulations-content {
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: var(--text-md);
  line-height: 1.5em;
  text-align: justify;
  /* margin: 0; */
}

.store-regulations-content h2 {
  text-align: center;
}

.store-regulations-content h3 {
  font-weight: 600;
  font-size: var(--text-2xl);
}

.carnet_sum-top {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.carnet_sum-column {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 0.125rem;
}
.carnet_sum-detail {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  justify-content: space-between;
  width: 100%;
}

.custom-date-picker-wrap {
  position: relative;
}

.popup-container main {
  padding-bottom: 60px;
}

.popup-container footer  {
  position: fixed;
  bottom: 0; /* Przykleja do dolnej krawędzi okna */
  width: 100%; /* Rozciąga na całą szerokość */

  /* Opcjonalne style */

  padding: 10px;
  text-align: center;
  z-index: 1000; /* Zapewnia, że jest nad inną treścią */
}

select:invalid,
textarea:invalid,
input:invalid {
  /* border: 2px solid var(--color-warning); */
  box-shadow: 0 0 0 3px var(--color-warning-shadow);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.error {
  border: 2px solid var(--color-error);
  box-shadow: 0 0 0 3px var(--color-error-shadow);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.map-plugin.is-square iframe {
  aspect-ratio: 3/4;
}

.text-block_wrap a {
  text-decoration: underline;
  color: var(--color-primary);
}

.company-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  max-width: 65.625rem;
  margin: 0;
  padding: 0;

}

.company-list-header {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: center;
  align-self: stretch;
  gap: 1.5rem;
  width: 100%;
  margin-top: 0.5rem;
}

.partner-logo img:hover {
  filter: none;
}

.img-background {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cards_group_xl {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1040px) {
  .cards_group_xl {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .cards_group_xl {
    grid-template-columns: repeat(1, 1fr);
  }
}

.reslist_company-logo {
  max-height: 2rem;
}

.info-ok {
  color: var(--color-info-success);
  font-weight: 600;
}

.info-error {
  color: var(--color-info-error);
  font-weight: 600;
}

.ticket-view-disabled table {
  background-color: lightgray;
  color: gray;
}

.ticket table {
  margin: auto;
  margin-top: 1rem;;
}

.layout-overflow-y {
  overflow-y: visible;
}

.ticketaction_text-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.section-sticky-top {
  position: sticky;
  top: 0;
}

.navbar-icon svg {
  width: 22px;
  height: 22px;
}
.navbar-icon:hover {
  color: var(--color-primary);
  /* stroke: var(--color-primary); */
}

.navbar-home {
  position: absolute;
  left: 2rem;
  top: 2.45rem;
}
@media (max-width: 480px) {
  .navbar-home {
    top: 1.95rem;
  }
}

@media (max-width: 1100px) {
  .button-search {
    text-wrap: wrap;
    /* padding: 0.4rem 1rem;
    gap: 0.3rem; */
  }
}