@font-face {
  font-family: 'AntonCustom';
  src: url('/Content/assets/font/anton.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
    --color-white: #ffffff;
    --color-orange: #fa4500;
    --color-blue: #014d9d;
    --color-dark-blue: #001831;
    --color-black: #000000;
    --color-footer: #002d5c;
    --color-offwhite: #f8f9fa;
    --color-offwhite1: #f6f6f6;
}




/* Hamburger icon (default Bootstrap) */
.navbar-toggler.collapsed .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* X icon when navbar is open (not collapsed) */
.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath stroke='black' stroke-linecap='round' stroke-width='2' d='M2 2l12 12M2 14L14 2'/%3e%3c/svg%3e");
}


/* Mobile-specific styles for navbar */
@media (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    background: var(--color-dark-blue);
    top: 60px;
    left: 20%;
    width: 80%;
    height: 100vh !important;
    z-index: 99;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  }

  .navbar-collapse.show {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    overflow: hidden;
  }

  .fw-bold1 {
    margin-left: 1rem !important;
  }
}





body {
    margin: 0;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji" !important;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff
}

/* Ensure body doesn't scroll when menu is open */
body.no-scroll {
  
position: fixed;      /* ✅ prevents mobile jump issues */
  overflow: hidden;
  width: 100%;
}


.sticky-top {
    position: sticky;
    top: 0;
    z-index: 9; /* higher than most Bootstrap components */
}
.navbar-nav li a {
  font-family: 'AntonCustom', sans-serif;
  color: var(--color-orange);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: var(--color-blue);
}

.nav-underline .nav-link:focus,
.nav-underline .nav-link:hover {
  color: var(--color-blue);
}

.fw-bold,
.fw-bold1 {
  color: var(--color-blue);

}

.search-box-wrapper {
  position: relative;
  padding: 50px 0;
  background-image: url('/Content/assets/Image/background.png');
  /* <-- Replace with your image path */
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* Overlay with linear gradient and opacity */
.search-box-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--color-orange) 50%, var(--color-dark-blue) 50%);
  opacity: 0.90;
  z-index: 2;
}

/* Content inside should appear above overlay */
.search-box-wrapper>* {
  position: relative;
  z-index: 3;
}


.flight-search-box {
  background-color: var(--color-offwhite);
  border: 1px solid var(--color-white);
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 1290px;
  margin: auto;
}
.flight-search-box1 {
  background-color: var(--color-offwhite1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 1290px;
  margin: auto;
}


.search-container {
  background-color: #fff;
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  max-width: 100%;
}



.form-check-input:checked[type="radio"] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fa4500'/%3e%3c/svg%3e");
}

.flatpickr-input {
    cursor: pointer !important;
}
.form-check-input:checked {
  background-color: var(--color-white);
  border-color: var(--highlight-orange);
}

.trip-options label {
  margin-right: 15px;
}

.trip-options .form-check-input {
  border: 2px solid var(--color-blue);

  width: 1.2rem;
  height: 1.2rem;
}
.form-check-input{
    border-color:var(--color-orange)!important
}

.trip-options .form-check-label {
    color: var(--color-blue);
    font-weight: 600;
    margin-left: 0.25rem;
}



.search-field {
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  background-color: #fff;
  position: relative;
  height: 58px;
  display: flex;
  align-items: center;
  padding-left: 2.5rem;
}
.search-field1 {
    border: 1px solid #ccc;
    border-radius: 0.3rem;
    background-color: #fff;
    position: relative;
    height: 38px;
    display: flex;
    align-items: center;
    padding-left: 1.8rem;
}

#fromLabel,
#toLabel {
  color: var(--color-blue) !important;
}

.label-placeName,
#travelerCount>span {
  font-size: 12px;
  color: var(--color-blue);
}

.calendar-display {
  color: var(--color-blue);
}

.clearfromb,
.cleartob {
  top: 0;
  right: 30px;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
}


.flatpickr-day:not(.flatpickr-disabled) {
  color: var(--color-blue) !important;
}

.clear {
  font-size: 15px !important;
  left: 10px !important;
}

.search-field .bi {
  position: absolute;
  left: 10px;
  color: var(--color-blue);
  font-size: 25px;
}
.search-field1 .bi {
    position: absolute;
    left: 8px;
    color: var(--color-blue);
    font-size: 18px;
    top: 5px !important;
}




.floating-labels {
  position: relative;
  flex-grow: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.floating-labels span {
  font-size: 0.75rem;
  color: #888;
  transition: all 0.2s ease;
}

.floating-labels strong {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
}

.swap-btn {
  position: absolute;
  top: 50%;
  right: -13px;
  /* from field ke bahar thoda nikal jayega */
  transform: translateY(-50%);
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  cursor: pointer;
  padding: 2px;
  z-index: 10;
  transition: transform 0.3s ease, right 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.swap-btn.rotated {
  transform: translateY(-50%) rotate(180deg);
}
    .swap-btn:hover {
        background-color: var(--color-offwhite1);
        transition: 1s ease;
    }

/* Mobile View Adjust */
@media (max-width: 768px) {
    
    .swap-btn {
        top: auto;
        bottom: -15px;
        /* From ke neeche aa jayega */
        right: 35px;
        transform: rotate(90deg);
        /* ✅ 90 degree rotate */
    }

        .swap-btn.rotated {
            transform: rotate(270deg);
            /* Mobile me 90° se 180° extra */
        }

    .desktop_search {
        position: absolute;
        top: 0px;
        z-index: 99999;
        display:none;
        overflow:scroll;
    }
    #FlightResults_InnerDiv .sidefilter_bar .filters_moblies {
        top: 0px;
        z-index: 99999;
    }
}


/* .swap-btn {
  position: absolute;
  top: 80px;
  left: 313px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.swap-btn1 {
  position: absolute;
  top: 98px;
  left: 313px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.swap-btn2 {
  position: absolute;
  top: 171px;
  left: 313px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.swap-btn3 {
  position: absolute;
  top: 246px;
  left: 313px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
  [class^="swap-btn"] {
  display: none !important;
}

} */

.search-btn {
  background-color: var(--highlight-orange);
  border: none;
  border-radius: 0.5rem;
  font-weight: 700;
  color: #000;
  height: 58px;
  width: 100%;
  /* min-width: 120px; */
  font-size: 20px;
}

.form-select {
/*  border-color: var(--highlight-orange);*/
  font-weight: 600;
  color: var(--primary-blue);
  height: 38px;
}

.suggestion-box {
    position: absolute;
    /* top: 100%;
  left: 0;
  right: 0; */
    background: #fff;
    border: 1px solid #ccc;
    z-index: 10;
}

.suggestion-box div {
  padding: 0.5rem 0.75rem;
  cursor: pointer;
}

.suggestion-box div:hover {
  background-color: var(--color-blue);
  color: var(--color-white);
  font-weight: bold;
}



.calendar-display {
  min-width: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.calendar-display strong {
  display: block;
  font-weight: bold;
  color: var(--color-blue);
  font-size: 0.95rem;
  line-height: 1.1;
}

.calendar-display span {
  font-size: 0.75rem;
  line-height: 1rem;
  display: block;
}

.search-container {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}





.btn_done {
  width: 100%;
  background: var(--highlight-orange);
  border: none;
  padding: 0.5rem;
  border-radius: 6px;
  font-weight: 600;
  color: #000;
}

.input-group .btn {
  background: var(--color-blue);
  color: #fff;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  min-width: 30px;
}

.input-group input {
  max-width: 60px;
  min-width: 40px;
}

#travelerBox {
    width: 260px;
    z-index: 1
}

#travelerCount {
  min-width: 100px;
  color: var(--color-blue);
}



