@charset "UTF-8";

body.active {
  overflow: hidden;
}

.overlay.active {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 9;
  left: 0;
  top: 0;
  opacity: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.header-div {
  padding: 10px 0;
  -webkit-box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.2);
  background: #fff;
  position: relative;
  z-index: 1;
}

.header-div ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header-div ul .logo-li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-div ul .logo-li figure {
  width: 200px;
  height: 65px;
}

.header-div ul .logo-li figure img {
  width: 100%;
}

.header-div ul .text-li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header-div ul .text-li .text-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 32px;
  margin-right: 30px;
}

.header-div ul .text-li .text-div .text-first {
  font-weight: 600;
  font-size: 16px;
  color: #003edb;
}

.header-div ul .text-li .text-div a {
  color: black;
}

.header-div ul .text-li .text-div a:hover {
  color: #003edb;
}

.header-div ul .text-li .text-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header-div ul .text-li .text-btn .suppert {
  background: none;
  border: 1px solid black;
  padding: 13px;
  width: 125px;
  border-radius: 13px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.header-div ul .text-li .text-btn .sig {
  background: none;
  border: 1px solid #003edb;
  background-color: #003edb;
  color: #fff;
  padding: 13px;
  width: 125px;
  border-radius: 13px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.mnu_icon {
  display: none;
}

@media (max-width: 767px) {
  .header-div {
    position: inherit;
  }

  .mnu_icon {
    display: inline-block;
    cursor: pointer;
  }

  .mnu_icon img {
    width: 35px;
    height: 35px;
  }

  .header-div ul .logo-li figure {
    width: auto;
    height: auto;
  }

  .header-div ul .logo-li figure img {
    width: 70%;
  }

  .header-div ul .text-li {
    display: block;
    position: absolute;
    left: -100%;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    right: 0;
    top: 0;
    bottom: 0;
    width: 80%;
    background: #fff;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    z-index: 11;
  }

  .header-div ul .text-li.active {
    left: 0;
  }

  .header-div ul .text-li .text-div {
    width: 100%;
    display: block;
  }

  .header-div ul .text-li .text-div a {
    display: block;
    padding: 15px 12px;
    border-bottom: 1px solid #ddd;
  }

  .header-div ul .text-li .text-btn {
    width: 100%;
    padding: 15px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 20px;
  }

  .header-div ul .text-li .text-btn .suppert,
  .header-div ul .text-li .text-btn .sig {
    font-size: 14px;
    width: 118px;
    border-radius: 100px;
    padding: 8px 0px;
  }
}

.footer {
  background-color: #0f1632;
  color: #fff;
}

.footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-logo {
  max-width: 49%;
}

.footer-logo h2 {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 164px;
  height: 54px;
}

.footer-logo p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
  color: #cfd6e3;
}

.footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}

.footer-col h4 {
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col ul li a {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 400;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 15px;
  font-size: 14px;
  color: #fff;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
  margin-right: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer-bottom a:hover {
  color: #fff;
}

.main-footer {
  padding: 50px 0;
}

@media (max-width: 1024px) {
  .footer-logo {
    max-width: 28%;
  }

  .footer-logo p {
    font-size: 15px;
  }

  .footer-links {
    width: 62%;
  }

  .footer-logo p {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .footer-top {
    margin-bottom: 15px;
  }

  .footer-logo {
    width: 100%;
    max-width: 100%;
  }

  .footer-links {
    display: block;
  }

  .footer-col {
    margin-top: 20px;
    padding-left: 10px;
  }

  .footer-bottom {
    display: block;
    line-height: 40px;
    padding: 0;
    border: 0;
  }

  .footer-bottom a {
    display: block;
  }
}

.search-box-banner {
  background: -webkit-gradient(linear,
      left top,
      right top,
      from(rgba(3, 0, 69, 0.64)),
      to(rgba(255, 255, 255, 0))),
    url("../images/home/banner-new.png");
  background: linear-gradient(90deg,
      rgba(3, 0, 69, 0.64) 0%,
      rgba(255, 255, 255, 0) 100%),
    url("../images/home/banner-new.png");
  height: 500px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: right;
}

.search-text {
  position: relative;
  top: 9rem;
}

.search-text h1 {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
}

.search-text p {
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  padding-top: 1rem;
}

.search-box-div {
  padding-top: 8rem;
}

.search-box {
  margin-top: 14rem;
}

.search-box {
  margin-top: 14rem;
}

.search-widget {
  border: 1px solid rgb(140, 140, 140);
  border-top: none;
  padding: 31px;
  background: white;
  border-radius: 12px;
}

.search-widget .search-row {
  -ms-flex-wrap: inherit;
  flex-wrap: inherit;
}

.search-widget .search-button {
  width: 14.5%;
  border-radius: 0 15px 15px 0;
}

.hotel_widget .field {
  width: 21.5%;
}

.car_widget .field {
  width: 24%;
}

/* Tabs */
.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #fff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  margin-left: 2rem;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.tab {
  padding: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  font-weight: 500;
  color: #fff;
  border-bottom: 3px solid transparent;
  width: 106px;
}

.tab.active {
  background: #fff;
  color: rgb(0, 62, 219);
  font-weight: 600;
  border-top-left-radius: 14px;
  width: 106px;
}

.tab-icon {
  font-size: 16px;
}

/* Trip Options */
.trip-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
  gap: 0 20px;
}

.trip-types {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  border-right: 1px solid rgb(229, 229, 229);
  padding-right: 15px;
}

.radio-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3px;
  cursor: pointer;
  font-size: 14px;
  color: black;
}

.radio-option input[type="radio"] {
  display: none;
}

.radio-custom {
  width: 16px;
  height: 16px;
  border: 2px solid black;
  border-radius: 50%;
  position: relative;
}

.radio-option input[type="radio"]:checked+.radio-custom {
  border-color: #2563eb;
}

.radio-option input[type="radio"]:checked+.radio-custom::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #2563eb;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.one {
  color: rgb(0, 62, 219);
  font-size: 14px;
  font-weight: 600;
}

.checkbox-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #374151;
}

.checkbox-option input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  width: 16px;
  height: 16px;
  border: 2px solid #d1d5db;
  border-radius: 3px;
  position: relative;
}

.checkbox-option input[type="checkbox"]:checked+.checkbox-custom {
  background: #2563eb;
  border-color: #2563eb;
}

.checkbox-option input[type="checkbox"]:checked+.checkbox-custom::after {
  content: "✓";
  color: white;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.field.going {
  padding-left: 25px;
}

.departing,
.going {
  width: 19%;
}

/* Search Row */
.search-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border: 1px solid rgb(229, 229, 229);
  border-radius: 15px;
}

.search-row input {
  width: 100%;
  outline: 0;
  font-size: 20px;
  font-weight: 600;
}

.search-row input::-webkit-input-placeholder {
  color: #000000;
}

.search-row input::-moz-placeholder {
  color: #000000;
}

.search-row input:-ms-input-placeholder {
  color: #000000;
}

.search-row input::-ms-input-placeholder {
  color: #000000;
}

.search-row input::placeholder {
  color: #000000;
}

.field {
  padding: 8px;
  border-right: 1px solid #e5e7eb;
  position: relative;
}

.field:last-child {
  border-right: none;
}

.travellers {
  width: 268px;
}

.field-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: rgb(146, 146, 146);
  margin-bottom: 3px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.field-input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 24px;
  font-weight: 600;
  color: #111827;
  background: transparent;
  padding: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.field-sub {
  font-size: 11px;
  color: black;
  margin-top: 4px;
  line-height: 1.3;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.return-content {
  padding-top: 8px;
}

.return-text {
  font-size: 14px;
  color: rgb(146, 146, 146);
  line-height: 1.2;
}

.swap-btn {
  position: absolute;
  z-index: 1;
  right: -11px;
  cursor: pointer;
  top: 34px;
  padding: 5px 0;
  height: 24px;
  background: #fff;
  cursor: pointer;
}

.swap-btn img {
  width: 24px;
  height: 24px;
}

.popular_airports {
  display: none;
  position: absolute;
  top: 112px;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 11;
  padding: 27px;
  width: 348px;
  border: 1px solid rgb(229, 229, 229);
  border-radius: 16px;
}

.popular_airports .title {
  color: rgb(0, 62, 219);
  font-weight: 600;
  font-size: 18px;
}

.popular_airports ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 22px;
  margin-top: 15px;
  cursor: pointer;
}

.popular_airports .text_air {
  overflow: hidden;
}

.popular_airports span {
  display: inline-block;
  border-radius: 4px;
  width: 46px;
  height: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #f0f5f7;
}

.popular_airports strong {
  display: block;
  font-size: 16px;
  color: rgb(0, 0, 0);
  margin-bottom: 5px;
}

.popular_airports small {
  font-size: 12px;
  color: #929292;
}

.popular_airports small,
.popular_airports strong {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

/* Special Fares */
.special-fares {
  padding: 20px 0px 0;
}

.fares-title {
  font-size: 16px;
  font-weight: 500;
  color: rgb(19, 19, 19);
}

.extra-badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  background: rgb(0, 62, 219);
  color: white;
  padding: 10px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 10px;
  margin-top: 5px;
}

.star img {
  width: 20px;
  height: 20px;
}

.fare-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  border: 1px solid rgb(229, 229, 229);
  padding: 14px;
  border-radius: 10px;
  width: 55%;
}

.fare-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}

.fare-option input[type="radio"] {
  display: none;
}

.fare-radio {
  width: 16px;
  height: 16px;
  border: 2px solid black;
  border-radius: 50%;
  margin-top: 2px;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.fare-option input[type="radio"]:checked+.fare-radio {
  border-color: black;
}

.fare-option input[type="radio"]:checked+.fare-radio::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #2563eb;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.fare-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.fare-title {
  font-size: 16px;
  font-weight: 500;
  color: #131313;
  margin-bottom: 2px;
}

.fare-desc {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.3;
}

/* Search Button */
.search-button {
  width: 25%;
  background: rgb(0, 62, 219);
  color: white;
  border: none;
  padding: 16px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.search-button:hover {
  background: #1d4ed8;
}

.departing {
  position: relative;
}

.departing,
.going {
  -webkit-box-flex: unset !important;
  -ms-flex: unset !important;
  flex: unset !important;
}

.special-fares {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.home-containt {
  margin-top: 8rem;
}

/* Main Container for the Component */
.inspiration-container {
  background: url(../images/home/background_img.png) no-repeat;
  /* Matching the light blue-grey background from the image */
  padding: 25px;
  border-radius: 24px;
  background-size: cover;
}

/* Header Section (Title + Controls) */
.inspiration-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 24px;
  width: 100%;
}

.inspiration-title h2 {
  font-size: 34px;
  font-weight: 600;
  color: #1a202c;
  margin: 0;
}

.inspiration-title p {
  font-size: 18px;
  color: #000000;
  margin: 10px 0 0;
}

/* Right side controls (Toggle + Arrows) */
.header-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 70px;
}

.type-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
}

.toggle-btn {
  background-color: transparent;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #4a5568;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.toggle-btn.active {
  background-color: #0d2857;
  color: #ffffff;
}

/* Navigation Arrows Container */
.slider-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.swiper-button-prev,
.swiper-button-next {
  position: static;
  /* IMPORTANT: Overrides Swiper's default positioning */
  width: 36px;
  height: 36px;
  margin: 0;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.swiper-button-prev {
  border: 1px solid #003edb;
  background-color: #fff;
}

.swiper-button-next {
  background-color: #003edb;
  border: 1px solid #003edb;
}

/* Styling the actual arrow icon inside the buttons */
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 14px;
  font-weight: bold;
}

.swiper-button-prev::after {
  color: #003edb;
  border-color: #003edb;
}

.swiper-button-next::after {
  color: #ffffff;
}

/* Swiper Carousel Wrapper */
.swiper {
  width: 100%;
  height: 100%;
  overflow: visible;
  /* Allows shadows to be fully visible */
}

/* Individual Destination Card */
/* Destination Card Container */
.destination-card-container {
  position: relative;
  /* For absolute positioning of inner content */
  width: 100%;
  /* Fixed width as seen in the image */
  min-height: 375px;
  /* Adjust as needed, based on content */
  border-radius: 20px;
  /* Main card border-radius */
  overflow: hidden;
  /* Ensures image and content stay within rounded corners */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* To stack image and content block */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 1px solid rgb(205, 205, 205) s;
}

/* Image Styling */
.destination-card-image {
  width: 100%;
  height: 200px;
  /* Fixed height for the image */
  -o-object-fit: cover;
  object-fit: cover;
  /* Ensures image covers area without distortion */
  border-top-left-radius: 20px;
  /* Match container border-radius */
  border-top-right-radius: 20px;
  /* Match container border-radius */
}

/* Content Block Styling (The white part with text and button) */
.destination-card-content {
  position: absolute;
  /* Position relative to .destination-card-container */
  top: 175px;
  /* Adjust to overlap the image slightly */
  left: 0;
  right: 0;
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid rgb(205, 205, 205);
  padding: 25px;
  /* Extra padding at the top to give space for the overlap */
  -webkit-box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
  /* Shadow for the overlap effect */
  z-index: 1;
  /* Ensures content block sits above the image for overlap */
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  /* Align text to the left */
}

.destination-card-content h2 {
  font-size: 24px;
  font-weight: 600;
  color: #0f1632;
  margin: 0 0 8px 0;
}

.destination-card-content .price {
  font-size: 18px;
  font-weight: 600;
  color: #0f1632;
  margin: 10px 0;
}

