.flight-selection {
  background-color: #f4f4f4;
  margin: auto;
  width: 100%;
}
.flight-selection .more {
  border: 1px solid #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
}
@media (min-width: 901px) {
  .flight-selection .more {
    display: none;
  }
}
.flight-selection .sidebar[style="display: block;"] ~ .content {
  position: relative;
}
.flight-selection .sidebar[style="display: block;"] ~ .content:before {
  content: "";
  background: rgba(4, 28, 70, 0.3);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 999;
  top: 0;
}
@media (min-width: 900px) {
  .flight-selection .flight-container {
    display: grid;
  }
  .flight-selection .flight-container:not(.custom) {
    grid-template-columns: 1fr 3fr;
  }
  .flight-selection .flight-container.custom .flight-selection__subheader, .flight-selection .flight-container.custom .aircraft-selection {
    padding-left: 100px;
  }
}
.flight-selection .sidebar {
  background-color: #fff;
  border-right: 1px solid #D1D1D1;
  background: #fff;
  padding: 24px 40px 0 110px;
  color: #041C46;
}
@media (min-width: 901px) and (max-width: 1200px) {
  .flight-selection .sidebar {
    padding-left: 40px;
  }
}
@media (max-width: 900px) {
  .flight-selection .sidebar {
    padding: 24px;
    display: none;
  }
}
.flight-selection .sidebar h3 {
  color: #041C46;
  font-weight: 400;
  margin: 0;
}
@media (max-width: 900px) {
  .flight-selection .sidebar h3 {
    font-size: 18px;
  }
}
.flight-selection .sidebar .flight-leg__label {
  text-transform: uppercase;
}
.flight-selection .sidebar .flight-details {
  padding: 24px 0;
}
@media (max-width: 900px) {
  .flight-selection .sidebar .flight-details {
    padding: 16px 0;
  }
}
.flight-selection .sidebar .flight-details:not(:last-child) {
  border-bottom: 1px solid #D1D1D1;
}
.flight-selection .sidebar .flight-details svg {
  vertical-align: sub;
}
.flight-selection .sidebar .flight-leg__label {
  font-size: 12px;
  font-weight: bold;
  border: 1px solid #041C46;
  border-radius: 4px;
  width: 85px;
  height: 28px;
  text-align: center;
  line-height: 26px;
}
.flight-selection .sidebar .flight-leg__airports {
  font-size: 20px;
  font-weight: 700;
  font-family: "Mikro Regular", Arial, sans-serif;
  margin: 8px 0 4px;
}
@media (max-width: 900px) {
  .flight-selection .sidebar .flight-leg__airports {
    font-size: 14px;
  }
}
.flight-selection .sidebar .flight-leg__airports svg {
  width: 12px;
  vertical-align: initial;
}
.flight-selection .sidebar .flight-leg__city {
  font-size: 18px;
}
.flight-selection .sidebar .flight-leg__timing {
  font-size: 14px;
  display: flex;
}
.flight-selection .sidebar .flight-leg__duration {
  font-size: 12px;
  margin-right: 16px;
}
.flight-selection .sidebar .flight-leg__passengers svg {
  width: 16px;
}