.form-section {
  margin-top: 15px;
}

.form-check-label {
  color: var(--color-blue);
}

.form-control,
.form-select {
  font-size: 14px;
  color: var(--color-blue);
 /* border: 1px solid var(--color-orange);*/
}
   
.btn_done,
.search-btn {
  background-color: var(--color-blue);
  color: white;
}


.btn-search:hover {
  background-color: var(--color-blue);
  color: white;
}

.input-group-text {
  background-color: #f1f1f1;
}

.icon-text {
  font-size: 13px;
  color: #555;
  line-height: 1.2;
}

.city-label {
  font-weight: 600;
  font-size: 14px;
}

.city-sub {
  font-size: 12px;
  color: #666;
}

/*.add-leg-btn {
  background-color: #014d9d;
  color: #fff;
}*/

/*.remove-leg-btn {
  background-color: #dc3545;
  color: #fff;
}*/
.btn-custom-orange {
    background-color: #fff;
    color: var(--color-blue);
}
    .btn-custom-orange:hover {
        color: var(--color-blue) !important;
        border-color: #dee2e6 !important;
    }
.btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {
    background-color: var(--color-orange);
    color: #fff
}
    .btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active:hover {
    color: #fff !important;
}
.btn-group > .btn, .btn-group > .btn.dropdown-toggle-split:first-child, .btn-group {
    border-color: #dee2e6 !important;
}
.card-title {
    color: var(--color-blue);
    font-weight: bold;
    text-align: center;
}

.popline {
  color: var(--color-blue);
  font-family: 'AntonCustom', sans-serif;
}

.expborder {
  position: relative;
  display: inline-block;
  /* Sirf text jitna hi border bane */
}
.rotate-90 {
    transform: rotate(90deg);
    display: inline-block;
}
.expborder::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 5px;
  width: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right,
      var(--color-orange) 0% 10%,
      /* Chhota line */
      transparent 10% 15%,
      /* Gap */
      var(--color-orange) 15% 85%,
      /* Badi line */
      transparent 85% 90%,
      /* Gap */
      var(--color-orange) 90% 100%
      /* Chhota line */
    );
}

.cardimg {
  width: 183px;
}

/* Mobile devices - 767px ya usse chhote */
@media (max-width: 767px) {
  .cardimg {
    width: 100%;
  }
    .h6card{
        font-size:13px;
    }
    .pcard{
        font-size:12px;
    }
}

.cardborder {
  border-bottom: 2px solid var(--color-orange);
  padding-bottom:5px;
}

.cardswap {
  width: 25px;
  margin-bottom: 5px;
}

.carofferborder {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.carofferborder::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 75%;
  
  background: linear-gradient(to right,
      var(--color-orange) 0% 10%,
      /* Chhota line */
      transparent 10% 15%,
      /* Gap */
      var(--color-orange) 15% 85%,
      /* Badi line */
      transparent 85% 90%,
      /* Gap */
      var(--color-orange) 90% 100%
      /* Chhota line */
    );
}
.dreamcarborder{
  position: relative;
  padding-bottom: 15px;
}
.dreamcarborder::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 5px;
  width: 15%;
  transform: translateX(-50%);
  background: linear-gradient(to right,
      var(--color-orange) 0% 10%,
      /* Chhota line */
      transparent 10% 15%,
      /* Gap */
      var(--color-orange) 15% 85%,
      /* Badi line */
      transparent 85% 90%,
      /* Gap */
      var(--color-orange) 90% 100%
      /* Chhota line */
    );
}


.car-offer-label {
  background-color: var(--color-orange);
  color: white;
  font-weight: bold;
  font-size: 14px;
  padding: 5px 10px;
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 5px;
}

.car-caption {
  position: absolute;
  top: 10px;
  left: 10px;
  color: var(--color-orange);
  font-weight: bold;
}

.explorecard {
  color: var(--color-orange);
  font-weight: bold;
  text-align: center;

}

.car-box {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.car-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-heading {
  font-weight: bold;
  color: #014d9d;
}

.fleetback {
  background-color: rgba(233, 233, 233, 0.67);
  border-radius: 25px;
  margin: 10px;
}

.myfooter {
    background-color: var(--color-footer);
    font-size: 14px !important;
}
.btmborder div h5 {
    display: inline-block;
    border-bottom: 3px solid var(--color-orange);
}
.infoicon li i {
  color: var(--color-orange);
  padding-right: 5px;
}

.btmborder #myTab .active {
    position: relative;
    display: inline-block;
    font-weight: bold;
    /* Sirf text jitna hi border bane */
}

.btmborder #myTab .active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    height: 2px;
    width: 100%;
    transform: translateX(-50%);
    background-color: white;
}
.btmborder ul li .nav-link {
    cursor: pointer;
}

.btmborder a{
    text-decoration:none!important;
    color:white!important;
}
/*New CSS*/
.form-check-inline {
    margin-right: 0px;
    display: inline-block;
}

.swiper{
    z-index:0!important;
}

@media(min-width: 1025px) {
    .search-box-wrapper {
        padding: 25px 0 !important
    }
}







/*  Old CSS From css folder style.css */








/* css code start for mobile view when scroll then scrolltopbtn show and callus show for best deal*/