.destination-card-content .details {
  font-size: 16px;
  color: #929292;
  margin: 0 0 15px 0;
  line-height: 1.5;
  font-weight: 400;
  overflow: hidden;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Book Flight Button */
.book-flight-btn {
  background-color: #003edb;
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 10px;
  /* Rounded corners for the button */
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 67%;
  padding: 15px;
  border-radius: 15px;
  font-size: 16px;
  font-weight: 600;
}

.book-flight-btn:hover {
  background-color: #1d4ed8;
}

.slider-nav {
  left: 45px;
  height: 5rem;
  border-bottom-left-radius: 20px;
  width: 88px;
  top: -1rem;
  position: relative;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.swiper-button-prev,
.swiper-button-next {
  height: 40px !important;
  width: 40px !important;
  margin: -10px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 15px !important;
}

.jour-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.jour-btn .dome {
  width: 181px;
  height: 48px;
  background: #0f1632;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

.jour-btn .inter {
  width: 181px;
  height: 48px;
  background: none;
  border: 1px solid #0f1632;
  color: #0f1632;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 10px;
  cursor: pointer;
}

.Journeys,
.Journeys-text {
  background: #f0f5f7;
  /* margin: 0 4%; */
  border-radius: 20px;
  /* margin-top: 80px; */
}

.Journeys .container,
.Journeys-text .container {
  background: #f0f5f7;
  padding: 25px;
  border-radius: 20px;
}

.Journeys .jour-text,
.Journeys-text .jour-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 12px 0 20px;
}

.Journeys .jour-text .long-text h1,
.Journeys-text .jour-text .long-text h1 {
  font-size: 34px;
  font-weight: 600;
}

.Journeys .jour-text .long-text p,
.Journeys-text .jour-text .long-text p {
  font-size: 18px;
  font-weight: 400;
  margin: 15px 0 10px;
}

.Journeys ul,
.Journeys-text ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 23.8px;
  margin-top: 1rem;
}

.Journeys ul li,
.Journeys-text ul li {
  width: 23.5%;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.Journeys ul li:hover .ptm,
.Journeys-text ul li:hover .ptm {
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  bottom: 0;
}

.Journeys ul li:hover strong,
.Journeys-text ul li:hover strong {
  font-size: 18px;
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

.Journeys ul li:hover span,
.Journeys-text ul li:hover span {
  font-size: 24px;
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

.Journeys ul li:hover .now-button,
.Journeys-text ul li:hover .now-button {
  display: inline-block;
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  margin-top: 18px;
}

.Journeys ul li::after,
.Journeys-text ul li::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      color-stop(35%, rgba(8, 0, 167, 0.03)),
      to(rgba(3, 0, 69, 0.8)));
  background: linear-gradient(180deg,
      rgba(8, 0, 167, 0.03) 35%,
      rgba(3, 0, 69, 0.8) 100%);
}

.Journeys ul li img,
.Journeys-text ul li img {
  width: 100%;
}

.ptm {
  position: absolute;
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  bottom: -70px;
  left: 0;
  right: 0;
  z-index: 1;
  color: #fff;
  margin: 0 25px 25px;
}

.ptm strong {
  display: block;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

.ptm span {
  font-size: 18px;
  display: block;
  font-weight: 600;
}

.now-button {
  display: block;
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  cursor: pointer;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #003edb;
  background: #fff;
  margin-top: 30px;
  padding: 9px 35px;
}

.choose {
  margin-top: 5rem;
}

.choose .choose-text {
  margin: 10px 0;
  text-align: center;
  font-size: 34px;
  font-weight: 600;
}

.choose ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 2rem;
}

.choose ul .choose-img {
  width: 32%;
  margin-bottom: 20px;
}

.choose ul .choose-img img {
  width: 100%;
}

.choose ul .slect-text {
  width: 32%;
  text-align: center;
  background: #f0f5f7;
  padding: 23px 0;
  border-radius: 20px;
  margin-bottom: 20px;
}

.choose ul .slect-text img {
  width: 60px;
  height: 60px;
}

.choose ul .slect-text .text-li {
  padding-top: 1rem;
  padding: 20px;
}

.choose ul .slect-text .text-li h1 {
  font-size: 24px;
  font-weight: 600;
  color: #05073c;
}

.choose ul .slect-text .text-li p {
  color: #05073c;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  margin-top: 10px;
}

.fandq {
  margin-top: 3rem;
}

.faq-section h2 {
  text-align: center;
  font-size: 34px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 32px;
}

/* Container for all FAQ items */
.faq-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

/* Individual FAQ item styling */
.faq-item {
  background-color: #f0f5f7;
  border-radius: 16px;
  padding: 20px;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* The clickable summary/question part */
.faq-item summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 24px;
  font-weight: 600;
  color: #05073c;
  list-style: none;
  /* Remove default marker */
}

/* Hide the default arrow on Firefox/Safari */
.faq-item summary::-webkit-details-marker {
  display: none;
}

/* The answer/content part */
.faq-content {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.6;
  padding-top: 16px;
  overflow: hidden;
  max-height: 0;
  /* Initially hidden */
  -webkit-transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
  transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
}

.faq-content p {
  font-size: 16px;
  font-weight: 400;
  color: #05073c;
}

/* Style for when the item is open */
.faq-item[open] .faq-content {
  max-height: 300px;
  /* Animate to this height when open */
}

/* Icon Styling */
.faq-icon {
  width: 24px;
  height: 24px;
  border: 2px solid #003edb;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  /* Prevent icon from shrinking */
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* Creating the + and - signs using pseudo-elements */
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  background-color: #003edb;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.faq-icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

/* When open, change icon to - sign */
.faq-item[open] .faq-icon {
  border-color: #aeb8c9;
}

.faq-item[open] .faq-icon::before {
  background-color: #aeb8c9;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.faq-item[open] .faq-icon::after {
  background-color: #aeb8c9;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.banner-cover {
  margin-top: 5rem;
  /* Gradient overlay */
}

.banner-cover .banner {
  position: relative;
  height: 330px;
  border-radius: 15px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: url("../images/home/banner-img.png") no-repeat center center/cover;
}

.banner-cover .banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear,
      left top,
      right top,
      color-stop(40%, rgba(0, 51, 102, 0.9)),
      to(rgba(0, 51, 102, 0)));
  background: linear-gradient(to right,
      rgba(0, 51, 102, 0.9) 40%,
      rgba(0, 51, 102, 0) 100%);
  z-index: 1;
}

.banner-cover .banner-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  max-width: 60%;
  color: #fff;
}

.banner-cover .banner-content h2 {
  font-size: 34px;
  font-weight: 600;
}

.banner-cover .banner-content p {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  margin: 23px 0;
}

.banner-cover .banner-content .btn {
  display: inline-block;
  background-color: #fff;
  padding: 17px;
  border-radius: 15px;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: #003edb;
}

.flight-links {
  background-color: #f0f0f0;
  margin-top: 5rem;
  padding: 3.5rem 0 3rem;
}

.flight-links .section {
  margin-bottom: 30px;
}

.flight-links .section h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #05073c;
}

.flight-links .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px 25px;
  /* row gap & column gap */
}

.flight-links .links a {
  width: 8%;
  font-size: 12px;
  text-decoration: none;
  color: #05073c;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  font-weight: 400;
}

.search-box-banner-two {
  background: -webkit-gradient(linear,
      left top,
      right top,
      from(rgba(3, 0, 69, 0.64)),
      to(rgba(255, 255, 255, 0))),
    url("../images/home/flight-banner.png");
  background: linear-gradient(90deg,
      rgba(3, 0, 69, 0.64) 0%,
      rgba(255, 255, 255, 0) 100%),
    url("../images/home/flight-banner.png");
  height: 500px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
}

.services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.service-box {
  background: #fff;
  border-radius: 12px;
  padding: 25px 30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid rgb(205, 205, 205);
}

.service-box i {
  font-size: 26px;
  color: #0056ff;
  margin-bottom: 12px;
}

.service-box p {
  font-size: 18px;
  font-weight: 600;
  margin: 20px 0 0;
  color: #333;
}

.Save-div {
  margin-top: 3rem;
}

.Save-div .save-text {
  text-align: center;
}

.Save-div .save-text h1 {
  font-size: 34px;
  font-weight: 600;
}

.Save-div .save-text p {
  font-size: 18px;
  font-weight: 400;
  padding: 20px 0;
}

.Save-div ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.Save-div ul li {
  width: 32%;
}

.Save-div ul li img {
  width: 100%;
}

.destinations-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.destinations-header h2 {
  font-size: 28px;
  font-weight: 600;
  color: #111;
}

.dropdown {
  border: 1px solid #003edb;
  padding: 6px 14px;
  border-radius: 15px;
  background: none;
  color: #003edb;
  font-size: 16px;
  cursor: pointer;
  width: 138px;
  height: 48px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}

.destinations-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.destination-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  width: 32%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.destination-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.destination-info {
  padding: 12px 16px;
}

.destination-info h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: #111;
}

.img-box {
  width: 45%;
}

.destination-info p {
  font-size: 15px;
  color: #929292;
  margin: 4px 0 6px;
  font-weight: 400;
}

.price-range {
  margin-top: 40px !important;
  line-height: 25px;
}

.destination-info .price {
  font-size: 22px;
  font-weight: 600;
  color: #643296;
}

.f-list {
  background: #fff;
  padding: 10px;
  border-radius: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
}

.f-item {
  width: 16%;
  text-align: center;
  border-right: 1px solid #e5e5e5;
}

.f-item img {
  width: 70px;
  height: 70px;
  padding-bottom: 15px;
}

.f-item h1 {
  font-size: 14px;
  font-weight: 600;
}

/* remove border for last item */
.f-item:last-child {
  border-right: none;
}

.search-box-banner-three {
  background: -webkit-gradient(linear,
      left top,
      right top,
      from(rgba(3, 0, 69, 0.64)),
      to(rgba(255, 255, 255, 0))),
    url("../images/home/hotlebanner.png");
  background: linear-gradient(90deg,
      rgba(3, 0, 69, 0.64) 0%,
      rgba(255, 255, 255, 0) 100%),
    url("../images/home/hotlebanner.png");
  height: 500px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
}

.Trending ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.Trending ul .trend-hadding {
  color: #0a00ca;
  font-size: 14px;
  font-weight: 600;
  background-color: transparent !important;
}

.Trending ul li {
  background-color: #f1f1f1;
  padding: 13px 15px;
  font-size: 14px;
  font-weight: 400;
  color: #131313;
  border-radius: 5px;
}

.Trending ul li.trend-hadding {
  padding: 0;
}

.travel-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #ffffff;
  /* The corners in the image are quite rounded */
  border-radius: 20px;
  padding: 8px;
  /* A soft, diffuse shadow to match the image's depth */
  -webkit-box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
  width: 32.32%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.travel-card-image {
  width: 110px;
  height: 110px;
  border-radius: 14px;
  /* Image corners are slightly less rounded than the card */
  -o-object-fit: cover;
  object-fit: cover;
  margin-right: 16px;
  /* Prevents the image from shrinking if the card width is constrained */
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.travel-card-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.travel-card-title {
  font-size: 24px;
  /* semibold (600) matches the image better than bold (700) */
  font-weight: 600;
  color: #1d1d1f;
  /* A very dark, off-black for a softer look */
  margin: 0;
  line-height: 1.2;
}

.travel-card-destinations {
  font-size: 15px;
  color: #888888;
  /* A medium grey for the destination text */
  margin: 10px 0 0 0;
  /* Prevents the text from wrapping to a new line */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  line-height: 20px;
}

/* Adds the space between the destination items */
.travel-card-destinations span {
  margin-right: 12px;
  color: #131313;
  font-size: 13px;
}

/* Removes the margin from the very last item */
.travel-card-destinations span:last-child {
  margin-right: 0;
}

.strikethrough {
  color: #131313;
  border-left: 1px solid gainsboro;
  border-right: 1px solid gainsboro;
  padding: 0 10px;
}

.destination-btn {
  width: 124px;
  height: 45px;
  background: #0a00ca;
  color: #fff;
  border: none;
  border-radius: 15px;
  margin-top: 40px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.price-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  border-top: 1px solid gainsboro;
  padding-top: 15px;
}

.price-btn span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #929292;
  font-weight: 600;
}

.price-btn span strong {
  font-weight: 700;
  font-size: 18px;
  color: black;
}

.price-btn .book-flight-btn {
  padding: 15px;
  font-size: 13px;
  width: 45%;
}

.car-fild {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.car-fild img {
  display: none !important;
}

.icon-two {
  display: none !important;
}

.add-more {
  font-size: 18px;
  text-align: center;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin-bottom: 25px;
  color: #fff;
  z-index: 1;
}

.black-btn {
  background-color: #fff !important;
  color: black !important;
}

.add-row {
  display: none !important;
}

.link-box {
  display: none !important;
}

.departure-date,
.return-date,
.travellers {
  width: 17%;
}

.search_button {
  width: 13.7%;
  border-radius: 0 15px 15px 0;
  overflow: hidden;
}

.search_button a,
.search_button button {
  background: rgb(100 50 150);
  cursor: pointer;
  width: 100%;
  height: 100%;
  font-size: 21px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.plus_icon {
  display: none;
}

.addtext {
  display: none;
}

.adults_row {
  display: none;
  position: absolute;
  z-index: 11;
  top: 112px;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 25px 25px 20px;
  width: 270px;
}

.adults_row ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 20px;
}

.adults_row ul li:last-child {
  border-bottom: 1px solid #e3e3e3;
}

.adults_row .title {
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}

.adults_row small {
  font-size: 12px;
  font-weight: 500;
  color: #929292;
}

.plus_minus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 18px;
}

.plus_minus strong {
  font-size: 16px;
  font-weight: 500;
}

.plusbtn,
.minusbtn {
  width: 37px;
  background: #f0f5f7;
  cursor: pointer;
  height: 37px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 8px;
  color: #929292;
}

.plusbtn {
  color: #0f1632;
}

.cabin_class .inner-title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  padding: 18px 0;
}

.cabin_class select {
  width: 100%;
  border: 1px solid #929292;
  padding: 9px 12px;
  font-size: 15px;
  border-radius: 8px;
  color: #000000;
  cursor: pointer;
}

.applybutton {
  width: 100%;
  color: #fff;
  text-align: center;
  background: #003edb;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  margin-top: 18px;
  border-radius: 8px;
  cursor: pointer;
}

.addcity_row {
  margin-top: 10px;
  display: none;
}

.addcity_row .search_button {
  margin-left: auto;
  width: 20%;
  border-radius: 15px;
  margin-top: 12px;
}

.addcity_row .search_button button {
  padding: 12px 0;
}

.addcity_row .field {
  width: 21.4%;
}

.addcity_button {
  width: 24%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 600;
  color: #003edb;
  cursor: pointer;
}

.close_addcity {
  width: 4%;
  cursor: pointer;
  border-radius: 0 15px 15px 0;
  background: #f0f5f7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.fullrow {
  position: relative;
}

.hotel_search_popup {
  display: none;
  position: absolute;
  top: 112px;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 11;
  padding: 27px;
  width: 348px;
  border: 1px solid rgb(229, 229, 229);
  border-radius: 16px;
}

