body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
}

* a,
* a:hover,
button,
button:hover,
button:focus,
input,
input:hover,
input:focus {
  text-decoration: none !important;
  outline: none !important;
  box-shadow: none !important;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

header {
  background-color: #ffffff;
  z-index: 9999;
  transition: all 0.3s ease-out;
  position: sticky;
  top: 0;
  width: 100%;
}

/* Ensure sticky header works on all devices */
.sticky-top {
  position: sticky !important;
  top: 0 !important;
  z-index: 9999 !important;
  width: 100% !important;
}

/* Additional mobile-specific sticky header rules */
@media (max-width: 767px) {
  header {
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    width: 100% !important;
  }
  
  .sticky-top {
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    width: 100% !important;
  }
  
  .top-navigation {
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    width: 100% !important;
    background-color: #ffffff;
  }
}

header.fixed .header-info-bar {
  padding: 5px 0;
}
header.fixed .navbar .navbar-brand {
  max-width: 175px;
  padding: 0 0;
  transition: all 0.3s ease-out;
}
header .navbar-brand {
  max-width: 200px;
  transition: all 0.3s ease-out;
}

.navbar-brand svg {
  width: 100%;
  height: 42px;
}

form .form-control {
  box-shadow: none;
  border: 1px solid #C0C0C0;
  height: 35px;
  font-size: 14px;
}
form .form-control.form-control:focus {
  box-shadow: none;
  border-color: #C0C0C0;
}
form .form-title {
  font-size: 25px;
  color: #121E7E;
}

.errortext {
  text-align: left;
  width: 100%;
  font-size: 12px;
}

/*************Custom Checkbox**************/
.chkbx input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.chkbx label {
  position: relative;
  color: #000000;
  display: flex;
  align-items: center;
}
.chkbx label a {
  color: #000000;
  text-decoration: underline;
}

.chkbx label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 1.5px solid #9A9A9A;
  border-radius: 5px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  width: 20px;
  height: 20px;
}

.chkbx input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  left: 8px;
  width: 5px;
  height: 9px;
  border: solid #9A9A9A;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

/**********************************************/
img.lazy {
  width: 100%;
  height: auto;
  display: block;
}