.mob-callus {
    position: fixed;
    bottom: 10px;
    padding: 6px;
    z-index: 1;
    left: 27px;
    width: 94%;
    background: white;
    border-radius: 4px;
    box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #ff6600;
}

    .mob-callus img {
        border-radius: 50%;
        height: 40px;
    }

.sp_scroll_callus {
    font-weight: 700;
    color: #014d9d
}

.sp_scroll_num {
    font-weight: 500;
    font-size: 16px;
    color: #3f3535;
}

.scroll-call-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ff6600;
}

    .scroll-call-icon i {
        color: white;
        padding-top: 10px;
        font-size: 26px;
        margin-left: -3px;
    }

.scroll-top-btn {
    position: fixed;
    bottom: 87px;
    right: 20px;
    width: 35px;
    height: 35px;
    background-color: #f60;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    display: none; /* Initially hidden */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

/* css code end for mobile view when scroll then scrolltopbtn show and callus show for best deal*/


.taytb_paneh .nav.nav-pills {
    background: #014d9d;
}

.taytb_paneh .nav-pills .nav-link {
    margin: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 13px;
    border-bottom: solid 3px transparent;
    text-transform: uppercase;
    font-weight: 500;
    padding: 10px 15px 10px 15px;
    border-radius: 0;
}

    .taytb_paneh .nav-pills .nav-link i {
        transform: rotateZ(45deg);
        margin: 0 5px 0 0;
    }

    .taytb_paneh .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
        color: #fff;
        background-color: transparent;
        border-bottom: solid 3px #f60;
    }


/** GROUP TRAVEL CSS **/

.group1_colom {
    width: 67%;
    float: left;
    margin: 0 0% 8px 0;
    position: relative;
}

.group_one_col {
    width: 49%;
    float: left;
    margin: 0 1% 0 0;
}

.group2_dates {
    width: 33%;
    float: left;
    background: #fff;
    border-radius: 4px;
    margin: 0 0% 8px 0;
    position: relative;
    padding: 0 0 0 32px;
}

    .group2_dates img {
        width: 22px;
        position: absolute;
        left: 5px;
        top: 18px;
    }

.group_traveler {
    width: 32.9%;
    float: left;
    background: #fff;
    border-radius: 4px;
    margin: 0 0.7% 0 0;
}

.name_users {
    width: 32.7%;
    float: left;
    margin: 0px 9px 0px 0;
}

.phones_users {
    width: 32.9%;
    float: left;
    margin: 0px 0px 0px 0;
}

.emails_users {
    width: 100%;
    float: left;
    margin: 8px 0px 0px 0;
}

.message_users {
    width: 100%;
    float: left;
    margin: 8px 0px 0px 0;
}

.messagebox_group {
    width: 100%;
    border: none;
    font-size: 14px;
    padding: 17px 8px 10px 30px;
    background-color: #fff;
    font-weight: 500;
    color: #333;
    border-radius: 3px;
}

.submits_groups {
    background: #f60;
    border: none;
    box-shadow: 0 4px #f04c2a, -5px 7px transparent;
    width: 20%;
    font-weight: 500;
    color: #fff;
    height: 53px;
    border-radius: 5px;
    font-size: 16px;
    margin: 0 auto;
    display: block;
    margin-top: 10px;
}

.groups_location {
    border: none;
    font-size: 14px;
    padding: 12px 8px 10px 30px;
    background-color: #fff;
    height: 56px;
    font-weight: 500;
    color: #333;
}

.groups_dateselect {
    background: transparent;
    border: none;
    font-size: 14px;
    padding: 12px 8px 10px 0px;
    background-color: transparent !important;
    height: 56px;
    font-weight: 500;
    color: #333;
}

.group_booking {
    display: block;
    font-size: 14px;
    margin: 12px 0 0 0;
    text-decoration: none !important;
    color: #fff;
    line-height: normal;
    font-weight: 500;
}

    .group_booking img {
        width: 20px;
        margin: -4px 4px 0 0;
    }

    .group_booking:hover {
        color: #ff6600;
    }

/** GROUP TRAVEL CSS **/

.taytb_paneh {
    background: #014d9d;
}

.readtrue {
    cursor: pointer !important;
    background-color: #fff !important;
    opacity: 1;
}

.form-control[disabled] {
    background: #a9a9a9 !important;
    opacity: 0.4;
}

.bg_clrddd1 {
    position: relative;
    width: 100%;
    z-index: 1;
}

.required-aestric {
    color: red;
}

.panel.with-nav-tabs .panel-heading {
    padding: 0px 5px 0 0px;
    background: transparent;
}

.nav-tabs > li > a {
    border-radius: 0px !important
}

.panel-default > .panel-heading {
    border-color: transparent !important
}

.panel.with-nav-tabs.panel-default {
}

.panel-body {
    padding: 0;
}

.panel.with-nav-tabs .nav-tabs {
    border-bottom: none;
}

.panel.with-nav-tabs .nav-justified {
    margin-bottom: -1px;
}

.with-nav-tabs.panel-default .nav-tabs > li {
    display: block;
}

    .with-nav-tabs.panel-default .nav-tabs > li > a {
        display: block;
        padding: 10px 0px 8px 0 !important;
        font-size: 17px;
        font-weight: 500;
        border-bottom: solid 2px #001b94 !important;
        margin: 0 0 8px 0;
    }
        /********************************************************************/
        /*** PANEL DEFAULT ***/
        .with-nav-tabs.panel-default .nav-tabs > li > a,
        .with-nav-tabs.panel-default .nav-tabs > li > a:hover,
        .with-nav-tabs.panel-default .nav-tabs > li > a:focus {
            color: #fff;
        }

            .with-nav-tabs.panel-default .nav-tabs > .open > a,
            .with-nav-tabs.panel-default .nav-tabs > .open > a:hover,
            .with-nav-tabs.panel-default .nav-tabs > .open > a:focus,
            .with-nav-tabs.panel-default .nav-tabs > li > a:hover,
            .with-nav-tabs.panel-default .nav-tabs > li > a:focus {
                color: #fff;
                background: #F8A501;
                border-color: transparent;
            }

    .with-nav-tabs.panel-default .nav-tabs > li.active > a, .with-nav-tabs.panel-default .nav-tabs > li.active > a:hover, .with-nav-tabs.panel-default .nav-tabs > li.active > a:focus {
        color: #333;
        background: #fff;
        border-color: #fff;
        border-bottom-color: transparent;
    }

    .with-nav-tabs.panel-default .nav-tabs > li.dropdown .dropdown-menu {
        background-color: #f5f5f5;
        border-color: #ddd;
    }

        .with-nav-tabs.panel-default .nav-tabs > li.dropdown .dropdown-menu > li > a {
            color: #777;
        }

            .with-nav-tabs.panel-default .nav-tabs > li.dropdown .dropdown-menu > li > a:hover,
            .with-nav-tabs.panel-default .nav-tabs > li.dropdown .dropdown-menu > li > a:focus {
                background-color: #ddd;
            }

        .with-nav-tabs.panel-default .nav-tabs > li.dropdown .dropdown-menu > .active > a,
        .with-nav-tabs.panel-default .nav-tabs > li.dropdown .dropdown-menu > .active > a:hover,
        .with-nav-tabs.panel-default .nav-tabs > li.dropdown .dropdown-menu > .active > a:focus {
            color: #fff;
            background-color: #555;
        }