.hotel_search_popup .heading {
  color: #003edb;
  font-size: 18px;
  font-weight: 600;
}

.hotel_search_popup ul li {
  margin-top: 18px;
}

.hotel_search_popup strong {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  display: block;
  margin-bottom: 5px;
  line-height: 20px;
}

.hotel_search_popup span {
  color: #929292;
  font-size: 12px;
  font-weight: 400;
}

.pickup_row {
  position: absolute;
  top: 112px;
  left: 0;
  right: 0;
  background: #fff;
  display: none;
  z-index: 11;
  border: 1px solid rgb(229, 229, 229);
  border-radius: 16px;
  padding: 5px 0;
}

.pickup_row ul li {
  padding: 15px 20px;
  border-bottom: 1px solid #e5e5e5;
  color: #000;
  font-size: 16px;
  cursor: pointer;
}

.pickup_row ul li:last-child {
  border-bottom: 0;
}

.pickup-time {
  position: absolute;
  width: 200px;
  display: none;
  top: 112px;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 11;
  border: 1px solid rgb(229, 229, 229);
  border-radius: 16px;
  padding: 15px;
}

.pickup-time .time_heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #f0f5f7;
  padding: 11px 0;
  border-radius: 4px;
}

.pickup-time .in_head {
  font-size: 18px;
  font-weight: 600;
  color: #0f1632;
}

.hr_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hr_row ul li {
  color: #0f1632;
  font-size: 14px;
  font-weight: 400;
  border-radius: 4px;
  padding: 8px 14px;
}

.hr_row ul li.active {
  background: #003edb;
  color: #fff;
  font-weight: 600;
}

.time_show {
  border-right: 1px solid #929292;
  padding: 0 14px;
}

.downarrow {
  position: absolute;
  right: 12px;
  top: 42px;
}

:root {
  --color-secondary: #003edb;
}

*,
::after,
::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

label.ampm-toggle {
  background-color: #fff;
  border: 1px solid #003edb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  vertical-align: middle;
  border-radius: 4px;
  overflow: hidden;
  width: 84px;
  height: 42px;
  margin: 0;
  cursor: pointer;
  z-index: 1;
  position: relative;
  font-size: 12px;
  font-weight: 500;
}

label.ampm-toggle:before,
label.ampm-toggle:after {
  color: var(--color-secondary);
  display: inline-block;
  width: 42px;
  height: 42px;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  line-height: 41px;
}

label.ampm-toggle:before {
  content: "AM";
}

label.ampm-toggle input {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  margin: 0;
  padding: 0;
  border: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0.1);
  filter: alpha(opacity=0.1);
  opacity: 0.001;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
}

label.ampm-toggle input:checked+.toggle-button {
  left: 42px;
}

label.ampm-toggle input:checked+.toggle-button:before {
  content: "PM";
}

label.ampm-toggle input[disabled]+.toggle-button {
  opacity: 0.7;
}

label.ampm-toggle input[disabled]~.toggle-off-txt {
  opacity: 0.5;
}

label.ampm-toggle .toggle-button {
  background: var(--color-secondary);
  border-radius: 3px;
  display: inline-block;
  padding: 0;
  margin: 0;
  width: 40px;
  height: 42px;
  background-clip: padding-box;
  white-space: nowrap;
  -webkit-transition: left 0.05s ease-in-out;
  transition: left 0.05s ease-in-out;
  position: absolute;
  z-index: 2;
  left: 0;
}

label.ampm-toggle .toggle-button:before {
  content: "AM";
  display: block;
  width: 42px;
  height: 42px;
  font-size: 12px;
  text-align: center;
  line-height: 40px;
  color: #fff;
}

label.ampm-toggle .toggle-off-txt {
  display: inline-block;
  width: 42px;
  height: 40px;
  position: absolute;
  right: 0;
  text-align: center;
  font-size: 12px;
  line-height: 40px;
}

label.ampm-toggle .toggle-off-txt:before {
  color: var(--color-secondary);
  content: "PM";
}

.air-row .departing {
  width: 14%;
}

.display_mobile {
  display: none;
}

.arrowrighticon {
  position: absolute;
  display: none;
  right: 15px;
  bottom: 20px;
  width: auto !important;
  height: auto;
  z-index: 1;
}

@media (max-width: 1366px) {

  .Journeys ul,
  .Journeys-text ul {
    gap: 17.8px;
  }

  .flight-links .links a {
    width: 9%;
    display: block;
  }

  .slider-nav {
    left: 70px;
  }
}

@media (max-width: 1300px) {

  .Journeys ul,
  .Journeys-text ul {
    gap: 16.8px;
  }
}

@media (max-width: 1200px) {

  .Journeys ul,
  .Journeys-text ul {
    gap: 20.8px;
  }

  .inspiration-title h2 {
    font-size: 30px;
  }

  .book-flight-btn {
    width: auto;
  }

  .Journeys .jour-text .long-text h1,
  .Journeys-text .jour-text .long-text h1 {
    font-size: 30px;
  }
}

@media (max-width: 1024px) {
  .search-box-banner {
    height: 340px;
  }

  .search-text p {
    font-size: 20px;
  }

  .search-widget {
    padding: 20px;
  }

  .search-text {
    top: 4rem;
  }

  .search-text h1 {
    font-size: 35px;
  }

  .search-box {
    margin-top: 7rem;
  }

  .search-row input {
    font-size: 18px;
  }

  .inspiration-title h2 {
    font-size: 25px;
  }

  .header-controls {
    margin: 0;
  }

  .return-text {
    font-size: 12px;
  }

  .search_button a,
  .search_button button {
    font-size: 20px;
  }

  .tab {
    font-size: 15px;
  }

  .inspiration-header {
    position: relative;
    margin-bottom: 75px;
  }

  .slider-nav {
    position: absolute;
    left: 90%;
    top: 54px;
  }

  .Journeys ul,
  .Journeys-text ul {
    gap: 17.8px;
  }

  .ptm {
    margin: 0 15px 15px;
  }

  .ptm strong {
    font-size: 20px;
  }

  .Journeys ul li:hover span,
  .Journeys-text ul li:hover span {
    font-size: 20px;
  }

  .Journeys .jour-text .long-text h1,
  .Journeys-text .jour-text .long-text h1 {
    font-size: 25px;
  }

  .Journeys .jour-text .long-text p,
  .Journeys-text .jour-text .long-text p {
    font-size: 16px;
  }

  .inspiration-title p {
    font-size: 16px;
  }

  .destination-card-content h2 {
    font-size: 20px;
  }

  .book-flight-btn {
    font-size: 15px;
    padding: 10px 25px;
  }

  .destination-card-content .price {
    font-size: 16px;
  }

  .destination-card-content .details {
    font-size: 14px;
  }

  .choose .choose-text {
    font-size: 25px;
  }

  .choose ul .slect-text .text-li h1 {
    font-size: 19px;
  }

  .choose ul .slect-text .text-li p {
    font-size: 15px;
  }

  .faq-section h2 {
    font-size: 25px;
  }

  .faq-item summary {
    font-size: 19px;
  }

  .faq-content p {
    font-size: 15px;
  }

  .banner-cover .banner-content h2 {
    font-size: 25px;
  }

  .banner-cover .banner-content .btn {
    font-size: 15px;
  }

  .flight-links .section h4 {
    margin-bottom: 20px;
  }

  .flight-links .links a {
    width: 14%;
  }
}

@media (max-width: 992px) {}

@media (max-width: 767px) {
  .flight-links .links a {
    display: block;
    margin-bottom: 15px;
  }

  .des_row .container {
    background: #f0f5f7;
  }

  .home-containt {
    margin-top: 0;
  }

  .destination-card-content.mbcar {
    top: inherit;
    bottom: 0;
  }

  .price-btn {
    display: block;
  }

  .price-btn .price {
    font-size: 16px;
  }

  .price-btn .book-flight-btn {
    width: 100%;
    margin-top: 15px;
  }

  .arrowrighticon {
    display: inline-block;
  }

  .mbrow strong {
    font-size: 16px;
    text-align: left;
    left: 15px;
  }

  .mt_none {
    margin-top: 0 !important;
  }

  .search-box-banner-three {
    height: auto;
    padding-bottom: 20px;
    position: relative;
  }

  .search-box-banner-three::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(4, 0, 83, 0.8);
  }

  .search-box-banner-three .container {
    z-index: 1;
    position: relative;
  }

  .destinations-grid {
    height: 547px;
    overflow: hidden;
  }

  .hotel_search_popup {
    top: 74px;
  }

  .mb_right {
    left: inherit;
    right: -14px;
    text-align: left;
  }

  .hotel_widget .field {
    width: 50%;
  }

  .hotel_widget .field.travellers,
  .hotel_widget .field.fullrow {
    width: 100%;
  }

  .hotel_widget .mb_text {
    text-align: right;
  }

  .hotel_widget .mb_text input {
    text-align: right;
  }

  .tabs {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .downarrow {
    top: 22px;
    right: 15px;
  }

  .search-text h1 {
    font-size: 25px;
    line-height: 38px;
    margin-bottom: 20px;
    text-align: center;
  }

  .search-text P {
    font-size: 16px;
    line-height: 25px;
    display: none;
  }

  .search-box {
    margin: 0;
    position: relative;
  }

  .search-text {
    top: 0;
    padding: 25px 0 0;
  }

  .search-box-banner {
    height: auto;
    padding-bottom: 20px;
    position: relative;
  }

  .search-box-banner::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(4, 0, 83, 0.8);
  }

  .search-box-banner .container {
    z-index: 1;
    position: relative;
  }

  .tab.active {
    width: auto;
  }

  .trip-options {
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .one {
    font-size: 12px;
  }

  .checkbox-option {
    margin-top: 11px;
  }

  .search-widget .search-row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border: 0;
  }

  .search-box input {
    font-size: 16px;
    font-weight: 500;
  }

  .search-widget {
    padding: 15px;
  }

  .trip-types {
    padding: 0;
    border: 0;
    gap: 0px;
  }

  .search-row {
    margin: 0;
  }

  .field-label {
    font-weight: 400;
  }

  .search-row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
  }

  .field {
    width: 50%;
    border: 0;
    border: 1px solid #e5e7eb;
    border-bottom: 0;
  }

  .field:last-child {
    border-bottom: 1px solid #e5e7eb;
  }

  .going {
    border-left: 1px solid #e5e7eb;
    text-align: right;
  }

  .going input {
    text-align: right;
  }

  .going .field-input {
    text-align: right;
  }

  .field-input {
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .special-fares {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .fare-options {
    width: 100%;
    padding: 14px 0;
    gap: 10px;
    border: 0;
    overflow: auto;
    white-space: nowrap;
  }

  .fare-desc {
    display: none;
  }

  .search-widget .search-button {
    width: 100%;
    margin-top: 10px;
    border-radius: 8px;
  }

  .search-button {
    width: 100%;
    font-size: 18px;
  }

  .tab {
    font-size: 14px;
    padding: 10px;
  }

  .display_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .special-fares {
    padding: 15px 0;
  }

  .fare-title {
    font-size: 14px;
  }

  .travellers {
    width: 100%;
    border-bottom: 1px solid #e5e7eb;
  }

  .search_button {
    width: 100%;
  }

  .search_button button {
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    height: auto;
  }

  .mb_none {
    display: none;
  }

  .popular_airports {
    width: 326px;
    top: 70px;
  }

  .adults_row {
    top: 80px;
    width: 100%;
  }

  .mbdiv {
    right: 0;
    left: inherit;
    text-align: left;
  }

  .bg_mb.container {
    padding-left: 0;
    padding-right: 0;
  }

  .bg_mb.container .Journeys {
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 0;
  }

  .swiper-box {
    background: #f0f5f7;
    padding: 60px 0 30px;
  }

  .inspiration-container {
    background: none;
    padding: 0;
  }

  .extra-badge {
    margin: 5px 0;
    font-size: 13px;
    padding: 8px;
    gap: 3px;
    background-color: #f4f4f4;
    color: #003edb;
  }

  .inspiration-header {
    display: block;
  }

  .inspiration-header h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
  }

  .inspiration-header p {
    font-size: 16px;
    display: block;
    margin-bottom: 15px;
  }

  .inspiration-title p {
    font-size: 15px;
  }

  .jour-btn .inter,
  .jour-btn .dome {
    font-size: 14px;
    padding: 14px 0;
    width: 136px;
    height: 48px;
  }

  .slider-nav {
    left: inherit;
    right: 20px;
    gap: 40px;
    display: none;
  }

  .Journeys {
    margin: 0;
    padding: 15px;
    border-radius: 0;
  }

  .radio-custom {
    width: auto;
    height: auto;
    opacity: 0;
  }

  .checkbox-option {
    display: none;
  }

  .return-content {
    display: none;
  }

  .return-date {
    border-left: 1px solid #e5e7eb;
    text-align: right;
  }

  .addtext {
    display: block;
    color: #929292;
    font-size: 12px;
  }

  .field-sub {
    display: none;
  }

  .car-fild {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .car-fild img {
    width: 15px;
    height: 10px;
    cursor: pointer;
  }

  .car_widget .field {
    width: 50%;
  }

  .car_widget .mb_text {
    text-align: right;
  }

  .car_widget .mb_text input {
    text-align: right;
  }

  .radio-text {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 6px 10px;
  }

  .fares-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .fares-title {
    font-size: 12px;
    font-weight: 600;
    margin-right: 8px;
  }

  .fare-radio {
    display: none;
  }

  .fare-title {
    border: 1px solid #e5e5e5;
    padding: 7px 10px;
    border-radius: 8px;
    font-weight: 400;
  }

  .book-flight-btn {
    padding: 16px 30px;
    width: auto;
    border-radius: 16px;
  }

  .inspiration-container .swiper-slide {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 73% !important;
  }

  .inspiration-container.flightslider .swiper-slide {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 41% !important;
    margin-right: 25px !important;
  }

  .inspiration-container.flightslider .swiper-slide .service-box {
    width: 100%;
  }

  .inspiration-container.flightslider .swiper-wrapper {
    padding-bottom: 2px;
  }

  .Journeys {
    margin-top: 35px;
    padding: 20px 0;
  }

  .Journeys .container {
    padding: 0 15px;
  }

  .Journeys .jour-text,
  .Journeys-text .jour-text {
    display: block;
  }

  .Journeys .jour-text .long-text h1,
  .Journeys-text .jour-text .long-text h1 {
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 30px;
    font-weight: 600;
  }

  .Journeys .jour-text .long-text p,
  .Journeys-text .jour-text .long-text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
  }

  .Journeys ul {
    display: block;
    white-space: nowrap;
    overflow: scroll;
  }

  .Journeys ul li {
    display: inline-block;
    width: 70%;
    margin-right: 15px;
  }

  .ptm strong {
    font-size: 20px;
    font-weight: 600;
  }

  .choose .choose-text {
    font-size: 24px;
  }

  .choose ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .choose ul .slect-text {
    width: 100%;
  }

  .choose ul .slect-text .text-li h1 {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .choose ul .slect-text .text-li p {
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    padding: 0 43px;
  }

  .choose ul .choose-img {
    display: none;
  }

  .faq-item {
    border-radius: 8px;
    padding: 15px;
  }

  .faq-item summary {
    font-size: 17px;
  }

  .faq-content p {
    font-size: 14px;
    text-align: justify;
  }

  .banner-cover {
    margin-top: 30px;
  }

  .banner-cover .banner {
    height: auto;
  }

  .banner-cover .banner-content {
    max-width: 100%;
  }

  .banner-cover .banner-content h2 {
    font-size: 20px;
    line-height: 30px;
  }

  .banner-cover .banner-content .btn {
    width: auto;
  }

  .flight-links {
    padding: 1rem 0;
    margin-top: 25px;
  }

  .flight-links .section {
    margin-bottom: 0;
    padding: 5px 30px;
    border-bottom: 1px solid #d1d1d1;
  }

  .flight-links .section:last-child {
    border: 0;
  }

  .flight-links .section h4 {
    margin: 18px 0;
    position: relative;
    cursor: pointer;
  }

  .flight-links .links {
    height: 180px;
    overflow: hidden;
    display: none;
  }

  .flight-links .links a {
    width: 100%;
  }

  .plus_icon {
    position: absolute;
    left: -29px;
    top: -4px;
    width: 19px;
    height: 19px;
    border: 2px solid #0f1632;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .plus_icon::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 2px;
    background-color: #0f1632;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  .plus_icon::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 2px;
    background-color: #0f1632;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .search-box-banner-two {
    height: auto;
  }

  .service-box p {
    line-height: 26px;
  }

  .home-containt.bg_none {
    background: none;
  }

  .Save-div .save-text h1 {
    font-size: 24px;
  }

  .Save-div ul {
    display: block;
    white-space: nowrap;
    overflow: scroll;
  }

  .Save-div ul li {
    display: inline-block;
    width: 100%;
    margin-right: 10px;
  }

  .destinations-header {
    display: block;
  }

  .destinations-header h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .destination-card {
    width: 100%;
    margin-bottom: 25px;
  }

  .destination-card .price,
  .destination-card h3 {
    font-size: 20px;
  }

  .f-list {
    overflow: auto;
    white-space: nowrap;
    display: block;
  }

  .f-item {
    display: inline-block;
    width: auto;
    padding: 0 20px;
  }

  .f-item img {
    padding: 0;
  }

  .fullrow {
    width: 100%;
  }

  .Trending {
    width: 100%;
  }

  .Trending ul {
    overflow: scroll;
    white-space: nowrap;
    margin-bottom: 8px;
  }

  .Trending ul li {
    border: 1px solid #e5e5e5;
    margin-bottom: 6px;
    padding: 7px 10px;
    border-radius: 8px;
    font-weight: 400;
    display: inline-block;
  }

  .air-row .departing,
  .air-row .travellers {
    width: 100%;
  }

  .travel-card-title {
    font-size: 20px;
  }

  .travel-card {
    width: 82%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 10px;
  }

  .travel-card-destinations {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 6px 0px;
  }

  .icon-one {
    display: none !important;
  }

  .icon-two {
    display: block !important;
  }

  .black-btn {
    background-color: black !important;
    color: #fff !important;
    border: none !important;
  }

  .hide-row {
    display: none;
  }

  .add-row {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    cursor: pointer;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid gainsboro;
    border-radius: 10px;
    margin-top: 0rem;
  }

  .link-box {
    width: 100%;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    text-decoration: underline;
    color: #003edb;
    padding: 12px 0;
  }

  .link-box a {
    color: #003edb;
  }
}

.searchbar {
  position: relative;
  bottom: -70px;
}

.banner_row {
  padding-top: 50px;
  background: -webkit-gradient(linear,
      left top,
      right top,
      from(rgba(3, 0, 69, 0.64)),
      to(rgba(255, 255, 255, 0))),
    url("../images/home/banner-new.png");
  background: linear-gradient(90deg,
      rgba(3, 0, 69, 0.64) 0%,
      rgba(255, 255, 255, 0) 100%),
    url("../images/home/banner-new.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: right;
}

.banner_row .heading {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  line-height: 60px;
}

.b_text {
  font-size: 22px;
  color: #fff;
  padding: 10px 0 40px;
}

.search-box-banner.flight_resultsearch {
  height: auto;
  padding: 20px 0;
}

.search-box-banner.flight_resultsearch .search-box {
  margin: 0;
}

.flight_results {
  padding: 30px 0;
  background: #eee;
}

.flight_results .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flight_fliters {
  width: 24%;
  background: #fff;
  border-radius: 12px;
}

.flight_fliters .heading {
  font-size: 18px;
  font-weight: 500;
  padding: 15px;
  border-bottom: 1px solid #dbdde0;
}

.flight_fliters .inner-box {
  padding: 0 15px;
}

.filter-group .form-group {
  margin-top: 15px;
}

.filter-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.filter-group label {
  position: relative;
  cursor: pointer;
  font-weight: 400;
  font-size: 15px;
}

.filter-group label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #003edb;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
    inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
    inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
  border-radius: 3px;
}

.filter-group input:checked+label:after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 8px;
  width: 6px;
  height: 14px;
  border: solid #003edb;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.filters_info {
  padding: 15px 0;
  border-bottom: 1px solid #dbdde0;
}