/* Header Styles */
.flight-selection__header {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #041c46;
  color: #fff;
  padding-left: 110px;
  padding-right: 110px;
  padding-top: 40px;
}
@media (max-width: 900px) {
  .flight-selection__header {
    padding: 24px 16px 0;
  }
}
.flight-selection__edit-btn {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.64px;
  font-family: "Mikro Regular", Arial, sans-serif;
}
.flight-selection__edit-btn:hover, .flight-selection__edit-btn:focus {
  color: #fff;
}
.flight-selection__edit-btn:hover {
  text-decoration: none;
}
.flight-selection__title {
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}
.flight-selection__trip-details {
  color: #fff;
}
.flight-selection__route {
  color: #fff;
  text-transform: capitalize;
  font-size: 36px;
  margin-bottom: 16px;
}
@media (max-width: 900px) {
  .flight-selection__route {
    font-size: 24px;
    line-height: 30px;
  }
}
.flight-selection__date-edit {
  display: flex;
  flex-direction: row;
  gap: 38px;
}
.flight-selection__date {
  font-size: 18px;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .flight-selection__date {
    margin-bottom: 24px;
  }
}
.flight-selection__subheader {
  background-color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 24px 110px 24px 40px;
  min-height: 96px;
}
@media (min-width: 901px) and (max-width: 1200px) {
  .flight-selection__subheader {
    padding-right: 40px;
  }
}
@media (max-width: 900px) {
  .flight-selection__subheader {
    flex-direction: column;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
  }
}
.flight-selection__instructions {
  color: #041C46;
}
@media (max-width: 900px) {
  .flight-selection__instructions {
    margin-bottom: 16px;
  }
}
.flight-selection__instructions p {
  font-size: 24px;
  height: 30px;
  font-weight: 400;
  color: #041C46;
  font-family: "Mikro Regular", Arial, sans-serif;
  margin: 0;
}
@media (max-width: 900px) {
  .flight-selection__instructions p {
    font-size: 18px;
  }
}
.flight-selection__instructions span {
  font-size: 14px;
}
.flight-selection__controls {
  display: flex;
  gap: 16px;
}
@media (max-width: 900px) {
  .flight-selection__controls {
    flex-direction: row;
    justify-content: center;
    width: 100%;
  }
}
.flight-selection__controls button {
  font-family: "Mikro Regular", Arial, sans-serif;
  font-weight: 700;
  width: 169px;
  height: 48px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-size: 16px;
  text-transform: uppercase;
}
.flight-selection__controls a {
  text-decoration: none;
}
.flight-selection__submit-btn {
  background-color: #173fc2;
  color: #fff;
  border: none;
  /* width: 169px;
   height: 46px;
   border-radius: 8px;
   color: #fff;
   background-color: #173fc2;
   border: none;*/
  /*&:hover {
    background-color: #fff;
    color: #173fc2;
  }*/
}
.flight-selection__submit-btn.disabled {
  background-color: #6b778b;
}
.flight-selection__skip-btn {
  width: 169px;
  height: 46px;
  border-radius: 8px;
  border: 1px solid #173fc2;
  background-color: #fff;
  color: #173fc2;
}
.flight-selection__skip-btn:hover {
  background-color: #173fc2;
  color: #fff;
}
.flight-selection__button-container {
  display: flex;
  padding-bottom: 80px;
  margin-left: 40px;
}
@media (max-width: 900px) {
  .flight-selection__button-container {
    justify-content: center;
    align-content: center;
    margin: 0;
  }
}
.flight-selection__view-more {
  width: 200px;
  height: 48px;
  border-radius: 100px;
  border: 1px solid #173fc2;
  color: #173fc2;
  background-color: #fff;
  line-height: 22px;
  letter-spacing: 4%;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  font-family: "Mikro Regular", Arial, sans-serif;
}
@media (max-width: 900px) {
  .flight-selection__view-more {
    border-radius: 8px;
  }
}
.flight-selection__view-more:hover {
  background-color: #173fc2;
  color: #fff;
}