.sections_right {
    display: block;
    width: 70%;
}

.right_mores {
    display: block;
    width: 30%;
}

.Tripe_colom {
    width: 64%;
    float: left;
    margin: 0 1% 0 0;
    position: relative;
}

.middle_swap {
    width: 7.2%;
    height: 55px;
    background: #fff;
    text-align: center;
    cursor: pointer;
    float: left;
    border-radius: 4px;
    margin: 0px .4% 0 .4%;
    padding: 14px 0;
}

.origin_one {
    width: 46%;
    float: left;
}

.dates_colom {
    width: 34%;
    height: 55px;
    float: left;
    background: #fff;
    border-radius: 4px;
    margin: 0 1% 0 0;
    position: relative;
    padding: 0 0 0 32px;
}

    .dates_colom img {
        width: 20px;
        position: absolute;
        top: 18px;
        left: 7px;
    }

.Depart_sdt {
    width: 50%;
    float: left;
    position: relative;
}

.retur_arrow {
    position: absolute;
    top: 18px;
    left: -25px;
    font-size: 17px;
}


.vellers_tre {
    width: 55%;
    float: left;
    background: #fff;
    border-radius: 4px;
    margin: 0 1% 0 0;
}

.lowder_serc {
    width: 44%;
    float: left;
}

.Search_nows {
    background: #f60;
    border: none;
    box-shadow: 0 4px #f04c2a, -5px 7px transparent;
    width: 100%;
    font-weight: 500;
    color: #fff;
    height: 53px;
    border-radius: 5px;
    font-size: 16px;
}

.form-group.ddtpst {
    margin: 10px 0 0 0 !important;
}


.form_bx {
    padding: 15px;
}

.easy_srch {
    background: #014d9d;
    padding: 0 12px 0 12px;
}

    .easy_srch h4 {
        font-size: 13px;
        color: rgb(255, 255, 255);
        margin: 0px 0 0px 0;
        font-weight: 600;
        padding: 15px 10px 13px 10px;
        display: inline-block;
        border-radius: 6px 6px 0px 0;
        text-transform: uppercase;
        border-bottom: solid 3px #f60;
    }

        .easy_srch h4 i {
            transform: rotate(45deg);
            margin: 0 5px 0 0;
            color: #f60;
        }

.form-control:focus {
    border-color: ivory;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
}

.ipt1_location {
    border: none;
    font-size: 14px;
    padding: 12px 8px 10px 30px;
    background-color: #fff;
    height: 55px;
    font-weight: 500;
    color: #333;
}

.ipt1_dateselect {
    background: transparent;
    border: none;
    font-size: 14px;
    padding: 12px 8px 10px 0px;
    background-color: transparent !important;
    height: 56px;
    font-weight: 500;
    color: #333;
}

.form-group.dst_date {
    position: relative;
    margin: 0;
}

    .form-group.dst_date img {
        width: 20px;
        position: absolute;
        top: 18px;
        left: 7px;
    }

select, input.ipt1_location::-webkit-input-placeholder {
    color: rgb(189, 189, 189);
    font-weight: 400;
    font-size: 15px;
}


.closed_icon {
    position: absolute;
    top: 16px;
    right: 3px;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    background: #E8381B;
    text-align: center;
    cursor: pointer;
}

    .closed_icon i {
        line-height: 20px;
        color: #fff;
        font-size: 15px;
    }

.flight_type_tgfsr .form-group.form-check {
    display: inline-block;
    margin: 0 20px 0 0;
}

.flight_type_tgfsr label {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    display: inline-block;
}

.form-control,
.form-select {
    box-shadow: none !important;
}


    .form-control:focus {
        box-shadow: 0 0 0 #5d5d5d !important;
    }

.fm_ln1 {
    position: relative;
    margin: 0 0 0 0;
}

.change_city img {
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    padding: 2px;
}

.change_date img {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    padding: 2px;
}

.fm_ln1 .form-group {
    margin: 0 0px 0px 0;
    position: relative;
}


.form-group.dst_date p {
    font-size: 13px;
    color: #777;
    margin: 0px;
    border: none;
    position: absolute;
    bottom: 6px;
    width: 100%;
    left: 15px;
    padding: 0;
    font-weight: 400;
    height: 16px;
    line-height: 16px;
    overflow: hidden;
    display: none;
}


.fm_ln1 button {
    width: 100%;
    color: #fff;
    border: 0;
    padding: 7px 0;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    border-radius: 0px 10px 10px 0px;
    background: linear-gradient(93deg,#ef7f1a,#ff4900);
    margin: 0 0 0 1px;
    cursor: pointer;
    height: 70px;
}

.flight_type label {
    color: #fff;
    width: auto;
    font-weight: 500;
    margin: 5px 15px 15px 0;
    font-size: 14px;
    padding: 7px 8px 5px 23px;
    text-align: left;
    float: left;
    line-height: 14px;
}

.flight_type input[type=radio] {
}

.multi_route {
    width: 100%;
    display: grid;
}

.room_aads {
    display: table;
    width: 100%;
    margin: 12px 0 0 0;
    position: relative;
}

#add-button {
    border: dashed 1px #ffffff;
    color: #fffdfc;
    font-size: 14px;
    font-weight: 400;
    padding: 10px 15px 10px 15px;
    display: inline-block;
    margin: 12px 0 0 0;
    text-transform: uppercase;
    line-height: 14px;
    text-decoration: none;
    border-radius: 30px;
}

#remove-button {
    display: inline-block;
    margin: 0px 0 0 0;
    text-transform: uppercase;
    line-height: 14px;
    text-decoration: none;
    position: absolute;
    top: 17px;
}

    #remove-button span {
        font-size: 12px;
        color: #fff;
        display: none;
        padding: 2px 0 0 3px;
    }

    #remove-button img {
        width: 25px;
    }