.filters_info:last-child {
  border-bottom: 0;
}

.filters_info .title {
  font-size: 16px;
  font-weight: 600;
}

.filters_info picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 15px 0;
}

.filters_info picture img {
  width: 100%;
}

.minmax {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.minmax span {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
}

.bdt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bdt strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-top: 4px;
}

.dep_box {
  margin-top: 15px;
}

.dep_box p {
  font-size: 14px;
}

.dep_box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 5px;
  padding: 8px;
  margin: 10px 0 20px;
  border-radius: 5px;
  border: 1px solid #bcc9dc;
}

.dep_box ul li {
  width: 25%;
  text-align: center;
  cursor: pointer;
}

.dep_box .anyspace {
  padding: 12px 8px;
}

.dep_box small {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  font-weight: 400;
}

.dep_box i {
  display: inline-block;
  background: url(../images/home/weather.svg) no-repeat 0;
  height: 16px;
  width: 16px;
}

.dep_box .icon1 {
  background-position: -20px 0;
}

.dep_box .icon2 {
  background-position: -41px 0;
}

.dep_box .icon3 {
  background-position: -60px 0;
}

.flight_r_right {
  width: 74%;
}

.cheapfast {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.cheapfast li {
  width: 33%;
  text-align: center;
  padding: 5px 0;
}

.cheapfast li:hover,
.cheapfast li.active {
  background: #0f1632;
  color: #fff;
  cursor: pointer;
}

.cheapfast strong {
  display: block;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 5px;
}

.price_line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  gap: 5px;
}

.price_line span {
  font-size: 14px;
}

.flight_de_info {
  border-radius: 10px;
  background-color: #ffffff;
  margin: 15px 0px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.0509803922);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.0509803922);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.air_info-box {
  width: 74%;
  padding: 15px;
  border-right: 1px solid #d6d6d6;
}

.inner_in_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 20px;
  padding: 10px;
  text-transform: capitalize;
}

.air_box {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.air_box picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 30%;
}

.air_box picture img {
  width: 100%;
  border-radius: 5px;
}

.air_box span {
  display: inline-block;
  width: 50%;
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
}

.fligt_pt {
  width: 70%;
}

.f_time,
.del_dxb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.f_time img {
  position: relative;
  top: 3px;
}

.f_time strong {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  color: #191919;
}

.f_time small {
  color: #696969;
  font-size: 13px;
}