img {
  max-width: 100%;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

.fs-11 {
  font-size: 11px !important;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-13 {
  font-size: 13px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-15 {
  font-size: 15px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-17 {
  font-size: 17px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.fs-19 {
  font-size: 19px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.fs-21 {
  font-size: 21px !important;
}

.fs-22 {
  font-size: 22px !important;
}

.fs-23 {
  font-size: 23px !important;
}

.fs-24 {
  font-size: 24px !important;
}

.fs-25 {
  font-size: 25px !important;
}

.dark-blue-bg {
  background: #121E7E !important;
}

.light-blue-bg {
  background: #4756CB !important;
}

.white-bg {
  background: #ffffff !important;
}

.dark-blue-txt {
  color: #121E7E !important;
}

.dark-black-txt {
  color: #000 !important;
  font-weight: bold;
}

.light-blue-txt {
  color: #4756CB !important;
}

.ash-txt {
  color: #979797 !important;
}

.uppercase-txt {
  text-transform: uppercase !important;
}

.white-txt {
  color: #ffffff !important;
}

/* .btn-typ1 {
  background: #121E7E !important;
  color: #FFFFFF !important;
  border: 1px solid #121E7E !important;
} */

.btn-typ1 {
  background: #002e99 !important;
  color: #FFFFFF !important;
  border: 1px solid #002e99 !important;
} 

.btn-typ1:hover {
  background: #1a2942 !important;
  color: #FFF !important;
}

/* .btn-typ1:hover {
  background: #ffffff !important;
  color: #121E7E !important;
} */

.btn-typ5 {
  color: #061167;
  font-size: 15px;
  font-weight: 400;
}

.border-radius-100 {
  border-radius: 100px !important;
}

.border-radius-5 {
  border-radius: 5px !important;
}

.border-radius-25 {
  border-radius: 25px !important;
}

.select2-container--default {
  z-index: 9;
}

section {
  margin-bottom: 50px;
}
section.midbar-wrapper {
  margin-bottom: 0;
}
section.midbar-wrapper img {
  max-width: 100%;
  max-height: 500px;
}
section.choose-flight {
  margin-bottom: 0;
}

.text-below-button {
  border: none;
  background: none;
  text-align: center;
  width: 100%;
}
.text-below-button a {
  color: #4657D9;
}

.midbar-banner-inner {
  background-repeat: no-repeat;
  background-position: center top;
  height: 40vh;
  background-size: cover;
}
.midbar-banner-inner.flight-near-you {
  background-image: url("../images/banner9.jpg");
}
.midbar-banner-inner h2 {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
  line-height: 80px;
  text-align: center;
  color: #FFFFFF;
}

.midbar-banner-inner.detail-page-banner h2 {
  opacity: 0.5;
}

.package-name-sec h1 {
  font-size: 40px;
  line-height: 48px;
}

.star-rate-blue {
  background: url(../images/star-rate-icon-blue.svg) no-repeat;
  width: 17px;
  height: 17px;
  background-size: contain;
  display: block;
}

.star-rate-ash {
  background: url(../images/star-rate-icon-ash.svg) no-repeat;
  width: 17px;
  height: 17px;
  background-size: contain;
  display: block;
}

.header-info-bar {
  background: #121E7E;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  color: #ffffff;
  font-size: 15px;
  transition: all 0.3s ease-out;
}
.header-info-bar .top-info-left,
.header-info-bar .top-info-right {
  display: flex;
  align-items: center;
}
.header-info-bar .top-info-left li {
  margin-left: 80px;
}
.header-info-bar .top-info-left li:first-child {
  margin-left: 0;
}
.header-info-bar .top-info-right li {
  margin-left: 35px;
}
.header-info-bar .top-info-right li ul li {
  margin-left: 18px;
}
.header-info-bar .top-info-right li ul li:first-child {
  margin-left: 0;
}
.header-info-bar .top-info-right li.login .btn {
  color: #ffffff;
  padding-right: 0;
}
.header-info-bar .top-info-right li.login .btn svg {
  margin-right: 13px;
  margin-top: -2px;
}
.header-info-bar .top-info-right li.login .btn span {
  margin-left: 13px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid rgb(255, 255, 255);
}
.header-info-bar .top-info-right li.open a span {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 7px solid rgb(255, 255, 255);
  border-top: none;
}
.header-info-bar .top-info-right li:first-child {
  margin-left: 0;
}

.title-typ4 {
  font-size: 24px;
}
.title-typ4 strong {
  color: #121E7E;
}

.text-below-button {
  color: #000000;
}
.text-below-button span {
  color: #4657D9;
}

.reg-log-modal img {
  max-width: 100%;
}
.reg-log-modal.modal.show .modal-dialog {
  min-width: 800px;
}
.reg-log-modal.modal.show .modal-dialog .modal-content {
  padding: 39px 72px 83px 59px;
  border-radius: 15px;
}
.reg-log-modal.modal.show .modal-dialog .modal-content .modal-header {
  border: none;
}
.reg-log-modal.modal.show .modal-dialog .modal-content .modal-header .modal-title {
  font-size: 24px;
}
.reg-log-modal.modal.show .modal-dialog .modal-content .modal-header .modal-title strong {
  color: #121E7E;
}
.reg-log-modal.modal.show .modal-dialog .modal-content .forgot-passward {
  text-align: right;
}
.reg-log-modal.modal.show .modal-dialog .modal-content .forgot-passward button {
  border: none;
  background: none;
  color: #121E7E;
}

.flight-search-loading.modal.show .modal-content {
  border-radius: 25px;
  padding: 15px;
}
.flight-search-loading.modal.show .modal-dialog {
  min-width: 702px;
}
.flight-search-loading .progress {
  height: 9px;
  background-color: transparent;
}
/**************************Loader**************************/
.flight-search-loading .progress {
  position: relative;
}

.percentage {
  z-index: 100;
  border: 1px solid #ccc;
  text-align: center;
  color: #000000;
  line-height: 30px;
  font-size: 15px;
}

.loader,
.percentage {
  height: 9px;
  border: 1px solid #4756CB;
  border-radius: 20px;
  font-weight: 300;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.loader:after,
.percentage:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.trackbar {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  color: #fff;
  text-align: center;
  line-height: 30px;
  overflow: hidden;
  position: relative;
  opacity: 0.99;
}

.loadbar {
  width: 0%;
  height: 100%;
  /* Stripes Background Gradient */
  background: #4756CB;
  position: absolute;
  top: 0;
  left: 0;
  animation: flicker 5s infinite;
  overflow: hidden;
}

@keyframes animation {
  10% {
    opacity: 0.9;
  }
  30% {
    opacity: 0.86;
  }
  60% {
    opacity: 0.8;
  }
  80% {
    opacity: 0.75;
  }
}
/**********************************************************/
.flight-direction strong {
  font-size: 25px;
  font-weight: 500;
}

.top-navigation {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.top-navigation .navbar-nav .nav-item:last-child .nav-link {
  padding-right: 0;
}

.navbar {
  padding: 10px 0;
  justify-content: space-between;
}
.navbar .navbar-collapse {
  flex-grow: inherit;
}
.navbar.bg-light {
  background-color: #ffffff !important;
}

.navbar-toggler {
  border: none;
  padding-right: 0;
}

.navbar-light .navbar-nav .nav-link {
  color: #000000;
}

.dropdown-toggle::after {
  vertical-align: 0.1em;
}

.dropdown.show .dropdown-toggle::after {
  border-top: 0;
  border-bottom: 0.3em solid;
}

.login {
  position: relative;
}
.login .dropdown-menu {
  right: 0 !important;
  left: auto !important;
  top: 100% !important;
  transform: none !important;
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
}

.dropdown-menu {
  font-size: 14px;
  display: block;
  visibility: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: 1s ease all;
}

.dropdown-menu.show {
  display: block;
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
  transition: 1s ease all;
}

.carousel-caption {
  bottom: 50%;
  margin-bottom: -6rem;
  text-align: center;
  color: #FFFFFF;
  font-size: 75px;
  line-height: 75px;
}
.carousel-caption h2 {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  font-size: 75px;
  line-height: 75px;
  margin-bottom: 50px;
}
.carousel-caption h3 {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 700;
  font-size: 75px;
  line-height: 75px;
}

.flight-search-midbar {
  position: relative;
}

.flight-search {
  background: #FFFFFF;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  padding: 20px 22px;
  top: -80px;
  position: absolute;
  z-index: 9;
  min-width: 1110px;
}
.flight-search label {
  margin-bottom: 0;
}

.search-box,
.reg-box {
  display: none;
}

.search-box.on,
.reg-box.on {
  display: flex;
}

.search-box .form-fields {
  flex-direction: column;
}

.lbl {
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  color: #121E7E;
  margin-right: 30px;
}

.form-fields {
  display: flex;
  align-items: center;
  padding-right: 0;
  padding-left: 5px;
}
.form-fields input {
  min-width: 100%;
}
.form-fields.form-fields:last-child {
  padding-right: 15px;
}
.form-fields.form-fields:first-child {
  padding-left: 15px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.person-select {
  display: inline-block;
  position: relative;
}
.person-select .select-lbl {
  font-size: 15px;
}

.select2-container--default {
  font-size: 13px;
  z-index: 10;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #121E7E;
}
.select2-container--default .select2-selection--single {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: inherit;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  position: inherit;
}

.flight-search .select2-container--default .select2-selection--single {
  border: none;
  font-size: 15px;
  border: 1px solid #AEB3DF;
  background: #F2F4FF;
  height: 45px;
  border-radius: 8px;
  color: #000000;
}
.flight-search .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #121E7E;
}
.flight-search .select2-container--default .select2-selection--single .select2-selection__arrow b {
  background: none;
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
  border-left: none;
  border-top: none;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  top: 12px;
}
.flight-search .select2-container--default.select2-container--open .select2-selection__arrow b {
  transform: rotate(225deg);
  top: 14px;
}

.select-lbl {
  color: #121E7E;
}

.downarrow {
  background: none;
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
  border-left: none;
  border-top: none;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  margin-top: -2px;
  margin-right: 4px;
}

.select-class-wrp {
  display: inline-block;
  margin-left: 20px;
}

.person-select {
  margin-left: 20px;
}
.person-select.open .downarrow {
  transform: rotate(225deg);
  margin-top: 5px;
}

.selectbox {
  background: #ffffff;
  color: #000000;
  width: 275px;
}
.selectbox label {
  display: grid;
  min-width: 60%;
}
.selectbox input {
  font-size: 14px;
  background-color: transparent;
  border: none;
  order: 1;
  width: 50px;
  text-align: center;
}
.selectbox .add {
  order: 2;
}
.selectbox .minus {
  order: 0;
}
.selectbox .add,
.selectbox .minus {
  background: #121E7E;
  color: #ffffff;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  line-height: 19px;
  font-size: 20px;
  cursor: pointer;
}

.select-dropbox {
  display: none;
  position: absolute;
  top: 100%;
  right: -30px;
  z-index: 11;
  border: 1px solid #AEB3DF;
  background: #ffffff;
  border-radius: 8px;
  padding: 10px;
}

form.flight-search .form-control {
  border-color: #AEB3DF;
  background: #F2F4FF;
  height: 45px;
  border-radius: 8px;
  color: #000000;
}

.srch-fld {
  margin-top: 12px;
}

.multi-city-search > .col-md-2 {
  padding: 0;
}
.multi-city-search > .col-md-2 .form-fields {
  padding-left: 5px;
}

.multi-city-search > .col-md-10 .form-fields:last-child {
  padding-right: 0;
}

/****************CSS Radio Button*****************/
[type=radio]:checked,
[type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}

[type=radio]:checked + label,
[type=radio]:not(:checked) + label {
  position: relative;
  padding-left: 31px;
  cursor: pointer;
  display: inline-block;
  font-weight: 400;
  font-size: 15px;
  line-height: 23px;
  color: #121E7E;
  margin-left: 20px;
}

[type=radio]:checked + label:before,
[type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #AEB3DF;
  border-radius: 100%;
  background: #fff;
}

[type=radio]:checked + label:after,
[type=radio]:not(:checked) + label:after {
  content: "";
  width: 14px;
  height: 14px;
  background: #121E7E;
  position: absolute;
  top: 5px;
  left: 5px;
  border-radius: 100%;
  transition: all 0.2s ease;
}

[type=radio]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}

[type=radio]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}

/*************************************************/
/****************Datepicker***********************/
.ui-widget.ui-widget-content {
  z-index: 10 !important;
  font-family: "Noto Sans";
  color: #000000;
}

.ui-widget.ui-widget-content {
  border: 1px solid #AEB3DF;
}

.ui-widget-content .ui-state-default.ui-state-active,
.ui-widget-content .ui-datepicker-current-day .ui-state-default.ui-state-active {
  border-color: #121e7e;
  background: #121e7e;
  color: #ffffff;
}

.ui-widget-content .ui-state-default.ui-state-highlight {
  background: #2391d1;
  border-color: #2391d1;
  color: #ffffff;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  color: #000000;
}

.ui-state-default,
.ui-widget-content .ui-state-default {
  background: #f2f4ff;
  border-color: #121e7e;
}

.ui-datepicker .ui-datepicker-title select {
  font-family: "Noto Sans";
  color: #ffffff;
  background-color: #121e7e;
  outline: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  border-color: #ffffff;
}

.ui-widget-header {
  border: 1px solid #121e7e;
  background: #121e7e;
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  border-radius: 0;
}

.calndr-icon {
  position: relative;
}
.calndr-icon .icon {
  position: absolute;
  top: 10px;
  height: 100%;
  align-items: center;
}

.midbar-wrapper .calndr-icon .icon {
  left: 15px;
}
.midbar-wrapper .calndr-icon .form-control {
  text-align: center;
}

.traveller-details .calndr-icon .icon {
  right: 15px;
}
.traveller-details .calndr-icon .icon svg path {
  fill: #A39C9C;
}
.traveller-details .chkbx label {
  color: #939393;
  margin-bottom: 0;
}
.traveller-details .form-control {
  color: #939393;
}

a.text-decoration {
  text-decoration: underline !important;
}
a.text-decoration:hover {
  text-decoration: none !important;
}

.text-decoration {
  text-decoration: underline !important;
}

#FareRules .modal-dialog,
#BaggageDetails .modal-dialog {
  max-width: 800px;
}
#FareRules .modal-dialog .modal-title,
#BaggageDetails .modal-dialog .modal-title {
  color: #2391D1;
}

#FareDetails .modal-title {
  color: #2391D1;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  background-color: transparent;
  border: 1px solid #ffffff;
  top: 4px;
  border-radius: 0;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  position: inherit;
  left: auto;
  top: auto;
  margin: 0;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  top: 4px;
}

.ui-datepicker .ui-icon {
  margin: 0;
  left: auto;
  top: 4px;
}

.ui-datepicker-prev .ui-icon {
  background: none;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  border-left: none;
  border-top: none;
  width: 7px;
  height: 7px;
  transform: rotate(135deg);
  position: inherit;
  margin: 0;
}

.ui-datepicker-next .ui-icon {
  background: none;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  border-left: none;
  border-top: none;
  width: 7px;
  height: 7px;
  transform: rotate(-45deg);
  position: inherit;
  margin: 0;
}

.ui-datepicker th {
  font-family: "Inter";
  padding: 0.7em 0.3em;
  text-align: center;
  font-weight: 500;
  border: 0;
  font-size: 14px;
}

/*************************************************/
.holiday-section {
  padding-top: 50px;
}

.cat-btn {
  width: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.cat-btn img {
  width: 100%;
  border-radius: 50%;
}
.cat-btn span {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 45px;
  line-height: 56px;
  text-align: center;
  color: #FFFFFF;
  position: absolute;
}

.package-btn {
  display: flex;
  position: relative;
}
.package-btn img {
  width: 100%;
}

.package-info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  min-width: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: #FFFFFF;
  font-size: 15px;
  position: absolute;
  bottom: 0;
  padding: 15px 20px;
  min-height: 1px;
  transition: min-height 0.5s, background 0.5s;
  -webkit-transition: min-height 0.5s, background 0.5s;
  -moz-transition: min-height 0.5s, background 0.5s;
  -ms-transition: min-height 0.5s, background 0.5s;
  -o-transition: min-height 0.5s, background 0.5s;
}

.package-btn:hover .package-info {
  min-height: 100%;
  transition: min-height 0.5s;
  -webkit-transition: min-height 0.5s, background 1s;
  -moz-transition: min-height 0.5s;
  -ms-transition: min-height 0.5s;
  -o-transition: min-height 0.5s;
  background: rgba(0, 0, 0, 0.75);
}

.priceInfo {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.holiday-section .bx-mb {
  margin-bottom: 30px;
}

.select2-dropdown {
  border-color: #A7AABA;
}

.refine-search {
  padding: 15px;
  background: #F2F4FF;
  border: 1px solid #AEB3DF;
  border-radius: 8px;
  margin-bottom: 79px;
}
.refine-search .filter-right {
  height: 30px;
}
.refine-search .filter-right .select2-container {
  max-width: 100%;
}
.refine-search .filter-right .select2-container .select2-selection--single {
  border-color: #A7AABA;
}
.refine-search .filter-right .select2-container .select2-selection--single .select2-selection__arrow b {
  border-width: 5px 4px 0 4px;
  border-style: solid;
  border-color: #121E7E transparent transparent transparent;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  margin-top: 4px;
}
.refine-search .filter-right .select2-container.select2-container--open .select2-selection--single .select2-selection__arrow b {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  margin-top: 0;
}
.refine-search .filter-left {
  height: auto;
}
.refine-search .filter-left .select2-container--default {
  max-width: 100%;
  min-width: 100%;
  font-size: 15px;
}
.refine-search .filter-left .select2-container--default .select2-selection--single {
  background-color: transparent;
  border: none;
  flex-direction: row;
  justify-content: space-between;
}
.refine-search .filter-left .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-left: 0;
  font-weight: 300;
  color: #000000;
}
.refine-search .filter-left .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-width: 5px 4px 0 4px;
  border-style: solid;
  border-color: #121E7E transparent transparent transparent;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  margin-top: 4px;
}
.refine-search .filter-left .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  margin-top: 0;
}

.package-list {
  border-radius: 15px;
  overflow: hidden;
  background: #F7F7F7;
  margin-bottom: 49px;
}

.pckg-img {
  background-size: cover;
  background-repeat: no-repeat;
}

.pckg-info {
  padding: 19px 40px 40px;
}
.pckg-info h3 {
  font-weight: 600;
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 40px;
}
.pckg-info p {
  margin-bottom: 40px;
}

.pckg-price-info {
  background: #4756CB;
  padding-top: 40px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pckg-price-info button {
  font-size: 22px;
}
.flight_icon_small {
    width: 18px;
    height: 18px;
    background-size: contain;
    transform: rotate(45deg);
    margin-right: 5px;
}
.flight_icon_small_return {
  width: 18px;
  height: 18px;
  background-size: contain;
  transform: rotate(225deg);
  margin-right: 5px;
}
.book-dtls-desc {
  margin: 0;
  padding: 8px 15px;
  list-style: none;
  background: #FFFFFF;
  border: 1px solid #ACACAC;
  border-radius: 100px;
  display: inline-flex;
}
.book-dtls-desc li {
  margin-left: 25px;
}
.book-dtls-desc li:first-child {
  margin-left: 0;
}

.star-rate-white {
  background: url("../images/star-rate-icon-white.svg") no-repeat;
  width: 15px;
  height: 15px;
  background-size: contain;
  display: block;
}

.pckg-review {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}
.pckg-review ul {
  display: flex;
  flex-direction: row;
  margin-left: 7px;
}

.pckg-price {
  margin-bottom: 22px;
}
.pckg-price h4 {
  font-size: 50px;
  line-height: 60px;
  margin-bottom: 0;
}

.btn-typ2 {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid #ffffff !important;
  padding-left: 29px;
  padding-right: 29px;
}

.btn-typ2:hover {
  background: #ffffff;
  color: #4756CB;
}

.btn-typ7 {
  background: #ff6c00;
  color: #FFFFFF;
  border: 0px solid #ffffff !important;
  padding-left: 29px;
  padding-right: 29px;
}

.btn-typ7:hover {
  background: #fff !important;
  color: #000 !important;
  border:1px solid #f57c00  !important;
}

.btn-typ3 {
  background: #2391D1;
  border: 1px solid #2391D1;
  color: #ffffff;
}
.btn-typ3:hover {
  background: none;
  color: #2391D1;
}

.btn-typ4 {
  background: #4756CB;
  border: 1px solid #4756CB;
  color: #ffffff;
  display: inline-block;/*nimmi-15-05-2024*/
}
.btn-typ4:hover {
  background: #ffffff;
  color: #4756CB;
}

.details-bg {
  margin-top: 41px;
  margin-bottom: 43px;
}

.detail-txt-info p {
  color: #7C7C7C;
}
.detail-txt-info ul {
  list-style: disc;
  padding: revert;
  color: #7C7C7C;
}
.detail-txt-info ul li {
  margin-bottom: 10px;
  padding-left: 0;
}

.title-typ1 {
  font-size: 22px;
}

.right-blue-box {
  padding: 45px 15px 47px;
  margin-bottom: 30px;
}
.right-blue-box input {
  border: none;
  font-size: 16px;
}
.right-blue-box label {
  font-size: 15px;
}
.right-blue-box p {
  font-size: 15px;
}
.right-blue-box .selectbox {
  background: none;
  color: #ffffff;
  width: auto;
  margin-bottom: 5px;
}
.right-blue-box .selectbox label {
  min-width: auto;
  margin-bottom: 0;
}
.right-blue-box .selectbox input {
  color: #ffffff;
}
.right-blue-box .select2-container--default {
  min-width: 100%;
  max-width: 100%;
}
.right-blue-box .select2-container--default .select2-selection--single {
  border-radius: 100px !important;
  height: 35px;
}

.details-sidebar p {
  color: #7C7C7C;
}

.related-images-slider-wrp {
  margin-bottom: 30px;
}

.related-images.owl-theme .owl-dots .owl-dot.active span {
  background: #3A78C9;
}
.related-images.owl-theme .owl-dots .owl-dot:hover span {
  background: #3A78C9;
}
.related-images.owl-carousel .owl-item img {
  border-radius: 25px;
}

.map-location {
  margin-bottom: 30px;
}
.map-location iframe {
  max-width: 100%;
  height: 300px;
  border-radius: 25px;
}

.more-pckg-lnks {
  background: url("../images/img26.png") no-repeat;
  background-size: cover;
  background-position: center;
  padding: 30px;
}
.more-pckg-lnks ul {
  color: #ffffff;
}
.more-pckg-lnks ul li {
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  color: #FFFFFF;
  padding-left: 20px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  position: relative;
  border-bottom: 1px solid #ffffff;
}
.more-pckg-lnks ul li a {
  color: #ffffff;
}
.more-pckg-lnks ul li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #ffffff;
  position: absolute;
  left: 0;
  top: 8px;
  border-radius: 50%;
}
.more-pckg-lnks ul li:last-child {
  border-bottom: none;
}

.white-border {
  border: 2px solid rgb(255, 255, 255);
  border-radius: 15px;
  overflow: hidden;
}

.apply-coupon {
  border: 2px solid #FFFFFF;
  border-radius: 15px;
  overflow: hidden;
  align-items: center;
  height: 55px;
}
.apply-coupon .form-control {
  background-color: transparent;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
}
.apply-coupon .form-control::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: rgb(255, 255, 255);
  opacity: 1;
  /* Firefox */
}
.apply-coupon .form-control::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: rgb(255, 255, 255);
  opacity: 1;
  /* Firefox */
}
.apply-coupon .form-control:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: rgb(255, 255, 255);
}
.apply-coupon .form-control::-ms-input-placeholder {
  /* Microsoft Edge */
  color: rgb(255, 255, 255);
}
.apply-coupon .input-group-append {
  height: 100%;
}
.apply-coupon .btn {
  background: #ffffff;
  color: #4756CB;
  font-size: 18px;
  font-weight: 600;
}