/* Custom Radio Button Start*/

.radiotextsty {
    color: #A5A4BF;
    font-size: 18px;
}

.customradio {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 0px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default radio button */
    .customradio input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 4px;
    left: 0px;
    height: 18px;
    width: 18px;
    background-color: transparent !important;
    border-radius: 50%;
    border: 2px solid #ffffff !important;
}

/* On mouse-over, add a grey background color */
.customradio:hover input ~ .checkmark {
    background-color: transparent;
}

/* When the radio button is checked, add a blue background */
.customradio input:checked ~ .checkmark {
    background-color: white;
    border: 1px solid #5d5d5d;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.customradio input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.customradio .checkmark:after {
    top: 3px;
    left: 50%;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #e7e7e7;
    transform: translate(-50%, 0px);
}

.gapres_dd {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    cursor: not-allowed;
    background-color: transparent;
    opacity: 1;
}

/* Custom Radio Button End*/

.bncfr_ccrty {
    padding: 0px 0px;
    margin: 0px 0 0px 0;
}

select.Nhgsdrt {
    font-size: 14px;
    color: #fff !important;
    margin: 5px 0 0 0;
    padding: 2px 0 2px 6px;
    height: auto;
    border: solid 1px #ffffff;
    background: transparent !important;
    border-radius: 30px;
    cursor: pointer;
}

.select-dropdown {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.select-dropdown__button {
    padding: 4px 35px 4px 12px;
    background: url(/Content/assets/images/serc_dropdown.png) right top no-repeat;
    color: #ffffff;
    border: 1px solid #fffafa;
    border-radius: 28px;
    width: auto;
    text-align: left;
    font-size: 14px;
    margin: 3px 0 0 0;
    -webkit-appearance: none;
    position: relative;
    background-size: 12px;
    background-position: 140px;
}

    .select-dropdown__button::focus {
        outline: none;
    }

    .select-dropdown__button .fa-chevron-down {
        position: absolute;
        right: 10px;
        top: 14px;
        font-size: 10px;
        font-weight: 300;
    }

.select-dropdown__list {
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    max-height: 300px;
    overflow: auto;
    margin: 0;
    padding: 0;
    list-style-type: none;
    opacity: 0;
    pointer-events: none;
    transform-origin: top left;
    transform: scale(1, 0);
    transition: all ease-in-out 0.3s;
    z-index: 2;
    min-width: 180px;
    box-shadow: 0 2px 0.75rem rgba(12,14,28,.08);
    border-radius: 8px;
}

    .select-dropdown__list.active {
        opacity: 1;
        pointer-events: auto;
        transform: scale(1, 1);
    }

.select-dropdown__list-item {
    display: block;
    list-style-type: none;
    padding: 10px 15px;
    background: #fff;
    border-top: 1px solid #e6e6e6;
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
    color: #616161;
    transition: all ease-in-out 0.3s;
}

.bncfr_ccrty .form-group {
    margin: 0;
}

.fm_ln1 {
}

.main_fm {
    position: relative;
}

input.add_num {
    padding: 0;
    width: 30% !important;
    height: 36px;
    border: none;
    background: #ffffff;
    border-top: solid 1px #ffffff;
    border-bottom: solid 1px #ffffff;
}

a.add_btn, a.mns_btn {
    color: #999999 !important;
    background: #fff;
    padding: 5px 12px;
    border: solid 1px #adadad;
    border-radius: 4px;
}

    a.add_btn:hover, a.mns_btn:hover {
        color: #5d5d5d;
        text-decoration: none;
    }
/*a.mns_btn{color: #5d5d5d;background: #ff7742;padding: 3px 12px;}*/


.pass_bx {
    margin: 15px 0px 12px 0px;
}

.btn_dn {
    margin: 4px 0px 0 0;
}

    .btn_dn button {
        width: 100%;
        color: #ffffff !important;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 16px;
        margin: 0 0 0px 0;
        height: 40px;
        background: linear-gradient(rgb(255 102 0), rgb(255 137 59));
        padding: 9px 12px;
        border: none;
        border-radius: 4px;
        box-shadow: 0 2px #ff6d0b, -5px 7px transparent;
    }

.psg_dls {
    width: 300px;
    display: table;
    background: #ffffff;
    padding: 0px 10px 10px;
    position: absolute;
    top: 62px;
    left: 0px;
    z-index: 9;
    border-radius: 5px;
    box-shadow: 0 2px 0.75rem rgba(12,14,28,.08);
}

.nbhdf_fl {
    font-size: 16px;
    margin: 0 0 0 0;
    padding: 14px 0 14px 0;
    color: #014d9d;
}

.lower_bed {
    border-bottom: solid 1px #ece1ef;
    margin: 0 -10px;
}

.bhard_hrtd {
    font-size: 15px;
    font-weight: 500;
    color: rgb(65, 65, 65);
    line-height: 14px;
    margin: 0 0 0 0;
}

    .bhard_hrtd small {
        display: block;
        color: rgb(189, 189, 189);
        font-size: 12px;
        line-height: 16px;
        margin: 4px 0 0 0;
    }

.lkrg_kjrt {
    border-bottom: solid 1px #ece1ef;
    margin: 0 2px;
}

.ffrms_ppd {
    padding: 0;
}


#radioBtn .notActive {
    color: #3276b1;
    background-color: #5d5d5d;
}