.borderline {
  padding: 10px 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.borderline hr {
  color: #c9c9c9;
  width: 90%;
}

.borderline em {
  height: 13px;
  width: 14px;
  border: 1px solid #c9c9c9;
  border-radius: 50px;
  display: inline-block;
  position: absolute;
  left: 14px;
  background-color: #fff;
}

.borderline .right {
  right: 14px;
  left: inherit;
}

.del_dxb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.del_dxb span {
  color: #2563eb;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.result_price {
  width: 26%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.result_price strong {
  font-size: 28px;
  font-weight: 600;
}

.result_price small {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #717171;
  margin: 10px 0;
}

.sbtn {
  background: #643296;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 40px;
  border-radius: 5px 0 5px 0;
  color: #fff;
  font-weight: 600;
}

.ft_details {
  width: 100%;
  border-top: 1px solid #d6d6d6;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.ft_details span {
  font-size: 15px;
  font-weight: 500;
  padding: 16px 0;
  display: inline-block;
  cursor: pointer;
}

.ft_details img {
  vertical-align: middle;
  margin-left: 2px;
}

.flight_slide {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100%;
  bottom: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  width: 700px;
  background: #ecf3fe;
  z-index: 11;
}

.flight_slide.active {
  right: 0;
}

.flight_slide .heading {
  color: #000;
  padding: 15px;
  margin: 0 15px;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 2px solid #003edb;
  cursor: pointer;
  display: inline-block;
}

.flight_slide .inner-box {
  height: 100%;
  overflow-y: auto;
  padding-bottom: 50px;
}

.close_info {
  position: absolute;
  cursor: pointer;
  right: 20px;
  top: 5px;
}

.close_info img {
  width: 40px;
}

.flight_leg {
  padding: 18px;
  background: #fff;
  margin: 15px 15px 22px;
  border-radius: 10px;
}

.flight_leg h2 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

.flight-summary-row {
  border-bottom: 1px solid #dbdde0;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.flight-summary-row .subheading {
  font-size: 18px;
  font-weight: 600;
  margin: 8px 0 6px;
}

.flight-summary-row p {
  color: #5d6974;
  font-size: 14px;
}

.gulf-air {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.gulf-air img {
  height: 24px;
}

.flight_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flight-time-duration {
  width: 30%;
  text-align: right;
  border-right: 1px solid #1d4da2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-right: 25px;
  position: relative;
}

.flight-time-duration::after,
.flight-time-duration::before {
  background: #eef8fb;
  border: 1px solid #1d4da2;
  border-radius: 100%;
  content: "";
  display: inline-block;
  height: 11px;
  position: absolute;
  right: -6px;
  width: 11px;
}

.flight-time-duration::before {
  bottom: 0;
}

.time-date-text strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.time-date-text small {
  font-size: 14px;
  font-weight: 400;
  color: #5d6974;
}

.clocktext span {
  color: #5d6974;
  font-size: 15px;
  font-weight: 400;
  display: inline-block;
}

.clocktext img {
  vertical-align: middle;
}

.flight-airport {
  width: 66%;
}

.flight-roots .title {
  font-size: 18px;
  font-weight: 500;
}

.flight-roots p {
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #5d6974;
  padding: 5px 0;
  font-weight: 400;
}

.flight-roots span {
  font-size: 15px;
  color: #003edb;
  font-weight: 600;
}

.flight-gif-roots {
  margin: 50px 0;
}

.flight-gif-roots img {
  height: 24px;
  vertical-align: middle;
  margin-right: 5px;
}

.flight-gif-roots span {
  font-size: 15px;
  font-weight: 400;
  display: block;
  margin-bottom: 5px;
}

.flight-gif-roots p {
  font-size: 14px;
  color: #5d6974;
}

.flightlayover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 25px 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fffae6;
  border-radius: 8px;
  padding: 25px;
}

.flightlayover .time-text {
  width: 30%;
  text-align: right;
  padding-right: 25px;
  font-weight: 600;
  font-size: 15px;
  position: relative;
}

.flightlayover .time-text::before {
  background: #bcc9dc;
  border-radius: 100%;
  content: "";
  display: inline-block;
  height: 11px;
  right: 4px;
  position: absolute;
  top: calc(50% - 5px);
  width: 11px;
}

.flightlayover .time-text::after {
  border-right: 1px dashed #bcc9dc;
  content: "";
  display: inline-block;
  height: 90px;
  right: 9px;
  position: absolute;
  top: -37px;
}

.flight-change {
  width: 66%;
  font-size: 15px;
  font-weight: 400;
}

.flight-change img {
  vertical-align: middle;
  margin-right: 5px;
}

.fare_rules {
  font-size: 15px;
  border-left: 1px dashed #d6d6d6;
  font-weight: 500;
  padding: 14px;
  display: inline-block;
  cursor: pointer;
}

.baggage_details,
.fare_summary {
  font-size: 15px;
  border-left: 1px dashed #d6d6d6;
  font-weight: 500;
  padding: 14px;
  display: inline-block;
  cursor: pointer;
}

.baggage_info {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100%;
  bottom: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  width: 800px;
  background: #fff;
  z-index: 11;
}

.baggage_info.active {
  right: 0;
}

.close_baggage {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #000;
}

.close_baggage img {
  width: 25px;
}

.fare_summary_info {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100%;
  bottom: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  width: 800px;
  background: #fff;
  z-index: 11;
}

.fare_summary_info.active {
  right: 0;
}

.inner_baggage {
  background: rgba(214, 214, 214, 0.2392156863);
  position: relative;
  margin: 25px;
  border-radius: 6px;
  padding: 10px;
  border: 1px dashed #c9c9c9;
}

.inner_baggage h3 {
  display: inline-block;
  padding: 15px;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 2px solid #003edb;
  cursor: pointer;
}

.inner_baggage .box {
  padding: 10px 0;
}

.inner_baggage .title {
  background: rgba(209, 230, 249, 0.3411764706);
  padding: 15px;
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  border-radius: 5px;
}

.inner_baggage span {
  color: #003edb;
  font-weight: 600;
  font-size: 17px;
  display: inline-block;
}

.inner_baggage table {
  font-family: inherit;
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 15px;
}

.inner_baggage table th {
  background: #003edb;
  color: #fff;
}

.inner_baggage table th,
.inner_baggage table td {
  border: 1px solid #ddd;
  padding: 10px;
  vertical-align: middle;
  font-size: 14px;
  text-align: center;
  font-weight: 400;
}

.inner_baggage table td {
  background: #fff;
}

.sum_baggage {
  background: rgba(214, 214, 214, 0.2392156863);
  position: relative;
  margin: 25px;
  border-radius: 6px;
  padding: 10px;
  border: 1px dashed #c9c9c9;
}

.sum_baggage h3 {
  display: inline-block;
  padding: 15px;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 2px solid #003edb;
  cursor: pointer;
}

.sum_baggage .box {
  padding: 10px 0;
}

.sum_baggage .title {
  background: rgba(209, 230, 249, 0.3411764706);
  padding: 15px;
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  border-radius: 5px;
}

.sum_baggage span {
  color: #003edb;
  font-weight: 600;
  font-size: 17px;
  display: inline-block;
}

.sum_baggage table {
  font-family: inherit;
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 15px;
}

.sum_baggage table th {
  background: #003edb;
  color: #fff;
}

.sum_baggage table th,
.sum_baggage table td {
  border: 1px solid #ddd;
  padding: 10px;
  vertical-align: middle;
  font-size: 14px;
  text-align: center;
  font-weight: 400;
}

.sum_baggage table td {
  background: #fff;
}

.sum_baggage strong {
  font-size: 14px;
  font-weight: 600;
}

.farerule_popup {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100%;
  bottom: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  width: 500px;
  background: #ecf3fe;
  z-index: 11;
}

.farerule_popup.active {
  right: 0;
}

.fare_inner {
  margin: 25px;
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  overflow-y: auto;
  height: 100vh;
  padding-bottom: 50px;
}

.fare_inner .top-title {
  margin-bottom: 15px;
}

.fare_inner .top-title span {
  color: #000;
  padding: 11px;
  display: inline-block;
  cursor: pointer;
  border-radius: 5px 5px 5px 0;
}

.fare_inner .top-title span.active {
  background: #003edb;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
}

.close_fare {
  position: absolute;
  cursor: pointer;
  right: 5px;
  top: 5px;
  background: #000;
  border-radius: 5px;
  height: 30px;
  width: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.close_fare img {
  width: 28px;
}

.fare_inputbox ul li {
  padding-bottom: 15px;
}

.intabs {
  display: block;
  border: 1px solid #eee;
  border-radius: 5px;
  padding: 14px 15px;
  font-size: 14px;
  font-weight: 500;
  background: url(../images/home/down-arrow.svg) no-repeat 95%;
  cursor: pointer;
}

.tabtexts {
  padding: 10px;
  display: none;
  text-transform: lowercase;
  text-align: justify;
  line-height: 20px;
  font-size: 14px;
  font-weight: 400;
}

.tabtexts.show {
  display: inline-block;
}

.mobile_filter {
  display: none;
}

@media (max-width: 767px) {
  .flight_slide {
    right: -1000%;
  }

  .mobile_filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    background: #003edb;
    border-radius: 5px;
    color: #fff;
    padding: 12px 25px;
    gap: 5px;
    letter-spacing: 1px;
    font-weight: 500;
  }

  .mobile_filter img {
    width: 20px;
  }

  .flight_fliters {
    width: 82%;
    z-index: 11;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    position: fixed;
    top: 0;
    left: -100%;
    background: #fff;
    transition: all 0.4s ease-in-out;
    bottom: 0;
    overflow-y: scroll;
    padding-bottom: 200px;
  }

  .flight_fliters.active {
    left: 0;
  }

  .flight_r_right {
    width: 100%;
    margin-top: 12px;
  }

  .cheapfast {
    display: none;
  }

  .air_info-box {
    width: 100%;
    border: 0;
  }

  .inner_in_info {
    padding: 0;
    gap: 12px;
    margin-bottom: 35px;
  }

  .inner_in_info:last-child {
    margin-bottom: 0;
  }

  .air_box {
    display: block;
    width: 20%;
  }

  .air_box picture {
    width: 55%;
  }

  .air_box span {
    font-size: 12px;
    line-height: 15px;
    width: auto;
    font-weight: 400;
    margin-top: 3px;
  }

  .result_price {
    width: 100%;
    border-top: 1px solid #d6d6d6;
    padding: 20px 0;
  }

  .result_price strong {
    font-size: 23px;
  }

  .result_price button {
    font-size: 15px;
    padding: 11px 30px;
  }

  .f_time strong {
    font-size: 14px;
  }

  .f_time small {
    font-size: 12px;
  }

  .borderline {
    padding: 3px 0;
  }

  .borderline em {
    left: 0;
  }

  .borderline .right {
    right: 0;
  }

  .filters_info .title {
    font-size: 15px;
  }

  .filter-group label {
    font-size: 14px;
  }

  .filter-group label:before {
    padding: 9px;
    margin-right: 8px;
  }

  .filter-group input:checked+label:after {
    border-width: 0 2px 2px 0;
  }

  .minmax span {
    font-size: 13px;
  }

  .bdt strong {
    font-size: 14px;
  }

  .close_info img {
    width: 28px;
  }

  .flight_slide {
    width: 100%;
  }

  .flight_slide .heading {
    font-size: 16px;
    padding: 12px;
  }

  .flight_leg h2 {
    font-size: 15px;
    font-weight: 500;
  }

  .gulf-air {
    font-size: 15px;
  }

  .flight-summary-row {
    margin-bottom: 18px;
    padding-bottom: 18px;
  }

  .flight-summary-row .subheading {
    font-size: 15px;
    font-weight: 500;
  }

  .flight_wrapper {
    gap: 0;
  }

  .time-date-text strong {
    font-size: 14px;
  }

  .time-date-text small {
    font-size: 13px;
  }

  .flight-time-duration {
    padding-right: 15px;
    width: 32%;
  }

  .flight-roots .title {
    font-size: 14px;
  }

  .flight-roots p {
    font-size: 12px;
  }

  .flight-roots span {
    font-size: 12px;
  }

  .flight-airport {
    width: 63%;
  }

  .flightlayover .time-text {
    width: 32%;
    font-size: 14px;
    font-weight: 500;
  }

  .flight-change {
    font-size: 14px;
  }

  .clocktext span {
    font-size: 14px;
  }

  .flight-gif-roots span {
    font-size: 14px;
  }

  .flight-gif-roots p {
    font-size: 13px;
  }

  .flight_slide .inner-box {
    padding-bottom: 210px;
  }

  .baggage_info,
  .fare_summary_info,
  .farerule_popup {
    right: -1000%;
  }

  .ft_details {
    white-space: nowrap;
    overflow: auto;
    display: block;
  }

  .ft_details span {
    padding: 15px;
  }

  .fare_inner,
  .inner_baggage,
  .sum_baggage {
    padding: 15px;
    margin: 0;
  }

  .farerule_popup,
  .baggage_info,
  .fare_summary_info {
    width: 100%;
  }

  .sum_baggage table th,
  .sum_baggage table td {
    font-size: 13px;
  }
}

.flight-details-page {
  background: #eee;
  padding: 35px 0;
}

.flight-details-page .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.enter_form {
  width: 65%;
}

.flight-enter-info {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
}

.user_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.user_head figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #f2f2f2;
  border-radius: 50px;
}

.sp_top {
  margin-top: 25px;
}

.appear {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  margin: 15px 0;
  padding: 12px;
  border-radius: 5px;
  background: #fff8e6;
  font-size: 15px;
  font-weight: 400;
}

.one-adult {
  border: 1px solid #bfbfbf;
  padding: 15px;
  border-radius: 8px;
}

.adult-input {
  background: #f2f2f2;
  margin: 15px;
  padding: 15px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.adult-input .input-group {
  width: 37%;
}

.adult-input .md {
  width: 20%;
}

.adult-input label {
  display: block;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 8px;
}

.adult-input input,
.adult-input select {
  width: 100%;
  background: #fff;
  border: 1px solid #bfbfbf;
  padding: 10px 15px;
  border-radius: 8px;
  outline: 0;
  font-size: 14px;
  color: #6c5454;
}

.adult-input input::-webkit-input-placeholder,
.adult-input select::-webkit-input-placeholder {
  color: #6c5454;
}

.adult-input input::-moz-placeholder,
.adult-input select::-moz-placeholder {
  color: #6c5454;
}

.adult-input input:-ms-input-placeholder,
.adult-input select:-ms-input-placeholder {
  color: #6c5454;
}

.adult-input input::-ms-input-placeholder,
.adult-input select::-ms-input-placeholder {
  color: #6c5454;
}

.adult-input input::placeholder,
.adult-input select::placeholder {
  color: #6c5454;
}

.deta_input_row {
  width: 50%;
}

.in_type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

.in_type select {
  width: 40%;
}

.in_type .hf {
  width: 24%;
}

.passport_Info .adult-input {
  background: none;
  padding: 15px 0;
  margin: 0;
}

.passport_Info .input-group {
  width: 48%;
}

.optional_box {
  width: 100%;
  margin-top: 10px;
}

.optional_box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
}

.optional_box ul li {
  width: 48%;
}

.drop_optional {
  font-size: 15px;
  font-weight: 400;
  display: inline-block;
  cursor: pointer;
  border-bottom: 2px solid #003edb;
  padding-bottom: 5px;
}

.drop_optional img {
  vertical-align: middle;
  margin-left: 3px;
}

.optional_box_show {
  display: none;
}

.contact_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.contact_info .input_row {
  width: 48.5%;
}

.contact_info label {
  display: block;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 8px;
}

.contact_info input,
.contact_info select {
  width: 100%;
  background: #fff;
  border: 1px solid #bfbfbf;
  padding: 10px 15px;
  border-radius: 8px;
  outline: 0;
  font-size: 14px;
  color: #6c5454;
}

.contact_info input::-webkit-input-placeholder,
.contact_info select::-webkit-input-placeholder {
  color: #6c5454;
}

.contact_info input::-moz-placeholder,
.contact_info select::-moz-placeholder {
  color: #6c5454;
}

.contact_info input:-ms-input-placeholder,
.contact_info select:-ms-input-placeholder {
  color: #6c5454;
}

.contact_info input::-ms-input-placeholder,
.contact_info select::-ms-input-placeholder {
  color: #6c5454;
}

.contact_info input::placeholder,
.contact_info select::placeholder {
  color: #6c5454;
}

.dubble_input {
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border: 1px solid #bfbfbf;
  border-radius: 8px;
}

.dubble_input input,
.dubble_input select {
  border: 0;
  width: 65%;
  border-radius: 0;
}

.dubble_input select {
  width: 35%;
  border-right: 1px solid #bfbfbf;
}

.form_button {
  text-align: right;
}

.c_pay {
  padding: 15px 35px;
  display: inline-block;
  background: #643296;
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  margin-top: 30px;
  font-weight: 400;
  cursor: pointer;
}

.flight_summary_box {
  width: 32.5%;
  background: #fff;
  padding: 15px;
  border-radius: 8px;
}

.flight_summary_box .heading {
  font-size: 17px;
  font-weight: 400;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 2px solid #003edb;
  display: inline-block;
}

.f_summary .air_info-box {
  width: 100%;
  padding: 0;
  border: 0;
}

.f_summary .inner_in_info {
  padding: 18px 0;
  gap: 0;
}

.f_summary .air_box {
  width: 24%;
  display: block;
}

.f_summary .air_box picture {
  width: 100%;
}

.f_summary .air_box picture img {
  width: auto;
  height: 35px;
  border-radius: 0;
}

.f_summary .air_box span {
  width: 100%;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  padding-top: 3px;
}

.f_summary .fligt_pt {
  width: 76%;
}

.f_summary .f_time strong {
  font-size: 17px;
  font-weight: 500;
}

.del_to_dex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 10px;
}

.del_to_dex p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 4px;
}

.del_to_dex small,
.del_to_dex span {
  font-size: 14px;
  font-weight: 400;
}

.del_to_dex span {
  cursor: pointer;
}

.f_buttons .ft_details {
  gap: 0;
  border-bottom: 1px solid #d6d6d6;
}

.f_buttons .ft_details span {
  font-size: 13px;
  padding: 8px 0;
  font-weight: 500;
}

.f_buttons .ft_details span img {
  margin: 5px 0 0 0;
}

.f_buttons .fare_rules,
.f_buttons .baggage_details,
.f_buttons .fare_summary {
  font-size: 13px;
  padding: 8px 0;
  font-weight: 500;
}

.f_buttons .fare_rules img,
.f_buttons .baggage_details img,
.f_buttons .fare_summary img {
  margin: 5px 0 0 0;
}

.fare_bm {
  padding: 20px 0 0;
}

.fare_bm .title {
  font-size: 16px;
  font-weight: 500;
  color: #003edb;
}

.usd_price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 14px 0;
}

.one_tr {
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
}

.one_tr img {
  vertical-align: middle;
}

.base_fare {
  padding: 6px 10px;
  background: #f2f2f2;
  border-radius: 8px;
  display: none;
  margin-bottom: 10px;
}

.fl_div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.fl_div small,
.fl_div span {
  font-size: 14px;
  font-weight: 300;
  padding: 5px;
}

.total_inr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid #bfbfbf;
}