.summery li {
  margin-bottom: 8px;
}

.price-summery .total-price {
  font-size: 20px;
}

.booking-tocken-info {
  margin-bottom: 30px;
}
.booking-tocken-info span {
  color: #6A6A6A;
}

.booking-success-msg {
  font-size: 30px;
  line-height: 1.3;
  display: flex;
  align-items: center;
}
.booking-success-msg strong {
  font-size: 40px;
}
.booking-success-msg p {
  font-size: 20px;
  color: #707070;
  margin: 0;
}
.booking-success-msg .greenTick {
  background: #6AC259;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
}
.booking-success-msg .greenTick:after {
  content: "";
  display: inline-block;
  border-right: 7px solid #ffffff;
  border-bottom: 7px solid #ffffff;
  width: 22px;
  height: 40px;
}
.booking-success-msg .success-txt {
  margin-left: 24px;
}

.book-now-form .form-row {
  background: #F8F8F8;
  padding: 30px;
}
.book-now-form .form-row .form-group:last-child {
  margin-bottom: 0;
}
.book-now-form .form-row.booking-payment-sec .form-group:last-child {
  margin-bottom: 1rem;
}
.book-now-form .form-row label {
  font-weight: 300;
}
.book-now-form .form-row .form-control {
  height: 60px;
}
.book-now-form .form-row textarea.form-control {
  height: 207px;
  resize: none;
}

