<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.flight-results-container {
  max-width: 800px;
  margin: 2rem auto;
}

.back-to-search {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.back-btn {
  display: flex;
  align-items: center;
  padding: 12px;
  color: var(--color-body-text);
  text-decoration: none;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-base);
}

.flight-summary {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: #fff;
  border-radius: var(--border-radius-base);
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.multi-flight-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.multi-flight-details h4 {
  color: var(--color-body-text);
  font-weight: 400;
  font-size: var(--text-base);
  margin: 0;
}

.flight-summary h2 {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-body-text);
  margin: 0;
}

.flight-summary .flight-info {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-base);
}

.flight-summary .flight-header {
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flight-summary .flight-header h3 {
  font-size: 1.2rem;
  color: #121212;
  margin: 0;
}

.flight-summary .flight-header .date {
  color: var(--color-grey);
  font-weight: 400;
  font-size: var(--text-base);
}

.flight-summary .route-info {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 16px 12px;
}

.flight-summary .city {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0.5rem;
  font-size: var(--text-base);
  flex: 1;
  color: var(--color-body-text);
}

.flight-summary .city.to {
  justify-content: flex-end;
}

.flight-summary .city i {
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  background: #ffe6d3;
  border-radius: 100px;
}

.flight-summary .route-line-wrapper {
  display: flex;
  justify-content: center;
  flex: 1.5;
}

.flight-summary .route-line {
  display: flex;
  justify-content: center;
}

.flight-summary .route-line-wrapper .date {
  display: none;
}

.flight-summary .route-line {
  position: relative;
  z-index: 1;
}

.flight-summary .route-line::after {
  content: "";
  width: 125px;
  height: 1px;
  border-top: 1px dashed #bdbdbd;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  left: 50%;
}

.flight-summary .route-line svg {
  z-index: 1;
}

.flight-summary .price-options {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.radio-container.price-card {
  position: relative;
  display: block;
  padding: 1rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-base);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 11px 20.7px 0px rgba(0, 0, 0, 0.04);
}

.radio-container.price-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.radio-container.price-card .radio-mark {
  position: absolute;
  top: 1rem;
  left: 1rem;
  height: 16px;
  width: 16px;
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: 50%;
}

/* .radio-container.price-card input[type="radio"]:checked ~ .radio-mark {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
} */

/* .radio-container.price-card input[type="radio"]:checked ~ .radio-mark:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
} */

.radio-container.price-card .price-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.radio-container.price-card .price-header {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.radio-container.price-card .price-header .price-wrapper {
  display: flex;
  gap: 12px;
  align-items: center;
}

.radio-container.price-card .price-header .label {
  display: block;
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--color-body-text);
  padding-left: 28px;
}

.radio-container.price-card .price-header .price {
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-body-text);
}

.radio-container.price-card .price-header .currency {
  color: var(--color-body-text);
  font-weight: 500;
  font-size: var(--text-base);
}

.radio-container.price-card .price-details {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  color: var(--color-body-text);
}

.radio-container.price-card .price-details .class,
.radio-container.price-card .price-details .type {
  font-size: var(--text-base);
  text-transform: capitalize;
}

.user-form h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--color-body-text);
}

.user-form form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.user-form .form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  font-size: 1rem;
}

.user-form .form-group input:focus {
  outline: none;
  border-color: #121212;
}

.user-form .flight-results-container .search-flight-btn {
  width: 100%;
  padding: 1rem;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.user-form .search-flight-btn {
  width: 100%;
}

.promo-code-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.promo-code-section .promo-code-toggle {
  font-size: var(--text-md);
  font-weight: 500;
  cursor: pointer;
  color: var(--color-body-text);
}

.promo-code-section .promo-code-toggle.active {
  cursor: pointer;
  color: var(--color-primary);
}

.phone-input-container {
  position: relative;
}

.phone-input-container .iti {
  width: 100%;
}

.phone-input-container .iti__flag-container {
  z-index: 2;
}

.phone-input-container input[type="tel"] {
  padding-left: 90px !important;
}

.iti--inline-dropdown .iti__dropdown-content,
.iti__country-list {
  width: 380px !important;
}

@media (max-width: 1024px) {
  .iti--inline-dropdown .iti__dropdown-content,
  .iti__country-list {
    width: 350px !important;
  }
}

@media (max-width: 768px) {
  .iti--inline-dropdown .iti__dropdown-content,
  .iti__country-list {
    width: 318px !important;
  }
}

.flight-results-container .iti__selected-country {
  font-size: var(--text-base) !important;
  color: var(--color-body-text);
}

.flight-results-container .iti--allow-dropdown .iti__country-container {
  left: 40px !important;
}

.flight-results-container .iti--allow-dropdown input.iti__tel-input,
.flight-results-container
  .iti--allow-dropdown
  input.iti__tel-input[type="tel"] {
  padding-left: 150px !important;
}

.flight-results-container .iti__selected-country {
  padding: 0 10px !important;
}

.flight-results-container .iti__selected-country:hover,
.flight-results-container .iti__selected-country:active,
.flight-results-container .iti__selected-country:focus {
  background-color: transparent !important;
  color: var(--color-body-text) !important;
}

.flight-results-container .iti--allow-dropdown input,
.flight-results-container .iti--allow-dropdown input[type="text"] {
  padding-left: 15px !important;
}

.toggle-icon {
  display: none;
}

@media (max-width: 768px) {
  .toggle-icon {
    display: block;
  }
  .flight-header .date {
    display: none;
  }

  .flight-summary .route-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .flight-summary .route-line {
    width: 32px;
  }

  .flight-summary .route-line::after {
    height: 100px;
    width: 1px;
    border-right: 1px dashed #bdbdbd;
  }

  .flight-summary .city {
    z-index: 2;
  }

  .flight-summary .route-line svg {
    transform: rotate(90deg);
  }

  .route-line-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }

  .flight-summary .route-line-wrapper .date {
    display: block;
  }

  .flight-summary .flight-header {
    cursor: pointer;
  }

  .flight-summary .flight-header .toggle-icon {
    display: flex;
  }

  .flight-summary .flight-header.active .toggle-icon path {
    fill: var(--color-primary);
  }

  .flight-summary .flight-header .toggle-icon svg {
    transition: transform 0.2s;
  }

  .flight-summary .flight-header.active .toggle-icon svg {
    transform: rotate(180deg);
  }

  .flight-summary .route-info {
    max-height: 500px;
    opacity: 1;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
  }

  .flight-summary .route-info.hidden {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
  }
}

.hide {
  display: none;
}

.phone-validation {
  position: absolute;
}

#valid-msg {
  color: #00a900;
  font-size: var(--text-sm);
}

#error-msg {
  color: #ff0000;
  font-size: var(--text-sm);
}

.phone-input-container {
  position: relative;
}

.phone-input-container .iti {
  width: 100%;
}

.phone-input-container input.error {
  border-color: #ff0000;
}

.phone-input-container input.valid {
  border-color: #00a900;
}

.booking-success-message {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 4px;
  text-align: center;
}

.booking-success-message h3 {
  color: #155724;
  margin-bottom: 15px;
}

.booking-success-message p {
  margin-bottom: 10px;
}
</pre></body></html>