.total_inr span,
.total_inr small {
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .enter_form {
    width: 100%;
  }

  .user_head .heading {
    font-size: 15px;
  }

  .appear {
    font-size: 14px;
    line-height: 18px;
    text-align: justify;
    padding: 10px;
  }

  .adult-input {
    margin: 15px 0;
    gap: 13px 0;
  }

  .adult-input .input-group {
    width: 100%;
  }

  .deta_input_row {
    width: 100%;
  }

  .in_type {
    gap: 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .in_type select {
    width: 38%;
  }

  .in_type .hf {
    width: 25%;
  }

  .in_type input,
  .in_type select {
    padding: 9px 5px;
  }

  .optional_box ul {
    gap: 12px;
  }

  .optional_box ul li {
    width: 100%;
  }

  .contact_info .input_row {
    width: 100%;
  }

  .f_summary .inner_in_info {
    margin-bottom: 0;
  }

  .flight_summary_box {
    width: 100%;
  }

  .f_buttons .ft_details span {
    padding: 15px;
    font-size: 14px;
  }

  .f_buttons .ft_details span img {
    margin: 0;
  }

  .f_buttons .fare_rules,
  .f_buttons .baggage_details,
  .f_buttons .fare_summary {
    padding: 15px;
    font-size: 14px;
  }

  .f_buttons .fare_rules img,
  .f_buttons .baggage_details img,
  .f_buttons .fare_summary img {
    margin: 0;
  }

  .del_to_dex {
    padding-bottom: 15px;
  }
}

.flight_confm {
  padding: 30px 0 50px;
  background: #eee;
}

.flight_confm .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.confm_left {
  width: 70%;
}

.confm_left .heading {
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #bfbfbf;
  padding: 20px;
}

.confm_inner {
  border-radius: 8px;
  background: #fff;
}

.booking_del {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 20px;
  border-bottom: 1px solid #bfbfbf;
}

.booking_del li {
  width: 20%;
  line-height: 28px;
}

.booking_del span {
  display: block;
  color: #666666;
  font-weight: 400;
  font-size: 14px;
}

.booking_del strong {
  font-size: 17px;
  font-weight: 500;
}

.pandding {
  border: 1px solid #d8d9df69;
  padding: 15px;
  border-radius: 10px;
  background: #fff;
  margin-bottom: 1rem;
  display: flex;
  justify-content: end;
  text-align: center;
  cursor: pointer;

  .Reject {
    background-color: red !important;
    padding: 15px;
    width: 20%;
    border-radius: 6px;
  }

  button {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
  }
}

.flight_bag {
  padding: 20px 20px 0;
  border-bottom: 1px solid #bfbfbf;
}

.flight_bag .title {
  font-size: 16px;
  font-weight: 400;
}

.flight_bag .title img {
  vertical-align: middle;
  margin-right: 5px;
}

.confm_dels .air_info-box {
  width: 100%;
  border: 0;
}

.roots_dels {
  padding: 20px;
}

.roots_dels .title {
  font-size: 16px;
  font-weight: 400;
}

.roots_dels .title img {
  vertical-align: middle;
  margin-right: 5px;
}

.roots_li {
  border: 1px solid #bfbfbf;
  border-radius: 8px;
  overflow: hidden;
  margin: 20px 0 5px;
}

.roots_li ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.roots_li ul li {
  width: 25%;
  padding: 14px;
  font-size: 15px;
  font-weight: 500;
}

.roots_li .rt_bg {
  background: #f2f2f2;
}

.roots_li .rt_bg li {
  font-weight: 400;
}

.text-area {
  background: #fff;
  padding: 15px;
  margin-top: 1rem;
  border-radius: 6px;

  .btn-approved {
    width: 100%;
    background-color: #4caf55;
    text-align: center;
    padding: 10px 0;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;

    button {
      font-size: 15px;
      font-weight: 500;
      color: #fff;
    }
  }

  .remarks-section label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #374151;
    font-weight: 500;


  }

  .remarks-section textarea {
    width: 100%;
    padding: 8px;
    height: 130px;
    font-size: 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    resize: vertical;
    outline: none;
  }

  .remarks-section textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.3);
  }
}

.confm_right {
  width: 28%;
}

.new-accod {
  background: #fff;
  border-radius: 8px;
  padding: 15px;
}

.confm_right .heading {
  font-size: 17px;
  font-weight: 500;
  padding: 0 0 10px;
  border-bottom: 2px solid #003edb;
  display: inline-block;
  margin-bottom: 10px;
}

.ad_info {
  padding: 15px 0;
}

.ad_info .title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
}

.ad_info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ad_info ul li {
  font-size: 15px;
  line-height: 28px;
}

.ad_info strong {
  font-weight: 600;
}

.total_pr {
  padding: 16px 0 5px;
  border-top: 1px solid #bfbfbf;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.total_pr strong,
.total_pr span {
  font-size: 15px;
  font-weight: 500;
}

.total_pr span {
  color: #003edb;
  font-weight: 600;
}

.buttons_next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 25px;
}

.buttons_next button,
.buttons_next a {
  display: inline-block;
  padding: 12px 30px;
  background: #643296;
  color: #fff;
  font-size: 15px;
  border-radius: 4px;
  cursor: pointer;
}

.next-btn a {
  display: block;
  text-align: center;
  width: 100%;
  padding: 9px 0;
  background-color: #643296;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  height: 45px;
  cursor: pointer;
}

@media (max-width: 767px) {
  .confm_left {
    width: 100%;
  }

  .confm_left .heading {
    padding: 15px;
    font-size: 16px;
  }

  .booking_del {
    padding: 15px;
    display: block;
    white-space: nowrap;
    overflow: auto;
  }

  .booking_del li {
    width: auto;
    display: inline-block;
    border-right: 1px solid #bfbfbf;
    padding: 0 12px;
    line-height: 24px;
  }

  .booking_del li:last-child {
    border-right: 0;
  }

  .roots_li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .roots_li ul {
    display: inline-block;
    width: 50%;
  }

  .roots_li ul li {
    width: auto;
    border-bottom: 1px solid #bfbfbf;
    font-size: 14px;
  }

  .roots_li ul li:last-child {
    border-bottom: 0;
  }

  .confm_right {
    width: 100%;
  }
}

.login_row {
  background: #f5f5f5;
  padding: 35px 20px;
}

.login_inputs {
  width: 450px;
  margin: 0 auto;
  background: #fff;
  padding: 30px 20px;
  border-radius: 0 18px 18px 18px;
  color: #000;
}

.login_inputs .heading {
  text-align: center;
  font-size: 25px;
  font-weight: 600;
}

.login_inputs p {
  text-align: center;
  margin: 10px 0 40px;
  font-size: 15px;
}

.login_inputs p a {
  font-size: 15px;
  color: #003edb;
  font-weight: 500;
}

.login_inputs label {
  display: block;
  font-size: 14px;
}

.login_inputs input {
  outline: 0;
  border: 0;
  border-bottom: 1px solid #bfbfbf;
  padding: 3px 0 2px;
  width: 100%;
  font-size: 14px;
  color: #424040;
  margin-bottom: 15px;
  font-weight: 500;
}

.login_inputs input::-webkit-input-placeholder {
  color: #424040;
}

.login_inputs input::-moz-placeholder {
  color: #424040;
}

.login_inputs input:-ms-input-placeholder {
  color: #424040;
}

.login_inputs input::-ms-input-placeholder {
  color: #424040;
}

.login_inputs input::placeholder {
  color: #424040;
}

.login_inputs strong {
  display: block;
  text-align: center;
  margin: 20px 0;
  font-weight: 600;
  font-size: 15px;
}

.register {
  text-align: center;
  width: 100%;
  border: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  background: #003edb;
  padding: 15px;
  border-radius: 40px;
  cursor: pointer;
}

.btn_google {
  text-align: center;
  width: 100%;
  border: 0;
  color: #003edb;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #003edb;
  padding: 15px;
  border-radius: 40px;
  cursor: pointer;
}

.f_password {
  display: inline-block;
  color: #003edb;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hotel-detail-search {
  padding: 22px 0;
  border-top: 1px solid #bfbfbf;
  background: #f2f8fd;
  color: #313637;
  position: sticky;
  top: 0;
  z-index: 9;
}

.hotel-detail-search .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
}

.hotel-detail-search .input-group {
  width: 31%;
  border-radius: 5px;
  border: 1px solid #bfbfbf;
  background: #ffffff;
  padding: 8px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
}

.hotel-detail-search .input-group img {
  display: none;
}

.hotel-detail-search .rooms {
  width: 20%;
}

.hotel-detail-search .middle-box {
  width: 30%;
  border: 1px solid #bfbfbf;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 5px;
  overflow: hidden;
}

.hotel-detail-search .input-box {
  width: 50%;
  position: relative;
  background: #ffffff;
  padding: 8px 15px;
  border-right: 1px solid #bfbfbf;
}

.hotel-detail-search .input-box:last-child {
  border: 0;
}

.hotel-detail-search input {
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  color: #000;
}

.hotel-detail-search input::-webkit-input-placeholder {
  color: #000;
}

.hotel-detail-search input::-moz-placeholder {
  color: #000;
}

.hotel-detail-search input:-ms-input-placeholder {
  color: #000;
}

.hotel-detail-search input::-ms-input-placeholder {
  color: #000;
}

.hotel-detail-search input::placeholder {
  color: #000;
}

.hotel-detail-search span {
  color: #313637;
  font-weight: 600;
  font-size: 14px;
}

.hotel-detail-search strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  width: 100%;
}

.hotel-detail-search label {
  color: #000;
  font-weight: 400;
  font-size: 15px;
}

.hotel-detail-search img {
  width: 25px;
  position: absolute;
  left: 12px;
  top: 15px;
}

.hotel-search,
button.hotel-search {
  width: 15%;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  border-radius: 5px;
  text-transform: uppercase;
  background: #313637;
  color: #ffffff;
  text-align: center;
  padding: 0 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.search_results-count {
  background: #fff;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.14);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.14);
  padding: 10px 0;
}

.search_results-count ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #333;
}

.search_results-count ul li {
  color: #333;
  font-weight: 600;
  font-size: 15px;
}

.search_results-count ul li:last-child {
  margin-left: 5px;
}

.search_results-count ul a {
  color: #6a6a6a;
  display: inline-block;
  margin-right: 5px;
}

.search_results-count h3 {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  margin: 8px 0 6px;
}

.result_section {
  padding: 40px 0;
}

.result_section .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.result_filter {
  width: 24%;
}

.seemap {
  background: #fff;
  position: relative;
  border: 1px solid #bfbfbf;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 8px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 8px;
}

.seemap figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}

.seemap figure img {
  width: 100%;
}

.mapbtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  background: #fff;
  border-radius: 100px;
  color: #003edb;
  border: 2px solid #fff;
  padding: 8px 18px;
}

.mapbtn:hover {
  cursor: pointer;
  border-color: #003edb;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.mapbtn svg {
  width: 23px;
  fill: #003edb;
  margin-right: 5px;
}

.best_price_row {
  padding: 0 0 15px 0;
}

.best_price_row p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  color: #313637;
  font-weight: 500;
}

.best_price_row img {
  height: 30px;
  margin-right: 5px;
  vertical-align: middle;
}

.best_price_row span {
  color: #003edb;
  font-size: 16px;
  font-weight: 500;
}

.filter-selection .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 15px;
  color: #313637;
}

.filter-selection strong {
  font-size: 15px;
  font-weight: 600;
}

.filter-selection span {
  font-size: 14px;
}

.filter-selection input {
  width: 100%;
  margin-bottom: 15px;
  font-size: 15px;
  border: 1px solid #646464;
  padding: 8px 14px;
  border-radius: 4px;
}

.fbtext {
  font-size: 16px;
  font-weight: 600;
  padding: 15px;
  display: block;
  padding-bottom: 0;
}

.main-filter {
  margin-top: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px 20px;
}

.main-filter h3 {
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  color: #000;
  padding: 0 0 15px;
}

.filters-listing {
  border-top: 1px solid #ddd;
}

.filters-listing.border {
  border: 0;
  padding-top: 0;
}

.checkbox_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}

.checkbox_btn label {
  font-size: 14px;
}

.checkbox_btn label.dropdown:after {
  font-family: "Font Awesome 5 Free";
  cursor: pointer;
  font-size: 18px;
  content: "\f107";
  font-weight: 900;
  position: absolute;
  top: 3px;
  right: 15px;
}

.checkbox_btn span {
  font-size: 14px;
}

.checkbox_btn input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.checkbox_btn label {
  position: relative;
  cursor: pointer;
  display: block;
}

.checkbox_btn label:before {
  content: "";
  background-color: transparent;
  border: 1px solid #2c465e;
  background: #fff;
  border-radius: 2px;
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
}

.checkbox_btn input:checked+label:after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 8px;
  width: 5px;
  height: 10px;
  border: solid #003edb;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.inner_checkbox {
  display: none;
}

.inner_checkbox .checkbox_btn {
  padding-left: 48px;
}

.inner_checkbox label {
  font-size: 13px;
}

.inner_checkbox label:before {
  border-color: #ff7800;
}

.inner_checkbox label:after {
  left: 23px;
}

.view_toggle {
  display: none;
}

.read-more-content {
  display: none;
}

.view_button {
  display: inline-block;
  cursor: pointer;
  color: #003edb;
  text-decoration: underline;
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 15px;
}

.tours_rigth_main {
  width: 74%;
}

.recommended {
  margin-bottom: 25px;
}

.recommended ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.recommended ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin: 0 7px 7px 0;
  padding: 8px 16px;
  background: #fff;
  -webkit-box-shadow: 0 2px 10px hsla(0, 0%, 66%, 0.25);
  box-shadow: 0 2px 10px hsla(0, 0%, 66%, 0.25);
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
}

.recommended ul img {
  margin-left: 4px;
}

.tours_detail_box {
  border: 1px solid transparent;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  margin-bottom: 20px;
  border-radius: 0 10px 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.07);
}

.tours_detail_box:hover {
  border-color: #003edb;
  cursor: pointer;
}

.trip_img {
  width: 28%;
}

.trip_img picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 100%;
  position: relative;
}

.trip_img picture img {
  width: 100%;
  height: 100%;
}

.trip_img figcaption {
  position: absolute;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  padding: 3px 8px;
  border-radius: 3px;
  -webkit-box-shadow: 1.9px 3.5px 8px 0 rgba(0, 0, 0, 0.28);
  box-shadow: 1.9px 3.5px 8px 0 rgba(0, 0, 0, 0.28);
  background-color: #003edb;
  top: 12px;
  left: -7px;
}

.tour_details_text {
  width: 48%;
  padding: 10px 15px 0;
  border-right: 1px solid #646464;
}

.tour_details_text .title {
  color: #333;
  font-size: 20px;
  font-weight: 600;
}

.tour_details_text .star_icons {
  padding: 4px 0;
}

.tour_details_text .star_icons img {
  width: 14px;
}

.tour_details_text p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
}

.tour_details_text p img {
  margin-right: 3px;
}

.tour_details_text p a {
  display: inline-block;
  text-decoration: underline;
  color: #003edb;
  font-weight: 500;
  font-size: 14px;
}

.Free_cancellation {
  margin-top: 6px;
}