.cards-icon-wrp .form-control {
  background-color: transparent;
  border: none;
}

.help-btn {
  border: 1px solid #A0A0A0;
  padding: 22px 20px;
}

.book-now-form .form-row strong {
  font-weight: 500;
  font-size: 25px;
  margin-bottom: 40px;
}
.book-now-form .form-row .booking-status li label {
  font-weight: 400;
}
.book-now-form .form-row .booking-status li span {
  color: #5A5A5A;
  font-weight: 300;
}

/*********************Animation*********************/
/*************************************************/

.hd-wraper_custom {
  padding: 20px 0 20px !important;
}

.hd-wraper {
  text-align: center;
  padding: 60px 0 20px;
}
.hd-wraper.innerpage {
  text-align: left;
  padding: 15px;
}
.hd-wraper.innerpage strong,
.hd-wraper.innerpage h4 {
  text-align: left;
}
.hd-wraper strong {
  /* font-style: normal;
    font-weight: bold;
    font-size: 28px;
    line-height: 1;
    text-align: center;
    color: #000000;
    margin-bottom: 21px;
    font-family: Nunito; */

    font-style: normal;
    font-weight: bold;
    font-size: 50px;
    line-height: 1;
    text-align: center;
    color: #1e3a8a;
    margin-bottom: 21px;
    font-family: 'Nunito';

}
.hd-wraper h4 {
  font-weight: 900;
  font-size: 42px;
  line-height: 1.5;
  text-align: center;
  color: #000;
  margin-bottom: 11px;
  /* font-family: 'Nunito'; */
  font-family: 'Noto Sans';
  
}
.hd-wraper p {
  color: #808080;
  margin: 0;
}
.hd-wraper.white-txt strong,
.hd-wraper.white-txt p {
  color: #ffffff;
  font-size:19px;
}
.hd-wraper.white-txt h4 {
  color: #ff7900;
}

.video-banner {
  background: url(../images/banner7.jpg) no-repeat center center;
  background-size: cover;
}

/***********Custom Play Button*************/
.video-container {
  max-width: 1088px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.video-wrapper {
  min-width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: -105px;
}

/* video {
  width: 100%;
  height: 100%;
  border: 13px solid rgba(255, 255, 255, 0.5);
} */

.play-button-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.play-button-wrapper #circle-play-b {
  cursor: pointer;
  pointer-events: auto;
  width: 69px;
  height: 69px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 50%;
}
.play-button-wrapper #circle-play-b svg {
  margin-right: -5px;
}
.play-button-wrapper #circle-play-b:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}

/******************************************/
.popular-flights .nav-pills .nav-item {
  margin-left: 10px;
}
.popular-flights .nav-pills .nav-item.nav-item:first-child {
  margin-left: 0;
}
.popular-flights .nav-pills .nav-item .nav-link {
  font-weight: 300;
  font-size: 15px;
  line-height: 18px;
  color: #454545;
  background: #ffffff;
  border: 1px solid #959595;
  height: 40px;
  width: 150px;
}
.popular-flights .nav-pills .nav-item .nav-link.active {
  border: none;
  background: #121E7E;
  font-weight: 500;
  color: #FFFFFF;
}
.popular-flights .owl-item .flight-info {
  min-height: 1px;
  transition: min-height 0.5s;
  -webkit-transition: min-height 0.5s;
  -moz-transition: min-height 0.5s;
  -ms-transition: min-height 0.5s;
  -o-transition: min-height 0.5s;
}
.popular-flights .owl-item:hover .flight-info {
  min-height: 100%;
  transition: min-height 0.5s;
  -webkit-transition: min-height 0.5s;
  -moz-transition: min-height 0.5s;
  -ms-transition: min-height 0.5s;
  -o-transition: min-height 0.5s;
}

.flight-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: #FFFFFF;
  font-size: 15px;
  position: absolute;
  bottom: 0;
  padding: 14px 30px;
}
.flight-info strong {
  font-weight: 600;
}
.flight-info span {
  font-weight: 300;
}

.offer-info-wrp {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-top: 79px;
  padding-bottom: 56px;
}
.offer-info-wrp li {
  text-align: center;
}
.offer-info-wrp li img {
  min-width: 100px;
  margin-bottom: 59px;
}
.offer-info-wrp .offer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.travel-reviews {
  background: url(../images/review_image.jpg) no-repeat;
  background-size: cover;
  min-height: 375px;
  padding-bottom: 0px;
  /* background: #000; */
}
.review_bg_image {
  background: url(../images/review_image.jpg) no-repeat;
  background-size: cover;
  min-height: 375px;
}

.review-item img {
  border-radius: 50%;
  width: 108px !important;
}

.owl-theme.travel-reviews-carousel.owl-carousel .owl-item {
  padding: 15px;
  background: #ffffff;
  border-radius: 15px;
  min-height: 230px;
}
.owl-theme.travel-reviews-carousel.owl-theme .owl-dots {
  margin-top: 44px;
}
.owl-theme.travel-reviews-carousel .owl-dots {
  margin-top: 44px;
}
.owl-theme.travel-reviews-carousel .owl-dots .owl-dot.active span, .owl-theme.travel-reviews-carousel .owl-dots .owl-dot.owl-dot:hover span {
  background: #ffffff;
}
.owl-theme.travel-reviews-carousel .owl-dots .owl-dot span {
  background: rgba(255, 255, 255, 0.5);
}

.star-rate {
  background: url(../images/star-rate-icon.svg) no-repeat;
  width: 16px;
  height: 16px;
  background-size: cover;
  display: block;
}

.review-info h5 {
  font-weight: 700;
  font-size: 25px;
}
.review-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  margin-bottom: 16px;
}
.review-info ul li {
  margin-left: 3px;
}
.review-info ul li:first-child {
  margin-left: 0;
}
.review-info .txt-cntnt {
  font-weight: 300;
  font-size: 13px;
  margin-bottom: 10px;
}
.review-info strong {
  font-weight: 700;
  font-size: 15px;
}

.review-slider-wrapper {
  padding: 30px 30px 0;
}

.midbar-wrapper-inner {
  background: #070F4E;
}
.midbar-wrapper-inner .calndr-icon .form-control {
  text-align: center;
}
.midbar-wrapper-inner .calndr-icon .icon {
  left: 15px;
}
.midbar-wrapper-inner .calndr-icon .icon svg path {
  fill: #ffffff;
}
.midbar-wrapper-inner .flight-search {
  position: static;
  background: none;
  color: #ffffff;
  box-shadow: none;
  min-width: 100%;
}
.midbar-wrapper-inner .flight-search .lbl,
.midbar-wrapper-inner .flight-search .select-lbl {
  color: #ffffff;
}
.midbar-wrapper-inner .flight-search [type=radio]:checked + label,
.midbar-wrapper-inner .flight-search [type=radio]:not(:checked) + label {
  color: #ffffff;
}
.midbar-wrapper-inner .flight-search [type=radio]:checked + label:after,
.midbar-wrapper-inner .flight-search [type=radio]:not(:checked) + label:after {
  border-radius: 0;
  background: none;
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
  width: 7px;
  height: 12px;
  left: 9px;
  top: 5px;
  transform: rotate(45deg);
}
.midbar-wrapper-inner .flight-search .form-control {
  background: none;
  color: #ffffff;
  border-color: #ffffff;
}
.midbar-wrapper-inner .flight-search .form-control.btn-typ1 {
  background: none !important;
  border-color: #ffffff !important;
}
.midbar-wrapper-inner .flight-search .form-control::-moz-placeholder {
  color: #ffffff;
  opacity: 1;
  /* Firefox */
}
.midbar-wrapper-inner .flight-search .form-control::placeholder {
  color: #ffffff;
  opacity: 1;
  /* Firefox */
}
.midbar-wrapper-inner .flight-search .form-control:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #ffffff;
}
.midbar-wrapper-inner .flight-search .form-control::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #ffffff;
}
.midbar-wrapper-inner .flight-search .form-fields .dark-blue-txt.btn {
  color: #ffffff !important;
}
.midbar-wrapper-inner .flight-search .select2-container--default .select2-selection--single {
  background-color: transparent;
}
.midbar-wrapper-inner .flight-search .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #ffffff;
}
.midbar-wrapper-inner .flight-search .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}
.midbar-wrapper-inner .flight-search .downarrow {
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}

