@charset "UTF-8";
.btn {
  height: auto;
  box-shadow: none;
}

a {
  color: #000;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: "PT Sans", sans-serif;
  background-color: #fff;
}

.ui-datepicker-month, .ui-datepicker-year {
  display: inline;
}

.modal {
  background: none;
  max-height: 100%;
}

.modal .modal-content {
  padding: 0;
  border: 0;
  margin: 0;
}

.row {
  margin-bottom: 0;
}

tr, th, td {
  border: 0;
}

.home_top {
  position: relative;
}
.home_top:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.67) 0%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.67) 0%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.67) 0%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ab000000", endColorstr="#00000000",GradientType=0 );
}

.home_header {
  padding: 5px 15px;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: transparent;
  margin-bottom: -48px;
  z-index: 2;
}
.home_header img {
  margin-right: auto;
  margin-left: -15px;
  width: 75px;
}
.home_header i {
  font-size: 20px;
  color: #fff;
}
.home_header .btn {
  margin-right: auto;
  padding-left: 0;
}

.swiper2 .swiper-slide img {
  height: 225px;
  width: 100%;
  object-fit: cover;
}

.notification .inner {
  text-align: center;
}

.notification .inner i {
  font-size: 25px;
  color: #00adef;
  margin-bottom: 15px;
}

.notification .inner h2 {
  font-size: 22px;
  color: #373737;
}

/*----PRELOADER---*/
.se-pre-con {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url(../images/loader.gif) center no-repeat white;
  background-size: 80%;
}

.label_from {
  position: relative;
}

/**===== dots4 =====*/
#dots4 {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
}

#dots4 span {
  /*  position: absolute;*/
  /*	top: 50%;
  	transform: translateY(-50%);
  	left: 0;
  	right: 0;
  	margin: 0 auto;
  */
  width: 22px;
  height: 22px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  background: #7996b8;
  -webkit-animation: dots4 1.7s infinite ease-in-out both;
  animation: dots4 1.7s infinite ease-in-out both;
  margin-right: 5px;
}

#dots4 span:nth-child(1) {
  background: #00adef;
  /*  left: 0px;*/
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

#dots4 span:nth-child(2) {
  background: #f6a241;
  /*  left: 15px;*/
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

#dots4 span:nth-child(3) {
  background: #f6ae5c;
  /*  left: 30px;*/
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

#dots4 span:nth-child(4) {
  /*  left: 45px;*/
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

@keyframes dots4 {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes dots4 {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
/** END of dots4 */
/*---------------*/
.navbar {
  padding: 15px 10px;
  background: #fff;
  border: none;
  border-radius: 0;
  margin-bottom: 40px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-btn {
  box-shadow: none;
  outline: none !important;
  border: none;
}

.line {
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #ddd;
  margin: 40px 0;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */
#sidebar {
  width: 250px;
  position: fixed;
  top: 0;
  left: -400px;
  height: 100vh;
  z-index: 999;
  background: #333;
  color: #fff;
  transition: all 0.3s;
  overflow-y: scroll;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

#sidebar.active {
  left: 0;
}

#dismiss {
  line-height: 35px;
  text-align: center;
  color: #000;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

#dismiss:hover {
  background: #fff;
  color: #7386D5;
}

.overlay {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  top: 0;
}

.overlay.active {
  display: block;
  opacity: 1;
}

#sidebar .sidebar-header {
  padding: 20px;
  background: #fff;
}
#sidebar .sidebar-header .after_login {
  text-align: center;
}
#sidebar .sidebar-header .after_login img {
  height: 65px;
  width: 65px;
  border-radius: 50%;
  margin-bottom: 15px;
}
#sidebar .sidebar-header .after_login p {
  color: #000;
}
#sidebar .sidebar-header .before_login {
  text-align: center;
}
#sidebar .sidebar-header .before_login i {
  height: 65px;
  width: 65px;
  border-radius: 50%;
  border: 1px solid #000;
  color: #000;
  padding: 5px;
  font-size: 25px;
  text-align: center;
  line-height: 50px;
  display: block;
  margin: 0 auto;
  margin-bottom: 15px;
}
#sidebar .sidebar-header .before_login a {
  color: #000;
  text-decoration: none;
}
#sidebar ul li a {
  padding: 15px 10px;
  font-size: 14px;
  display: block;
  text-transform: capitalize;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
#sidebar ul li a[aria-expanded=true] {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
#sidebar ul li a[data-toggle=collapse] {
  position: relative;
}
#sidebar ul li a i {
  padding-right: 10px;
  color: #00adef;
}
#sidebar ul li.active a {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
#sidebar ul .collapse {
  background: rgba(255, 255, 255, 0.05);
}

.dropdown-toggle::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

/*---------------*/
.top_search {
  width: 90%;
  margin: 0 auto;
  position: relative;
  /*  margin-top: 8px;*/
}

.top_search .select2-container {
  display: block;
  width: 100% !important;
}

.top_search .select2-container .select2-selection--single {
  border-color: #a1a1a1;
  height: 35px;
}

.top_search .select2-container .select2-selection__rendered {
  line-height: 35px;
  height: 35px;
}

.top_search .select2-container .select2-selection__arrow {
  display: none;
}

.top_search a {
  position: absolute;
  top: 6px;
  right: 8px;
  color: #00adef;
  z-index: 99;
}

.top_search.stick {
  position: fixed;
  width: 100%;
  background: #fff;
  top: 0;
  left: 0;
  z-index: 2;
  margin: 0;
  padding: 6px 15px;
  animation: smoothScroll 1s forwards;
}

.top_search.stick .select2-container {
  width: 100% !important;
}

.top_search.stick a {
  top: 11px;
  right: 24px;
}

.banner h2 {
  display: block;
  color: #00adef;
  text-align: center;
  padding: 10px 0;
  font-size: 5vw;
  font-weight: 600;
  margin-bottom: 0;
}

@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0px);
  }
}
.typed::after {
  content: "|";
  display: inline;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
}

/*Removes cursor that comes with typed.js*/
.typed-cursor {
  opacity: 0;
  display: none;
}

/*Custom cursor animation*/
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*------------*/
.welcome {
  text-align: center;
  padding-top: 30px;
}
.welcome h1 {
  font-size: 25px;
  font-weight: 700;
  color: #00adef;
  margin-bottom: 3px;
}
.welcome p {
  font-size: 14px;
  color: #454545;
}

.wrapper {
  padding-bottom: 70px;
}

.blocks {
  background: #ffffff;
  position: relative;
  z-index: 5;
  margin: -40px auto 25px;
  padding: 15px;
  width: 95%;
  box-shadow: 0px 0px 14px -10px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
}
.blocks [class*=col] {
  padding-right: 8px;
  padding-left: 8px;
}
.blocks [class*=col] .item {
  position: relative;
}
.blocks [class*=col] .item:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: -10px;
  top: -25px;
  color: #ebebeb;
  font-size: 77px;
  z-index: -1;
}