.Free_cancellation li {
  line-height: 24px;
  font-size: 14px;
  padding-left: 20px;
  background: url(../images/home/check.webp) no-repeat 0;
}

.wifi_roots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
  padding: 10px 0;
  border-top: 1px solid #646464;
}

.wifi_roots li {
  padding: 0px 15px;
  border-right: 1px solid #646464;
  font-size: 14px;
}

.wifi_roots img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.tours_price_info {
  width: 24%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: right;
  padding: 15px 15px 15px;
}

.rooms_line {
  font-size: 14px;
  line-height: 18px;
}

.rooms_line b {
  font-size: 15px;
  font-weight: 600;
  display: block;
}

.info-text {
  font-size: 18px;
  font-weight: 500;
}

.info-text b {
  font-size: 16px;
  margin-right: 8px;
}

.from-price span {
  font-size: 16px;
}

.from-price small {
  font-size: 20px;
  font-weight: 600;
  color: #003edb;
}

.view_tourbtn {
  display: block;
  background: #0f1632;
  padding: 9px;
  border-radius: 6px;
  cursor: pointer;
  color: #fff;
  width: 100%;
  margin: 6px 0;
}

.departures-col {
  margin-top: 3px;
}

.departures-col i {
  margin-right: 3px;
  font-size: 13px;
}

.departures-col label {
  font-size: 13px;
  display: block;
}

.star_listing ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.star_listing .form-group {
  display: block;
  margin-bottom: 15px;
}

.star_listing .form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.star_listing .form-group label {
  position: relative;
  cursor: pointer;
}

.star_listing .form-group label {
  background-color: transparent;
  border: 1px solid #313637;
  padding: 3px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  height: 35px;
  width: 45px;
  border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 5px;
}

.star_listing .form-group label span {
  font-size: 15px;
}

.star_listing .form-group label:hover {
  background: #313637;
}

.star_listing .form-group label:hover span {
  color: #ffffff;
}

.star_listing .form-group input:checked+label:after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 43px;
  height: 33px;
  background: black;
  border-width: 0 2px 2px 0;
  z-index: -1;
}

.star_listing .form-group input:checked+label:after span {
  color: #ffffff;
}

.star_listing .form-group input:checked+label span {
  color: #ffffff;
}

.popular_filters {
  margin-top: 20px;
  border-radius: 10px;
  border: 1px solid #ddd;
  overflow: hidden;
}

.popular_filters h4 {
  font-weight: 600;
  font-size: 15px;
  color: #000;
  padding: 20px 20px 0;
}

.filter_checkrow {
  padding: 20px 20px 5px;
}

.filter_button {
  display: none;
}

@media (max-width: 767px) {
  .hotel-detail-search {
    position: initial;
  }

  .hotel-detail-search strong {
    margin-bottom: 4px;
  }

  .hotel-detail-search .input-group:first-child {
    padding: 11px 12px;
  }

  .hotel-detail-search .container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .hotel-detail-search .input-group,
  .hotel-detail-search .middle-box {
    width: 100%;
  }

  .hotel-search {
    padding: 15px;
    width: 100%;
  }

  .result_section .container {
    display: block;
  }

  .filter_button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    padding: 10px 25px;
    background: #003edb;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    border-radius: 10px 0 10px 0;
    letter-spacing: 1px;
    cursor: pointer;
  }

  .filter_button img {
    height: 20px;
  }

  .result_filter {
    width: 87%;
    overflow-y: scroll;
    padding: 15px;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    position: fixed;
    left: -100%;
    top: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 11;
    padding-bottom: 170px;
  }

  .result_filter.active {
    left: 0;
  }

  .tours_rigth_main {
    width: 100%;
  }

  .recommended {
    margin: 25px 0;
  }

  .recommended ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .trip_img {
    width: 100%;
  }

  .trip_img picture {
    width: 100%;
  }

  .tour_details_text {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #646464;
  }

  .tours_price_info {
    width: 100%;
    text-align: center;
  }

  .rooms_line {
    padding: 15px;
  }

  .rooms_line b {
    display: inline-block;
  }
}

.hotel_info_roots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 22px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border: 1px solid transparent;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: rgba(24, 26, 37, 0.1) 0px 1px 4px 0px;
  box-shadow: rgba(24, 26, 37, 0.1) 0px 1px 4px 0px;
}

.hotel_info_roots:hover {
  border: 1px solid #bfbfbf;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.hotel_imgslider {
  width: 28%;
  position: relative;
}

.hotel_imgslider figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.hotel_imgslider figure img {
  width: 100%;
  height: 100%;
}

.mfhotel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background: #fff;
  position: absolute;
  right: 11px;
  top: 11px;
  cursor: pointer;
}

.mfhotel svg {
  width: 28px;
}

.h_tag {
  position: absolute;
  bottom: 11px;
  right: 11px;
  background-color: rgba(0, 0, 0, 0.6);
  color: rgb(255, 255, 255);
  font-size: 12px;
  padding: 5px 8px;
  border-radius: 4px;
}

.hotel_flexrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 72%;
}

.hotel_content_row {
  width: 65%;
  padding: 15px 25px;
  font-size: 14px;
  border-right: 1px dashed #bfbfbf;
}

.hotel_content_row .heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.hotel_content_row .heading:hover {
  text-decoration: underline;
  cursor: pointer;
}

.hotel_content_row p {
  font-size: 14px;
  line-height: 20px;
}

.hotel_content_row p b {
  font-weight: 700;
  font-size: 14px;
}

.map_text {
  color: #003edb;
  font-weight: 500;
  margin: 10px 0 14px;
  cursor: pointer;
}

.h_reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.h_reviews .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.h_reviews label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.h_rvs strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}

.h_rvs span {
  font-size: 13px;
}

.r_text {
  display: inline-block;
  width: 34px;
  height: 28px;
  background: #003edb;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.breakfast {
  margin-top: 15px;
}

.breakfast p {
  font-size: 14px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  color: rgb(0, 138, 4);
}

.breakfast svg {
  width: 22px;
  fill: rgb(0, 138, 4);
}

.select_price_h {
  width: 35%;
  line-height: 18px;
  font-size: 14px;
  padding: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.select_price_h span {
  font-size: 15px;
  font-weight: 400;
}

.select_price_h strong {
  font-size: 18px;
  font-weight: 500;
  margin: 5px 0;
}

.select_price_h small {
  font-size: 12px;
}

.signuser {
  margin-bottom: 5px;
  border-radius: 4px;
  background-color: rgb(204, 237, 255);
  border: 1px solid rgb(102, 201, 255);
  padding: 3px 6px;
  font-size: 12px;
  color: #000;
}

.btn_bhotel {
  margin-top: 8px;
  width: 100%;
  display: block;
  text-align: center;
  cursor: pointer;
  outline: 0;
  border: 0;
  color: #fff;
  background: #003edb;
  padding: 9px 35px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .hotel_imgslider {
    width: 100%;
  }

  .hotel_flexrow {
    width: 100%;
  }

  .hotel_content_row {
    width: 100%;
    padding: 15px;
    border: 0;
    border-bottom: 1px dashed #bfbfbf;
  }

  .select_price_h {
    width: 100%;
    padding: 20px 15px;
  }
}

.back_button_top {
  padding: 10px 0;
  display: none;
}

.back_button_top .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.back_button_top a {
  display: inline-block;
  padding: 5px 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #003edb;
  border-radius: 3px;
  margin-right: 20px;
}

.back_button_top label {
  display: inline-block;
  font-weight: 500;
  color: #313637;
}

.back_button_top .icon {
  display: inline-block;
  margin-left: 20px;
}

.hotel_date_bar {
  background: #313637;
  padding: 10px;
  text-align: right;
  display: none;
}

.hotel_date_bar span {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  padding: 0 10px;
}

.hotel_img_slider .swiper-slide {
  height: auto;
}

.hotel_img_slider .swiper-slide img {
  width: 100%;
  height: 100%;
}

.hotel_img_slider .swiper-button-next,
.hotel_img_slider .swiper-button-prev {
  color: #fff;
  right: 30px;
}

.hotel_img_slider .swiper-button-prev {
  left: 30px;
}

.hotel_content_info {
  padding: 40px 0;
  background: #f2f8fd;
}

ul.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 2px solid #646464;
}

ul.tabs li {
  background: none;
  color: #222;
  display: inline-block;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 5px 5px 0 0;
  font-weight: 500;
  cursor: pointer;
}

ul.tabs li.current {
  background: #003edb;
  color: #fff;
}

.tab-content {
  display: none;
  background: #ffffff;
  padding: 20px;
}

.tab-content.current {
  display: inherit;
}

.tab-content .content_box {
  border-bottom: 1px solid #646464;
  padding: 20px 0;
}

.tab-content .title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.tab-content .title img {
  width: 25px;
  vertical-align: middle;
  margin-right: 10px;
}

.tab-content p {
  font-size: 15px;
  line-height: 28px;
}

.list_items_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: disc;
  padding-left: 42px;
}

.list_items_text li {
  width: 33.33%;
  line-height: 32px;
  padding-right: 20px;
  font-size: 14px;
  font-weight: 500;
}

.list_items_text li:nth-child(3) {
  padding-right: 0;
}

.map_section {
  padding-top: 20px;
}

.top_tab_btn {
  border-bottom: 2px solid #313637;
}

.top_tab_btn li {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 5px 5px 0 0;
  background: #003edb;
  color: #ffffff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
}

.hotel_deta_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  padding: 15px 0 0;
}

.hotel_content_box {
  width: 70%;
}

.hotel_content_box .top_title {
  padding: 10px 12px;
  margin-bottom: 10px;
  background: #f2f8fd;
  color: #313637;
  font-size: 15px;
  font-weight: 500;
}

.room_table_row {
  border: 1px solid #646464;
  border-bottom: 0;
  border-radius: 5px;
}

.standard_room {
  display: inline-block;
  margin: 10px;
  color: #313637;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
}

.standard_room i {
  margin-right: 5px;
}

.tabel_row table {
  width: 100%;
  font-size: 14px;
}

.tabel_row th {
  background: #313637;
  color: #ffffff;
}

.tabel_row th,
.tabel_row td {
  text-align: left;
  padding: 5px 15px;
  border-right: 1px solid #646464;
}

.tabel_row td {
  padding: 10px 15px;
  border-bottom: 1px solid #646464;
}

.tabel_row span {
  color: green;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

.tabel_row small {
  color: #003edb;
  cursor: pointer;
}

.tabel_row strong {
  font-size: 16px;
  font-weight: 600;
}

.tabel_row button {
  display: block;
  cursor: pointer;
  border-radius: 4px;
  padding: 11px 30px;
  font-size: 15px;
  font-weight: 500;
  width: 100%;
  text-align: center;
  color: #313637;
  border: 2px solid #646464;
}

.tabel_row button.active {
  background: #003edb;
  color: #ffffff;
  border-color: #003edb;
}

.tabel_row svg {
  width: 14px;
  height: 14px;
}

.tabel_row svg path {
  fill: green;
}

.hotel_booking_price {
  width: 28%;
  background: #ffffff;
  padding: 10px;
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15);
}

.hotel_booking_price .heading {
  font-size: 15px;
  font-weight: 500;
  background: #f2f8fd;
  padding: 8px 10px;
}

.hotel_booking_price p {
  padding: 5px 0;
  font-size: 13px;
  line-height: inherit;
}

.hotel_booking_price ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid #646464;
  line-height: 40px;
}

.hotel_booking_price span {
  font-size: 16px;
}

.hotel_booking_price strong {
  font-size: 18px;
  font-weight: 600;
}

.book_button {
  display: block;
  background: #003edb;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  text-align: center;
}

@media (max-width: 767px) {
  .hotel_date_bar {
    text-align: center;
    padding: 10px 0;
  }

  .hotel_date_bar span {
    font-size: 13px;
  }

  ul.tabs li {
    font-size: 14px;
    padding: 10px 20px;
  }

  .tab-content {
    padding: 20px 10px;
  }

  .tab-content p {
    font-size: 14px;
    line-height: 25px;
    text-align: justify;
  }

  .tab-content .content_box {
    padding: 16px 0;
  }

  .tab-content .title {
    font-size: 16px;
  }

  .tab-content .title img {
    width: 17px;
    margin-right: 5px;
  }

  .list_items_text {
    padding-left: 28px;
  }

  .list_items_text li {
    width: 100%;
    padding-right: 0;
    line-height: 32px;
    font-weight: 400;
  }

  .top_tab_btn li {
    padding: 6px 14px;
    font-size: 15px;
  }

  .hotel_content_box {
    width: 100%;
  }

  .tabel_row {
    overflow: auto;
    white-space: nowrap;
  }

  .tabel_row th,
  .tabel_row td {
    padding: 8px 10px;
  }

  .tabel_row button {
    padding: 6px 30px;
    border: 1px solid #646464;
  }

  .hotel_booking_price {
    width: 100%;
    margin-top: 20px;
  }
}

.hotel_bookings {
  padding: 30px 0;
  border-top: 1px solid #bfbfbf;
  background: #f2f8fd;
}

.hotel_bookings .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.booking_detail_info {
  width: 69%;
  font-size: 14px;
}

.booking_detail_info h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}

.number_add {
  font-size: 25px;
  font-weight: 600;
  color: green;
}

.book_hotels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: rgba(24, 26, 37, 0.1) 0px 1px 4px 0px;
  box-shadow: rgba(24, 26, 37, 0.1) 0px 1px 4px 0px;
  margin: 16px auto;
  overflow: hidden;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(216, 217, 223);
  border-radius: 8px;
}

.book_hotels picture {
  width: 35%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.book_hotels picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hotelbook_content {
  width: 65%;
  padding: 20px;
}

.hotelbook_content .title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}

.hotelbook_content p {
  font-size: 15px;
  margin: 5px 0;
}

.stay_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 12px;
}

.stay_row li {
  line-height: 20px;
}

.stay_row li:nth-child(2) {
  text-align: center;
}

.stay_row strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
}

.select_roominfo {
  margin-top: 12px;
  border-top: 1px solid #bfbfbf;
  padding-top: 12px;
}

.select_roominfo h4 {
  font-size: 18px;
  font-weight: 500;
}

.room_one {
  margin-top: 12px;
}

.room_one .text {
  font-weight: 300;
  font-size: 14px;
}

.room_one b {
  font-weight: 500;
  font-size: 15px;
}