.breadcrumbs li {
  font-size: 17px;
  /* font-weight: 300; */
  color: #000000;
  display: inline-block;
}
.breadcrumbs li a,
.breadcrumbs li span {
  color: #000000;
}
.breadcrumbs li::after {
  /* background: url("../images/arrow-right.svg"); */
  content: "\2192";
    width: 20px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    margin-right: 7px;
    font-size: 19px;
    font-weight: bold;
    color: #0000ff;
}
.breadcrumbs li:last-child::after {
  display: none;
}

.filter-left {
  font-size: 15px;
  font-weight: 400;
  color: #000000;
}
.filter-left li {
  display: flex;
  align-items: center;
  border: 1px solid #D2D3DD;
  border-bottom: none;
}
.filter-left li:first-child {
  font-weight: 600;
  font-size: 16px;
  color: #121E7E;
  padding-left: 20px;
  height: 45px;
}
.filter-left li:last-child {
  border-bottom: 1px solid #D2D3DD;
}
.filter-left .select2-container--default {
  min-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.filter-left .select2-container--default .select2-selection--single {
  border: none;
  display: flex;
  flex-direction: column;
  min-height: 45px;
  justify-content: center;
}
.filter-left .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #000000;
  font-size: 15px;
  padding-left: 20px;
}
.filter-left .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 7px;
}
.filter-left .select2-container--default .select2-selection--single .select2-selection__arrow b {
  background: none;
  border-right: 2px solid #6D6D6D;
  border-bottom: 2px solid #6D6D6D;
  border-left: none;
  border-top: none;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  top: 12px;
}
.filter-left .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  transform: rotate(225deg);
  top: 14px;
}

.title-typ2 {
  font-weight: 600;
    font-size: 30px;
    line-height: 10px;
    color: #000000;
    background: #fac187;
    margin: 0;
    padding: 24px;
    /* text-decoration: underline; */
    text-transform: uppercase;
    padding-bottom: 28px;
    font-family: 'Nunito';
}

.titlebar {
  background: #ECEDF4;
  font-size: 15px;
}
.titlebar li {
  padding: 14px;
    color: #FFF;
    background: #070f4e;
    font-weight: bold;
    border-right: 2px solid #FFF;
    text-align: left !important;

}

.price-dtls {
  font-weight: 600;
  font-size: 20px;
}
.price-dtls strong {
  font-weight: 600;
}

.contentbar .main-dtls {
  position: relative;
}
.contentbar .main-dtls img {
  max-height: 75px;
}
.contentbar .main-dtls::before {
  content: attr(data-th) ": ";
  display: none;
}

.green-bg {
  background: #009900;
}

/* .light-border {
  border: 2px solid #070f4e;
} */

.light-border {
    border: 2px solid #e6e6e6;
    background: #FFF;
    color: #041d31;
}

.flight-details-tab-wrap .nav-tabs .nav-item {
  margin-bottom: 0;
}
.flight-details-tab-wrap .nav-tabs .nav-item.active .nav-link {
  border: none;
  color: #f57c00;
  text-decoration: underline !important;
}
.flight-details-tab-wrap .nav-tabs .nav-link {
  padding: 0;
  font-size: 13px;
  line-height: 44px;
  color: #ffffff;
  cursor: pointer;
}

.flight-details-tab-wrap .nav-tabs .nav-link:focus, .flight-details-tab-wrap .nav-tabs .nav-link:hover, .flight-details-tab-wrap .nav-tabs .nav-link.active {
  border: none;
  color: #f57c00;
  text-decoration: underline !important;
}

.flight-details-tab-wrap .tab-content {
    background: #DDE0F3;
    width: 100%;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}
.flight-details-tab-wrap .tab-content .tab-pane {
  position: relative;
}
.flight-details-tab-wrap .tab-content .tab-pane ul li ul li img {
  max-height: 75px;
}
.flight-details-tab-wrap .tab-content .tab-pane .close {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 30px;
  height: 30px;
  color: #000000 !important;
  font-weight: bold;
  font-size: 30px !important;
  text-shadow: none;
  opacity: 1;
}

.bdr {
  border: 1px solid #D2D3DD;
}

.bdr-t {
  border-top: 1px solid #D2D3DD;
}

.bdr-b {
  border-bottom: 1px solid #D2D3DD;
}

.bg-b1b1b1 {
  background: #b1b1b1;
}

.bg-f0f3f5 {
  background: #f0f3f5;
}

.bg-070F4E {
  background: #002e99;
}

.steps-indicator {
  padding: 54px 0 0px;
}

.steps-bar-title {
  font-size: 30px;
}

.booking-step-container {
  border: 1px solid #fac187;
    padding: 0;
}

.details-popup-section {
  background: #fac187;
  padding: 5px 0;
}

/********************Booking Steps Indicator*******************/
/* > Process Styles */
.process-main {
  width: 100%;
}

.col-md-3:first-child .process-step:before {
  content: "1";
}

.col-md-3:nth-child(2) .process-step:before {
  content: "2";
}

.col-md-3:nth-child(3) .process-step:before {
  content: "3";
}

.col-md-3:last-child .process-step:before {
  content: "3";
}

.process-main .col-md-3:not(:first-child):before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 8px;
  top: 9px;
  left: -50%;
  right: 0;
  background: #949AC5;
}

.process-step-cont {
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: space-between;
}

.process-step {
  border-radius: 100%;
  line-height: 0;
  background: #949AC5;
  text-align: center;
  align-items: center;
  justify-content: center;
  align-self: center;
  display: flex;
  color: #1F2555;
  width: 26px;
  height: 26px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 7px;
  z-index: 4;
}

.active-step1 .step-1,
.active-step2 .col-md-3:first-child .process-step,
.active-step2 .col-md-3:nth-child(2) .process-step,
.active-step3 .col-md-3:first-child .process-step,
.active-step3 .col-md-3:nth-child(2) .process-step,
.active-step3 .col-md-3:nth-child(3) .process-step,
.active-step4 .col-md-3:first-child .process-step,
.active-step4 .col-md-3:nth-child(2) .process-step,
.active-step4 .col-md-3:nth-child(3) .process-step,
.active-step4 .col-md-3:last-child .process-step {
  color: #ffffff;
}

.process-label {
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  width: 100%;
  text-align: center;
  position: relative;
}
.process-label button {
  position: absolute;
  font-size: 13px;
  line-height: 13px;
  color: #FFE600;
  background: none;
  border: none;
  display: none;
  top: 1px;
  left: 100%;
}

.txt-2391D1 {
  color: #2391D1;
}

.active-step1 .col-md-3:first-child .process-step,
.active-step1-mini2 .col-md-3:first-child .process-step,
.active-step1-mini3 .col-md-3:first-child .process-step,
.active-step1-mini4 .col-md-3:first-child .process-step {
  background-color: #2391D1;
}

.active-step1 .col-md-3:first-child .process-label,
.active-step1-mini3 .col-md-3:first-child .process-label,
.active-step1-mini2 .col-md-3:first-child .process-label,
.active-step1-mini4 .col-md-3:first-child .process-label {
  color: #ffffff;
}

.active-step1 .col-md-3:first-child .process-label button,
.active-step2 .col-md-3:nth-child(-n+2) .process-label button,
.active-step3 .col-md-3:nth-child(-n+3) .process-label button,
.active-step4 .col-md-3:nth-child(-n+4) .process-label button {
  display: inline-block;
}

.active-step1 .col-md-3:first-child .process-step:before,
.active-step2 .col-md-3:nth-child(-n+2) .process-step:before,
.active-step3 .col-md-3:nth-child(-n+3) .process-step:before,
.active-step4 .col-md-3:nth-child(-n+4) .process-step:before {
  /*content: "\2713";*/
  content: "";
  width: 6px;
  height: 10px;
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
  color: #ffffff;
}

.active-step1 .col-md-3:first-child .process-step,
.active-step2 .col-md-3:nth-child(-n+2) .process-step,
.active-step3 .col-md-3:nth-child(-n+3) .process-step,
.active-step4 .col-md-3:nth-child(-n+4) .process-step {
  background-color: #2391D1;
}

/**************************************************************/
.right-arrow-small {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 10px;
  width: 10px;
}
.right-arrow-small::before {
  content: "";
  height: 1px;
  width: 10px;
  position: absolute;
}
.right-arrow-small::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1px solid;
  position: absolute;
  border-top: 1px solid;
  background: none;
  transform: rotate(45deg);
  right: 0;
}