@media (min-width: 220px) and (max-width: 319px) {
    .container-fluid {
        width: 100%;
    }

    .dmst_slou img {
        display: none
    }

    .flight_type_dv {
        display: inline-block;
    }

    .flight_type label {
        margin: 5px 0px 6px 0;
        font-size: 12px;
        white-space: nowrap
    }

    .Tripe_colom {
        width: 100%;
        margin: 0 0% 0 0;
        background: transparent;
    }

    .origin_one {
        width: 100%;
        float: left;
        background: #fff;
        margin: 2px 0 0 0;
        border-radius: 4px;
    }

    .dates_colom {
        width: 100%;
        margin: 5px 0% 0 0;
    }

    .vellers_tre {
        width: 100%;
        margin: 5px 0% 0 0;
    }

    .lowder_serc {
        width: 100%;
        float: left;
        margin-top: 5px;
    }

    .select-dropdown__button {
        margin: 3px 0 10px 0;
    }

    .middle_swap {
        width: 24px;
        background: #fff;
        line-height: 10px;
        margin: 0;
        position: absolute;
        left: 45%;
        top: 36px;
        z-index: 1;
        border: solid 3px #014d9d;
        transform: rotate(90deg);
        height: auto;
        padding: 3px 0;
    }

    .ipt1_location {
        font-size: 12px;
        height: 46px;
    }

    .ipt1_dateselect {
        font-size: 12px;
        height: 46px;
    }

    .ipt1_dateselect {
        height: 46px;
    }

    .form-group.dst_date img {
        width: 16px;
        top: 16px;
    }

    .dates_colom img {
        width: 17px;
        top: 15px;
    }

    .Search_nows {
        height: 46px;
    }

    select,
    input.ipt1_location::-webkit-input-placeholder {
        color: rgb(189, 189, 189);
        font-weight: 400;
        font-size: 12px;
    }

    .retur_arrow {
        left: -14px;
        top: 12px;
    }

    .form-check-inline {
        margin-right: 0;
    }

    .sections_right {
        display: block;
        width: 100%;
    }

    .psg_dls {
        width: 100%;
    }

    .add_btn, .mns_btn {
        padding: 5px 6px;
    }

    .bhard_hrtd {
        font-size: 12px;
        line-height: 12px;
    }

        .bhard_hrtd small {
            font-size: 11px;
            margin: 2px 0 0 0;
        }

    /*   .select-dropdown__button {
        padding: 4px 15px 4px 12px;
        font-size: 12px;
    }*/

    .right_mores {
        display: block;
        width: 100%;
    }

    #add-button {
        margin: 10px 0 7px 0;
    }

    #remove-button {
        margin: 15px 0 10px 0;
        position: static;
        border: dashed 1px #fff;
        padding: 10px 10px 10px 10px;
        border-radius: 25px;
    }

        #remove-button img {
            width: 14px;
        }

        #remove-button span {
            display: inline-block;
        }

    .group1_colom {
        width: 100%;
        margin: 0 0% 1px 0;
    }

    .group_one_col {
        width: 100%;
        margin: 0 0% 2px 0;
    }

    .group2_dates {
        width: 100%;
        margin: 0 0% 2px 0;
    }

    .group_traveler {
        width: 100%;
        margin: 0 0% 3px 0;
    }

    .name_users {
        width: 100%;
        margin: 0px 0px 3px 0;
    }

    .phones_users {
        width: 100%;
        margin: 0px 0px 0px 0;
    }

    .emails_users {
        width: 100%;
        margin: 2px 0px 0px 0;
    }

    .message_users {
        width: 100%;
        margin: 3px 0px 0px 0;
    }

    .submits_groups {
        width: 75%;
    }

    .sp_scroll_callus {
        font-size: 10px;
    }

    .sp_scroll_num {
        font-size: 12px;
    }
    .pagesnot_found img {
        width: 200px !important;
    }
}

@media (min-width:320px) and (max-width:479px) {
    .container-fluid {
        width: 100%;
    }

    .flight_type_dv {
        display: inline-flex;
    }

    .flight_type label {
        margin: 5px 0px 6px 0;
        font-size: 13px;
        white-space: nowrap;
    }

    .Tripe_colom {
        width: 100%;
        margin: 0 0% 0 0;
        background: transparent;
    }

    .origin_one {
        width: 100%;
        float: left;
        background: #fff;
        margin: 2px 0 0 0;
        border-radius: 4px;
    }

    .dates_colom {
        width: 100%;
        margin: 5px 0% 0 0;
    }

    .vellers_tre {
        width: 100%;
        margin: 5px 0% 0 0;
    }

    .lowder_serc {
        width: 100%;
        float: left;
        margin-top: 5px;
    }

    .select-dropdown__button {
        margin: 3px 0 10px 0;
    }

    .middle_swap {
        width: 32px;
        background: #fff;
        line-height: 10px;
        margin: 0;
        position: absolute;
        left: 45%;
        top: 41px;
        z-index: 1;
        border: solid 3px #014d9d;
        transform: rotate(90deg);
        height: auto;
        padding: 8px 0;
    }

    .retur_arrow {
        left: -32px;
        top: 10px;
    }

    .form-check-inline {
        margin-right: 0;
    }

    .sections_right {
        display: block;
        width: 100%;
    }

    .right_mores {
        display: block;
        width: 100%;
    }

    #add-button {
        margin: 10px 0 7px 0;
    }

    #remove-button {
        margin: 15px 0 10px 0;
        position: static;
        border: dashed 1px #fff;
        padding: 10px 10px 10px 10px;
        border-radius: 25px;
    }

        #remove-button img {
            width: 14px;
        }

        #remove-button span {
            display: inline-block;
        }

    .group1_colom {
        width: 100%;
        margin: 0 0% 1px 0;
    }

    .group_one_col {
        width: 100%;
        margin: 0 0% 2px 0;
    }

    .group2_dates {
        width: 100%;
        margin: 0 0% 2px 0;
    }

    .group_traveler {
        width: 100%;
        margin: 0 0% 3px 0;
    }

    .name_users {
        width: 100%;
        margin: 0px 0px 3px 0;
    }

    .phones_users {
        width: 100%;
        margin: 0px 0px 0px 0;
    }

    .emails_users {
        width: 100%;
        margin: 2px 0px 0px 0;
    }

    .message_users {
        width: 100%;
        margin: 3px 0px 0px 0;
    }

    .submits_groups {
        width: 75%;
    }

    .sp_callus {
        font-size: 16px;
    }

    .sp_scroll_num {
        font-size: 18px;
    }

    .scroll-top-btn {
        bottom: 83px;
    }
    .pagesnot_found img {
        width: 250px!important;
    }
}