.aircraft-selection {
  width: 100%;
  background-color: #f1f3f8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 40px 110px 40px 40px;
}
@media (min-width: 901px) and (max-width: 1200px) {
  .aircraft-selection {
    padding: 40px;
  }
}
@media (max-width: 900px) {
  .aircraft-selection {
    padding: 16px;
    gap: 24px;
  }
}
.aircraft-selection .aircraft {
  width: 100%;
  background-color: #fff;
  min-height: 212px;
  border-radius: 8px;
  box-shadow: 0px -1px 4px 0px rgba(0, 0, 0, 0.08), 0px 2px 6px 1px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.aircraft-selection .aircraft__image__info {
  display: flex;
  flex-direction: row;
}
@media (max-width: 900px) {
  .aircraft-selection .aircraft__image__info {
    flex-direction: column;
    min-width: 100%;
  }
}
@media (max-width: 900px) {
  .aircraft-selection .aircraft {
    flex-direction: column;
    min-width: 100%;
  }
}
.aircraft-selection .aircraft__header {
  display: flex;
  justify-content: space-between;
}
.aircraft-selection .aircraft__image-info {
  display: flex;
  flex-direction: row;
  gap: 32px;
}
@media (max-width: 900px) {
  .aircraft-selection .aircraft__image-info {
    flex-direction: column;
    gap: 24px;
  }
}
.aircraft-selection .aircraft__image {
  height: 212px;
  width: 330px;
  border-radius: 8px 0px 0px 8px;
}
@media (max-width: 900px) {
  .aircraft-selection .aircraft__image {
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    width: 343px;
    margin: auto;
  }
}
@media (max-width: 767px) {
  .aircraft-selection .aircraft__image {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.aircraft-selection .aircraft__badge {
  position: absolute;
  width: 127px;
  height: 26px;
  padding: 5px 16px 3px 16px;
  gap: 10px;
  border-radius: 8px 0px 16px 0px;
  opacity: 0px;
  color: #fff;
  background-color: #041c46;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  z-index: 3;
  text-align: center;
  text-transform: uppercase;
}
.aircraft-selection .aircraft__info {
  width: 100%;
  margin-left: 32px;
  margin-right: 32px;
  margin-top: 24px;
}
@media (max-width: 900px) {
  .aircraft-selection .aircraft__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 16px;
    max-width: 92%;
  }
}
@media (max-width: 900px) {
  .aircraft-selection .aircraft__info-additional {
    display: flex;
    flex-direction: column;
  }
}
.aircraft-selection .aircraft__button__container {
  display: flex;
  align-items: flex-end;
  margin-bottom: 0px;
}
@media (max-width: 900px) {
  .aircraft-selection .aircraft__button__container {
    display: flex;
    justify-content: flex-end;
  }
}
.aircraft-selection .aircraft__type {
  font-size: 24px;
  font-weight: 400;
  color: #041c46;
  margin-bottom: 0px;
  font-family: "Mikro Regular", Arial, sans-serif;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .aircraft-selection .aircraft__type {
    font-size: 18px;
  }
}
.aircraft-selection .aircraft__model {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #6b778b;
  margin-bottom: 0px;
}
@media (max-width: 900px) {
  .aircraft-selection .aircraft__model {
    font-size: 14px;
  }
}
.aircraft-selection .aircraft__seats, .aircraft-selection .aircraft__duration, .aircraft-selection .aircraft__fuel-stop {
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 20px;
}
.aircraft-selection .aircraft__seats svg, .aircraft-selection .aircraft__duration svg, .aircraft-selection .aircraft__fuel-stop svg {
  margin-right: 8px;
  vertical-align: middle;
}
@media (max-width: 900px) {
  .aircraft-selection .aircraft__seats, .aircraft-selection .aircraft__duration, .aircraft-selection .aircraft__fuel-stop {
    margin-bottom: 8px;
  }
}
.aircraft-selection .aircraft__selection {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  color: #041C46;
}
@media (max-width: 900px) {
  .aircraft-selection .aircraft__selection {
    flex-direction: row;
    gap: 32px;
    padding-top: 0px;
    align-items: center;
  }
}
.aircraft-selection .aircraft .aircraft__info-additional p {
  font-size: 14px;
}
.aircraft-selection .aircraft__price {
  font-weight: 400;
  font-size: 32px;
  line-height: 38px;
  text-align: right;
  margin-bottom: 0px;
  color: #041c46;
  font-family: "Mikro Regular", Arial, sans-serif;
}
@media (max-width: 900px) {
  .aircraft-selection .aircraft__price {
    font-size: 24px;
  }
}
.aircraft-selection .aircraft__price-note {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-align: right;
  margin-top: 4px;
  color: #6b778b;
  margin-bottom: 16px;
}
@media (max-width: 900px) {
  .aircraft-selection .aircraft__price-note {
    margin: 0;
  }
}
.aircraft-selection .aircraft__button-container {
  display: flex;
  align-items: flex-end;
}
.aircraft-selection .aircraft__select-btn {
  align-items: center;
  width: 133px;
  height: 50px;
  border: none;
  background-color: #f1f3f8;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.aircraft-selection .aircraft__select-btn svg {
  margin-right: 8px;
  margin-left: 8px;
}
@media (max-width: 900px) {
  .aircraft-selection .aircraft__select-btn {
    width: 90px;
  }
}
.aircraft-selection .aircraft__select-btn.active {
  background-color: #041c46;
  color: white;
  width: 113px;
}
.aircraft-selection .aircraft__select-btn .icon {
  width: 13px;
  height: 12px;
  margin-right: 8px;
}
.aircraft-selection .aircraft__select-btn .icon.add {
  background-image: url("/Content/icons/flight-search/add-icon.svg");
}
.aircraft-selection .aircraft__select-btn .icon.added {
  background-image: url("/Content/icons/flight-search/added-icon.svg");
}
.aircraft-selection .aircraft__flight-details-section {
  display: flex;
  flex-direction: row;
}
@media (max-width: 900px) {
  .aircraft-selection .aircraft__flight-details-section {
    flex-flow: column;
  }
}
.aircraft-selection .aircraft__flight-details__leg__container {
  display: flex;
  flex-direction: column;
  margin: 32px;
  background-image: linear-gradient(#d1d1d1 62%, rgba(255, 255, 255, 0) 0%);
  background-position: right;
  background-size: 1px 11px;
  background-repeat: repeat-y;
  padding-right: 20px;
}
.aircraft-selection .aircraft__flight-details__leg__container:last-child {
  background: none;
}
@media (max-width: 900px) {
  .aircraft-selection .aircraft__flight-details__leg__container {
    background-image: linear-gradient(to right, #d1d1d1 62%, rgba(255, 255, 255, 0) 0%);
    background-position: bottom;
    background-size: 11px 1px;
    background-repeat: repeat-x;
    margin: 16px;
  }
  .aircraft-selection .aircraft__flight-details__leg__container:last-child {
    background: none;
  }
}
.aircraft-selection .aircraft__flight-details__leg__container .flight-leg__label {
  height: 26px;
  width: 85px;
  color: #fff;
  background-color: #041c46;
  border: 1px solid #d1d1d1;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 18px;
  font-size: 12px;
  font-weight: 400;
  border-radius: 4px;
  margin-bottom: 32px;
}
.aircraft-selection .aircraft__flight-details__leg__container .flight-leg__airports {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #041c46;
  padding-bottom: 16px;
}
.aircraft-selection .aircraft__flight-details__leg__container .flight-leg__timings-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.aircraft-selection .aircraft__flight-details__leg__container .flight-leg__timing {
  width: 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 16px;
}
.aircraft-selection .aircraft__flight-details__leg__container .flight-leg__timing-title {
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
  text-align: left;
  color: #041c46;
}
.aircraft-selection .aircraft__details-button {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.04em;
  text-align: right;
  color: #173fc2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-transform: uppercase;
  font-family: "Mikro Regular", Arial, sans-serif;
  cursor: pointer;
}
.aircraft-selection .aircraft__details-button .expand-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 4px;
  padding-right: 4px;
  pointer-events: none;
}
.aircraft-selection .aircraft__details-button .expand-icon.spin {
  animation: spin180 1s ease-in-out forwards; /* Applies the animation */
}
@keyframes spin180 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(180deg);
  }
}
.aircraft-selection .aircraft__details-button .expand-icon.spin-back {
  animation: spinTo0 1s ease-in-out forwards; /* Applies the animation */
}
@keyframes spinTo0 {
  from {
    transform: rotate(180deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@media (max-width: 900px) {
  .aircraft-selection .aircraft__details-button {
    display: none;
  }
}
.aircraft-selection .aircraft__details-button--mobile {
  display: none;
}
@media (max-width: 900px) {
  .aircraft-selection .aircraft__details-button--mobile {
    display: flex;
    justify-content: flex-start;
    text-align: left;
    border-top: 1px solid #D1D1D1;
    padding-top: 16px;
  }
}
.aircraft-selection .aircraft__expandable-details-wrapper {
  overflow: hidden;
  height: 0;
  transition: height 0.5s ease-out, opacity 0.5s ease;
  opacity: 0;
}
.aircraft-selection .aircraft__flight-details__leg__carousel.carousel {
  position: relative;
  overflow: hidden;
  padding-left: 50px;
}
.aircraft-selection .aircraft__flight-details__leg__carousel .carousel-items {
  display: flex;
}
.aircraft-selection .aircraft__flight-details__leg__carousel .carousel-item {
  opacity: 0;
  transition: opacity 0.5s ease;
  display: none;
  flex-basis: 100%;
}
.aircraft-selection .aircraft__flight-details__leg__carousel .carousel-item.active {
  opacity: 1;
  display: flex;
}
.aircraft-selection .aircraft__flight-details__leg__carousel .carousel-buttons {
  display: flex;
  align-items: center;
  justify-self: center;
}
.aircraft-selection .aircraft__flight-details__leg__carousel .carousel-button {
  z-index: 100;
  border: 2px solid #ccc;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #666;
  background: #fff;
  cursor: pointer;
  position: absolute;
  top: 50%;
}
.aircraft-selection .aircraft__flight-details__leg__carousel .prev {
  left: 10px;
}
.aircraft-selection .aircraft__flight-details__leg__carousel .next {
  right: 10px;
}
.aircraft-selection .flight-results__carousel {
  width: 330px;
  height: 212px;
}
@media (max-width: 900px) {
  .aircraft-selection .flight-results__carousel {
    width: 100%;
  }
}
.aircraft-selection .flight-results__carousel-item {
  height: 212px;
  width: 330px;
  border-radius: 8px 0 0 8px;
}
.aircraft-selection .flight-results__carousel .owl-nav,
.aircraft-selection .flight-results__carousel .owl-dots {
  position: absolute;
  top: 100%;
}
.aircraft-selection .flight-results__carousel .owl-nav {
  left: 0;
  top: 50%;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}
.aircraft-selection .flight-results__carousel .owl-nav button {
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.aircraft-selection .flight-results__carousel .owl-dots {
  right: 0;
  display: flex;
  margin-top: 10px;
  width: 100%;
  justify-content: center;
  position: absolute;
  top: 88%;
}
.aircraft-selection .flight-results__carousel .owl-dot {
  width: 12px;
  height: 6px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.6392156863);
}
.aircraft-selection .flight-results__carousel .owl-dot:not(:last-child) {
  margin-right: 5px;
}
.aircraft-selection .flight-results__carousel .owl-dot.active {
  background-color: #fff;
  width: 40px;
}
.aircraft-selection .flight-results__carousel-icon {
  width: 20px;
  height: 19px;
  margin-top: 5px;
}
.aircraft-selection .owl-prev .flight-results__carousel-icon {
  transform: rotateZ(180deg);
  margin-right: 10px;
}

.warning {
  border: 1px solid #e4250c !important;
}

html[lang=ar] .date-picker__time-container::after {
  left: 10px;
  right: auto;
}/*# sourceMappingURL=flight-results.css.map */