.arrow-121E7E.right-arrow-small::before {
  background: #121E7E;
}
.arrow-121E7E.right-arrow-small::after {
  border-color: #121E7E;
}

.arrow-000000.right-arrow-small::before {
  background: #000000;
}
.arrow-000000.right-arrow-small::after {
  border-color: #000000;
}

.layover-duration {
  position: relative;
}
.layover-duration::before {
  content: "";
  height: 1px;
  background: #fac187;
  position: absolute;
  width: 100%;
}
.layover-duration span {
  padding: 5px;
    border: 1px solid #fac187;
    background: #fac187;
    display: block;
    text-align: center;
}

.title-typ3 {
  font-size: 20px;
}

.select2-container .select2-selection--single {
  display: flex;
  align-items: center;
}

.traveller-details form {
  
}
.traveller-details .select2-container .select2-selection--single {
  height: 35px;
}
.traveller-details .select2-container .select2-selection--single .select2-selection__rendered {
  color: #939393;
}

.payment-options-box {
  border: 1px solid #D2D3DD;
  padding: 41px 15px 43px 15px;
}
.payment-options-box .chkbx label:before {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  width: 20px;
  min-width: 20px;
  height: 20px;
  background: #ffffff;
  border-color: #ADB2CF;
}
.payment-options-box .chkbx input:checked + label:after {
  border-color: #ADB2CF;
  border-width: 0 2px 2px 0;
  width: 6px;
  height: 10px;
  left: 7px;
  top: 4px;
}
.payment-options-box .btn {
  height: 35px;
}

.payment-options-tab .nav-tabs {
  border-bottom: none;
}
.payment-options-tab .nav-item {
  border: 1px solid #ADB2CF;
  border-bottom-width: 3px;
  border-bottom-color: #121E7E;
  height: 55px;
}
.payment-options-tab .nav-item.active {
  background: #ECEDF3;
  border-bottom-width: 1px;
  border-bottom-color: #ADB2CF;
}
.payment-options-tab .nav-item.active .nav-link svg {
  display: block;
}
.payment-options-tab .nav-item .nav-link {
  min-width: 100%;
  height: 100%;
  padding: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.payment-options-tab .nav-item .nav-link svg {
  display: none;
}
.payment-options-tab .tab-content {
  background: #2c3e50;
    border: 1px solid #ADB2CF;
    margin-left: -1px;
    color: #FFF;
}
.payment-options-tab .tab-content .chkbx label {
  align-items: unset;
}

.dashbord-maintab {
  border: 1px solid #A3A3A3;
}

.pagination-bottom {
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
}
.pagination-bottom a {
  border: 1px solid #121E7E;
  color: #121E7E;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.pagination-bottom a:hover {
  background-color: #121E7E;
  color: #ffffff;
}

.package-category {
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.package-category h2 {
  font-family: "Nunito";
  line-height: 1;
}
.package-category .package-btn {
  min-height: 255px;
}
.package-category .package-btn img {
  -o-object-fit: cover;
     object-fit: cover;
}

.category-search-wrap .select2-container--default {
  min-width: 100%;
  max-width: 100%;
}
.category-search-wrap .select2-container .select2-selection--single {
  height: 36px;
}

/******************Scroll To Top Button****************/
#scrollToTop {
  position: fixed;
  bottom: 30px;
  right: 15px;
  box-shadow: 0 0 14px -5px rgba(0, 0, 0, 0.5);
  border-radius: 100%;
  width: 35px;
  height: 35px;
  background: #2391d1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -90vh;
  z-index: 9;
  transition: margin-bottom 0.2s;
  -webkit-transition: margin-bottom 0.2s;
  -moz-transition: margin-bottom 0.2s;
  -ms-transition: margin-bottom 0.2s;
  -o-transition: margin-bottom 0.2s;
  /* animation properties */
  animation-name: my-animation;
  animation-duration: 0.3s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
#scrollToTop.active {
  margin-bottom: 0;
}
#scrollToTop:hover {
  border: 1px solid #ffffff;
}
#scrollToTop span {
  font-size: 0;
}
#scrollToTop span::after {
  content: "";
  width: 10px;
  height: 10px;
  border-left: 2px solid #ffffff;
  border-top: 2px solid #ffffff;
  display: inline-block;
  margin-top: 5px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

@keyframes my-animation {
  from {
    bottom: 10px;
  }
  to {
    bottom: 15px;
  }
}
.uploadFile {
  overflow: hidden;
  margin-bottom: 0;
}
/* .uploadFile [type=file] {
  cursor: pointer !important;
  display: block;
  font-size: 999px;
  filter: alpha(opacity=0);
  min-height: 100%;
  min-width: 100%;
  opacity: 0;
  position: absolute;
  right: 0px;
  text-align: right;
  top: 0px;
  z-index: 1;
} */

.custom-fileupload span.bottom-txt {
  font-size: 14px;
}

.kyc-form .upload-lbl {
  color: #717171;
}

.custom-fileupload {
  position: relative;
  padding: 20px 26px 11px;
  color: #000000;
  background-color: #F0F0F0;
  border: 1px dashed #615E5E;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.custom-fileupload input[type=file] {
  padding: 10px;
  background: #2d2d2d;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.custom-fileupload .upload-btn-txt {
  font-size: 12px;
  font-weight: 300;
}

#pro-pic {
  width: 103px;
  height: 103px;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