@media (min-width:480px) and (max-width:767px) {
    .container-fluid {
        width: 100%;
    }

    .flight_type label {
        width: 112px;
        margin: 5px 0px 6px 0;
        font-size: 13px;
    }

    .Tripe_colom {
        width: 100%;
        margin: 0 0% 0 0;
        background: transparent;
    }

    .origin_one {
        width: 100%;
        float: left;
        background: #fff;
        margin: 2px 0 0 0;
        border-radius: 4px;
    }

    .dates_colom {
        width: 100%;
        margin: 5px 0% 0 0;
    }

    .vellers_tre {
        width: 100%;
        margin: 5px 0% 0 0;
    }

    .lowder_serc {
        width: 100%;
        float: left;
        margin-top: 5px;
    }

    .select-dropdown__button {
        margin: 3px 0 10px 0;
    }

    .middle_swap {
        width: 32px;
        background: #fff;
        line-height: 26px;
        margin: 0;
        position: absolute;
        left: 43%;
        top: 32px;
        z-index: 1;
        border: solid 3px #014d9d;
        transform: rotate(90deg);
    }

    .retur_arrow {
        left: -32px;
        top: 10px
    }

    .form-check-inline {
        margin-right: 0;
    }

    .sections_right {
        display: block;
        width: 100%;
    }

    .right_mores {
        display: block;
        width: 100%;
    }

    #add-button {
        margin: 10px 0 7px 0;
    }

    #remove-button {
        margin: 15px 0 10px 0;
        position: static;
        border: dashed 1px #fff;
        padding: 10px 10px 10px 10px;
        border-radius: 25px;
    }

        #remove-button img {
            width: 14px;
        }

        #remove-button span {
            display: inline-block;
        }

    .group1_colom {
        width: 100%;
        margin: 0 0% 1px 0;
    }

    .group_one_col {
        width: 100%;
        margin: 0 0% 2px 0;
    }

    .group2_dates {
        width: 100%;
        margin: 0 0% 2px 0;
    }

    .group_traveler {
        width: 100%;
        margin: 0 0% 3px 0;
    }

    .name_users {
        width: 100%;
        margin: 0px 0px 3px 0;
    }

    .phones_users {
        width: 100%;
        margin: 0px 0px 0px 0;
    }

    .emails_users {
        width: 100%;
        margin: 2px 0px 0px 0;
    }

    .message_users {
        width: 100%;
        margin: 3px 0px 0px 0;
    }

    .submits_groups {
        width: 75%;
    }

    .mob-callus {
        width: 96%;
    }

    .scroll-top-btn {
        right: 20px
    }
}


@media (min-width:768px) and (max-width:1023px) {
    .container-fluid {
        width: 100%;
    }

    .flight_type label {
        width: 112px;
        margin: 5px 0px 6px 0;
        font-size: 13px;
    }

    .Tripe_colom {
        width: 100%;
        margin: 0 0% 0 0;
        background: transparent;
    }

    .origin_one {
        width: 100%;
        float: left;
        background: #fff;
        margin: 2px 0 0 0;
        border-radius: 4px;
    }

    .dates_colom {
        width: 100%;
        margin: 5px 0% 0 0;
    }

    .vellers_tre {
        width: 100%;
        margin: 5px 0% 0 0;
    }

    .lowder_serc {
        width: 100%;
        float: left;
        margin-top: 5px;
    }

    .select-dropdown__button {
        margin: 3px 0 10px 0;
    }

    .middle_swap {
        width: 26px;
        height: 45px;
        background: #fff;
        line-height: 26px;
        margin: 0;
        position: absolute;
        left: 47%;
        top: 35px;
        z-index: 1;
        border: solid 3px #014d9d;
        transform: rotate(90deg);
    }

        .middle_swap img {
            margin: -8px;
        }

    .retur_arrow {
        left: -32px;
        top: 10px
    }

    .form-check-inline {
        margin-right: 0;
    }

    .sections_right {
        display: block;
        width: 100%;
    }

    .right_mores {
        display: block;
        width: 100%;
    }

    #add-button {
        margin: 10px 0 7px 0;
    }

    #remove-button {
        margin: 15px 0 10px 0;
        position: static;
        border: dashed 1px #fff;
        padding: 10px 10px 10px 10px;
        border-radius: 25px;
    }

        #remove-button img {
            width: 14px;
        }

        #remove-button span {
            display: inline-block;
        }

    .name_users {
        width: 32.7%;
        margin: 0px 5px 0px 0;
    }

    .group2_dates .retur_arrow {
        left: -15px;
    }

    .mob-callus {
        width: 98%;
    }

    .scroll-top-btn {
        right: 20px
    }
}

@media (min-width:1024px) and (max-width:1366px) {
    .name_users {
        width: 32.7%;
        float: left;
        margin: 0px 7px 0px 0;
    }

    .city_htitle h1 {
        margin: 0 0 10px 0;
    }

    .group2_dates .retur_arrow {
        top: 9px;
    }
}

@media only screen and (max-width: 1280px) {
    .groups_location {
        height: 42px;
        font-size: 13px;
    }

    .groups_dateselect {
        height: 42px;
        font-size: 13px;
    }

    .group_one_col .form-group.dst_date img {
        top: 14px;
        width: 16px;
    }

    .group_traveler .form-group.dst_date img {
        top: 14px;
        width: 16px;
    }

    .name_users .form-group.dst_date img {
        top: 14px;
        width: 16px;
    }

    .phones_users .form-group.dst_date img {
        top: 14px;
        width: 16px;
    }

    .emails_users .form-group.dst_date img {
        top: 14px;
        width: 16px;
    }

    .message_users .form-group.dst_date img {
        top: 12px;
        width: 16px;
    }

    .group2_dates img {
        width: 17px;
        top: 14px;
    }

    .messagebox_group {
        font-size: 13px;
        padding: 10px 8px 10px 30px;
    }

    .groups_destinati {
        padding: 30px 0 50px 0 !important;
    }
}

/*for Repayment */