.blocks .item {
  text-align: center;
}
.blocks .item a {
  color: #5f5e5e;
  text-decoration: none;
  display: block;
}
.blocks .item img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(4, 110, 180, 0.16);
  margin-bottom: 10px;
  padding: 6px;
}
.blocks .item p {
  font-size: 2.5vw;
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 600;
}

.blocks.block_stick {
  position: fixed;
  width: 100%;
  background: #fff;
  top: 47px;
  left: 0;
  z-index: 2;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  animation: smoothScroll 1s forwards;
  margin-bottom: 0;
}

.blocks.block_stick [class*=col-] {
  flex: 0 0 28.333333%;
  max-width: 28.333333%;
}

.blocks.block_stick .item {
  padding: 7px 0;
}

.blocks.block_stick .item .img {
  height: 38px;
  width: 38px;
}

.discover {
  padding-left: 10px;
  border-bottom: 6px solid #fbfbfb;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.discover h5 {
  margin-bottom: 8px;
  color: #424242;
  font-size: 3.5vw;
  margin-top: 5px;
}

.discover h3 {
  color: #00adef;
  margin-bottom: 0;
  font-size: 5.5vw;
  font-weight: 600;
}

.discover:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.offers_area {
  white-space: nowrap;
  overflow: auto;
}

.locations {
  margin-top: 10px;
  width: 60vw;
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 10px;
}

.locations .img img {
  height: 125px;
  object-fit: cover;
  width: 100%;
  border-radius: 8px;
}

.locations .desc {
  z-index: 1;
  padding: 10px;
  margin: -30px auto 0;
  position: relative;
  width: 90%;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
}

.locations .desc h4 {
  font-size: 3.5vw;
  white-space: nowrap;
  margin-bottom: 3px;
  overflow: hidden !important;
  text-overflow: ellipsis;
}

.locations .desc h4 small {
  display: block;
  font-size: 2.52vw;
  color: #9f9f9f;
}

.locations .desc .offer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.locations .desc .offer p {
  margin-bottom: 0;
  font-size: 2.5vw;
}

.locations .desc .offer p img {
  width: 25px;
}

.locations .desc .offer p span {
  color: #00adef;
  font-size: 4vw;
}

.locations a {
  text-decoration: none;
  display: block;
}

.locations a:hover {
  color: #196ac5;
}

.top_desti .locations {
  -webkit-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}
.top_desti .img img {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.top_desti .desc {
  width: 100%;
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: none;
}
.top_desti .desc .offer p {
  white-space: break-spaces;
}

#modify .modal-body {
  padding: 5px;
}

#modify .flight_selection {
  padding: 0;
}

.rate > label {
  margin-bottom: 1px;
}

/*----------*/
.splash {
  /* height: 100vh; */
  display: flex;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
}

.splash img {
  width: 250px;
}

.modal-header {
  background: #00adef;
  color: #fff;
  padding: 12px;
  border: 0;
  border-radius: 0;
}

.modal-header .btn-outline-dark {
  color: #fff;
  border-color: #fff;
  padding: 2px 10px;
}

/*----------*/
.header {
  background: #333;
  border-radius: 0;
  color: #fff;
  margin-top: 0;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  z-index: 99;
  top: 0;
}

.header a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  margin-right: auto;
  padding: 1px;
}

.header h4 {
  margin-bottom: 0;
  font-size: 5vw;
  margin-right: auto;
  line-height: initial;
  text-align: center;
}

.header h4 span {
  font-size: 12px;
  display: block;
  margin-top: 3px;
}

.header.three_in_row a {
  margin-right: 0;
}

.header.three_in_row a[aria-expanded=true][data-target="#modify_search"] .fa-search:before {
  content: "";
}

.header.three_in_row h4 {
  margin-right: 0;
}

.header.three_in_row h4 i {
  padding: 0 5px;
}

.fix_header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  background: #fff;
}

.fix_header .header {
  position: relative;
}

.fix_header .sorting {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  background: #fff;
}

.fix_header .sorting p {
  margin-bottom: 0;
}

.fix_header .sorting p span.find_time {
  display: block;
  font-size: 3vw;
  margin-top: -6px;
}

.fix_header .sorting a {
  text-decoration: none;
  color: #00adef;
}

.refine_search {
  position: absolute;
  left: 0px;
  right: 0px;
  margin: 0px auto;
  width: 100%;
  top: 70px;
  height: 100vh;
  min-height: 100vh;
  background: #fff;
  padding-bottom: 150px;
  overflow: auto;
}
.refine_search .flight_selection nav {
  top: 66px;
}

.refine_search .add_city {
  margin-right: 1px;
  margin-left: 0;
}

.flight_selection {
  position: relative;
  min-height: 480px;
  background: #fff;
  z-index: 2;
}
.flight_selection:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 50px;
  background: #fff url(../images/shadow.png);
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: 1;
}

.flight_selection nav {
  background: #fff;
  height: auto;
  line-height: initial;
  box-shadow: none;
  width: 100%;
  left: 0;
  top: 50px;
  padding: 10px 15px;
  z-index: 22;
}