/*****************************************************/
footer {
  background: #1a2942;
  color: #ffffff;
  padding-top: 50px;
}
footer .footer-logo {
  max-width: 250px;
}
footer a {
  color: #ffffff;
}
footer .link-title {
  font-weight: 600;
  margin-bottom: 15px;
}
footer .link-item {
  font-size: 14px;
  margin-bottom: 5px;
}
footer .link-item:last-child {
  margin-bottom: 0;
}
footer .footer-text {
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  color: #FFF;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
footer .ctct-info li {
  margin-bottom: 13px;
  font-size: 15px;
}
footer .ctct-info li:last-child {
  margin-bottom: 0;
}
footer .ctct-info svg {
  min-width: 20px;
  margin-right: 7px;
}
footer .form-control {
  background-color: transparent;
}
footer .btn-primary {
  background: #2391D1;
  width: 100%;
}
footer .form-group .link-title {
  font-size: 18px;
  font-weight: 700;
}
footer .form-group p {
  font-size: 15px;
  margin-bottom: 5px;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 300;
  font-size: 13px;
  margin-top: 61px;
}
.footer-bottom-bar .footer-info-left,
.footer-bottom-bar .footer-info-right {
  display: flex;
  align-items: center;
}
.footer-bottom-bar .ftr-lnks {
  margin-left: 30px;
}
.footer-bottom-bar .ftr-lnks li {
  display: inline-block;
  padding: 0 13px;
  border-right: 1px solid #ffffff;
}
.footer-bottom-bar .ftr-lnks li:last-child {
  border: none;
}
.footer-bottom-bar .scl-lnks {
  margin-left: 30px;
}
.footer-bottom-bar .scl-lnks li {
  margin-left: 18px;
}

@media (min-width: 1200px) {
  .package-info {
    align-items: center;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1370px;
  }
  .flight-search {
    min-width: 1340px;
  }
  .holiday-section {
    padding-top: 80px;
  }
  .top-navigation .navbar-nav .nav-item .nav-link {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .top-navigation .navbar-nav .nav-item.nav-item:last-child .nav-link {
    padding-right: 0;
  }
}
@media (max-width: 1499px) {
  .header-info-bar .top-info-left li {
    margin-left: 40px;
  }
  .header-info-bar .top-info-right li.login a svg {
    margin-right: 5px;
  }
  .navbar-brand svg {
    height: 30px;
  }
  .navbar-nav {
    font-size: 15px;
  }
  .carousel-caption {
    margin-bottom: -5rem;
  }
  .carousel-caption h2 {
    font-size: 50px;
    line-height: 1;
  }
  .carousel-caption h3 {
    font-size: 60px;
    line-height: 1;
  }
  .midbar-banner-inner h2 {
    font-size: 45px;
  }
  .hd-wraper {
    padding: 60px 200px 20px;
  }
  .hd-wraper strong {
    font-size: 25px;
    margin-bottom: 21px;
    font-family: 'Noto Sans';
  }
  .hd-wraper h4 {
    font-size: 35px;
    margin-bottom: 11px;

  }
  .hd-wraper p {
    color: #808080;
    margin: 0;
  }
  .video-wrapper {
    margin-bottom: -60px;
  }
  .video-container {
    max-width: 800px;
  }
  .flight-info {
    padding: 15px;
  }
  .offer-info-wrp {
    padding-top: 40px;
    padding-bottom: 25px;
  }
  .offer-info-wrp li img {
    margin-bottom: 30px;
  }
  form.flight-search .form-control {
    height: 45px;
  }
  .refine-search {
    margin-bottom: 50px;
  }
  .package-list {
    margin-bottom: 30px;
  }
  .pckg-price-info {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .pckg-review {
    margin-bottom: 15px;
  }
  .pckg-info h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .pckg-info p {
    margin-bottom: 20px;
  }
  .pckg-price h4 {
    font-size: 30px;
    line-height: 35px;
  }
  .title-typ1 {
    font-size: 18px;
  }
  .right-blue-box {
    padding: 35px 15px 35px;
  }
  .right-blue-box label {
    font-size: 13px;
  }
  .right-blue-box p {
    font-size: 14px;
    font-weight: 400;
  }
  .right-blue-box input {
    font-size: 14px;
  }
  .package-name-sec h1 {
    font-size: 30px;
    line-height: 38px;
  }
  .book-now-form .form-row .form-control {
    height: 45px;
  }
  .book-now-form .form-row textarea.form-control {
    height: 150px;
  }
  .help-btn {
    padding: 10px 15px;
  }
  .right-blue-box {
    font-size: 14px;
  }
  .apply-coupon {
    height: auto;
  }
  .price-summery .total-price {
    font-size: 18px;
  }
  .booking-success-msg {
    font-size: 20px;
  }
  .booking-success-msg strong {
    font-size: 30px;
  }
  .booking-success-msg p {
    font-size: 18px;
  }
  .booking-success-msg .greenTick {
    width: 50px;
    min-width: 50px;
    height: 50px;
  }
  .booking-success-msg .greenTick::after {
    border-right-width: 5px;
    border-bottom-width: 5px;
    width: 15px;
    height: 25px;
  }
  .package-category h2 {
    font-size: 1.5rem;
  }
  .package-category .package-btn {
    min-height: 230px;
  }
}
@media (max-width: 1365px) {
  header .navbar-brand {
    max-width: 150px;
  }
  header.fixed .navbar {
    padding: 5px 0;
  }
  header.fixed .navbar .navbar-brand {
    max-width: 130px;
  }
  .header-info-bar .top-info-left li {
    margin-left: 15px;
  }
  .header-info-bar .top-info-right li {
    margin-left: 15px;
  }
  .header-info-bar .top-info-right li.login .btn {
    padding: 0;
  }
  .flight-search {
    min-width: 930px;
  }
  .cat-btn span {
    font-size: 35px;
  }
  .package-info {
    flex-direction: column;
    justify-content: center;
  }
  .package-info br {
    display: none;
  }
  .priceInfo {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .book-now-form .form-row {
    padding: 30px 15px;
  }
  .price-dtls {
    font-size: 16px;
  }
  .steps-bar-title {
    font-size: 25px;
  }
  .steps-indicator {
    padding: 35px 0;
  }
  .footer-bottom-bar,
  .footer-info-left {
    flex-direction: column;
  }
  .footer-info-left,
  .copyright {
    order: 1;
  }
  .footer-info-right,
  .ftr-lnks {
    margin-bottom: 10px;
  }
  .footer-bottom-bar .ftr-lnks {
    margin-left: 0;
  }
}
@media (max-width: 1023px) {
  body {
    font-size: 14px;
  }
  .header-info-bar .top-info-left li {
    margin-left: 20px;
  }
  .header-info-bar .col-lg-12.d-flex {
    flex-direction: column;
    justify-content: center;
  }
  .header-info-bar .col-lg-12.d-flex .top-info-left,
  .header-info-bar .col-lg-12.d-flex .top-info-right {
    justify-content: center;
  }
  .select-class-wrp {
    width: 45%;
  }
  .select-class-wrp .select2-container--default {
    min-width: 100%;
  }
  .person-select {
    width: 45%;
  }
  .person-select .select-lbl {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .dropdown-menu {
    display: none;
    border: none;
  }
  .dropdown-menu.show {
    display: block;
  }
  .carousel-caption {
    margin-bottom: -3rem;
  }
  .carousel-caption h2 {
    font-size: 25px;
    line-height: 1;
  }
  .carousel-caption h3 {
    font-size: 30px;
    line-height: 1;
  }
  .hd-wraper {
    padding: 60px 15px 20px;
  }
  .hd-wraper strong {
    font-size: 22px;
    margin-bottom: 21px;
  }
  .hd-wraper h4 {
    font-size: 27px;
    margin-bottom: 11px;
  }
  .hd-wraper p {
    color: #808080;
    margin: 0;
  }
  .flight-search {
    min-width: auto;
    left: auto;
    right: auto;
  }
  .travel-reviews {
    padding-bottom: 50px;
  }
  .review-slider-wrapper {
    padding-top: 20px;
  }
  .owl-theme.travel-reviews-carousel.owl-theme .owl-dots {
    margin-top: 20px;
  }
  .reg-log-modal.modal.show .modal-dialog {
    min-width: auto;
  }
  .title-typ4 {
    font-size: 20px;
  }
  .reg-log-modal.modal.show .modal-dialog .modal-content {
    padding: 25px 15px;
  }
  .reg-log-modal.modal.show .modal-dialog .modal-content .modal-header .modal-title {
    font-size: 20px;
  }
  .pckg-info {
    padding: 15px 15px 15px;
  }
  .pckg-review {
    flex-direction: column;
  }
  .pckg-price h4 {
    font-size: 25px;
    line-height: 30px;
  }
  .pckg-price-info button {
    font-size: 16px;
  }
  .package-name-sec h1 {
    font-size: 25px;
    line-height: 32px;
  }
  .package-name-sec,
  .package-price-sec {
    margin-bottom: 20px;
  }
  .package-price-sec .pckg-price {
    margin-bottom: 0;
  }
  .map-location iframe {
    min-width: 100%;
  }
  .right-blue-box hr {
    margin-top: 0;
  }
  .active-step2 .col-md-3:first-child .process-label button,
  .active-step3 .col-md-3:nth-child(-n+2) .process-label button,
  .active-step4 .col-md-3:nth-child(-n+3) .process-label button {
    display: block;
  }
  .process-label button {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .payment-options-tab .nav-item {
    height: 40px;
  }
  footer .footer-logo {
    max-width: 200px;
  }
  .footer-bottom-bar {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  header.fixed .header-info-bar {
    padding: 3px 0;
  }
  header.fixed .navbar .navbar-brand {
    max-width: 110px;
  }
  header .header-info-bar {
    padding: 3px 0;
  }
  header .navbar {
    padding: 5px 0;
  }
  header .navbar .navbar-brand {
    max-width: 125px;
  }
  .header-info-bar .col-lg-12.d-flex .top-info-right {
    justify-content: space-between;
  }
  .navbar-brand {
    padding: 0;
  }
  .navbar-brand svg {
    height: 25px;
  }
  .navbar-toggler {
    padding: 0;
  }
  .header-info-bar {
    padding: 10px 0;
    font-size: 13px;
  }
  .header-info-bar .top-info-left {
    display: none;
  }
  .header-info-bar .top-info-right {
    justify-content: space-between;
  }
  .header-info-bar .top-info-right li {
    margin-left: 5px;
  }
  .header-info-bar .top-info-right li.login {
    order: 3;
  }
  .header-info-bar .top-info-right li.login .btn {
    font-size: 0;
  }
  .header-info-bar .top-info-right li.login .btn svg {
    margin-right: 0;
  }
  .header-info-bar .top-info-right li.login .btn span {
    display: none;
  }
  .bdr-none.bdr-b {
    border-bottom: none;
  }
  [type=radio]:checked + label,
  [type=radio]:not(:checked) + label {
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .register-form [type=radio]:checked + label,
  .register-form [type=radio]:not(:checked) + label {
    width: 40%;
    display: inline-block;
  }
  .flight-search [type=radio]:checked + label, .flight-search [type=radio]:not(:checked) + label {
    display: inline-block;
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .select-class-wrp,
  .person-select {
    display: block;
    width: 80%;
    margin: 0 auto;
  }
  .person-select {
    padding: 0 4px 0 7px;
  }
  .dropdown-menu {
    padding-top: 0;
  }
  .hd-wraper strong {
    font-size: 20px;
  }
  .hd-wraper h4 {
    font-size: 23px;
  }
  .flight-search {
    position: inherit;
    box-shadow: none;
    /*padding: 30px 15px;*/
    border: 1px solid #AEB3DF;
    margin-top: 30px;
  }
  .form-fields.form-fields {
    padding-left: 0;
    margin-bottom: 5px;
  }
  .form-fields.form-fields:first-child {
    padding-left: 0;
  }
  .form-fields.form-fields:last-child {
    padding-right: 0;
  }
  .flight-search .lbl {
    display: block;
    text-align: center;
    margin-right: 0;
  }
  .flight-search [type=radio]:checked + label, .flight-search [type=radio]:not(:checked) + label {
    text-align: center;
    padding: 8px 10px;
    margin: 0;
  }
  .flight-search [type=radio]:checked + label::before, .flight-search [type=radio]:checked + label::after, .flight-search [type=radio]:not(:checked) + label::before, .flight-search [type=radio]:not(:checked) + label::after {
    display: none;
  }
  .flight-search [type=radio]:checked + label {
    background-color: #f67b01;
    color: #ffffff;
  }
  .midbar-wrapper .flight-search [type=radio]:checked + label, .midbar-wrapper .flight-search [type=radio]:not(:checked) + label {
    border: 1px solid #121E7E;
  }
  .midbar-wrapper .flight-search [type=radio]:checked + label {
    background-color: #f67b01;
    color: #ffffff;
  }
  .midbar-wrapper-inner .flight-search [type=radio]:checked + label, .midbar-wrapper-inner .flight-search [type=radio]:not(:checked) + label {
    border: 1px solid #ffffff;
  }
  .holiday-section {
    padding-top: 0;
  }
  .video-wrapper {
    margin-bottom: 15px;
  }
  .offer-info-wrp {
    flex-wrap: wrap;
    padding-top: 20px;
    padding-bottom: 0;
  }
  .offer-info-wrp li {
    min-width: 50%;
    margin-bottom: 30px;
  }
  .offer-info-wrp li img {
    margin-bottom: 15px;
  }
  .review-item img {
    margin: 0 auto;
    max-width: 250px;
    max-height: 250px;
  }
  .review-info {
    text-align: center;
  }
  .review-info ul {
    justify-content: center;
  }
  form .form-title {
    font-size: 22px;
  }
  .chkbx input:checked + label:after {
    top: 5px;
  }
  .flight-search-loading.modal.show .modal-dialog {
    min-width: auto;
  }
  .trvl-dtls .date strong {
    font-size: 20px;
  }
  .refine-search .filter-right .select2-container {
    min-width: 100%;
  }
  .pckg-img {
    min-height: 300px;
    background-position: center;
  }
  .pckg-info h3 {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 10px;
  }
  .pckg-info p {
    margin-bottom: 10px;
  }
  .book-now-form .form-row strong {
    font-size: 20px;
  }
  .titlebar {
    display: none;
  }
  .contentbar .main-dtls {
    position: relative;
    align-items: end;
  }
  .contentbar .main-dtls::before {
    font-weight: bold;
    display: inline-block;
    position: absolute;
    left: 15px;
  }
  .booking-step-container {
    padding: 15px;
  }
  .booking-step {
    padding: 15px;
    border: 1px solid #D2D3DD;
  }
  .steps-bar-title {
    font-size: 20px;
  }
  .process-main {
    flex-wrap: wrap;
  }
  .process-main .col-md-3 {
    min-width: 100%;
    height: 60px;
  }
  .process-main .col-md-3:not(:first-child):before {
    content: "";
    display: block;
    position: absolute;
    width: 8px;
    height: 50px;
    top: -40px;
    left: auto;
    right: 0;
    right: 24px;
  }
  .process-step-cont {
    flex-wrap: nowrap;
  }
  .process-step {
    order: 1;
    min-width: 26px;
    margin-bottom: 0;
  }
  .process-label {
    text-align: left;
  }
  .process-label button {
    text-align: left;
    margin-left: 0;
  }
  .payment-options-tab .tab-content {
    margin-left: 0;
  }
  .payment-options-tab .nav-item.active .nav-link svg {
    transform: rotate(90deg);
  }
  .payment-options-box {
    padding: 20px 15px 20px 15px;
  }
  footer {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  ul.ftr-lnks {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
  }
  .right-blue-box hr {
    margin-top: 1rem;
  }
  .direction-icon {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
  }
  .footer-bottom-bar .ftr-lnks li {
    border: none;
    margin-bottom: 5px;
  }
  .footer-logo svg {
    max-width: 150px;
  }
}
@media screen and (max-width: 640px) {
  .booking-step-2 .booking-step > ul.bdr-b {
    border-bottom: none;
  }
}/*# sourceMappingURL=style.css.map */

.modal {
  background: #000000a3;
}
ul#ui-id-1, ul#ui-id-2 {
  max-height: 400px;
  overflow-y: scroll;
  
}
.pagination-bottom a.active {
  background: #121E7E;
  color: #FFF;
  font-weight: bold;
  font-size: 17px;
  border: 1px solid #f57c00;
  width: 40px;
  height: 40px;
}
.error_codes {
  width: 100%;
}

.full-page-spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1050;
  flex-flow: column;
}
li.contentbar_return {
  /* min-height: 250px; */
  position: relative;
}
li.contentbar_one_way {
  min-height: 137px;
  position: relative;
}
.main_flight_details_container {
  margin: 0px;
  /* position: absolute; */
  left: 0;
  bottom: 0;
  width: 100%;
}
#loaderIcon {
  display: none;
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loaderIconCustom {
  margin: 15px auto;
  display: block;
  width: 55px;
  height: 55px;
  border: 5px solid #0707ff;
  border-top: 5px solid #f57c00;
  border-radius: 50%;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
      transform: rotate(0deg);
  }

  100% {
      transform: rotate(360deg);
  }
}
.placeholder_text {
    background: #1a2942;
    color: #FFF;
    padding: 10px;
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}
.error_payment {
  color: #FFF;
}
.errorMessagePayment {
  font-size: 20px;
  color: #FFF;
}
#errorMessagePayment {
  color: #FFF;
  font-size: 16px;
}

/* .close {
  color: #000000 !important;
  font-weight: bold;
  font-size: 21px !important;
  text-shadow: none;
} */
.close {
    color: #ffffff !important;
    font-size: 16px !important;
    text-shadow: none;
    opacity: 1;
    font-weight: normal;
}

.footer-links li a {
  color: #FFF;
}
.footer-links li a:hover {
  color: #ff9d3f;
}



@media (min-width: 768px) {

  /* show 3 items */
  .carousel-inner .active,
  .carousel-inner .active + .carousel-item,
  .carousel-inner .active + .carousel-item + .carousel-item,
  .carousel-inner .active + .carousel-item + .carousel-item + .carousel-item  {
      display: block;
  }
  
  .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left),
  .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left) + .carousel-item,
  .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left) + .carousel-item + .carousel-item,
  .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left) + .carousel-item + .carousel-item + .carousel-item {
      transition: none;
  }
  
  .carousel-inner .carousel-item-next,
  .carousel-inner .carousel-item-prev {
    position: relative;
    transform: translate3d(0, 0, 0);
  }
  
  .carousel-inner .active.carousel-item + .carousel-item + .carousel-item + .carousel-item + .carousel-item {
      position: absolute;
      top: 0;
      right: -25%;
      z-index: -1;
      display: block;
      visibility: visible;
  }
  
  /* left or forward direction */
  .active.carousel-item-left + .carousel-item-next.carousel-item-left,
  .carousel-item-next.carousel-item-left + .carousel-item,
  .carousel-item-next.carousel-item-left + .carousel-item + .carousel-item,
  .carousel-item-next.carousel-item-left + .carousel-item + .carousel-item + .carousel-item,
  .carousel-item-next.carousel-item-left + .carousel-item + .carousel-item + .carousel-item + .carousel-item {
      position: relative;
      transform: translate3d(-100%, 0, 0);
      visibility: visible;
  }
  
  /* farthest right hidden item must be abso position for animations */
  .carousel-inner .carousel-item-prev.carousel-item-right {
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
      display: block;
      visibility: visible;
  }
  
  /* right or prev direction */
  .active.carousel-item-right + .carousel-item-prev.carousel-item-right,
  .carousel-item-prev.carousel-item-right + .carousel-item,
  .carousel-item-prev.carousel-item-right + .carousel-item + .carousel-item,
  .carousel-item-prev.carousel-item-right + .carousel-item + .carousel-item + .carousel-item,
  .carousel-item-prev.carousel-item-right + .carousel-item + .carousel-item + .carousel-item + .carousel-item {
      position: relative;
      transform: translate3d(100%, 0, 0);
      visibility: visible;
      display: block;
      visibility: visible;
  }

}

/* Bootstrap Lightbox using Modal */

#profile-grid { overflow: auto; white-space: normal; } 
#profile-grid .profile { padding-bottom: 40px; }
#profile-grid .panel { padding: 0 }
#profile-grid .panel-body { padding: 15px }
#profile-grid .profile-name { font-weight: bold; }
#profile-grid .thumbnail {margin-bottom:6px;}
#profile-grid .panel-thumbnail { overflow: hidden; }
#profile-grid .img-rounded { border-radius: 4px 4px 0 0;}

#card_holders h5 {
    font-size: 27px;
    font-weight: bold;
    color: #f57c00;
    margin: 0;
}
#card_holders p {
  margin: 0;
}
#card_holders .card-body {
  padding: 0.5rem;
}



.before_768 {
  display: block;
}

@media (max-width: 768px) {
  .before_768 {
    display: none;
  }
}