.confirmation-container {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

    .confirmation-container img {
        width: 90px;
        margin-bottom: 25px;
    }

    .confirmation-container h1 {
        color: #014d9d;
        font-size: 30px;
        margin-bottom: 15px;
    }

    .confirmation-container p {
        font-size: 17px;
        color: #444;
        margin-bottom: 25px;
    }

    .confirmation-container a {
        text-decoration: none;
        color: #fff;
        background-color: #f60;
        padding: 12px 24px;
        border-radius: 8px;
        font-size: 16px;
        transition: background-color 0.3s ease;
    }

        .confirmation-container a:hover {
            background-color: #0056b3;
        }



/*small Mobile view*/


@media(max-width: 324px) {
    .navbar-brand img

{
    height: 25px !important;
}

.navbar-toggler-icon, .breadcr_list ul li {
    font-size: 10px
}

.navbar-toggler {
    height: 25px;
    padding: 4px;
    padding-top: 0px
}

.navbar-collapse {
    font-size: 12px;
    padding-top: 15px;
    top: 40px;
}

.city_htitle h1, .ours_faq .card .card-header .accordion-head a h3, .ours_faq .card .card-header .accordion-head a i {
    font-size: 12px !important;
}

.small_navig {
    padding: 5px 5px;
}

.nav-underline {
    gap: 5px !important;
    line-height: 5px;
}

    .btmborder div h5,
    .expborder,
    .flight-search-box  .h5{
        font-size: 15px !important
    }
    .flight-search-box .h6 {
        font-size: 12px !important
    }

    .btmborder div li,
    .card-text,
    p,
    .car-offer-label,
    .car-caption,
    ul,
    .Disclaimer_page ul li,
    table {
        font-size: 11px !important
    }
    ul {
        margin-left:-12px!important
    }
.section-heading,
.card-title {
    font-size: 12px !important
}

.card-img-top {
    height: 30px;
}

.scroll-top-btn {
    height: 20px;
    width: 20px;
}

.cardimg {
    height: 70px;
}

.scroll-top-btn i {
    font-size: 12px !important;
}

.flight-search-box {
    font-size: 12px;
    padding: 5px
}

    .flight-search-box .btn-custom-orange,
    .flight-search-box .form-select,
    .flight-search-box .search-field .form-control,
    .flight-search-box .search-field .calendar-display strong,
    .flight-search-box .search-field .label-airportCode {
        font-size: 10px !important;
    }

    .flight-search-box .search-field .label-placeName,
    .flight-search-box .search-field .calendar-display span {
        font-size: 10px !important;
    }

    .flight-search-box .search-btn {
        height: 30px;
        font-size: 12px
    }

    .flight-search-box .search-field {
        height: 50px;
        font-size: 12px !important;
    }

        .flight-search-box .search-field i {
            font-size: 15px !important;
        }

    .flight-search-box .remove-leg-btn {
        font-size: 20px !important;
    }

    .flight-search-box #travelerBox {
        position: relative !important
    }
/*.flatpickr-calendar {
             font-size: 11px;
             max-width: 100%;*/
/*transform: scale(0.9);*/ /* Optional: shrink slightly */
/*transform-origin: top left;
         }

             .flatpickr-calendar,
             .flatpickr-calendar .flatpickr-innerContainer,
             .flatpickr-calendar .flatpickr-rContainer,
             .flatpickr-calendar .flatpickr-days,
             .flatpickr-calendar .dayContainer {
                 max-width: 100% !important;
             }
             .flatpickr-calendar .dayContainer {
                 display: block;
             }
             .flatpickr-calendar .flatpickr-days .flatpickr-day {
                 max-width: 30px !important;
                 max-height: 30px !important;
                 line-height: 30px !important;
             }

             .flatpickr-months,
             .flatpickr-weekdays,
             .flatpickr-days {
                 font-size: 10px;
                 max-width: 100% !important;
                 margin: 0px !important;
                 padding: 0px !important
             }

         .flatpickr-day.today {
             background: #f0ad4e;*/ /* Custom orange for today */
/*color: #fff;
         }
         .flatpickr-calendar {
             width: 100% !important;
             max-width: 100% !important;
             box-sizing: border-box;
         }

         .flatpickr-days {
             display: grid !important;
             grid-template-columns: repeat(7, 1fr);*/ /* 7 equal-width columns */
/*gap: 2px;*/ /* Optional: small space between days */
/*padding: 0 5px;*/ /* Padding to prevent edge clipping */
/*}

         .flatpickr-day {
             width: 100% !important;
             height: auto !important;
             aspect-ratio: 1 / 1;*/ /* Keep it square */
/*font-size: 10px !important;
             line-height: 1 !important;
             padding: 0 !important;
             margin: 0 !important;
             text-align: center;
         }*/

.col-xs-full {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
}

.col-xs-half {
    flex: 0 0 50%;
    max-width: 50%;
    margin: 0px !important;
    padding: 0px !important
}

    .col-xs-half .input-group {
        flex-wrap: nowrap !important;
    }

        .col-xs-half .input-group .btn {
            padding: 0px !important;
        }

        .col-xs-half .input-group .form-control {
            padding: 0px !important;
            font-size: 11px
        }

#MobCallUs {
    display: none !important;
}

.callnow_mm {
    display: none !important;
}

.h6card img {
    width: 25px;
}

.h6card i {
    transform: rotate(90deg);
}

.h6card {
    text-align: center !important;
    font-size: 11px
}

.card-body {
    margin: 1px;
    padding: 1px
}

.d-xs-block {
    display: block !important;
}

.pcard img {
    width: 15px
}
    .imgflightcard {
        display:none!important
    }
    .modifySearchInfoBox .col-3 {
        padding-left: 0px !important;
    }
    .filter_text1 {
        padding: 5px !important;
    }
    #modifySearchBtn1 {
        font-size:12px !important
    }
}

@media(max-width: 768px){
    .imgflightcard {
        display: none !important
    }
} 
@media(min-width: 769px){
    #MobCallUs {
        display: none !important;
    }
}

.card-time {
    color: var(--color-blue);
    font-weight: bold;
    margin-bottom:0px!important;
    font-size: 18px;
    line-height: 18px;
}
.card-text {
    font-size: 13px;
    line-height: 18px;
}



/** NEW-Autocomplete search locations CSS  starts */
.dropdown_autocomplete {
    position: absolute;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    max-height: 300px;
    overflow-y: auto;
    width: 100%;
    max-width: 360px;
    padding-left: 0px;
    z-index: 9999;
    box-shadow: 0 0px 3px #777;
    border-radius: 1px;
    display: none;
    overflow-x: hidden;
}

.dropdown-item_autocomplete {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

    .dropdown-item_autocomplete:hover {
        color: #ffff !important;
        background: #010a3b;
    }

.main-airport_autocomplete {
    font-weight: 500;
    font-size: 14px;
    display: flex;
    justify-content: flex-start;
}

.child-airport_autocomplete {
    padding-left: 20px;
    font-size: 14px;
    display: flex;
    justify-content: flex-start;
}
.right-angle-icons {
    font-size: 17px;
    font-weight: bold;
    margin-right: 6px;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

    .right-angle-icons svg {
        display: inline-block;
        vertical-align: middle;
    }

.flight-icn {
    font-family: Arial, sans-serif;
    margin-right: 6px;
    display: flex;
    align-items: center;
}

    .flight-icn i {
        transform: rotate(319deg) !important;
        font-size: 17px;
    }

.autocomplete-plane-icon {
    font-size: 17px !important;
    margin-right: 10px;
}

.airport-name.main-airport_autocomplete {
    display: flex;
    align-items: center;
}

 .list-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 6px 10px;
        background: white;
        border-bottom: 1px solid #efe7e7;
    }
.country-name {
    font-size: 10px;
    font-weight: 400;
    padding-bottom: 0;
    margin-bottom: 0;
}
.list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 10px;
    background: white;
    border-bottom: 1px solid #efe7e7;
}
/** NEW-Autocomplete search locations CSS  end*/


.overlayh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f6f6f64f;
    z-index: 10;
}