.flight_selection .nav-tabs {
  border-bottom: 0;
  justify-content: space-between;
  padding: 5px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.flight_selection .nav-tabs .nav-item.nav-link {
  color: #1d1d1d;
  font-size: 3vw;
  padding: 5px 12px;
  border-radius: 7px !important;
}

.flight_selection .nav-tabs .nav-item.nav-link.active {
  border-radius: 0;
  border: 0;
  margin-bottom: 0;
  background-image: -webkit-linear-gradient(354deg, #53b2fe, #065af3);
  background-image: -moz-linear-gradient(354deg, #53b2fe, #065af3);
  background-image: -o-linear-gradient(354deg, #53b2fe, #065af3);
  background-image: linear-gradient(96deg, #53b2fe, #065af3);
  color: #fff;
}

.selection {
  position: relative;
  padding: 5px 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.selection .input-group {
  display: block;
}
.selection .input-group .input-group-text {
  margin-bottom: -5px;
}
.selection .input-group label {
  margin-bottom: 0;
  color: #595a5a;
}
.selection .input-group span {
  display: block;
  position: relative;
  z-index: 1;
  font-size: 18px;
  color: #00adef;
  margin-bottom: -15px;
}
.selection .form-control {
  width: 100%;
  height: 45px;
  border: 0;
  padding: 0;
  border-radius: 0;
  font-size: 13px;
  background-color: #fff;
}

.place_toggler {
  position: absolute;
  width: 35px;
  height: 35px;
  background-color: #fff;
  border-radius: 50%;
  right: 20px;
  cursor: pointer;
  bottom: -14px;
  transform: rotate(90deg);
  text-align: center;
  z-index: 5;
  text-align: center;
  -webkit-box-shadow: 0 1px 30px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 30px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 30px 0 rgba(0, 0, 0, 0.1);
  line-height: 31px;
}
.place_toggler img {
  width: 15px;
}

.selection .input-group-text {
  background-color: transparent;
  border: 0;
  padding-left: 0;
  border-radius: 0;
}

.selection .input-group-text img {
  width: 25px;
}

.selection .form-control:focus, .selection .form-control:active {
  box-shadow: none;
}

.selection span {
  align-self: center;
}

.selection .class {
  left: 152px;
  right: auto;
}

.selection .class:before {
  content: "/";
  padding-right: 5px;
}

.selection.disable {
  position: relative;
}

.selection.disable .form-control::placeholder {
  color: #ccc;
}

.selection.disable:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  background: #ccc;
  z-index: 4;
}

.selection.half {
  /*  float: left;*/
  margin-bottom: 10px;
  border-right: 0 !important;
}

.custom_date {
  position: absolute;
  top: 0;
  left: 0px;
  font-size: 13px;
  color: #7D7C7C;
  width: 100%;
  z-index: 9;
  height: 42px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.custom_date .day_month {
  padding-top: 10px;
}
.custom_date span.current_date {
  font-size: 35px;
  margin-right: 5px;
  font-weight: 700;
  margin-bottom: 0;
}
.custom_date span.month_year {
  margin: 0;
  font-size: 14px;
  top: -3px;
}
.custom_date span.current_day_name {
  display: block;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
  top: -7px;
  flex: 0 1 100%;
  left: 0;
}

.row.no-gutters .selection:nth-child(2) {
  opacity: 8;
}

.traveller_selection_select {
  padding: 5px;
}

.traveller .input-group span {
  display: inline-block !important;
  margin-bottom: 0;
  font-size: 17px;
  color: #888;
}
.traveller .input-group {
  display: flex;
}
.traveller .input-group .input-group-text {
  margin-bottom: 0;
}

.traveller .input-group-prepend {
  margin-right: 0;
}

.traveller .input-group {
  height: 60px;
  padding-left: 15px;
}

.traveller span {
  margin-right: 8px;
  align-self: center;
  color: #817d7d;
}

.double_date .form-control {
  opacity: 0;
  visibility: hidden;
}
.double_date .input-group .input-group-text {
  margin-bottom: 0;
}

.double_date.b_l {
  position: relative;
}

.double_date.b_l .input-group-text {
  padding-left: 0;
}

.double_date.b_r {
  border-right: 1px solid #e1e1e1;
}

.date_modal .modal-dialog {
  margin: 0;
}

.date_modal .modal-dialog .modal-content {
  border-radius: 0;
  border: 0;
}

.date_modal .modal-dialog .modal-content .modal-body {
  padding-bottom: 100px;
}

.date_modal .modal-footer {
  border: 0;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  bottom: 0;
  padding: 5px;
}

.date_modal .modal-footer .btn {
  border-color: #00adef;
  display: block;
  margin: 0 auto;
  width: 150px;
  border-radius: 0;
  background: #00adef;
  background: -moz-linear-gradient(top, #00adef 0%, #070f73 100%);
  background: -webkit-linear-gradient(top, #00adef 0%, #070f73 100%);
  background: linear-gradient(to bottom, #00adef 0%, #070f73 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$mainclr", endColorstr="#070f73  ",GradientType=0 );
}

.fade-scale, .modal-backdrop {
  transform: scale(0);
  opacity: 0;
  -webkit-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
}

.fade-scale.show {
  opacity: 1;
  transform: scale(1);
}

.modal-backdrop.show {
  opacity: 0.5;
  transform: scale(1);
}

.date_modal .datepicker, .date_modal .datepicker2 {
  width: 100%;
}

.date_modal .datepicker .ui-datepicker, .date_modal .datepicker2 .ui-datepicker {
  width: 100% !important;
  display: flex !important;
  flex-direction: column;
  border: 0;
  padding: 0;
}

.date_modal .datepicker .ui-state-default, .date_modal .datepicker2 .ui-state-default {
  background-color: #fff;
  border: 0;
  text-align: center;
}

.date_modal .datepicker .ui-state-default.ui-state-active, .date_modal .datepicker2 .ui-state-default.ui-state-active {
  /*  background: $mainclr;*/
  color: #fff;
  border-radius: 12px;
  background: #00adef;
}

.date_modal .datepicker .ui-widget-header, .date_modal .datepicker2 .ui-widget-header {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #00adef;
  border-top: 1px solid #00adef;
}

.submit_button {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 5;
  text-align: center;
}

.submit_button .btn {
  -webkit-border-radius: 34px;
  -moz-border-radius: 34px;
  border-radius: 34px;
  background-image: -webkit-linear-gradient(354deg, #53b2fe, #065af3);
  background-image: -moz-linear-gradient(354deg, #53b2fe, #065af3);
  background-image: -o-linear-gradient(354deg, #53b2fe, #065af3);
  background-image: linear-gradient(96deg, #53b2fe, #065af3);
  -webkit-box-shadow: 0 1px 7px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 7px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 7px 0 rgba(0, 0, 0, 0.2);
  color: #fff;
  border-radius: 50%;
  height: 70px;
  width: 70px;
  font-size: 25px;
}

.add_city {
  margin: 15px 0;
  text-align: right;
}

.add_city .btn {
  background: #00adef;
  color: #fff;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  font-size: 17px;
}

.will_repeat h4 {
  font-size: 17px;
  margin-bottom: 10px;
  display: block;
  width: 100%;
  margin-top: 5px;
  background-image: -webkit-linear-gradient(354deg, #53b2fe, rgba(6, 90, 243, 0));
  background-image: -moz-linear-gradient(354deg, #53b2fe, rgba(6, 90, 243, 0));
  background-image: -o-linear-gradient(354deg, #53b2fe, rgba(6, 90, 243, 0));
  background-image: linear-gradient(96deg, #53b2fe, rgba(6, 90, 243, 0));
  color: #fff;
  padding: 5px 15px;
}

#nav-multi {
  min-height: 420px;
}

.btn.btn_red_new {
  background: #00adef;
  border-color: #00adef;
  color: #fff;
}

/*----------*/
.passenger {
  position: fixed;
  bottom: 0;
  background: #fff;
  padding: 15px 0;
  width: 100%;
  z-index: 9999;
  display: none;
}
.passenger.talk_to_us {
  background-color: #3a3939;
}
.passenger.talk_to_us .title_head {
  border: 0;
}
.passenger.talk_to_us .title_head h3 {
  color: #fff;
}
.passenger.talk_to_us .pass_info .sub .btn {
  background: #fff;
  color: #000;
}
.passenger.talk_to_us .pass_info .pass_row {
  margin-bottom: 0;
}
.passenger.talk_to_us .pass_info .pass_row a {
  display: block;
  padding: 15px;
  font-size: 20px;
  color: #fff;
}
.passenger.talk_to_us .pass_info .pass_row a.phone_call {
  border: 1px solid #fff;
}
.passenger.talk_to_us .pass_info .pass_row a.whatsapp {
  background: #4FCE5D;
}
.passenger.talk_to_us .pass_info .top_pass_block {
  padding: 0;
  background: transparent;
}

.top_pass_block {
  background: #f9f9f9;
  padding: 10px 15px 1px;
  margin-bottom: 0;
}

.bottom_pass_block {
  text-align: center;
  background: #ededed;
  padding: 15px 0;
  margin-bottom: 8px;
}

.bottom_pass_block label {
  margin-bottom: 0;
}

.passenger .title_head {
  text-align: center;
  border-bottom: 1px solid #d7d7d7;
  margin-bottom: 0;
  padding-bottom: 10px;
}

.passenger .title_head h3 {
  font-size: 20px;
  font-weight: 700;
  position: relative;
}

.passenger .pass_info .pass_row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.passenger .pass_info .pass_row .left_area h4 {
  font-size: 16px;
}

.passenger .pass_info .pass_row .left_area h4 span {
  display: block;
  font-size: 12px;
  color: #555555;
}

.passenger .pass_info .pass_row .right_area .form-control {
  width: 60px;
  text-align: center;
  border: 0;
  margin-top: -3px;
  padding: 0;
  background: transparent;
}

.passenger .pass_info .pass_row .right_area .input-group-btn {
  background: #00adef;
  border-radius: 0;
  width: 50px;
  height: 30px;
  text-align: center;
  box-shadow: none !important;
}

.passenger .pass_info .pass_row .right_area .input-group-btn .btn {
  padding: 0;
}

.passenger .pass_info .pass_row .right_area .input-group-btn .btn:focus {
  box-shadow: none !important;
}

.passenger .pass_info .pass_row .right_area .input-group-btn i {
  font-size: 10px;
  color: #fff;
  vertical-align: initial;
  margin-top: 0;
}

.passenger .pass_info .sub .btn {
  color: #fff;
  width: 150px;
  margin-top: 10px;
  border-radius: 0;
  background: #00adef;
}

.passenger .pass_info .non_stop {
  border-top: 1px solid #d7d7d7;
  margin: 10px 0;
  padding: 15px 0;
  text-align: center;
  border-bottom: 1px solid #d7d7d7;
}

.passenger .pass_info .non_stop p {
  font-weight: bold;
  margin-bottom: 5px;
}

.passenger .pass_info .non_stop .btn-group-toggle .btn {
  padding-bottom: 10px;
}

.passenger .pass_info .non_stop .btn-group-toggle .btn.active {
  background-color: #00adef;
  border-color: #00adef;
}

.mask {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  display: none;
}

.mask.active {
  display: block;
}

/*----------*/
.user_signin {
  text-align: center;
  border: 1px solid #ccc;
  margin-top: 30px;
}

.user_signin p {
  margin-bottom: 0;
}

.user_signin p a {
  color: #313131;
  text-decoration: none;
  display: block;
  padding: 15px 5px;
}

.user_signin p a i {
  color: #00adef;
  margin-right: 8px;
}

.user_signin p a span {
  color: #00adef;
}

.fares {
  color: #454545;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}

.fares:hover {
  color: #00adef;
}

/*----------*/
.flight_detail .depart {
  margin-bottom: 10px;
  position: relative;
}

.flight_detail .depart:before {
  content: "";
  background: url(../images/depart.png);
  position: absolute;
  left: -28px;
  width: 25px;
  height: 10px;
  top: 12px;
  background-size: 100%;
  background-repeat: no-repeat;
}

.flight_detail .arrival {
  margin-bottom: 10px;
  position: relative;
}

.flight_detail .arrival:after {
  content: "";
  background: url(../images/arrival.png);
  position: absolute;
  left: -28px;
  width: 25px;
  height: 10px;
  top: 12px;
  background-size: 100%;
  background-repeat: no-repeat;
}

.flight_detail .divider {
  text-align: center;
  padding: 5px 2px;
  height: auto;
  margin-right: -10px;
  margin-left: -10px;
  position: relative;
}

.flight_detail .divider p {
  color: #00adef;
  margin-bottom: 0;
  position: relative;
  background: #fff;
  padding: 0 10px;
  z-index: 1;
  display: inline-block;
}

.flight_detail .divider:after {
  display: none;
}

.flight_detail .divider:before {
  content: "";
  color: #00adef;
  font-size: 15px;
  padding-right: 8px;
  width: 100%;
  background: #00adef;
  height: 2px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.fares_info {
  padding: 10px;
  box-shadow: 0px 1px 10px 0.2px rgba(0, 0, 0, 0.18);
  border: 1px solid #fff;
  background: #fff;
  margin-bottom: 25px;
}

.fares_info h5 {
  padding-bottom: 8px;
  font-size: 18px;
  color: #00adef;
  text-align: center;
}

.fares_info .table {
  font-size: 3.7vw;
}

.fares_info .table td {
  text-align: right;
}

.session {
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 99;
}

.session .timer {
  background: #343434;
  text-align: center;
  padding: 10px 0;
}

.session .timer p {
  color: #D9D9D9;
  margin-bottom: 0;
  font-size: 14px;
}

.session .timer p i {
  color: #898989;
  margin-right: 8px;
}

.session .book_now {
  background: #000;
  padding: 10px 0;
}

.session .book_now p {
  font-size: 15px;
  margin-bottom: 0;
  color: #D9D9D9;
  margin-right: 20px;
  line-height: 16px;
}

.session .book_now h5 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0;
}

.session .book_now h5 span.num_of_nights {
  display: block;
  font-weight: normal;
  font-size: 14px;
}

.session .book_now .btn {
  background: #00adef;
  color: #fff;
  font-weight: 600;
}

/*-----------*/
.filter {
  margin-bottom: 30px;
  padding: 0 15px;
  position: fixed;
  top: 0;
  height: 100%;
  width: 280px;
  margin-right: -280px;
  overflow: auto;
  transition: 0.25s;
  z-index: 9999;
  right: 0;
  background: #fff;
  padding-bottom: 10px;
}

.filter.menu-show {
  margin-right: 0;
}

.filter h4 {
  font-size: 16px;
  font-weight: 700;
  padding: 20.5px 15px;
  text-transform: uppercase;
  color: #00adef;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: fixed;
  background: #fff;
  width: 280px;
  z-index: 999;
  margin-left: -15px;
  height: 59px;
}

.filter h4 a {
  text-align: right;
  font-size: 16px;
  color: #00adef;
  text-transform: uppercase;
  font-weight: 300;
  text-decoration: none;
}

.filter h4 a:hover {
  color: #2D2D2D;
}

.filter .space {
  display: block;
  margin-top: 50px;
}

.filter .filter_row {
  margin-bottom: 30px;
}

.filter .filter_row:first-child {
  margin-top: 70px;
}

.filter .filter_row h5 {
  color: #00adef;
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 15px;
}

.filter .filter_row .btn-group {
  display: flex;
  justify-content: space-between;
}

.filter .filter_row .btn-group .btn {
  background-color: transparent;
  color: #00adef;
  height: 46px;
  line-height: 31px;
  font-size: 18px;
  border-radius: 10px !important;
  margin-right: 10px;
  width: 45px;
}

.filter .filter_row .btn-group .btn.active {
  background-color: #00adef;
  color: #fff;
  border-color: #00adef;
}

.filter .filter_row .opt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.filter .filter_row .opt h5 {
  font-size: 14px;
  color: #b3b0b0;
  margin-bottom: 0;
}

.filter .custom-control-label {
  color: #565656;
}

.filter .custom-checkbox .custom-control-label:before {
  border-radius: 0;
  box-shadow: none;
  border-color: #00adef;
}

.filter .custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #00adef;
  background-color: #00adef;
  box-shadow: none;
}

.my_new_mod .modal-dialog, #fare_rules_modal .modal-dialog, #payment .modal-dialog {
  margin: 0;
}

.my_new_mod .modal-dialog .modal-content, #fare_rules_modal .modal-dialog .modal-content, #payment.modal-dialog .modal-content {
  border: 0;
  border-radius: 0;
}

#fare_rules_modal .modal-header {
  position: fixed;
  width: 100%;
  z-index: 5;
}

#fare_rules_modal .modal-body {
  font-size: 15px;
  text-transform: lowercase;
  padding-top: 66px;
}

#fare_rules_modal .modal-body h3 {
  color: #00adef;
  font-size: 5vw;
  border-bottom: 1px solid #00adef;
  padding-bottom: 8px;
  margin-bottom: 8px;
  text-transform: capitalize;
}

.payment_mode_li li {
  padding: 15px 6px;
  border: 1px solid #eaeaea;
  margin-bottom: 15px;
}

.payment_mode_li li img {
  width: 50px;
  display: block;
  margin-bottom: 10px;
}

.payment_mode_li li.active_payment {
  background: #00adef;
  border: 1px solid;
}

.payment_mode_li li.active_payment img {
  box-shadow: 0px 0px 7px 4px #fff;
}

.payment_mode_li li.active_payment a {
  color: #fff;
  text-decoration: none;
}

.about_content {
  font-size: 14px;
  text-align: justify;
}

/*-------------*/
.gal_link img {
  height: 170px;
  object-fit: cover;
  border: 4px solid #fff;
  width: 100%;
}

/*------------*/
.centering {
  max-width: 1300px;
  margin: 50px auto;
  text-align: left;
}

.lightbox_overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: black;
  opacity: 0.7;
  z-index: 999;
  cursor: pointer;
}

.lightbox {
  position: absolute;
  background: white;
  z-index: 1000;
}

.spinner {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  font-size: 50px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.close {
  position: absolute;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  z-index: 1001;
}

.next_img {
  position: absolute;
  color: #fff;
  font-size: 30px;
  right: 10px;
  cursor: pointer;
  z-index: 1001;
  opacity: 0.9;
}

.next_img:hover {
  opacity: 1;
}

.prev_img {
  position: absolute;
  color: #fff;
  font-size: 30px;
  left: 10px;
  cursor: pointer;
  z-index: 1001;
  opacity: 0.9;
}

.prev_img:hover {
  opacity: 1;
}

/*-----NEW AUTO COMPLETE-------*/
.twitter-typeahead {
  display: block !important;
}

#scrollable-dropdown-menu .tt-menu {
  width: 100% !important;
  max-height: 270px !important;
}

#scrollable-dropdown-menu .tt-menu .tt-suggestion {
  padding: 6px 0;
  border-bottom: 1px solid #f0ebeb;
}

/*-------------*/
.flights {
  padding-top: 115px;
}

.flight_list {
  background: #fff;
  padding: 10px;
  margin-bottom: 25px;
  box-shadow: 0px 1px 10px 0.2px rgba(0, 0, 0, 0.18);
  border: 1px solid #fff;
}

.flight_list .link {
  text-decoration: none;
  display: block;
}

.flight_list .action {
  text-align: center;
}

.flight_list .action label {
  color: #333;
  display: block;
  text-align: center;
  font-size: 2.5vw;
  text-transform: uppercase;
  border-radius: 16px;
  padding: 5px 2px;
  border: 1px solid #00adef;
}
.flight_list .action label i {
  color: #00adef;
}

.flight_list .action img {
  margin-bottom: 8px;
  width: 70px;
}

.flight_list .action p {
  color: #212529;
  font-size: 3.2vw;
  margin-bottom: 0;
}

.flight_list .action p span {
  display: block;
}

.flight_list .action h5 {
  font-weight: normal;
  font-size: 3.5vw;
  color: #00adef;
  margin-top: 5px;
  border: 1px solid;
}

.flight_list .action h5 i {
  color: #00adef;
}

.flight_list .action.airline {
  position: relative;
}

.flight_heading {
  background: #fff;
  padding: 5px;
  margin: 10px 0;
  margin-top: -2px;
}

.flight_heading p {
  margin-bottom: 0;
  color: #00adef;
}

.divider {
  background: #fafafa;
  height: 15px;
  margin-right: -10px;
  margin-left: -10px;
  display: block;
  margin-bottom: 10px;
  position: relative;
}

.divider:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 100%;
  width: 2px;
  background: #00adef;
}

.bottom_last {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
  margin: 0 -10px -10px;
  padding: 5px 10px;
  -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.bottom_last p {
  margin-bottom: 0;
  text-transform: capitalize;
}

.bottom_last h4 {
  color: #000;
  margin-bottom: 0;
  font-size: 17px;
  font-weight: bold;
}

/*----------*/
.login_area {
  padding: 15px;
}

.login_area h3 {
  font-size: 16px;
  color: #00adef;
  text-align: center;
  line-height: 25px;
  padding: 10px 25px;
}

.login_area .user_dummy {
  text-align: center;
  padding: 0px 0 15px;
}

.login_area .user_dummy img {
  width: 110px;
  margin-left: 0;
}

.buttons_selection {
  text-align: center;
  margin-top: 15px;
}

.buttons_selection .btn {
  display: block;
  background: #00adef;
  color: #fff;
  margin-bottom: 15px;
  padding: 12px 15px;
  border-radius: 10px;
  font-size: 16px;
}

.buttons_selection .btn:hover {
  text-decoration: none;
  background: #fdc81c;
  color: #000;
}

.buttons_selection p a {
  color: #00adef;
  text-decoration: none;
}

/*----------*/
.login {
  padding: 15px;
}

.forgot_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.forgot_row label {
  margin-bottom: 0;
  color: #00adef;
}

.forgot_row [type=checkbox] + span:not(.lever) {
  padding-left: 25px;
}

.forgot_row a {
  color: #00adef;
  text-decoration: none;
}

.select-wrapper .caret {
  top: 50%;
  transform: translateY(-50%);
}

.passenger_info {
  box-shadow: 0px 1px 10px 0.2px rgba(0, 0, 0, 0.18);
  border: 1px solid #fff;
  background: #fafafa;
  margin-bottom: 25px;
}

.passenger_info h4 {
  font-size: 18px;
  color: #00adef;
}

.payment_method li {
  line-height: 45px;
  border-bottom: 1px solid #ccc;
}

.payment_method li:last-child {
  border-bottom: 0;
}

.payment_method li:before {
  content: "";
  padding-right: 10px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.payment_method li a {
  color: #3B3B3B;
}

.passenger_info .select2-container--default .select2-selection--single {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #aaa;
  border-radius: 0;
  height: 43px;
  box-shadow: none;
}

.passenger_info .select2-container--default .select2-selection--single .select2-selection__arrow {
  left: auto;
  right: 0;
  top: 5px;
}

.select2-container .selection {
  display: block;
  border: 0;
}

.passenger_info .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #000 transparent transparent transparent;
  border-style: solid;
  border-width: 10px 5px 0 5px;
}

.passenger_info .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #050505;
  line-height: 45px;
  font-size: 15px;
}

.social_login {
  text-align: center;
}

.social_login h5 {
  margin-bottom: 10px;
  color: #00adef;
  font-size: 15px;
}

.social_login h5 span {
  display: block;
  color: #868686;
  font-size: 14px;
  margin: 10px 0;
}

.social_login ul {
  display: flex;
  justify-content: center;
}

.social_login ul li a {
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #00adef;
  line-height: 40px;
  margin: 0 8px;
  color: #00adef;
}

.social_login ul li a:hover {
  background: #00adef;
  color: #fff;
}

/*----typeahead------*/
.typeahead {
  width: 100%;
  padding: 0;
  border-radius: 0;
  left: 0 !important;
  border: 0;
}

.typeahead .dropdown-item {
  border-bottom: 1px solid #ccc;
  line-height: 35px;
  font-size: 4vw;
}

.typeahead .dropdown-item:hover {
  background: #00adef;
  color: #fff;
}

/*----------*/
.user_img {
  text-align: center;
  margin: 25px 0;
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.user_img img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.user_img p {
  margin-bottom: 5px;
  font-size: 14px;
}

.dashboard .action_links {
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.dashboard .action_links:last-child {
  border-bottom: 0;
}

.dashboard .action_links li a {
  padding: 10px 0;
  display: flex;
  color: #606060;
  text-decoration: none;
  align-items: center;
}

.dashboard .action_links li a:hover {
  color: #00adef;
}

.dashboard .action_links li a i {
  width: 30px;
  text-align: center;
}

.dashboard .action_links li a i.fa.fa-power-off {
  color: #00adef;
}

.booking_history {
  position: fixed;
  width: 100%;
  background: #fff;
  padding-bottom: 7px;
  border: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 49px;
  padding: 0 15px;
}

.booking_history h3 {
  font-size: 20px;
  color: #00adef;
}

.booking_history nav {
  background: #fff;
  width: auto;
  height: auto;
  line-height: initial;
  box-shadow: none;
}

.booking_history .nav-tabs {
  border-bottom: 0;
}

.booking_history .nav-tabs .nav-item .nav-link {
  color: #495057;
  font-size: 4vw;
  padding: 6px 30px;
}

.booking_history .nav-tabs .nav-item .nav-link.active {
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #00adef;
  background: transparent;
  position: relative;
}

.booking_history .nav-tabs .nav-item .nav-link.active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -7px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid #00adef;
}

.history_tabs_admin {
  padding-top: 260px;
}

.history_tabs_admin ul {
  margin-top: 15px;
  margin-bottom: 0;
  /*
  	height: 220px;
      overflow-y: auto;
  */
}

.notFound {
  width: 70%;
  display: block;
  margin: 0 auto;
}

.history_tabs_admin ul li {
  display: flex;
  justify-content: space-between;
  padding: 2px 10px;
  align-items: center;
  background: #fafafa;
  margin-bottom: 8px;
}

.history_tabs_admin ul li a {
  display: flex;
  justify-content: space-between;
  width: 100%;
  text-decoration: none;
  align-items: center;
}

.history_tabs_admin ul li a:hover {
  color: #00adef;
}

.history_tabs_admin ul li h4 {
  font-size: 15px;
  margin-bottom: 0;
  font-weight: bold;
}

.history_tabs_admin ul li h4 i {
  padding: 0 8px;
}

.history_tabs_admin ul li h4 span {
  display: block;
  font-size: 13px;
  font-weight: normal;
  margin-top: 4px;
  color: #00adef;
}

.how_many_pass img {
  display: block;
  width: 40px;
  margin: 0 auto;
}

.how_many_pass p {
  font-size: 12px;
  color: #7F7F7F;
  margin-bottom: 0;
}

.history_tabs_admin ul.cancelled li {
  background: #fff0f0;
}

.shadow.active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

#dob_adt_modal .modal-footer .btn {
  margin-top: -25px;
}

/*----------*/
.input-field {
  /*	z-index: 1;*/
}

.input-field label small {
  font-size: 3.5vw;
}

.cancel_booking {
  text-align: center;
}

.cancel_booking img {
  width: 120px;
  margin: 0 auto;
  margin-bottom: 15px;
}

.cancel_booking h4 {
  color: #00adef;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #00adef;
}

.select-wrapper input.select-dropdown {
  font-size: 15px;
}

/*----------*/
#modify {
  background: #fff;
}

#modify .tab-content {
  padding: 90px 15px 0;
}

#modify .modal-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}

#modify .modal-dialog {
  margin: 0;
}

#modify .modal-dialog {
  height: 100vh;
  min-height: 100vh;
}

/*-----ERRO IDENTIFIER CODE-----*/
.error_shake {
  -webkit-animation: kf_shake 0.4s 1 linear;
  -moz-animation: kf_shake 0.4s 1 linear;
  -o-animation: kf_shake 0.4s 1 linear;
}

@-webkit-keyframes kf_shake {
  0% {
    -webkit-transform: translate(30px);
  }
  20% {
    -webkit-transform: translate(-30px);
  }
  40% {
    -webkit-transform: translate(15px);
  }
  60% {
    -webkit-transform: translate(-15px);
  }
  80% {
    -webkit-transform: translate(8px);
  }
  100% {
    -webkit-transform: translate(0px);
  }
}
@-moz-keyframes kf_shake {
  0% {
    -moz-transform: translate(30px);
  }
  20% {
    -moz-transform: translate(-30px);
  }
  40% {
    -moz-transform: translate(15px);
  }
  60% {
    -moz-transform: translate(-15px);
  }
  80% {
    -moz-transform: translate(8px);
  }
  100% {
    -moz-transform: translate(0px);
  }
}
@-o-keyframes kf_shake {
  0% {
    -o-transform: translate(30px);
  }
  20% {
    -o-transform: translate(-30px);
  }
  40% {
    -o-transform: translate(15px);
  }
  60% {
    -o-transform: translate(-15px);
  }
  80% {
    -o-transform: translate(8px);
  }
  100% {
    -o-origin-transform: translate(0px);
  }
}
.error_shake_outline {
  border-bottom: 1px solid #00adef !important;
}

.error_shake_outline::placeholder {
  color: #00adef;
}

/*----------*/
.hotel_list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.hotel {
  padding-top: 67px;
}

.hotel .top_info {
  position: relative;
  width: 40%;
}

.hotel.listing_div .flight_list.flight_detail {
  padding: 0 15px !important;
  box-shadow: none !important;
  background: transparent !important;
  border: 0 !important;
}

.hotel.listing_div .flight_list.flight_detail img {
  height: 310px !important;
  -webkit-box-shadow: 0px 1px 10px 0.2px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0px 1px 10px 0.2px rgba(0, 0, 0, 0.18);
  -ms-box-shadow: 0px 1px 10px 0.2px rgba(0, 0, 0, 0.18);
  -o-box-shadow: 0px 1px 10px 0.2px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 1px 10px 0.2px rgba(0, 0, 0, 0.18);
}

.hotel .hotel_row {
  -webkit-box-shadow: 0px 1px 10px 0.2px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0px 1px 10px 0.2px rgba(0, 0, 0, 0.18);
  -ms-box-shadow: 0px 1px 10px 0.2px rgba(0, 0, 0, 0.18);
  -o-box-shadow: 0px 1px 10px 0.2px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 1px 10px 0.2px rgba(0, 0, 0, 0.18);
  margin-bottom: 30px;
}

.hotel .hotel_row .hotel_link {
  text-decoration: none;
  color: #000;
  display: block;
}

.hotel img {
  height: 100px;
  object-fit: cover;
  object-position: top;
}

.hotel .swiper-pagination {
  opacity: 1;
}

.hotel .swiper-pagination-bullet {
  background: #ccc;
}

.hotel .swiper-pagination-bullet-active {
  background: #fff;
}

.hotel .price {
  background: #fff;
  z-index: 1;
  padding: 4px 0;
}

.hotel .price h4 {
  color: #00adef;
  margin-bottom: 0;
  font-size: 18px;
}

.hotel .bottom_last {
  background: #fafafa;
  padding: 10px 15px;
  display: block;
  margin-top: 5px;
}

.hotel .bottom_last ul {
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
}

.hotel .bottom_last ul li {
  font-size: 3.5vw;
}

.hotel .bottom_last ul li i {
  color: #00adef;
  padding-right: 5px;
}

.hotel_name {
  text-align: left;
}

.hotel_name h4 {
  margin-bottom: 0;
  font-size: 20px;
}

.hotel_name p {
  font-size: 14px;
  margin-bottom: 0;
}

.hotel_name p i {
  color: #fdc81c;
  padding: 0 2px;
}

.hotel_name small {
  font-size: 13px;
}

.hotel_desc .legend label {
  background: #fff;
  display: block;
  padding: 5px;
  border-radius: 15px;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid #fdc81c;
  font-size: 3.5vw;
}

.hotel_desc .legend p {
  text-align: center;
  font-size: 3.2vw;
  margin-bottom: 0;
}

.transportation {
  position: relative;
  text-align: center;
}

.transportation:before {
  content: "";
  position: absolute;
  left: 0;
  height: 1px;
  width: 25px;
  top: 18px;
  background: #000;
}

.transportation:after {
  content: "";
  position: absolute;
  right: 0;
  height: 1px;
  width: 25px;
  top: 18px;
  background: #000;
}

.transportation i {
  color: #00adef;
  margin-top: 9px;
}

.hotel_detail {
  padding-top: 15px;
}

.hotel_detail .name h5 {
  color: #343434;
  margin-bottom: 0;
  font-size: 4.5vw;
}

.hotel_detail .name p {
  margin-bottom: 8px;
  font-size: 3.5vw;
}

.hotel_detail .name p i {
  color: #fdc81c;
}

.hotel_detail .name p span {
  padding-left: 8px;
}

.hotel_detail .swiper-pagination {
  opacity: 1;
}

.hotel_detail .swiper-pagination-bullet {
  background: #ccc;
}

.hotel_detail .swiper-pagination-bullet-active {
  background: #fff;
}

.hotel_detail .hotel_imges p {
  color: #00adef;
  font-size: 3vw;
  margin-bottom: 0;
}

.hotel_detail .hotel_imges h2 {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 5.5vw;
}

.hotel_detail .hotel_imges h2 small {
  font-size: 3vw;
}

.hotel_detail .hotel_imges .swiper-slide img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.hotel_info h3 {
  font-size: 5vw;
  font-weight: bold;
}

.hotel_info ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hotel_info ul li {
  font-size: 3.5vw;
}

.hotel_info ul li i {
  color: #00adef;
}

.rooms_detail h3 {
  color: #00adef;
  font-size: 6vw;
}

.rooms_detail .rooms {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 8px;
  margin-bottom: 15px;
}

.rooms_detail .rooms h4 {
  font-size: 5vw;
}

.rooms_detail .rooms .inner {
  display: flex;
  justify-content: space-between;
}

.rooms_detail .rooms .inner ul {
  margin-bottom: 0;
}

.rooms_detail .rooms .inner ul li {
  font-size: 3.5vw;
  padding-bottom: 5px;
}

.rooms_detail .rooms .inner ul li i {
  color: #00adef;
  width: 18px;
  text-align: center;
}

.rooms_detail .rooms .inner .price {
  text-align: right;
}

.rooms_detail .rooms .inner .price h2 {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 5.5vw;
}

.rooms_detail .rooms .inner .price h2 small {
  font-size: 3vw;
}

.rooms_detail .rooms .inner .price p {
  color: #00adef;
  font-size: 3.5vw;
  margin-bottom: 8px;
}

.rooms_detail .rooms .inner .price .btn {
  background: #00adef;
  border-radius: 0;
  color: #fff;
}

.rooms_detail .rooms .inner .price .btn:hover {
  background: #fdc81c;
  color: #000;
}

.rooms_detail .more_detail h4 {
  font-size: 5vw;
}

.rooms_detail .more_detail p {
  font-size: 3.5vw;
  text-align: justify;
}

.rooms_detail .more_detail p a {
  color: #00adef;
  text-decoration: none;
}

.rooms_detail .more_detail p a[aria-expanded=false] .less {
  display: none;
}

.rooms_detail .more_detail p a[aria-expanded=true] .less {
  display: block;
}

.rooms_detail .more_detail p a[aria-expanded=true] .more {
  display: none;
}

.rooms_detail .more_detail ul li {
  font-size: 3.5vw;
  padding-bottom: 5px;
}

.child_age_row .check {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #fff;
  padding: 5px 0;
}

.child_age_row .check label {
  font-size: 14px;
}

.child_age_row .check .form-control {
  width: 46%;
}

/*---HOTEL DATE RANGE--*/
.comiseo-daterangepicker {
  z-index: 99999;
}

.ui-widget.ui-widget-content {
  width: 100% !important;
  display: flex;
  flex-direction: column;
  padding: 0;
  border: 0 !important;
  position: relative !important;
}

.comiseo-daterangepicker {
  height: 100% !important;
  overflow: auto;
  top: 0 !important;
}

.ui-widget-content, .comiseo-daterangepicker-calendar {
  height: 100%;
}

.ui-datepicker-multi .ui-datepicker-group, .ui-datepicker-inline {
  float: left;
  width: 100%;
}

.ui-datepicker .ui-datepicker-header {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #00adef;
  border-top: 1px solid #00adef;
}

.ui-button, .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, html .ui-button.ui-state-disabled:active, html .ui-button.ui-state-disabled:hover {
  background: #f6f6f6;
  font-weight: 400;
  color: #454545;
  background-color: #fff;
  border: 0;
  text-align: center;
}

.ui-datepicker-today a.ui-state-highlight {
  /*background: $mainclr !important; */
  color: #00adef;
}

.comiseo-daterangepicker-buttonpanel {
  position: fixed;
  bottom: 0;
  text-align: center;
  width: 100%;
  background: white;
  padding: 15px 0px;
  float: none !important;
  display: flex;
  justify-content: space-between;
}

.comiseo-daterangepicker-buttonpanel .ui-priority-primary {
  border-color: #00adef;
  margin-right: 0;
  width: 50%;
  border-radius: 0;
  background: #00adef;
  background: -moz-linear-gradient(top, #00adef 0%, #ed1c24 100%);
  background: -webkit-linear-gradient(top, #00adef 0%, #ed1c24 100%);
  background: linear-gradient(to bottom, #00adef 0%, #ed1c24 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$mainclr", endColorstr="#ed1c24",GradientType=0 );
  color: #fff;
  order: 2;
}

.comiseo-daterangepicker-buttonpanel .ui-priority-primary.apply_disabled {
  pointer-events: none;
  background: #ccc;
}

.comiseo-daterangepicker-buttonpanel .ui-priority-secondary:first-child {
  order: 1;
}

.comiseo-daterangepicker-buttonpanel .ui-priority-secondary:last-child {
  order: 3;
}

.fb_iframe_widget span {
  position: relative;
  display: block;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  border: 1px solid #00adef;
  line-height: 40px;
  margin: 0 8px;
  color: #00adef;
  text-align: center !important;
}

.fb_iframe_widget span:before {
  font-family: "Font Awesome 5 Brands";
  content: "";
  font-size: 16px;
}

.fb_iframe_widget iframe {
  opacity: 0;
  left: 0;
  height: 40px !important;
  width: 42px !important;
}

.ui-datepicker td a {
  padding: 8px 0px !important;
}

.date_selectec {
  text-align: center;
  padding: 7px 0;
  margin-bottom: 0;
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 47px;
  background: #fff;
  z-index: 999999;
}

.date_selectec p {
  margin-bottom: 0;
}

.date_selectec p strong {
  color: #00adef;
}

.date_selection_modal_new {
  z-index: 999999 !important;
  top: auto !important;
  height: auto !important;
}

.date_selection_modal_new .modal-dialog .modal-content .modal-body {
  padding: 0 !important;
}

.date_range {
  bottom: -90px;
  height: 100%;
  top: auto !important;
  padding: 0;
}

.date_range .title_head {
  display: none;
}

.date_range .top_pass_block {
  padding: 0;
}

.date_range .pass_info .pass_row {
  margin-bottom: 0;
}

/*---RENT A CAR STYLING-------*/
.car_main {
  padding-top: 52px;
}

.car_main .pass_row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.car_main .pass_row .left_area h4 {
  font-size: 16px;
}

.car_main .pass_row .left_area h4 span {
  display: block;
  font-size: 12px;
  color: #555555;
}

.car_main .pass_row .right_area .form-control {
  width: 60px;
  text-align: center;
  border: 0;
  margin-top: -3px;
  padding: 0;
  background: transparent;
}

.car_main .pass_row .right_area .input-group-btn {
  background: #00adef;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  box-shadow: none !important;
}

.car_main .pass_row .right_area .input-group-btn .btn {
  padding: 0;
}

.car_main .pass_row .right_area .input-group-btn .btn:focus {
  box-shadow: none !important;
}

.car_main .pass_row .right_area .input-group-btn i {
  font-size: 10px;
  color: #fff;
  vertical-align: initial;
  margin-top: 0;
}

.renta_car {
  -webkit-box-shadow: 0px 1px 10px 0.2px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0px 1px 10px 0.2px rgba(0, 0, 0, 0.18);
  -ms-box-shadow: 0px 1px 10px 0.2px rgba(0, 0, 0, 0.18);
  -o-box-shadow: 0px 1px 10px 0.2px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 1px 10px 0.2px rgba(0, 0, 0, 0.18);
  margin-bottom: 20px;
  padding: 10px;
}

.renta_car h4 {
  font-size: 20px;
}

.renta_car h4 small {
  font-size: 16px;
}

.renta_car h4 span {
  font-size: 12px;
  display: block;
  color: #FF0206;
}

.renta_car h4.price {
  font-size: 25px;
  font-weight: bold;
  margin-top: 15px;
  text-align: right;
}

.renta_car h4.price small {
  display: block;
}

.car_area {
  display: flex;
  justify-content: space-between;
}

.hotel_area .car_img {
  width: 40%;
}

.hotel_area .renta_car_desc {
  width: 60%;
}

.hotel_area .renta_car_desc ul {
  padding: 0 5px;
  padding-right: 0 !important;
}

.car_img {
  text-align: center;
  margin-top: 25px;
  width: 45%;
}

.car_img.hotel_img_new img {
  height: 128px;
  object-fit: cover;
}

.renta_car_desc {
  width: 55%;
}

.renta_car_desc ul {
  padding: 0 10px;
}

.renta_car_desc ul li {
  line-height: 25px;
  font-size: 3.5vw;
}

.renta_car_desc ul li i {
  color: #00adef;
  width: 30px;
  text-align: center;
  display: inline-block;
}

.renta_car_desc ul li i img {
  width: 20px;
  height: auto;
}

.rent_car_facilities {
  background: #fafafa;
  border: 1px solid #00adef;
  padding: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rent_car_facilities h4 {
  font-size: 22px;
  font-weight: bold;
}

.rent_car_facilities h4 small {
  display: block;
  font-size: 3vw;
  margin-bottom: 2px;
}

.rent_car_facilities .btn {
  background: #00adef;
  color: #fff;
  font-size: 16px;
  width: 110px;
}

.rent_car_facilities .btn:hover {
  background: #fdc81c;
  color: #000;
}

.rent_car_facilities h4 {
  font-size: 18px;
}

.rent_car_facilities ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.rent_car_facilities ul li {
  font-size: 3.5vw;
  padding-right: 10px;
  line-height: 28px;
}

.rent_car_facilities ul li i {
  color: green;
}

.rent_desc {
  margin-top: 15px;
}

.rent_desc h5 {
  font-size: 16px;
  color: #00adef;
  font-weight: bold;
  margin-bottom: 5px;
}

.rent_desc iframe {
  width: 100%;
  height: 100px;
  margin-bottom: 10px;
}

.rent_desc p {
  font-size: 3.5vw;
  text-align: justify;
}

/*----------*/
.main_footer {
  background: #1D1D1D;
  padding: 8px 0;
  position: fixed;
  left: 0;
  bottom: 0;
  height: 65px;
  width: 100%;
  z-index: 99;
  display: flex;
  align-items: center;
  box-shadow: 0px -2px 5px 0px rgba(0, 0, 0, 0.08);
}

.main_footer ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
}

.main_footer ul li {
  text-align: center;
}

.main_footer ul li a {
  font-size: 12px;
  text-transform: uppercase;
  color: #454444;
  text-decoration: none;
}

.main_footer ul li a:hover {
  color: #000;
}

.main_footer ul li a i {
  font-size: 4.5vw;
  color: #0a89dc;
}

.main_footer ul li a span {
  display: block;
  font-size: 3vw;
  color: #a0a0a0;
}

/*# sourceMappingURL=style.css.map */