.non_r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  gap: 5px;
  margin: 7px 0;
  background-color: rgb(230, 243, 230);
  color: rgb(0, 124, 4);
  border: 1px solid rgb(204, 232, 205);
  border-radius: 4px;
  font-weight: 300;
  padding: 4px 8px;
}

.non_r svg {
  width: 15px;
  fill: rgb(0, 124, 4);
}

.text_know {
  color: #003edb;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.guest_detail_box {
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: rgba(24, 26, 37, 0.1) 0px 1px 4px 0px;
  box-shadow: rgba(24, 26, 37, 0.1) 0px 1px 4px 0px;
  margin: 16px auto;
  overflow: hidden;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(216, 217, 223);
  border-radius: 8px;
  padding: 20px;
  margin-top: 15px;
}

.guest_detail_box .title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 4px;
}

.guest_detail_box p {
  font-size: 13px;
  font-weight: 300;
  line-height: 18px;
}

.guest_detail_box .input_box {
  margin-top: 15px;
}

.guest_detail_box .sp_top {
  margin-top: 25px;
}

.guest_detail_box h5 {
  font-size: 14px;
  font-weight: 300;
  margin: 0 0 15px;
}

.guest_detail_box b {
  font-weight: 600;
  font-size: 14px;
}

.guest_detail_box ul {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.guest_detail_box ul li {
  width: 30%;
}

.guest_detail_box input {
  padding: 10px;
  width: 100%;
  border: 1px solid #646464;
  border-radius: 5px;
  font-size: 14px;
}

.addnew_one ul li {
  border: 1px solid #646464;
  padding: 10px;
  border-radius: 5px;
}

.billing_box {
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: rgba(24, 26, 37, 0.1) 0px 1px 4px 0px;
  box-shadow: rgba(24, 26, 37, 0.1) 0px 1px 4px 0px;
  margin: 16px auto;
  overflow: hidden;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(216, 217, 223);
  border-radius: 8px;
  padding: 20px;
  margin-top: 15px;
}

.billing_box .heading {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 4px;
  margin-bottom: 20px;
}

.billing_box .input_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
}

.billing_box .inputtype {
  width: 32%;
}

.billing_box .big_row {
  width: 66%;
}

.billing_box .sm_row {
  width: 49%;
}

.billing_box input,
.billing_box select {
  padding: 0 10px;
  height: 44px;
  width: 100%;
  border: 1px solid #646464;
  border-radius: 5px;
  font-size: 14px;
}

.billing_box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
}

.billing_box ul li {
  padding: 10px;
  width: 32%;
  border: 1px solid #646464;
  border-radius: 5px;
  font-size: 14px;
}

.billing_box ul li:nth-child(2) {
  width: 64%;
}

.price_details {
  width: 29%;
  font-size: 14px;
  font-weight: 400;
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: rgba(24, 26, 37, 0.1) 0px 1px 4px 0px;
  box-shadow: rgba(24, 26, 37, 0.1) 0px 1px 4px 0px;
  margin: 40px auto 0;
  overflow: hidden;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(216, 217, 223);
  border-radius: 8px;
  padding: 20px;
}

.price_details p {
  line-height: 18px;
  border-bottom: 1px dashed #bfbfbf;
  padding-bottom: 12px;
}

.price_details .title {
  font-size: 18px;
  font-weight: 600;
  padding: 15px 0;
  border-bottom: 1px dashed #bfbfbf;
}

.rooms_pr {
  padding-top: 15px;
}

.rooms_pr.sp_mt {
  padding-top: 20px;
}

.rooms_pr strong {
  font-size: 15px;
  font-weight: 500;
}

.divflex_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 12px;
}

.divflex_row span,
.divflex_row small,
.divflex_row strong {
  font-size: 15px;
  font-weight: 300;
}

.divflex_row strong {
  font-weight: 500;
}

.total_paybox {
  border-top: 1px dashed #bfbfbf;
  margin-top: 20px;
  padding-top: 10px;
}

.book_now_btn {
  border: 0;
  display: block;
  text-align: center;
  outline: 0;
  font-size: 16px;
  font-weight: 400;
  padding: 14px;
  cursor: pointer;
  letter-spacing: 1px;
  border-radius: 5px;
  color: #fff;
  background: #003edb;
  width: 100%;
  margin-top: 22px;
}

@media (max-width: 767px) {
  .hotel_bookings .container {
    gap: 10px;
  }

  .booking_detail_info {
    width: 100%;
  }

  .book_hotels picture {
    width: 100%;
  }

  .hotelbook_content {
    width: 100%;
    padding: 15px;
  }

  .hotelbook_content .title {
    font-size: 18px;
  }

  .hotelbook_content p {
    line-height: 20px;
    font-size: 14px;
  }

  .stay_row {
    gap: 8px 25px;
    margin-top: 8px;
  }

  .stay_row span {
    font-size: 13px;
  }

  .room_one {
    margin-top: 15px;
  }

  .guest_detail_box {
    padding: 15px;
  }

  .guest_detail_box h5 {
    line-height: 19px;
  }

  .guest_detail_box ul li {
    width: 100%;
  }

  .billing_box .inputtype {
    width: 100%;
  }

  .price_details {
    width: 100%;
    margin: 0;
  }
}

.bodycolor {
  background: #f4f5fa;
}

.dashboard_root {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  height: 100vh;
}

.left_panel {
  background: #fff;
  width: 23%;
  height: 100%;
  padding: 20px 30px;
  color: #53545c;
}

.user_img {
  text-align: center;
}

.user_img span {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin: 10px 0;
}

.panel_list {
  padding-top: 15px;
}

.panel_list ul li {
  display: block;
}

.panel_list ul li.active a,
.panel_list ul li:hover a {
  background: #2563eb;
  color: #fff;
  border-radius: 6px;
}

.panel_list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  letter-spacing: 0.5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  color: #53545c;
  font-weight: 500;
  padding: 16px 14px;
}

.panel_list img {
  vertical-align: middle;
  margin-right: 10px;
  height: 27px;
  width: 27px;
}

.panel_list .smallimg {
  width: 23px;
  height: 23px;
}

.panel_list .Logout {
  color: #cc5f5f;
}

.panel_right {
  width: 70.8%;
  margin: 30px;
}

.panel_right h3 {
  font-size: 25px;
  font-weight: 600;
  color: #000;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}

.profile_roots {
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.1);
  padding: 32px;
}

.my_profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px 17px;
}

.my_profile .input_group {
  width: 32%;
}

.my_profile label {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #53545c;
  margin-bottom: 8px;
}

.my_profile input,
.my_profile select {
  border: 1px solid #646464;
  padding: 0 10px;
  height: 40px;
  border-radius: 5px;
  width: 100%;
}

.flight_top_bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}

.flight_top_bar .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  align-items: center;
  gap: 0 20px;
}

.flight_top_bar .title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.flight_top_bar .right {
  width: 300px;
}

.flight_top_bar .right input {
  background: #fff url(../images/home/search.svg) no-repeat 10px;
  -webkit-box-shadow: 0px 1.9px 3.79px 0px rgba(0, 0, 0, 0.0509803922);
  box-shadow: 0px 1.9px 3.79px 0px rgba(0, 0, 0, 0.0509803922);
  padding: 9px 30px;
  width: 100%;
  color: rgba(0, 0, 0, 0.4);
  font-size: 14px;
  border-radius: 8px;
}

.flight_top_bar .right input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.flight_top_bar .right input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.flight_top_bar .right input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.flight_top_bar .right input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.flight_top_bar .right input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.filter_b {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.filter_b span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0px 1.9px 3.79px 0px rgba(0, 0, 0, 0.0509803922);
  box-shadow: 0px 1.9px 3.79px 0px rgba(0, 0, 0, 0.0509803922);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  background: #fff;
  border-radius: 6px;
  padding: 5px 9px;
  cursor: pointer;
}

.booking_table {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
}

.booking_table table {
  width: 100%;
}

.booking_table th,
.booking_table td {
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  padding: 11px;
}

.booking_table img {
  vertical-align: middle;
  cursor: pointer;
}

.booking_table td {
  font-weight: 400;
}

.booking_table td:first-child {
  background: #f4f5fa;
}

.booking_table input {
  margin: 0 auto;
  cursor: pointer;
  display: block;
  vertical-align: middle;
}

.booking_table i {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: #d7d7d9;
  border-radius: 100px;
  vertical-align: middle;
  margin-right: 4px;
}

.booking_table .yc {
  background: #ffd9a2;
}

.booking_table .pc {
  background: #ffc7d6;
}

.booking_table .nc {
  background: #dbd1fc;
}

.booking_table small {
  font-size: 14px;
  font-weight: 500;
  color: #ef4444;
  border: 1px solid #ef4444;
  border-radius: 5px;
  padding: 2px 7px;
  cursor: pointer;
}

.booking_table span {
  display: inline-block;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  padding: 4px 11px;
  border-radius: 5px;
  background: -webkit-gradient(linear,
      right top,
      left top,
      color-stop(1.36%, #f23a00),
      to(#ff6838));
  background: linear-gradient(270deg, #f23a00 1.36%, #ff6838 100%);
}

.booking_table tr:nth-child(even) {
  background: #fff;
}

.booking_table tr:nth-child(even) small {
  color: #2563eb;
  border-color: #2563eb;
}

@media (max-width: 767px) {
  .dashboard_root {
    height: auto;
    margin-top: 20px;
  }

  .left_panel {
    width: 100%;
    height: auto;
  }

  .panel_right {
    margin: 0;
    width: 100%;
    margin: 15px;
  }

  .my_profile .input_group {
    width: 100%;
  }
}

.up_div {
  position: relative;
  z-index: 1;
}

.car_result {
  padding: 50px 0 50px;
  border-top: 1px solid #bfbfbf;
}

.car_roots {
  background: #fff;
  margin-bottom: 30px;
  border: 1px solid #bfbfbf;
  border-radius: 8px;
  padding: 5px;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
}

.car_roots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.car_roots picture {
  width: 35%;
}

.car_roots picture img {
  width: 100%;
}

.car_roots article {
  width: 41%;
  padding-left: 25px;
}

.car_roots h3 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  text-align: center;
  padding-bottom: 20px;
}

.car_roots span {
  display: block;
  font-size: 15px;
  margin-bottom: 12px;
}

.car_roots span img {
  margin-right: 5px;
  width: 18px;
}

.car_slt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.car_slt span {
  margin: 0;
}

.car_slt select {
  height: 30px;
  width: 40px;
  border: 1px solid #bfbfbf;
  border-radius: 4px;
  text-align: center;
}

.car_bookinfo {
  width: 20%;
  text-align: center;
  padding: 0 25px;
}

.car_bookinfo strong {
  display: block;
  font-size: 25px;
  font-weight: 600;
}

.car_bookinfo small {
  font-size: 14px;
  display: block;
  padding: 10px 0;
}

.car_book_btn {
  display: block;
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: #003edb;
}

.vehicle_details {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
gap: 35px;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
}

 .vehicle_details h3 {
  font-size: 23px;
  text-align: center;
  padding-bottom: 10px;
 }

.vcl_left {
  width: 49%;
  border: 1px solid #bfbfbf;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
}

.vcl_left picture {
  width: 55%;
}

.vcl_left picture img {
  width: 100%;
}

.vcl_left h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.vcl_left article {
  width: 45%;
  padding-left: 30px;
}

.vcl_left ul {
  line-height: 30px;
}

.vcl_left ul li {
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.vcl_left ul li img {
  width: 18px;
}

.vcl_right {
  width: 48%;
  border: 1px solid #bfbfbf;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
}

.vcl_right h4 {
  font-size: 22px;
  font-weight: 500;
}

.air_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 20px;
}

.air_flex strong {
  width: 17%;
  font-size: 15px;
  font-weight: 600;
}

.air_flex p {
  font-size: 15px;
  font-weight: 400;
}

.air_flex b {
  font-size: 15px;
  font-weight: 600;
  color: #444;
  display: inline-block;
  margin-top: 8px;
}

.car_input {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
gap: 15px 22px;
margin-top: 30px;
}

.car_input li {
width: 48%;
}

.car_input  label{
display: block;
margin-bottom: 8px;
color: #000;
font-size: 15px;
}

.car_input input{
  border:1px solid #bfbfbf;
  width: 100%;
  padding:  0 10px;
  height: 36px;
  border-radius: 4px;
  color: #444;
}

.car_input input::-webkit-input-placeholder {
  color: #444;
}

.car_input input::-moz-placeholder {
  color: #444;
}

.car_input input:-ms-input-placeholder {
  color: #444;
}

.car_input input::-ms-input-placeholder {
  color: #444;
}

.car_input input::placeholder {
  color: #444;
}


  .pay_ammounts{
  text-align: center;
  font-size: 25px;
  margin: 35px 0 10px;
  font-weight: 500;
  }

.pay_button {
  display: block;
  background: #003edb;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 14px;
  border-radius: 5px;
  text-align: center;
  margin: 0 auto 12px;
  width: 50%;
}

@media (max-width: 767px) {
  .car_roots {
    padding: 15px;
  }

  .car_roots picture,
  .car_roots article,
  .car_roots .car_bookinfo {
    width: 100%;
  }

  .car_roots h3 {
    padding: 0;
  }

  .car_bookinfo {
    padding: 20px 0;
    border-top: 1px solid #bfbfbf;
  }

  .vehicle_details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .car_result {
    padding: 35px 0;
  }

  .vcl_right,
  .vcl_left {
    width: 100%;
  }

  .air_flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .air_flex strong {
    width: 100%;
    margin-bottom: 5px;
    display: block;
  }

  .air_flex p {
    line-height: 22px;
  }

  .air_flex b {
    margin: 0;
  }

  .car_input li {
    width: 100%;
  }

  .pay_button {
    width: 100%;
  }

  .vcl_left {
    padding-top: 25px;
  }

  .vcl_left picture,
  .vcl_left article {
    width: 100%; 
  }
}

.container {
  /* max-width: 1408px;
  margin: 0 auto;
  padding: 0 4%; */

  margin: 20px;
}


.final{
      background: #fff;
    padding: 10px;
    margin-top: 1rem;
    border-radius: 6px;

    label{
      font-size: 15px;
      font-weight: 500;
      display: block;
      margin-bottom: 6px;
    }

    select{
        width: 100%;
        border: 1px solid #a39c9c;
        padding: 10px;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 500;
    }
}