@keyframes popout {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@-webkit-keyframes popout {
  from {
    -webkit-transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
  }
}
@-webkit-keyframes popout {
  from {
    -moz-transform: scale(0);
  }
  to {
    -moz-transform: scale(1);
  }
}
@keyframes blinkingText {
  0% {
    color: blue;
  }
  49% {
    color: orange;
  }
  50% {
    color: green;
  }
  99% {
    color: blue;
  }
  100% {
    color: #000;
  }
}
.black {
  color: #000;
}
.yellow {
  color: #f8d52f;
}
.green {
  color: #0ac775;
}
.white {
  color: #fff;
}
.gray {
  color: #ededed;
}
.dark-gray {
  color: #989aa2;
}
.text-link-gray {
  color: rgba(0, 0, 0, 0.8);
}
.text-blue {
  color: #2758f4;
}
.bg-blue {
  background: #2758f4;
}
.bg-dark-blue {
  background: #0739da;
}
.bg-gray {
  background: #f2f2f2;
}
.text-link-blue {
  color: #2758f4;
}
.text-link-blue:hover,
.text-link-blue:focus {
  color: #000;
  text-decoration: none;
}
.text-link-black {
  color: #000;
}
.text-link-black:hover,
.text-link-black:focus {
  color: #2758f4;
  text-decoration: none;
}
@media (max-width: 1169px) {
  .container {
    max-width: inherit;
    width: 100%;
    padding: 0 15px;
  }
}
@media (max-width: 479px) {
  .container {
    padding: 0 10px;
  }
}
.no-padding {
  padding: 0px !important;
}
.no-padding-left {
  padding-left: 0px !important;
}
.no-padding-right {
  padding-right: 0px !important;
}
.no-padding-top {
  padding-top: 0px !important;
}
.no-padding-bottom {
  padding-bottom: 0px !important;
}
.pt-0 {
  padding-top: 0px !important;
}
.mt-0 {
  margin-top: 0px !important;
}
.mb-0 {
  margin-bottom: 0px !important;
}
.mt-1 {
  margin-top: 10px !important;
}
.mt-2 {
  margin-top: 20px;
}
.mb-1 {
  margin-bottom: 10px;
}
.mb-2 {
  margin-bottom: 20px;
}
@media (max-width: 980px) {
  .margin-md {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .margin-md {
    margin-bottom: 0px;
  }
}
.f16 {
  font-size: 16px;
}
@media (max-width: 479px) {
  .f16 {
    font-size: 14px;
  }
}
.f14 {
  font-size: 14px;
}
.f13 {
  font-size: 13px;
}
.f12 {
  font-size: 12px;
}
.f11 {
  font-size: 11px;
}
.f28 {
  font-size: 28px;
}
.pd-3 {
  padding: 0 3px;
}
.form-control:focus,
.btn:focus,
.btn.focus {
  box-shadow: none;
}
a:focus,
button:focus,
select:focus,
* {
  outline: none;
}
.radiolist {
  list-style: none;
  padding: 0px;
}
.radiolist li {
  display: inline-block;
  padding-right: 7px;
}
@media (max-width: 479px) {
  .radiolist li {
    margin-bottom: 7px;
  }
}
.inputSet label {
  cursor: pointer;
  font-weight: 700;
  line-height: 16px;
  margin-bottom: 0;
  padding-left: 25px;
  position: relative;
  color: #11172b;
  text-transform: capitalize;
}
.inputSet label input {
  opacity: 0;
  position: absolute;
}
.inputSet label input[type="checkbox"] ~ span::after {
  border: 1px solid #fff;
  content: "";
  height: 16px;
  left: 0;
  position: absolute;
  top: 0;
  width: 16px;
}
.inputSet label input[type="checkbox"]:checked ~ span::after {
  border: 1px solid #fff;
}
.inputSet label input[type="checkbox"]:checked ~ span::before {
  font-family: "FontAwesome";
  content: "\f00c";
  display: block;
  color: #fff;
  text-align: center;
  position: absolute;
  left: 1px;
  width: 16px;
  font-size: 12px;
}
.inputSet label input[type="checkbox"]:checked ~ span {
  color: #fff;
}
.inputSet label input[type="radio"] ~ span::after {
  border-radius: 100%;
  border: 1px solid #000000;
  content: "";
  height: 18px;
  left: 0;
  position: absolute;
  top: 0;
  width: 18px;
}
.inputSet label input[type="radio"]:checked ~ span::after {
  border: 1px solid #11172b;
}
.inputSet label input[type="radio"]:checked ~ span::before {
  border-radius: 100%;
  background: #11172b;
  content: "";
  display: block;
  height: 8px;
  left: 5px;
  position: absolute;
  top: 5px;
  width: 8px;
}
.inputSet label input[type="radio"]:checked ~ span {
  color: #11172b;
}
.radio-black.inputSet label {
  color: #343434;
}
.radio-black.inputSet label input[type="radio"] ~ span::after {
  border-color: #343434;
}
.radio-black.inputSet label input[type="radio"]:checked ~ span::after {
  border-color: #e41a38;
}
.radio-black.inputSet label input[type="radio"]:checked ~ span::before {
  background: #e41a38;
}
.radio-black.inputSet label input[type="radio"]:checked ~ span {
  color: #e41a38;
}
.checkbox-black .inputSet label {
  color: #343434;
  text-transform: inherit;
}
.checkbox-black .inputSet label input[type="checkbox"] ~ span::after {
  border-color: #343434;
}
.checkbox-black .inputSet label input[type="checkbox"]:checked ~ span {
  color: #2758f4;
}
.checkbox-black .inputSet label input[type="checkbox"]:checked ~ span::after {
  border-color: #2758f4;
}
.checkbox-black .inputSet label input[type="checkbox"]:checked ~ span::before {
  color: #2758f4;
}
.inputSet.right label input[type="radio"] ~ span::after {
  right: 0;
  left: inherit;
  border-color: #878991;
  width: 22px;
  height: 22px;
}
.inputSet.right label input[type="radio"] ~ span::before {
  right: 7px;
  left: inherit;
  top: 7px;
}
.inputSet.right {
  padding-right: 88px;
  margin: 16px 0px;
}
.inputSet.right label {
  display: block;
  padding-left: 0px;
}
select::-ms-expand {
  display: none;
}
.select_dropdwon {
  position: relative;
}
.select_dropdwon select {
  background-color: #fff;
  font-size: 14px;
  -moz-appearance: none;
  border: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 5px;
  border-radius: 0px;
  border: 1px solid #b3b3b3;
  cursor: pointer;
  height: 34px;
}
.select_dropdwon:before {
  content: "\f107";
  font-family: "FontAwesome";
  font-size: 20px;
  position: absolute;
  right: 1px;
  top: 3px;
  height: 20px;
  width: 20px;
  color: #4d4d4d;
  pointer-events: none;
}
.select_dropdwon.airline_name:before {
  top: 0px;
}
.select_dropdwon.airline_name select {
  padding-left: 35px;
  padding-right: 35px;
}
.textbox {
  border-radius: 0px;
  font-size: 0.76rem;
}
.page-overlay {
  display: none;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
}
::-webkit-input-placeholder {
  color: #e2e2e2;
}
::-moz-placeholder {
  color: #e2e2e2;
}
:-ms-input-placeholder {
  color: #e2e2e2;
}
:-moz-placeholder {
  color: #e2e2e2;
}
.button {
  color: #fff;
  padding: 10px 15px;
  text-align: center;
  cursor: pointer;
  background: #e41a38;
  border: 1px solid #ad051e;
}
.button:hover {
  background: #1343de;
  text-decoration: none;
  color: #fff;
}
.no-margin {
  margin: 0px !important;
}
.no-gutters {
  margin: 0px;
}
.no-gutters [class*="col"] {
  padding: 0px;
}
.border-bottom {
  border-bottom: 1px solid #ccc;
}
@media (max-width: 767px) {
  .border-bottom {
    border: 0px;
  }
}
.mb-20 {
  margin-bottom: 30px;
}
.pb-20 {
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .pb-20 {
    padding-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .no-padding-left-sm {
    padding-left: 0px;
  }
}
.error {
  color: #f15a5f;
  padding: 5px 0px;
  font-size: 12px;
}
span.error {
  display: block;
}
.textbox.error ~ .location-icon {
  color: #f15a5f;
}
.textbox.error ~ .location-icon {
  color: #f15a5f;
}
.textbox.error::-webkit-input-placeholder {
  color: #f15a5f;
}
.textbox.error::-moz-placeholder {
  color: #f15a5f;
}
.textbox.error:-ms-input-placeholder {
  color: #f15a5f;
}
.textbox.error:-moz-placeholder {
  color: #f15a5f;
}
.cookies-strip {
  display: none;
  width: 100%;
  position: fixed;
  bottom: 0px;
  z-index: 4;
  text-align: center;
  background: #343434;
  color: #fff;
  padding: 16px 15px 16px 15px;
}
@media (max-width: 767px) {
  .cookies-strip {
    padding: 7px 12px 11px 12px;
    font-size: 12px;
    display: none !important;
  }
}
.cookies-strip a {
  color: #2758f4 !important;
  text-decoration: underline;
}
.cookies-strip .accept {
  background: #2758f4;
  padding: 10px;
  color: #fff;
  font-weight: 600;
  border: none;
  margin-left: 10px;
  border-radius: 3px;
  text-decoration: none;
  font-family: "Roboto", arial;
  cursor: pointer;
}
@media (max-width: 767px) {
  .cookies-strip .accept {
    white-space: nowrap;
    margin-top: 3px;
    display: inline-block;
  }
}
#go-top {
  position: fixed;
  right: 44px;
  bottom: 65px;
  z-index: 2;
  display: none;
  cursor: pointer;
  padding: 6px;
  width: 40px;
  text-align: center;
  background-color: #fff;
  color: #AD0520;
  border: 1px solid #ccc;
}
#go-top:hover {
  background: #e01933;
  color: #fff;
  border-color: #000000;
}
@media (max-width: 767px) {
  #go-top {
    bottom: 5px;
  }
}
.link-text {
  color: #2758f4;
  text-decoration: underline;
  cursor: pointer;
}
@media (max-width: 767px) {
  #launcher {
    bottom: 70px !important;
  }
}
@media print {
  a[href]:after {
    content: none;
  }
  .call-bottom-mob,
  .printEmail_row,
  .noprint {
    display: none;
  }
}
@page {
  size: auto;
  margin: 0mm;
}
.row-flex {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  flex-flow: row wrap;
}
@media only screen and (min-width: 1330px) {
  .footer-component .top-footer .holder .column {
    width: 25%;
    float: left;
  }
}



.form-group.has-error input {
  background: #fff url(../../../index.html) 97% 10px no-repeat;
}
.form-group.valid input {
  background: #fff url(../../../index.html) 97% 10px no-repeat;
}
#Payments_CvvNo {
  padding: 10px 6px;
}
.disable-checkbox span {
  color: #9e9e9e;
}
.disable-checkbox span:after {
  background: #e4e4e4;
  border: 1px solid #d8d8d8 !important;
}
.navigation_block {
  height: 59px;
}
@media (max-width: 980px) {
  .navigation_block {
    height: 51px;
  }
}
.menuBox {
  padding: 6px 0 6px 0;
  margin: 0px;
  background: #fff;
  border-bottom: 1px solid #eef4ff;
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 7;
}
@media (max-width: 980px) {
  .menuBox {
    padding: 6px 0;
  }
}
.menuBox .menu {
  float: right;
  margin: 0 0px 0 0;
  padding: 20px 0 0 0px;
}
@media (max-width: 980px) {
  .menuBox .menu {
    padding: 6px 0 0 0;
  }
}
.menuBox .menu li {
  list-style: none;
  float: left;
  position: relative;
  border-left: 1px solid #ccc;
}
.menuBox .menu li:first-child {
  border: none;
}
.menuBox .menu li a {
  color: #535353;
  font-size: 16px;
  padding: 0px 15px;
  display: block;
  font-weight: 700;
}
@media (max-width: 980px) {
  .menuBox .menu li a {
    font-size: 14px;
    padding: 0px 10px;
  }
}
@media (max-width: 767px) {
  .menuBox .menu li a {
    padding: 0px 3px;
  }
}
@media (max-width: 479px) {
  .menuBox .menu li a {
    padding: 0px 9px;
  }
}
.menuBox .menu li a:hover {
  color: #0739da;
  text-decoration: none;
}
.menuBox .menu li a.phoneNumber {
  font-size: 20px;
  font-weight: 700;
  color: #2758f4;
  padding: 0px;
  margin-top: -4px;
  position: relative;
}
@media (max-width: 980px) {
  .menuBox .menu li a.phoneNumber {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .menuBox .menu li a.phoneNumber {
    font-size: 15px;
  }
}
.menuBox .menu li a.phoneNumber .call-us {
  position: absolute;
  right: 0;
  top: -13px;
  font-size: 12px;
  white-space: nowrap;
  font-weight: 400;
  color: #3f3f3f;
}
.menuBox .menu li.header-tfn {
  margin-top: 9px;
  border: none;
}
@media (max-width: 767px) {
  .menuBox .menu li.header-tfn {
    margin-top: 15px;
  }
}
@media (max-width: 479px) {
  .menuBox .menu li.dropdown1 {
    padding: 0 10px;
  }
}
.menuBox .dropdown-menu {
  border: none;
  min-width: 121px;
}
@media (max-width: 767px) {
  .menuBox .dropdown-menu {
    left: inherit;
    right: 0;
  }
}
.menuBox .dropdown-menu li {
  width: 100%;
}
.menuBox .dropdown-menu li a {
  padding: 10px;
}
.menuBox .dropdown-menu .fa-sort-up {
  position: absolute;
  left: 70px;
  top: -10px;
  font-size: 27px;
  color: #fff;
}
@media (max-width: 980px) {
  .menuBox .dropdown-menu .fa-sort-up {
    left: 70px;
  }
}
.logo-height img {
  height: 60px;
}
@media (max-width: 980px) {
  .logo-height img {
    height: 50px;
  }
}
.secure_payment {
  position: absolute;
  right: 273px;
  top: 1px;
  list-style: none;
  display: none;
}
.secure_payment li {
  float: left;
  padding: 0px 26px;
  border-right: 1px solid #d5d5d5;
  position: relative;
}
@media (max-width: 980px) {
  .secure_payment li {
    padding: 0px 16px;
  }
}
.secure_payment li span {
  display: block;
  position: relative;
  padding-left: 66px;
}
.secure_payment li span img {
  position: absolute;
  left: 0;
}
.secure_payment li span.easy {
  padding-left: 43px;
}
.secure_payment li span.certified {
  padding-left: 35px;
}
.secure_payment li.last {
  border: none;
  line-height: 33px;
}
.secure_payment li a {
  color: #343434;
  text-decoration: none;
}
.secure_payment li ul li {
  border: none;
  padding: 0;
}
.change_language:before {
  content: "";
  width: 22px;
  height: 19px;
  display: inline-block;
  float: left;
  margin: 3px 3px 0 0;
  background: url(../images/united-flag-gray.png) left top no-repeat;
}
.menuBox .menu li.dropdown > a:after {
  content: "\f107";
  font-family: "FontAwesome";
  margin-left: 5px;
}
.menuBox .menu li.dropdown.open > a:after {
  content: "\f106";
  font-family: "FontAwesome";
  margin-left: 5px;
}
.dropdown-backdrop {
  display: none;
  z-index: 1;
}
@media (max-width: 767px) {
  .flights_links {
    display: none;
  }
}
@media (max-width: 479px) {
  .flight-flow .menuBox .menu li.dropdown1 {
    padding: 0 5px !important;
  }
}
.menuBox .mobile-menuBox {
  background: #fff;
  height: 100%;
  padding: 10px 0 10px 0;
  position: fixed;
  top: 0px;
  right: -200%;
  width: 100%;
  z-index: 16;
  transition: 0.2s;
  display: none;
}
.menuBox .mobile-menuBox h5 {
  background: #11172b;
  margin: -10px 0 20px 0;
  padding: 19px;
  color: #fff;
  font-size: 19px;
}
.menuBox .mobile-menuBox .scroll {
  height: 100%;
  overflow: auto;
}
.menuBox .mobile-menuBox ul {
  list-style: none;
  margin: 0px;
  padding: 0px 0 130px 0;
  float: none;
}
.menuBox .mobile-menuBox ul li {
  display: block;
  float: none;
  border-bottom: 1px solid #f1f2f2;
}
.menuBox .mobile-menuBox ul li a {
  padding: 11px 17px;
  display: block;
  font-size: 15px;
  color: #535353;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
.menuBox .mobile-menuBox ul li a i {
  width: 32px;
  height: 32px;
  line-height: 32px;
  border: 1px solid #535353;
  text-align: center;
  border-radius: 100%;
  margin-right: 5px;
}
.menuBox .mobile-menuBox ul li a:hover {
  color: #2758f4;
}
.menuBox .mobile-menuBox ul li a:hover i {
  border: 1px solid #2758f4;
}
.menuBox .mobile-menuBox.open {
  right: 0px;
  display: block;
}
.mobileMenu {
  cursor: pointer;
  z-index: 1;
  width: 40px;
  height: 40px;
  line-height: 36px;
  text-align: center;
  transition: 0.2s;
  padding: 15px !important;
}
.mobileMenu span {
  display: block;
  height: 2px;
  width: 20px;
  background: #2758f4;
  position: absolute;
  transition: 0.2s;
  border: none;
}
.mobileMenu span:before,
.mobileMenu span:after {
  display: block;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #2758f4;
  transition-duration: 0.2s, 0.2s;
  position: absolute;
  left: 0;
}
.mobileMenu span:before {
  top: -5px;
  transition-property: top, transform;
}
.mobileMenu span:after {
  bottom: -5px;
  transition-property: bottom, transform;
}
.mobileMenu.active span {
  background: none;
}
.mobileMenu.active span:before,
.mobileMenu.active span:after {
  transition-delay: 0s, 0.2s;
  background-color: #2758f4;
}
.mobileMenu.active span:before {
  top: 0;
  transform: rotate(45deg);
}
.mobileMenu.active span:after {
  bottom: 0;
  transform: rotate(-45deg);
}
.navigation_white .mobileMenu span {
  background: #fff;
}
.navigation_white .mobileMenu span:before,
.navigation_white .mobileMenu span:after {
  background: #fff;
}
.navigation_white .mobileMenu.active span {
  background: none;
}
.navigation_white .menuBox.fixed .mobileMenu span {
  background: #ffffff;
}
.navigation_white .menuBox.fixed .mobileMenu span:before,
.navigation_white .menuBox.fixed .mobileMenu span:after {
  background: #ffffff;
}
.navigation_white .menuBox.fixed .mobileMenu.active span {
  background: none;
}
.navigation_white .menuBox .mobileMenu.active span {
  background: none;
}
.navigation_white .menuBox .mobileMenu.active span:before,
.navigation_white .menuBox.fixed .mobileMenu.active span:after {
  transition-delay: 0s, 0.2s;
  background-color: #11172b;
}
.navigation_white .menuBox .mobileMenu.active span:before {
  top: 0;
  transform: rotate(45deg);
}
.navigation_white .menuBox .mobileMenu.active span:after {
  bottom: 0;
  transform: rotate(-45deg);
}
.navigation_white .menuBox .mobileMenu.active span:before,
.navigation_white .menuBox .mobileMenu.active span:after {
  background-color: #11172b;
}
.mobileMenuClose {
  width: 70px;
  height: 60px;
  position: absolute;
  right: 0px;
  top: 0px;
  background: #fff;
  text-align: center;
  line-height: 60px;
  display: block;
  font-size: 29px;
  color: #2758f4;
  padding: 18px !important;
}
.mobileMenuClose span {
  margin-top: 8px;
}
.mobileMenuClose:hover,
.mobileMenuClose:focus {
  background: #fff;
}
.navigation_white .menuBox .mobile-menuBox ul li a {
  color: #11172b;
}
.navigation_white .menuBox .mobile-menuBox ul li a:hover {
  color: #2758f4;
}
.navigation_white .menuBox .mobile-menuBox ul li a:hover i {
  border: 1px solid #2758f4;
}
.mobile-overlay {
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  height: 100%;
  left: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 6;
}
.nav .open > a,
.nav .open > a:focus,
.nav .open > a:hover {
  background-color: inherit;
}
body.push {
  overflow: hidden;
}
.traveller_block {
  width: 100%;
  background: #fff;
  padding: 15px;
  box-shadow: 0px 15px 32px -7px rgba(122, 181, 251, 0.33);
  z-index: 4;
  display: none;
}

@media (max-width: 980px) {
  .traveller_block {
    padding: 15px;
  }
}
.traveller_block .add-traveler {
  font-size: 18px;
  padding: 6px 0 6px 0;
  clear: both;
  font-weight: 500;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #000;
}
@media (max-width: 980px) {
  .traveller_block .add-traveler {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .traveller_block .add-traveler {
    padding: 2px 0;
  }
}
.traveller_block .add-traveler span {
  float: right;
}
.traveller_block .add-traveler span a {
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 23px;
  font-size: 14px;
  border: 2px solid #989aa2;
  color: #989aa2;
  background: #fff;
  margin-left: 30px;
  border-radius: 100%;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  font-weight: 600;
}
.traveller_block .add-traveler span a:hover {
  color: #2758f4;
  border-color: #2758f4;
  text-decoration: none;
}
.traveller_block .add-traveler .input {
  width: 40px;
  text-align: center;
  border: none;
  font-weight: 700;
  color: #e41a38;
  font-size: 18px;
  height: 28px;
  padding: 0;
}
@media (max-width: 980px) {
  .traveller_block .add-traveler .input {
    font-size: 14px;
  }
}
.traveller_block .radio-class {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.traveller_block .radio-class li {
  padding: 10px 0px;
}
@media (max-width: 980px) {
  .traveller_block .radio-class li {
    font-size: 14px;
  }
}
@media (max-width: 980px) {
  .traveller_block .radio-class li {
    padding: 7px 0px;
  }
}
.traveller_block .traveler-section {
  padding: 15px 50px 15px 0;
}
@media (max-width: 980px) {
  .traveller_block .traveler-section {
    padding-right: 12px;
  }
}
.traveller_block .class-section {
  padding: 15px 15px 0 20px;
  line-height: 1.7em;
  font-size: 18px;
  border-left: 1px solid #c7c7c7;
}
@media (max-width: 980px) {
  .traveller_block .class-section {
    border-left: 0px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .traveller_block .class-section {
    padding: 15px 15px 0 0px;
  }
}
.traveller_block .head {
  font-size: 23px;
  width: 100%;
  font-weight: 600;
}
.traveller_block .head.pl20 {
  padding-left: 20px;
}
@media (max-width: 767px) {
  .traveller_block .head.pl20 {
    padding-left: 0px;
  }
}
@media (max-width: 767px) {
  .traveller_block .head {
    font-size: 19px;
  }
}
.traveller_block .done {
  padding: 10px 30px;
  text-align: center;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: block;
  width: 120px;
  cursor: pointer;
  margin-top: 15px;
}
.traveller_block .done.done-mobile {
  width: 84px;
  margin-top: 0px;
  padding: 7px 3px;
}
.add-room-detail {
  display: none;
  position: absolute;
  right: -120px;
  top: 59px;
  padding: 12px;
  z-index: 7;
  width: 450px;
  background: #fff;
  box-shadow: 0px 15px 32px -7px rgba(122, 181, 251, 0.33);
}
@media (max-width: 980px) {
  .add-room-detail {
    right: 0px;
    top: 59px;
  }
}
@media (max-width: 767px) {
  .add-room-detail {
    width: 100%;
    top: 45px;
  }
}
.add-room-detail .label {
  padding-top: 24px;
  width: 60px;
  display: block;
  font-size: 12px;
  color: #343434;
  float: left;
  font-weight: normal;
}
.add-room-detail .label3 {
  display: block;
  font-size: 12px;
  color: #343434;
  font-weight: normal;
}
.add-room-detail .select {
  position: relative;
  width: 100%;
  height: 22px;
  display: inline-block;
}
.add-room-detail .select select {
  width: 100%;
  padding: 0 4px;
  height: 24px;
  font-size: 12px;
  color: #343434;
  font-weight: normal;
  margin: 0;
  border: 1px solid #ccc;
  outline: none;
  display: inline-block;
  cursor: pointer;
  background: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
}
select::-ms-expand {
  display: none;
}
.add-room-detail .select:after {
  font-family: "FontAwesome";
  text-align: center;
  content: "\f107";
  width: 20px;
  height: 20px;
  background: #fff;
  position: absolute;
  top: 2px;
  right: 1px;
  pointer-events: none;
}
.add-room-detail .traveller-row {
  position: relative;
  padding: 8px 0px;
  overflow: hidden;
}
.add-room-detail .block_div {
  padding-right: 10px;
  width: 60px;
  float: left;
}
.add-room-detail .right {
  width: calc(100% - 120px);
  float: left;
}
@media (max-width: 479px) {
  .add-room-detail .right {
    width: 100%;
    padding-top: 5px;
  }
}
.add-room-detail .age-div {
  width: 20%;
  padding-right: 10px;
  float: left;
}
.add-room-detail .btn-row {
  width: 100%;
  overflow: hidden;
}
.add-room-detail .btn-row a {
  margin: 8px 3px;
  padding: 0px 15px;
  display: inline-block;
  height: 29px;
  line-height: 26px;
  color: #343434;
  text-decoration: none;
  font-size: 14px;
  border: 1px solid #cdd0d2;
  border-radius: 2px;
}
.add-room-detail .btn-row a span {
  margin-right: 5px;
}
.add-room-detail a.confirm_room,
.add-room-detail a.add_room {
  background: #2758f4;
  color: #fff;
  border: none;
  border-radius: 0px;
}
.add-room-detail a.confirm_room:hover,
.add-room-detail a.add_room:hover {
  background: #0739da;
}
.add-room-detail .up_arrow {
  position: absolute;
  left: 223px;
  top: -17px;
  font-size: 25px;
  color: #fff;
}
@media (max-width: 980px) {
  .add-room-detail .up_arrow {
    left: 80%;
  }
}

@media (max-width: 767px) {

}

.trip-type {
  list-style: none;
  padding: 5px 0;
  margin: 0px;
  overflow: hidden;
  position: absolute;
  left: 350px;
  top: -45px;
}
@media (max-width: 767px) {
  .trip-type {
    left: 240px;
    top: -40px;
  }
}
@media (max-width: 479px) {
  .trip-type {
    top: -50px;
  }
}
.trip-type li {
  float: left;
  padding-right: 20px;
  color: #fff;
  font-size: 16px;
}
@media (max-width: 767px) {
  .trip-type li {
    font-size: 13px;
    padding-right: 10px;
    margin-bottom: 3px;
  }
}
.trip-type.inputSet label {
  text-transform: none;
}
.main-engine-wrapper {
  width: 100%;
  position: relative;
  z-index: 6;
}
.main-engine-wrapper.modify_search_wrapper {
  background: #e1e6ff;
}
@media (max-width: 980px) {
  .main-engine-wrapper.modify_search_wrapper {
    z-index: 9;
  }
}
.searchEnginBox {
  margin: 45px 0px;
  position: relative;
}
@media (max-width: 980px) {
  .searchEnginBox {
    margin: 30px 0;
  }
}
@media (max-width: 767px) {
  .searchEnginBox {
    margin: 15px 0;
  }
}
.searchEnginBox .searchBg .no-gutters {
  margin: 0px;
}
.searchEnginBox .searchBg .no-gutters [class*="col"] {
  /* padding: 0px 10px; */
  background: #0c1224;
  height: 65px;
}

@media (max-width: 1169px) {
  .searchEnginBox .searchBg .no-gutters [class*="col"] {
    height: 72px;
  }

}
@media (max-width: 767px) {
  .searchEnginBox .searchBg .no-gutters [class*="col"] {
    height: auto;
  }
   .form-div .container {
    width: 100% !important;
}
.search-icon {
    top: 5px !important;
}

}
.searchEnginBox .searchBg .label2 {
  font-size: 14px;
  color: #9f9f9f;
  font-weight: normal;
  padding-top: 15px;
  margin-bottom: 0px;
  display:none;
}
@media (max-width: 1169px) {
  .searchEnginBox .searchBg .label2 {
    padding-top: 8px;
  }
}
@media (max-width: 767px) {
  .searchEnginBox .searchBg .label2 {
    padding-top: 5px;
  }
}
.searchEnginBox .margin-bottom {
  margin-bottom: 15px;
}
.searchEnginBox .search {
  width: 100%;
  border: none;
  height: 65px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  background: #e51937;
  color: #fff;
  border-radius: 0;
}
@media (max-width: 1169px) {
  .searchEnginBox .search {
    height: 72px;
  }
}
@media (max-width: 767px) {
  .searchEnginBox .search {
    height: 58px;
  }
}
.searchEnginBox .search:hover {
  background: #0739da;
}
.searchEnginBox .bottom_row {
  position: absolute;
  right: 183px;
  top: -36px;
  width: 164px;
  white-space: nowrap;
  font-size: 16px;
}
@media (max-width: 980px) {
  .searchEnginBox .bottom_row {
    position: static;
    margin-top: 10px;
  }
}
.searchEnginBox.modify_searchBox {
  margin: 0;
  padding: 40px 0 30px 0;
  display: block;
}
@media (max-width: 980px) {
  .searchEnginBox.modify_searchBox {
    position: fixed;
    left: -200%;
    top: 0;
    width: 100%;
    transition: all 0.5s;
    background: #e1e4f4;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 9;
  }
}
.searchEnginBox.modify_searchBox.open {
  left: 0;
  height: 100%;
  padding: 10px;
}
.searchEnginBox.modify_searchBox.open .trip-type {
  position: static;
}
.searchEnginBox.modify_searchBox.open .traveller_holder {
  padding-top: 20px;
  overflow: auto;
  height: 100vh;
  padding-bottom: 30px;
}
.searchEnginBox.modify_searchBox.open .close_traveller {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 19px;
}
.searchEnginBox.modify_searchBox .traveller_block {
  right: 0px;
  left: inherit;
  z-index: 5;
}
.searchEnginBox.modify_searchBox .traveller_block .arrow-top {
  left: inherit;
  right: 83px;
}
.searchEnginBox.modify_searchBox .trip-type {
  left: 0px;
  top: 3px;
}
.searchEnginBox.modify_searchBox .label2 {
  padding-top: 5px;
}
.searchEnginBox.modify_searchBox .textbox {
  padding: 9px 20px 9px 27px;
  font-size: 16px;
  border-bottom: 2px solid transparent;
}
@media (max-width: 767px) {
  .searchEnginBox.modify_searchBox .textbox {
    font-size: 15px;
  }
}
.searchEnginBox.modify_searchBox .textbox.date {
  padding-left: 30px;
  z-index: 1;
  position: relative;
  background: transparent;
}
.searchEnginBox.modify_searchBox .textbox.error {
  border-color: #f15a5f;
}
.searchEnginBox.modify_searchBox .search-icon {
  top: 6px;
}
.searchEnginBox.modify_searchBox .search {
  height: 67px;
  font-size: 15px;
}
@media (max-width: 767px) {
  .searchEnginBox.modify_searchBox .search {
    font-size: 14px;
    height: 52px;
  }
}
.searchEnginBox.modify_searchBox .bottom_row {
  top: 8px;
}
.bg-white {
  background: #fff;
}
.textbox {
  width: 100%;
  border: none;
  padding: 21px 12px 21px 27px;
  font-size: 16px;
  line-height: 1.42857143;
  color: #ffffff;
/*   border-bottom: 2px solid transparent; */
  background: #00ffff00;
}
.textbox:hover {
  background: #242a48;
}
.textbox:active {
  background: #242a48;
}
.textbox:focus {
  background: #242a48;
}
@media (max-width: 1169px) {
  .textbox {
    padding: 10px 12px 10px 30px;
  }
}
@media (max-width: 767px) {
  .textbox {
    font-size: 14px;
  }
}
.textbox.date {
  padding-left: 30px;
  z-index: 1;
  position: relative;
  background: transparent;
}
.textbox.error {
  border-bottom: 2px solid #f15a5f;
}
.relative {
  position: relative;
}
.search-icon {
  position: absolute;
  left: 5px;
  top: 15px;
  color: #fff;
  font-size: 20px;
}
.drop-arrow {
  display: block;
  position: relative;
  width: 100%;
}
.drop-arrow:before {
  color: #8e8c8c;
  content: "\f107";
  font-family: fontawesome;
  font-size: 20px;
  position: absolute;
  pointer-events: none;
  right: 9px;
  top: 11px;
}
.drop-arrow select {
  height: 44px;
  white-space: normal;
  text-overflow: ellipsis;
  background-color: #fff;
  -moz-appearance: none;
  border: none;
  -webkit-appearance: none;
  width: 100%;
  padding-left: 10px;
}
.pointer {
  cursor: pointer;
  text-transform: capitalize;
}
.border-left {
  border-left: 1px solid #ccc;
}
@media (max-width: 767px) {
  .border-left {
    border-left: none;
  }
}
@media (max-width: 980px) {
  .border-left.originDate {
    border-left: none;
  }
}
@media (max-width: 767px) {
  .border-sm-bottom {
    border-bottom: 1px solid #ccc;
  }
}
@media (max-width: 767px) {
  .border-sm-top {
    border-top: 1px solid #ccc;
  }
}
@media (max-width: 767px) {
  .no-padding-left-sm {
    padding-left: 0px !important;
  }
}
.textbox::-webkit-input-placeholder {
  color: #c2c2c2;
}
.textbox::-moz-placeholder {
  color: #c2c2c2;
}
.textbox:-ms-input-placeholder {
  color: #c2c2c2;
}
.textbox:-moz-placeholder {
  color: #c2c2c2;
}
.searchTitle_tagline {
  position: absolute;
  right: 0px;
  top: 15px;
  width: 570px;
  color: #0739da;
  font-size: 18px;
  font-weight: 700;
}
.searchTitle_tagline h2 {
  font-size: 25px;
  color: #fff;
  margin: 0px 0 5px 0;
}
.preferred_airline {
  text-align: left;
}
.preferred_airline .select-dropdown {
  margin-top: 10px;
}
.preferred_airline .select-dropdown select {
  color: #000;
  border: 1px solid #ccc;
  border-radius: 0;
}
.preferred_airline label {
  font-weight: normal;
  padding-top: 20px;
}
@media (max-width: 767px) {
  .preferred_airline label {
    font-size: 16px;
    padding-top: 0px;
  }
}
.modify_search_close {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 19px;
  display: none;
}
@media (max-width: 980px) {
  .modify_search_close {
    display: block;
  }
}
#origin:focus ~ .location-icon,
#destination:focus ~ .location-icon {
  color: #2758f4;
}
.calendar-icon {
  color: #ffffff;
}
@media (max-width: 767px) {
  .calendar-icon {
    top: 6px;
  }
}
.traveller-icon {
  color: #ffffff;
  font-size: 25px;
  top: 12px;
}
@media (max-width: 767px) {
  .traveller-icon {
    top: 1px;
  }
}
.traveller-down-arrow {
  position: absolute;
  right: -6px;
  top: 16px;
  font-size: 18px;
}
@media (max-width: 980px) {
  .traveller-down-arrow {
    top: 9px;
    right: 0px;
  }
}
#error p {
  color: #f15a5f;
  padding: 5px 0px;
  margin-top: 10px;
  position: absolute;
  left: 10px;
  bottom: -45px;
}
@media (max-width: 767px) {
  #error p {
    position: static;
    margin: 0;
    padding: 0;
  }
}
#error.change-search p {
  position: static;
  padding: 0;
  margin: 0;
}
.modify_search_mobile-header {
  display: none;
  padding: 9px 20px 9px 10px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  background: #2758f4;
  margin: -10px -10px 10px -10px;
  overflow: hidden;
}
@media (max-width: 980px) {
  .modify_search_mobile-header {
    display: block;
  }
}
.searchEnginBox.modify_searchBox .searchBg .no-gutters [class*="col"] {
  height: auto;
}
.searchEnginBox.modify_searchBox span.error {
  position: absolute;
}
@media (max-width: 767px) {
  .searchEnginBox.modify_searchBox span.error {
    position: static;
  }
}
@media (max-width: 767px) {
  .searchEnginBox span.error {
    display: block;
    background: #fff8bf;
    margin: 4px 0;
    padding: 5px 13px;
  }
}
.searchEnginBox.modify_searchBox .traveller-icon {
  top: 2px;
}
#originDateDiv .textbox,
#destinationDateDiv .textbox {
  padding-right: 0px;
}
.car_advance {
  position: relative;
}
.advance-search {
  position: absolute;
  top: 0px;
  width: 100%;
  padding: 10px 0px;
}
.advance-search .inputSet33 label {
  margin-bottom: 0;
  padding-left: 20px;
  position: relative;
  cursor: pointer;
  display: block;
  color: #fff;
  margin-top: 5px;
}
.advance-search .inputSet33 label input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.advance-search .inputSet33 label .nddl {
  font-weight: normal;
}
@media (max-width: 767px) {
  .advance-search .inputSet33 label .nddl {
    font-size: 11px;
  }
}
.advance-search .src-input {
  padding: 10px 0;
  position: relative;
}
@media (max-width: 767px) {
  .advance-search .src-input {
    padding: 5px 0px;
  }
}
.advance-search .src-input .drop-location {
  position: absolute;
  top: 15px;
  left: 5px;
  color: #adadad;
  font-size: 20px;
}
.advance-search .src-input input,
.advance-search .src-input select {
  font-weight: 500;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 6px 10px 6px 25px;
  width: 100%;
  height: 40px;
}
.advance-search .src-input select {
  padding-left: 10px;
}
.advance-search .adva-option {
  color: #fff;
}
@media (max-width: 767px) {
  .advance-search .adva-option {
    font-size: 11px;
    padding-left: 20px;
  }
}
.result-tooltip {
  position: relative;
  display: inline-block;
}
.result-tooltip .info-tooltip-icon {
  width: 13px;
  height: 13px;
  text-align: center;
  line-height: 12px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 8px;
  border-radius: 100%;
  display: inline-block;
  position: absolute;
  top: -10px;
}
.result-tooltip .show_policy {
  display: none;
  background: #fff;
  color: #333;
  padding: 5px;
  position: absolute;
  left: -85px;
  top: 8px;
  width: 200px;
  border: 1px solid #94afc6;
  z-index: 5;
}
@media (max-width: 767px) {
  .result-tooltip .show_policy {
    left: -170px;
  }
}
.result-tooltip .show_policy p {
  margin: 0;
  font-size: 11px;
  font-weight: 400;
}
.result-tooltip:hover .show_policy {
  display: block;
}
.driverage {
  color: #fff;
}
@media (max-width: 767px) {
  .driverage {
    font-size: 11px;
    padding-left: 20px;
    float: left;
    margin-top: 3px;
  }
}
.car-engine .select {
  background: #fff;
  border: 0px;
  color: #262626;
  padding: 5px 0;
  font-size: 15px;
  height: 50px;
  width: 100%;
}
@media (max-width: 767px) {
  .car-engine .select {
    height: 36px;
  }
}
.car-engine .textbox {
  padding-right: 8px;
  font-size: 15px;
}
@media (max-width: 767px) {
  .car-engine .textbox {
    padding: 6px 12px 6px 23px;
  }
}
.car-engine .search {
  width: 100%;
}
@media (max-width: 767px) {
  .car-engine .search {
    height: 50px;
  }
}
.car-engine select {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  -o-appearance: none !important;
}
@media (max-width: 767px) {
  .car-engine .search-icon {
    top: 3px;
  }
}
@media (max-width: 767px) {
  .car-engine .calendar-icon {
    top: 2px;
  }
}
.img-effects1 img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.img-effects1:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.img-effects2 figure::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.img-effects2 figure:hover::before {
  -webkit-animation: shine 0.75s;
  animation: shine 0.75s;
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.img-effects3 img {
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.img-effects3:hover img {
  -webkit-transform: scale(1);
  transform: scale(1);
}
figure.effect-bubba {
  background: #2758f4;
}
figure.effect-bubba img {
  opacity: 1;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}
figure.effect-bubba:hover img {
  opacity: 0.4;
}
figure.effect-bubba figcaption::before,
figure.effect-bubba figcaption::after {
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 30px;
  content: "";
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}
figure.effect-bubba figcaption::before {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
figure.effect-bubba figcaption::after {
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
}
figure.effect-bubba h2 {
  padding-top: 30%;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, -20px, 0);
  transform: translate3d(0, -20px, 0);
  color: #fff;
  opacity: 0;
  text-align: center;
}
figure.effect-bubba p {
  padding: 20px 2.5em;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
}
figure.effect-bubba:hover figcaption::before,
figure.effect-bubba:hover figcaption::after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
figure.effect-bubba:hover h2,
figure.effect-bubba:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.homeDealBlock {
  width: 100%;
  padding-top: 50px;
}
@media (max-width: 1169px) {
  .homeDealBlock {
    padding-top: 40px;
  }
}
.homeDealBlock .holder {
  margin: 0 -18px;
}
@media (max-width: 1169px) {
  .homeDealBlock .holder {
    margin: 0px;
  }
}
.homeDealBlock h3 {
  font-size: 23px;
  font-weight: 500;
  color: #343434;
  padding-bottom: 17px;
  padding-left: 18px;
  margin: 0px;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .homeDealBlock h3 {
    font-size: 18px;
  }
}
.homeDealBlock .items {
  width: 33.3%;
  padding: 0 18px;
  float: left;
  position: relative;
  overflow: hidden;
}
.homeDealBlock figure img {
  width: 100%;
}
.homeDealBlock .content {
  padding-top: 10px;
  width: 100%;
}
.homeDealBlock .content .flight-logo {
  float: left;
  width: 35px;
}
.homeDealBlock .content .right {
  width: calc(100% - 45px);
  float: right;
}
.homeDealBlock .content .destination-name {
  font-size: 14px;
  font-weight: 600;
  color: #343434;
  line-height: 18px;
  padding-bottom: 2px;
}
.homeDealBlock .content .small-text {
  font-size: 14px;
  color: #7e7e7e;
}
.homeDealBlock .content .deal-price-text {
  font-size: 15px;
  color: #2758f4;
  font-weight: 600;
}
.homeDealBlock .content .deal-price-text span {
  font-weight: normal;
}
.homeDealBlock a.deal {
  display: block;
  text-decoration: none;
}
.deal-text {
  font-size: 13px;
  color: #777;
}
.destination-slider {
  overflow: hidden;
}
.destination-slider .slick-prev,
.destination-slider .slick-next {
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 25px;
}
.destination-slider .slick-prev {
  left: 0px;
}
.destination-slider .slick-prev:before {
  font-family: "FontAwesome";
  content: "\f104";
}
.destination-slider .slick-prev.slick-disabled {
  display: none !important;
}
.destination-slider .slick-next {
  right: 0px;
}
.destination-slider .slick-next:before {
  font-family: "FontAwesome";
  content: "\f105";
}
.destination-slider .slick-next.slick-disabled {
  display: none !important;
}
.destination-slider a {
  color: #343434;
}
.destination-slider a:hover {
  text-decoration: none;
  color: #ad0520;
}
.city-title-name {
  font-size: 20px;
}
.spacing-h140 {
  height: 40px;
}
@media (max-width: 767px) {
  .spacing-h140 {
    height: 50px;
  }
}
.bestBeal_image {
  height: 190px;
  overflow: hidden;
  background: #dedede;
}
.testimonialBox {
  width: 100%;
  padding-bottom: 50px;
}
.testimonialBox .holder {
  margin: 0 -18px;
}
@media (max-width: 1169px) {
  .testimonialBox .holder {
    margin: 0px;
  }
}
.testimonialBox .testimonial-slider {
  overflow: hidden;
}
.testimonialBox .testimonial-slider .slick-dots {
  list-style: none;
  margin: 0px;
  padding: 0px;
  text-align: center;
}
.testimonialBox .testimonial-slider .slick-dots li {
  display: inline-block;
  padding: 0 5px;
}
.testimonialBox .testimonial-slider .slick-dots li button {
  display: block;
  text-indent: -99999px;
  width: 9px;
  height: 9px;
  background: #dbdbdb;
  border-radius: 100%;
  border: none;
  padding: 0px;
}
.testimonialBox .testimonial-slider .slick-dots li.slick-active button {
  background: #2758f4;
}
.testimonialBox h2 {
  margin: 0px;
  padding: 60px 0 23px 18px;
  font-weight: 500;
  font-size: 18px;
}
@media (max-width: 767px) {
  .testimonialBox h2 {
    padding: 30px 0 23px 0px;
  }
}
.testimonialBox .block {
  border: 1px solid #efefef;
  border-radius: 3px;
  padding: 15px 17px;
  width: calc(33.3% - 36px);
  float: left;
  margin: 0 18px 30px 18px;
  min-height: 160px;
}
@media (max-width: 980px) {
  .testimonialBox .block {
    padding: 12px 12px;
  }
}
@media (max-width: 767px) {
  .testimonialBox .block {
    margin: 0px 0 30px 0;
  }
}
.testimonialBox .block h4 {
  margin: 0px 0 5px 0;
  color: #2758f4;
  font-weight: bold;
}
.testimonialBox .block p {
  margin: 0px;
  padding-top: 17px;
  font-size: 14px;
  color: #646464;
}
@media (max-width: 980px) {
  .testimonialBox .block p {
    font-size: 14px;
    padding-top: 10px;
  }
}
.testimonialBox .authorName {
  font-size: 14px;
  color: #7e7e7e;
}
.why_book {
  background: #0b101e;
  padding: 40px 0;
  font-size: 14px;
  color: #ffffff;
  height: 150px;
  position: relative;
}
@media (max-width: 1169px) {
  .why_book {
    padding: 20px 0;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .why_book {
    font-size: 12px;
  }
}
.why_book [class*="col"] {
  display: flex;
  align-items: center;
}
.why_book .why_icon {
  display: block;
  width: 85px;
  text-align: center;
  float: left;
}
@media (max-width: 1169px) {
  .why_book .why_icon {
    width: 80px;
  }
}
.why_book .why_content {
  width: calc(100% - 85px);
  float: left;
  padding: 0 10px 0 10px;
}
@media (max-width: 1169px) {
  .why_book .why_content {
    width: calc(100% - 80px);
    padding: 0 5px 0 0px;
  }
}
.why_book .why_content h5 {
  margin: 0px;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  padding-bottom: 12px;
}
@media (max-width: 1169px) {
  .why_book .why_content h5 {
    font-size: 15px;
    padding-bottom: 6px;
  }
}
.why_book .border {
  position: relative;
}
.why_book .border:before,
.why_book .border:after {
  width: 1px;
  height: 50px;
  content: "";
  background: #ccc;
  position: absolute;
  left: 0px;
  top: 11px;
}
.why_book .border:after {
  left: inherit;
  right: 0px;
}
.why_book .icon1 {
  width: 60px;
}
.why_book .icon2 {
  width: 50px;
}
.why_book .icon4 {
  width: 45px;
}
.why_book .slick-list {
  margin-bottom: 18px;
  overflow: hidden;
}
.slick-dots {
  list-style: none;
  margin: 0px;
  padding: 0px;
  text-align: center;
}
.slick-dots li {
  display: inline-block;
  padding: 0 5px;
}
.slick-dots li button {
  display: block;
  text-indent: -99999px;
  width: 9px;
  height: 9px;
  background: #dbdbdb;
  border-radius: 100%;
  border: none;
  padding: 0px;
}
.slick-dots li.slick-active button {
  background: #2758f4;
}
.home_banner {
  background: #25738e;
  width: 100%;
  height: 650px;
  overflow: hidden;
}
@media (max-width: 1919px) {
  .home_banner {
    width: auto;
    height: 537px;
  }
}
@media (max-width: 980px) {
  .home_banner {
    height: 480px;
    position: relative;
    overflow: visible;
  }
}
@media (max-width: 767px) {
  .home_banner {
    height: 592px;
  }
}
@media (max-width: 1919px) {
  .home_banner #myVideo {
    width: auto;
    height: 537px;
  }
}
@media (max-width: 980px) {
  .home_banner #myVideo {
    height: 480px;
  }
}
@media (max-width: 767px) {
  .home_banner #myVideo {
    height: 603px;
  }
}
.home_banner .content_block {
  position: absolute;
  left: 0px;
  top: 157px;
  width: 100%;
  z-index: 1;
}
@media (max-width: 980px) {
  .home_banner .content_block {
    top: 100px;
  }
}
@media (max-width: 767px) {
  .home_banner .content_block {
    top: 60px;
  }
}
.home_banner .content_block h2 {
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  margin: 0px;
}
@media (max-width: 980px) {
  .home_banner .content_block h2 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .home_banner .content_block h2 {
    font-size: 23px;
  }
}
.home_banner .header_box {
  position: relative;
}
@media (max-width: 767px) {
  .home_banner .header_box {
    position: inherit;
  }
}
@media (max-width: 767px) {
  .home_banner .banner-logo {
    bottom: 0px;
  }
}
#myVideo {
  width: 100%;
}
@media screen and (min-width: 1390px) and (max-width: 1450px) {
  #myVideo {
    width: auto;
  }
}
.navigation_white {
  position: relative;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 7;
}
.navigation_white .menuBox {
  background: #11172b;
  border: none;
  position: static;
  border-width: 0 0 0.125rem;
  border-bottom: 0.0625rem solid #282f43;
}
.navigation_white .menuBox .menu li a {
  color: #fff;
}
.navigation_white .menuBox .menu li a.phoneNumber .call-us {
  color: #fff;
}
.navigation_white .menuBox .menu li .dropdown-menu {
  background: #fff;
  min-width: 121px;
  z-index: 5;
}
@media (max-width: 980px) {
  .navigation_white .menuBox .menu li .dropdown-menu {
    left: inherit;
    right: 0px;
  }
}
.navigation_white .menuBox .menu li .dropdown-menu a {
  color: #343434;
  font-size: 14px;
}
.navigation_white .menuBox .menu li .dropdown-menu a:hover {
  background: none;
  color: #0739da;
}
.navigation_white .menuBox .menu li .dropdown-menu .fa-sort-up {
  position: absolute;
  left: 41px;
  top: -10px;
  font-size: 27px;
  color: #fff;
}
@media (max-width: 980px) {
  .navigation_white .menuBox .menu li .dropdown-menu .fa-sort-up {
    left: inherit;
    right: 30px;
  }
}
.navigation_white .menuBox.fixed {
  position: fixed;
  background: #e01933;
  width: 100%;
  border-bottom: 1px solid #a90319;
  z-index: 2;
  transition: all 0.5s;
}
/*.navigation_white .menuBox.fixed .menu li a {
  color: #fff;
}*/
.mobile-menuBox .mobileMenuClose .menu li a {
    color: #11172b;
}
.navigation_white .menuBox.fixed .logo {
  display: none;
}
.navigation_white .menuBox.fixed .logo-blue {
  display: block;
}
.navigation_white .menuBox.fixed .menu li a.phoneNumber {
  color: #ffffff;
}
.navigation_white .menuBox.fixed .menu li a.phoneNumber .call-us {
  color: #fff;
}
.navigation_white .menuBox.fixed .dropdown-menu {
  background: #fff;
}
.logo-blue {
  display: none;
}
.banner_bottom_content {
  width: 100%;
  position: absolute;
  left: 0px;
  bottom: 0px;
}
.banner_bottom_content ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.banner_bottom_content ul li {
  color: #fff;
  font-size: 16px;
  padding: 0 18px 37px 0;
  border-right: 1px solid #fff;
}
@media (max-width: 767px) {
  .banner_bottom_content ul li {
    font-size: 16px;
    padding: 0 10px 18px 17px;
  }
}
@media (max-width: 479px) {
  .banner_bottom_content ul li {
    font-size: 13px;
    padding: 0 10px 18px 17px;
  }
}
.banner_bottom_content ul li:last-child {
  border: none;
  padding-bottom: 13px;
}
@media (max-width: 980px) {
  .homeCntr {
    overflow: hidden;
  }
}
.mouse-indicator-arrow {
  position: relative;
  right: 100px;
}
@media (max-width: 980px) {
  .mouse-indicator-arrow {
    right: 20px;
  }
}
@media (max-width: 767px) {
  .mouse-indicator-arrow {
    right: 0px;
  }
}
.m_scroll_arrows {
  display: block;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  margin: 0 0 3px 7px;
  width: 13px;
  height: 13px;
}
.unu {
  margin-top: 1px;
}
.unu,
.doi,
.trei {
  -webkit-animation: mouse-scroll 1s infinite;
  -moz-animation: mouse-scroll 1s infinite;
  animation: mouse-scroll 1s infinite;
}
.unu {
  -webkit-animation-delay: 0.1s;
  -moz-animation-delay: 0.1s;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  animation-delay: alternate;
}
.doi {
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -webkit-animation-direction: alternate;
  animation-delay: 0.2s;
  animation-direction: alternate;
  margin-top: -6px;
}
.trei {
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  -webkit-animation-direction: alternate;
  animation-delay: 0.3s;
  animation-direction: alternate;
  margin-top: -6px;
}
.mouse {
  height: 42px;
  width: 24px;
  border-radius: 14px;
  transform: none;
  border: 2px solid #fff;
  top: 170px;
}
.wheel {
  height: 5px;
  width: 2px;
  display: block;
  margin: 5px auto;
  background: #fff;
  position: relative;
  height: 4px;
  width: 4px;
  border: 2px solid #fff;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}
.wheel {
  -webkit-animation: mouse-wheel 0.6s linear infinite;
  -moz-animation: mouse-wheel 0.6s linear infinite;
  animation: mouse-wheel 0.6s linear infinite;
}
@-webkit-keyframes mouse-wheel {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    transform: translateY(6px);
  }
}
@-moz-keyframes mouse-wheel {
  0% {
    top: 1px;
  }
  25% {
    top: 2px;
  }
  50% {
    top: 3px;
  }
  75% {
    top: 2px;
  }
  100% {
    top: 1px;
  }
}
@-o-keyframes mouse-wheel {
  0% {
    top: 1px;
  }
  25% {
    top: 2px;
  }
  50% {
    top: 3px;
  }
  75% {
    top: 2px;
  }
  100% {
    top: 1px;
  }
}
@keyframes mouse-wheel {
  0% {
    top: 1px;
  }
  25% {
    top: 2px;
  }
  50% {
    top: 3px;
  }
  75% {
    top: 2px;
  }
  100% {
    top: 1px;
  }
}
@-webkit-keyframes mouse-scroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes mouse-scroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes mouse-scroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes mouse-scroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.content-home {
  padding: 50px 0 30px 0;
}
@media (max-width: 767px) {
  .content-home {
    padding: 20px 0 20px 0;
  }
}
.content-home h2 {
  font-weight: 500;
  font-size: 28px;
  margin: 0px;
}
@media (max-width: 767px) {
  .content-home h2 {
    font-size: 23px;
  }
}
.content-home h3 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
}
@media (max-width: 767px) {
  .content-home h3 {
    font-size: 18px;
  }
}
.content-home h3:after {
  content: "";
  width: 32px;
  height: 1px;
  background: #333;
  display: inline-block;
  position: absolute;
  left: 0px;
  bottom: -20px;
}
.content-home p {
  font-size: 14px;
  line-height: 25px;
  color: #8e8e8e;
  padding-top: 10px;
  text-align: justify;
}
@media (max-width: 1169px) {
  .content-home p {
    margin-top: 15px;
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .content-home p {
    font-size: 13px;
    line-height: 18px;
    text-align: justify;
  }
}
.content-home .button {
  background: #2758f4;
  color: #fff;
  margin-top: 30px;
  display: inline-block;
}
@media (max-width: 767px) {
  .content-home .button {
    margin-top: 10px;
  }
}
.brb-banner-home {
  padding: 35px 0 16px 0px;
  text-align: center;
}
.brb-banner-home img {
  display: inline-block;
}
.brb-banner-inner {
  padding: 20px 0 40px 0px;
}
@media (max-width: 767px) {
  .brb-banner-inner {
    padding-bottom: 0px;
    padding-top: 20px;
  }
}
.footer-component {
  background: #11172b;
  font-size: 14px;
  padding-bottom: 25px;
  overflow: hidden;
}


@media (max-width: 767px) {
  .footer-component {
    font-size: 13px;
    padding-bottom: 100px;
  }
}
.footer-component a {
  color: #fff;
}
.footer-component a.text-blue {
  color: #2758f4;
}
.footer-component a:hover {
  color: #e01933;
  text-decoration: none;
}
.footer-component .top-footer {
  overflow: hidden;
}

.footer-component .top-footer .holder {
  padding: 20px 0px 20px 0;
  overflow: hidden;
 border-bottom: 1px solid #ccc;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-flow: row wrap;
}
@media (max-width: 980px) {
  .footer-component .top-footer .holder {
    display: block;
  }
}
@media (max-width: 767px) {
  .footer-component .top-footer .holder {
    padding-bottom: 10px;
  }
}
@media (max-width: 980px) {
  .footer-component .top-footer .holder .column {
    width: 50%;
    float: left;
  }
}
.footer-component .top-footer .quickLinks h5 {
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
}
@media (max-width: 1169px) {
  .footer-component .top-footer .quickLinks h5 {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
    .footer-component .top-footer .quickLinks h5 {
        font-size: 16px;
        font-weight: 800;
        padding: 5px 0px;
        color: #ffd400;
    }
    .footer-component .top-footer .holder .column {
        width: 100%;
        float: inherit;
    }
}
.footer-component .top-footer .quickLinks ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.footer-component .top-footer .quickLinks ul li {
  display: block;
  line-height: 25px;
}
.footer-component .top-footer .quickLinks ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.5s;
}
.footer-component .top-footer .quickLinks ul li a:hover {
  color: #ff1937;
}
.footer-component .top-footer .address {
  color: #8d8d8d;
}
.footer-component .top-footer .address .phone {
  padding: 15px 0px;
}
.footer-component .top-footer .address .phone a {
  display: inline-block;
  margin-bottom: 5px;
}
.footer-component .top-footer .address .phone a:hover {
  color: #000;
}
.copyright {
  font-size: 13px;
  padding: 6px 0px;
  text-align: center;
  color: #fff;
}
.socialLink {
  overflow: hidden;
  width: 100%;
  list-style: none;
  margin: 0px;
  padding: 34px 0px 22px 0;
}
@media (max-width: 767px) {
  .socialLink {
    padding: 10px 0 0 0;
  }
}
.socialLink li {
  float: left;
  font-size: 14px;
  margin-right: 18px;
}
.socialLink li a {
  display: block;
  color: #000;
  font-size: 24px;
}
.socialLink li a:hover {
  color: #2758f4;
}
.logoBox {
  margin: 0px;
  padding: 20px 0px;
  list-style: none;
  overflow: hidden;
  font-size: 27px;
  border-top: 1px solid #ccc;
}
.logoBox img {
  height: 28px;
}
@media (max-width: 767px) {
  .logoBox img {
    height: 26px;
  }
}
.logoBox li {
  display: inline-block;
  padding: 0 3px 6px 0;
}
@media (max-width: 980px) {
  .clear-md {
    clear: both;
  }
}
.disclaimer {
  color: #fff;
  font-size: 12px;
  text-align: justify;
}
.bbb_footer_logo {
  width: 63px !important;
  height: 30px !important;
  float: left;
  top: 21px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .bbb_footer_logo {
    width: 57px !important;
  }
}
.bbb_footer_logo:hover img {
  margin-left: -62px !important;
}
#launcher .hssBvG {
  color: #fff !important;
}
.show-component-mobile {
  position: relative;
}
@media (max-width: 980px) {
  .show-component-mobile {
    position: fixed;
    left: -340px;
    top: 0;
    max-width: 320px;
    transition: all 0.5s;
    background: #fff;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 9;
  }
}
.show-component-mobile.open {
  left: 0;
  height: 100%;
  padding: 0px;
  width: 320px;
}
@media (max-width: 767px) {
  .show-component-mobile.open {
    width: 100%;
    max-width: inherit;
  }
}
.show-component-mobile.open .mobile-header {
  position: relative;
  display: block;
}
@media (max-width: 980px) {
  .show-component-mobile.open .mobile-header {
    padding: 9px 20px 9px 10px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    background: #2758f4;
    margin: 0px -10px 0 -10px;
    overflow: hidden;
  }
}
.show-component-mobile .filter_close {
  padding: 10px 0 0 0;
  color: #fff;
  cursor: pointer;
  display: none;
}
@media (max-width: 980px) {
  .show-component-mobile .filter_close {
    display: block;
    position: absolute;
    right: 0px;
    top: 0px;
    width: 40px;
    height: 40px;
    text-align: center;
  }
}
.filter-holder {
  position: relative;
  width: 100%;
}
@media (max-width: 980px) {
  .filter-holder {
    padding: 0 10px 100px 10px;
  }
}
.clear-filter {
  position: absolute;
  right: 0px;
  top: 0px;
  color: #343434;
}
@media (max-width: 980px) {
  .clear-filter {
    right: 10px;
    top: 47px;
    z-index: 1;
  }
}
@media (max-width: 767px) {
  .clear-filter {
    top: 90px;
  }
}
.filterBox {
  padding: 12px;
  position: relative;
  box-shadow: 0 0 6px #e3e3e3;
  margin-bottom: 15px;
  border-radius: 4px;
  background: #fff;
}
@media (max-width: 980px) {
  .filterBox {
    border: none;
    margin: 0px;
    padding: 10px 10px 10px 10px;
    box-shadow: none;
  }
}
.filterBox .head {
  font-size: 16px;
  font-weight: 500;
  margin: 0px;
  padding: 13px 0 15px 0;
}
.filterBox ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
@media (max-width: 767px) {
  .filterBox ul.airlines_mobile {
    margin-top: 13px;
  }
}
.filterBox ul li {
  font-size: 13px;
  line-height: 25px;
  position: relative;
  padding: 6px 0px;
  overflow: hidden;
}
.filterBox ul li label {
  display: block;
}
.filterBox ul li .text-overflow {
  width: 123px;
}
.filterBox .number {
  position: absolute;
  right: 0px;
  top: 0px;
  font-style: normal;
}
.filterBox .showFilter {
  position: absolute;
  right: 0px;
  top: 14px;
  font-size: 13px;
  color: #2758f4;
  font-weight: 400;
  text-decoration: none;
  display: none;
}
.filterBox .drop-arrow select {
  border: 1px solid #ccc;
  box-shadow: none;
  font-size: 15px;
}
.filterBox .airport li span {
  width: 145px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-block;
}
.filterBox .flight-time li span {
  width: 106px;
  float: left;
}
.filterBox .from {
  display: block;
  padding: 10px 0;
}
.filterBox .show-more {
  display: inline-block;
  margin-top: 10px;
  cursor: pointer;
}
.filterBox .inputSet label input[type="checkbox"] ~ span::after {
  border: 1px solid #a2a2a2;
}
.filterBox .airport_code {
  font-style: normal;
}
.text-overflow {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  padding-right: 10px;
}
.border-white {
  border: 1px solid #fff;
  padding: 10px;
}
#amount {
  border: 0;
  background: none;
  text-align: center;
  font-weight: 700;
  font-size: 12px;
}
.ui-slider-horizontal {
  height: 2px;
  background: #d6d6d6;
  border: none;
}
.ui-slider .ui-slider-handle {
  width: 1.1em;
  height: 1.1em;
  cursor: default;
  background: #fff;
  border-radius: 100%;
  border: 1px solid #2758f4;
}
.ui-slider-horizontal .ui-slider-range {
  background: #2758f4;
}
#price-range {
  margin: 15px 0;
  width: 93%;
}
.page-overlay {
  background: rgba(0, 0, 0, 0.5);
  z-index: 7;
  position: fixed;
  left: 0px;
  top: 0px;
  display: none;
  width: 100%;
  height: 100%;
}
.flight-flow.push {
  overflow: hidden;
}
.mobile_filter_strip {
  background: #e1e4f4;
  padding: 12px 0;
  text-align: center;
}
.mobile_filter_strip .modifySearchMobile {
  color: #fff;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  width: 100%;
}
.mobile_filter_strip .modifySearchMobile.hotel_Modify_btn {
  margin-left: 22px;
  width: auto;
  color: inherit;
}
.mobile_filter_strip .modifySearchMobile:focus {
  box-shadow: none;
  outline: none;
}
.header_strip_fixed {
  display: none;
}
@media (max-width: 980px) {
  .header_strip_fixed {
    display: block;
  }
}
.header_strip_fixed.fixed {
  position: fixed;
  left: 0px;
  top: 50px;
  z-index: 1;
  width: 100%;
}
.pr-range {
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}
.ui-slider-horizontal .ui-slider-handle {
  top: -8px !important;
}
.ui-slider-horizontal .ui-slider-handle.ui-state-hover {
  background-color: none !important;
}
.mobile-header {
  display: none;
}
.filterBox .fa-star-o.voted {
  color: #f90;
}
.hotel-name-filter-row .inputbox {
  width: calc(100% - 40px);
  float: left;
  padding: 10px;
  border: 1px solid #ccc;
  border-right: 0px;
}
.hotel-name-filter-row .hotel-search-btn {
  border-radius: 0px;
  border: none;
  height: 40px;
  width: 40px;
  cursor: pointer;
}
.flight-filter {
  color: #959595;
}
@media (max-width: 980px) {
  .flight-filter {
    padding-right: 15px;
  }
}
.modifyFilterMobile {
  cursor: pointer;
  display: inline-flex;
  color: #333;
}
.filterTabs {
  display: none;
}
@media (max-width: 767px) {
  .tab-pane {
    display: none;
  }
  .tab-pane.active {
    display: block;
  }
  .filterTabs {
    width: auto;
    margin: 0 -10px;
    padding: 0;
    list-style: none;
    background: #e1e4f4;
    overflow: auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .filterTabs li {
    position: relative;
  }
  .filterTabs li a {
    display: block;
    padding: 10px 12px;
    color: #333;
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
  }
  .filterTabs li.active a {
    background: #fff;
  }
  .filterTabs.filterTabs_spanish li a {
    font-size: 11px;
    padding: 10px 7px;
  }
}
.filter-position {
  text-align: center;
}
.filter-position .filter-applyBtn {
  background: #2758f4;
  border-radius: 2px;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  margin: 15px auto 10px;
  padding: 12px 20px;
  text-align: center;
  cursor: pointer;
  width: 100%;
}
.filterBox ul.time_filter {
  list-style: none;
  margin-right: -9px;
  overflow: hidden;
}
.filterBox ul.time_filter li {
  width: calc(50% - 9px);
  min-height: 75px;
  margin-right: 9px;
  margin-bottom: 9px;
  float: left;
  font-size: 12px;
  border: 1px solid #ced0d4;
  text-align: center;
  padding: 9px;
  cursor: pointer;
}
.filterBox ul.time_filter li .icons {
  width: 34px;
  height: 34px;
  display: block;
  margin: 0px auto;
}
.filterBox ul.time_filter li .icons.icon_earlymorning {
  background: url(../../../index.html) center center no-repeat;
}
.filterBox ul.time_filter li .icons.icon_morning {
  background: url(../../../index.html) center center no-repeat;
}
.filterBox ul.time_filter li .icons.icon_afternoon {
  background: url(../../../index.html) center center no-repeat;
}
.filterBox ul.time_filter li .icons.icon_evening {
  background: url(../../../index.html) center center no-repeat;
}
.filterBox ul.time_filter li:hover {
  background: #2758f4;
  border-color: #2758f4;
  color: #fff;
}
.filterBox ul.time_filter li:hover .icon_earlymorning {
  background: url(../../../index.html) center center no-repeat;
}
.filterBox ul.time_filter li:hover .icon_morning {
  background: url(../../../index.html) center center no-repeat;
}
.filterBox ul.time_filter li:hover .icon_afternoon {
  background: url(../../../index.html) center center no-repeat;
}
.filterBox ul.time_filter li:hover .icon_evening {
  background: url(../../../index.html) center center no-repeat;
}
.filterBox ul.time_filter li strong {
  display: block;
}
.filterBox ul.time_filter li .time {
  font-weight: 500;
}
.filterBox ul.time_filter li.selected {
  background: #2758f4;
  border-color: #2758f4;
  color: #fff;
}
.filterBox ul.time_filter li.selected .icon_earlymorning {
  background: url(../../../index.html) center center no-repeat;
}
.filterBox ul.time_filter li.selected .icon_morning {
  background: url(../../../index.html) center center no-repeat;
}
.filterBox ul.time_filter li.selected .icon_afternoon {
  background: url(../../../index.html) center center no-repeat;
}
.filterBox ul.time_filter li.selected .icon_evening {
  background: url(../../../index.html) center center no-repeat;
}
.contentBannerBox {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 310px;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .contentBannerBox {
    height: 120px;
  }
}
.contentBannerBox .content_title {
  width: 100%;
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}
.contentBannerBox .content_title h2 {
  font-size: 48px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 767px) {
  .contentBannerBox .content_title h2 {
    font-size: 20px;
  }
}
.contentBannerBox .content_title h2:before,
.contentBannerBox .content_title h2:after {
  display: inline-block;
  width: 50px;
  height: 1px;
  content: "";
  vertical-align: middle;
  background: rgba(255, 255, 255, 0.5);
}
.contentBannerBox .content_title h2::before {
  margin-right: 10px;
}
.contentBannerBox .content_title h2::after {
  margin-left: 10px;
}
.textBox {
  background: #fff;
  padding: 30px 0 30px 0;
}
@media (max-width: 767px) {
  .textBox h3 {
    font-size: 17px;
    text-align: left;
    font-weight: 600;
  }
}
@media (max-width: 767px) {
  .textBox h2 {
    font-size: 18px;
  }
}
.textBox p {
  line-height: 28px;
  text-align: justify;
}
@media (max-width: 767px) {
  .textBox p {
    line-height: 20px;
    font-size: 12px;
    text-align: left;
  }
}
.textBox h4 {
  font-weight: 700;
  padding: 10px 0px;
}
@media (max-width: 767px) {
  .textBox h4 {
    font-size: 16px;
  }
}
.textBox ul.list {
  list-style: none;
}
.textBox ul.list li {
  position: relative;
}
.textBox ul.list li:before {
  content: "";
  width: 6px;
  height: 6px;
  background: #343434;
  position: absolute;
  left: -16px;
  top: 12px;
  border-radius: 100%;
}
.textBox ul {
  list-style: none;
}
.textBox ul li {
  line-height: 28px;
}
.textBox.bg {
  background: #f5f6f7;
  padding-top: 30px;
}
.textBox.bg .content-wrap {
  display: block;
  padding: 20px;
  background: #fff;
  color: #5c6272;
  border-bottom: 1px solid #ccc;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .textBox.bg .content-wrap {
    padding: 15px 10px;
    min-height: inherit;
  }
}
.textBox.bg .title {
  display: block;
  color: #343434;
  font-size: 18px;
  margin: 0px 0px 10px 0px;
}
.tnc_links ul li a {
  cursor: pointer;
  color: #172b69;
  text-transform: capitalize;
}
.textBox .tnc_links ul.list li:before {
  background-color: #2758f4;
}
.content_page_title {
  background: #2758f4;
  text-align: center;
}
.content_page_title h1 {
  margin: 0px;
  padding: 20px 0;
  color: #fff;
}
.content_page_title h1:before {
  margin-right: 10px;
  display: inline-block;
  width: 50px;
  height: 1px;
  content: "";
  vertical-align: middle;
  background: rgba(255, 255, 255, 0.3);
}
@media (max-width: 767px) {
  .content_page_title h1:before {
    width: 30px;
  }
}
.content_page_title h1:after {
  margin-left: 10px;
  display: inline-block;
  width: 50px;
  height: 1px;
  content: "";
  vertical-align: middle;
  background: rgba(255, 255, 255, 0.3);
}
@media (max-width: 767px) {
  .content_page_title h1:after {
    width: 30px;
  }
}
@media (max-width: 767px) {
  .content_page_title h1 {
    font-size: 19px;
  }
}
.sitemap_block {
  width: 100%;
  padding-bottom: 30px;
}
@media (max-width: 479px) {
  .sitemap_block h3 {
    font-size: 21px;
  }
}
.sitemap_block .block {
  background: #fff;
  padding: 5px 20px;
}
@media (max-width: 767px) {
  .sitemap_block .block {
    padding: 5px;
  }
}
.sitemap_block .block:nth-of-type(even) {
  background: #f9f9f9;
}
.sitemap_block .site_map_links {
  list-style: none;
  padding: 0px;
  margin: 0;
  overflow: hidden;
}
.sitemap_block .site_map_links li {
  width: 25%;
  float: left;
  line-height: 26px;
  padding-left: 15px;
}
@media (max-width: 767px) {
  .sitemap_block .site_map_links li {
    width: 50%;
    font-size: 13px;
  }
}
.sitemap_block .site_map_links li a {
  color: #343434;
  position: relative;
}
.sitemap_block .site_map_links li a:before {
  content: "";
  width: 6px;
  height: 6px;
  background: #2758f4;
  position: absolute;
  left: -13px;
  top: 5px;
  border-radius: 100%;
}
.questionBox {
  width: 100%;
}
.questionBox ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.questionBox ul li {
  border-bottom: 1px solid #ccc;
}
.questionBox ul li a {
  font-size: 18px;
  color: #343434;
  display: block;
  margin: 15px 0px;
  position: relative;
}
.questionBox ul li a:before {
  position: absolute;
  right: 17px;
  top: 4px;
  width: 12px;
  height: 12px;
  display: block;
  content: "";
  background: url(../images/svg/plus.png) left center no-repeat;
}
.questionBox ul li a.active:before {
  background: url(../images/svg/minus.png) left center no-repeat;
}
.questionBox ul li a:hover {
  text-decoration: none;
  color: #2758f4;
}
.questionBox ul li .content {
  padding-bottom: 15px;
  line-height: 28px;
}
.questionBox ul li:last-child {
  border: none;
}
.blankSpace {
  height: 25px;
}
.banner-destination-name {
  position: absolute;
  left: 0px;
  bottom: 40px;
  width: 100%;
  color: #fff;
  text-shadow: 1px 1px #23232366;
}
@media (max-width: 767px) {
  .banner-destination-name {
    bottom: inherit;
    top: 62px;
    text-align: right;
  }
}
.banner-destination-name h3 {
  font-size: 30px;
  margin: 5px 0;
}
@media (max-width: 767px) {
  .banner-destination-name h3 {
    font-size: 18px;
    margin-top: 0px;
  }
}
.banner-destination-name .subTitle {
  font-size: 20px;
  margin: 0px;
}
.mainsubTitle {
  font-size: 28px;
}
.contactBox {
  width: 100%;
  padding: 30px 0 50px 0;
}
@media (max-width: 767px) {
  .contactBox {
    padding-top: 10px;
  }
}
.contactBox .form_title {
  position: relative;
  padding-left: 55px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .contactBox .form_title h3 {
    font-size: 18px;
  }
}
.contactBox .form_title strong {
  background-color: #0739da;
  width: 40px;
  height: 40px;
  display: inline-block;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  line-height: 40px;
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
}
.contactBox .step {
  border-left: 1px solid #ddd;
  padding: 20px 0 20px 31px;
  margin: 0 0 10px 20px;
}
@media (max-width: 767px) {
  .contactBox .step {
    padding-left: 0px;
    margin-left: 0px;
    border: 0px;
  }
}
.contactBox .inputbox_contact {
  font-size: 14px;
  color: #333;
  height: 40px;
  border-radius: 0px;
  box-shadow: none;
  resize: none;
  box-shadow: none;
}
.contactBox .inputbox_contact:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.contactBox .inputbox_contact.error {
  background: #fde7e7;
}
.contactBox label {
  font-weight: 500;
}
.contactBox .submit_button {
  padding: 10px 30px;
}
.contactBox .box_style_1 {
  background: #fff;
  border-radius: 3px;
  border: 1px solid #ddd;
  margin-bottom: 25px;
  padding: 30px;
  position: relative;
  color: #666;
}
.contactBox .box_style_1 h4 {
  margin: 0 0 10px 0;
}
.contactBox .box_style_1 p {
  line-height: 24px;
}
.contactBox .box_style_4 {
  border-radius: 3px;
  margin-bottom: 25px;
  border: 1px solid #ddd;
  background: #fff;
  padding: 20px;
  position: relative;
  text-align: center;
}
.contactBox .box_style_4:before,
.contactBox .box_style_4:after {
  content: "";
  position: absolute;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  bottom: 100%;
  left: 50%;
  margin-left: -10px;
  border-bottom: 10px solid #ccc;
}
.contactBox .box_style_4:after {
  border-bottom: 10px solid #fff;
  margin-bottom: -1px;
  z-index: 1;
}
.contactBox .box_style_4 h4 span {
  color: #0739da;
}
.contactBox .box_style_4 .phone {
  color: #2758f4;
  font-size: 20px;
  display: inline-block;
  margin-bottom: 5px;
}
.sucess_message {
  max-width: 480px;
  margin: 0px auto;
  padding: 20px;
  font-size: 20px;
}
.sucess_message p {
  margin-top: 30px;
}
.sucess_message p span {
  font-size: 17px;
}
.custom-tooltip {
  position: relative;
  display: inline-block;
}
.custom-tooltip .tooltip_detail {
  display: none;
  background: #fff;
  color: #343434;
  font-size: 12px;
  padding: 6px;
  position: absolute;
  left: 0;
  top: 26px;
  width: 230px;
  border: 1px solid #94afc6;
  z-index: 3;
  white-space: normal;
}
@media (max-width: 767px) {
  .custom-tooltip .tooltip_detail {
    width: 185px;
  }
}
.custom-tooltip .tooltip_detail .arrow {
  width: 21px;
  height: 11px;
  display: block;
  position: absolute;
  left: 28px;
  top: -11px;
  background: url(../images/tooltip-arrow.png) no-repeat;
}
.custom-tooltip .tooltip_detail.tooltip-right {
  right: 0px;
  left: inherit;
  font-weight: 400;
  font-size: 11px;
  line-height: 16px;
}
.custom-tooltip .tooltip_detail.tooltip-right .arrow {
  right: 28px;
  left: inherit;
}
.custom-tooltip:hover .tooltip_detail {
  display: block;
}
.custom-tooltip-top {
  position: relative;
  display: inline-block;
}
.custom-tooltip-top img {
  opacity: 0.5;
}
.custom-tooltip-top img:hover {
  opacity: 1;
}
.custom-tooltip-top .tooltip_detail {
  display: none;
  background: #626262;
  color: #fff;
  font-size: 12px;
  padding: 11px;
  position: absolute;
  left: -121px;
  bottom: 32px;
  width: 348px;
  z-index: 3;
  border-radius: 7px;
  font-weight: 400;
}
.custom-tooltip-top .tooltip_detail:after {
  border-top: 10px solid #fff;
  z-index: 1;
}
.custom-tooltip-top .tooltip_detail:after,
.custom-tooltip-top .tooltip_detail:before {
  content: "";
  position: absolute;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  top: 100%;
  left: 126px;
  border-top: 10px solid #626262;
}
.custom-tooltip-top:hover .tooltip_detail {
  display: block;
}
.fareladder-tooltip .fareladder-icon {
  color: #2758f4;
  border: 1px solid #2758f4;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  text-align: center;
  line-height: 18px;
  font-size: 15px;
}
.fareladder-tooltip .fareladder-close {
  position: absolute;
  right: -11px;
  top: -9px;
  color: #3f4244;
  cursor: pointer;
  font-size: 17px;
  width: 18px;
  height: 17px;
  background: #fff;
  border-radius: 100%;
}
.fareladder-tooltip .tooltip_detail {
  padding: 8px 8px;
  width: 250px;
  left: -105px;
  top: 30px;
}
.fareladder-tooltip .tooltip_detail .arrow {
  left: 103px;
}
.fareladder-tooltip .tooltip_detail p {
  margin: 0px;
}
.popup-product {
  position: absolute;
  left: 0;
  top: 0px;
  width: 100%;
  height: 100%;
  text-align: center;
}
.clock_tym {
  font-size: 50px;
  padding: 20px 0px;
  color: #868686;
}
.btn-primary.searchbtn {
  background: #2758f4;
  border-color: #2758f4;
  border-radius: 0px;
}
.popup-product .session-exp {
  padding: 20px;
  width: 480px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 1px 0 5px 0 rgba(0, 0, 0, 0.75);
  z-index: 11;
  background: #fff;
}
@media (max-width: 767px) {
  .popup-product .session-exp {
    width: 96%;
    top: 30px;
    transform: translate(-50%, 0);
  }
}
#fadebackground {
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
  position: fixed;
  left: 0px;
  top: 0px;
  display: block !important;
  width: 100%;
  height: 100%;
}
.time-out {
  position: fixed;
  right: 5px;
  bottom: 5px;
  background: #eef4ff;
  padding: 15px;
  z-index: 11;
  border: 2px solid #89a5ff;
}
.time-out h4 {
  line-height: 23px;
}
.time-out mark {
  background-color: #ffff8e;
  padding: 0 4px;
}
.error-box {
  max-width: 500px;
  text-align: center;
  padding: 50px 0;
  color: #343434;
  border: 1px solid #ccc;
  margin: 50px auto;
}
.error-box h2 {
  font-size: 100px;
  margin: 0 0 15px;
  padding: 0;
}
.error-box h3 {
  font-size: 32px;
  margin: 0 0 15px;
  padding: 0;
  color: #2758f4;
}
.error-box p {
  font-size: 14px;
  margin: 0 0 20px;
  padding: 0;
}
.error-box a {
  display: inline-block;
  padding: 10px 16px;
  color: #fff;
}
.major_airline_info h5 {
  font-size: 16px;
  color: #3ab54a;
  font-weight: 700;
  position: relative;
}
@media (max-width: 767px) {
  .major_airline_info h5 {
    font-size: 14px;
  }
}
.major_airline_info h5 img {
  margin-right: 5px;
}
.major_airline_info p {
  font-size: 14px;
  color: #1f1f1f;
  font-weight: 500;
}
.major_airline_info .major_list {
  list-style: none;
  padding: 0px;
}
.major_airline_info .major_list li {
  position: relative;
  padding: 5px 0 5px 12px;
  font-size: 13px;
}
.major_airline_info .major_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background: #51b441;
}
.flightResult_box.ss-flightResult_box {
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .flightResult_box.ss-flightResult_box {
    padding-bottom: 0;
  }
}
.ss-flightResult_box .super-saver-top .super-saver-strip {
  background: #4f8ffc;
  margin: 0 -20px 0 -19px;
  font-weight: 700;
  color: #fff;
  padding: 6px 15px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  pointer-events: none;
}
@media (max-width: 767px) {
  .ss-flightResult_box .super-saver-top .super-saver-strip {
    margin: 0 -12px;
  }
}
.ss-flightResult_box .super-saver-top .budget-txt {
  font-size: 14px;
  color: #3ab54a;
  padding: 10px 0;
}
@media (max-width: 767px) {
  .ss-flightResult_box .super-saver-top .budget-txt {
    font-size: 12px;
  }
}
.ss-flightResult_box .super-saver-time {
  padding: 0 0 15px 40px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .ss-flightResult_box .super-saver-time {
    padding: 0;
  }
}
@media (max-width: 479px) {
  .ss-flightResult_box .super-saver-time {
    padding: 0 0 15px 0;
  }
}
@media (max-width: 359px) {
  .ss-flightResult_box .super-saver-time {
    padding: 0 0 15px 0;
  }
}
.ss-flightResult_box .ss-approx {
  white-space: nowrap;
  font-style: normal;
}
.ss-flightResult_box .ss-return-flight {
  margin-top: 20px;
}
.ss-flightResult_box
  .depart-flight
  .connnecting-block
  .leg-points
  span.ss-legpoint {
  margin-top: -29px;
}
@media (max-width: 767px) {
  .ss-flightResult_box .actionicons {
    padding-top: 10px;
  }
}
@media (max-width: 767px) {
  .major-details-segment .flight-travel-details {
    width: calc(100% - 160px);
  }
}
@media (max-width: 767px) {
  .major-details-segment .flight_scheduleTime {
    width: 125px;
  }
}
@media (max-width: 767px) {
  .major-details-segment .flight-duration {
    width: 125px;
  }
}
@media (max-width: 767px) {
  .major-details-segment .flight_stopIntervalSeparator {
    left: 141px;
    bottom: -8px;
  }
}
@media (max-width: 767px) {
  .paymentLeft .major-details-segment .flight_scheduleTime {
    width: 125px;
  }
}
.loader-box {
  position: relative;
  overflow: hidden;
}
.loader-box img {
  width: 100%;
}
.loader-box:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  -webkit-animation: shine 0.75s infinite;
  animation: shine 0.75s infinite;
}
.loader {
  margin: -25px 0 20px 0px;
  height: 9px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #bfbfbf;
}
@media (max-width: 767px) {
  .loader {
    margin-top: 0px;
  }
}
.loader:before {
  display: block;
  position: absolute;
  content: "";
  left: -200px;
  width: 200px;
  height: 9px;
  background-color: #2758f4;
  animation: loading 2s linear infinite;
}
@keyframes loading {
  from {
    left: -200px;
    width: 30%;
  }
  50% {
    width: 30%;
  }
  70% {
    width: 70%;
  }
  80% {
    left: 50%;
  }
  95% {
    left: 120%;
  }
  to {
    left: 100%;
  }
}
.circle-loader {
  margin-bottom: 3.5em;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-left-color: #2758f4;
  animation: loader-spin 1.2s infinite linear;
  position: relative;
  display: block;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: 0px auto;
}
.load-complete {
  background: #fff;
  -webkit-animation: none;
  animation: none;
  border-color: #2758f4;
  transition: border 500ms ease-out;
}
.checkmark {
  display: none;
}
.checkmark.draw:after {
  animation-duration: 800ms;
  animation-timing-function: ease;
  animation-name: checkmark;
  transform: scaleX(-1) rotate(135deg);
}
.checkmark:after {
  opacity: 1;
  height: 29px;
  width: 15px;
  transform-origin: left top;
  border-right: 2px solid #2758f4;
  border-top: 2px solid #2758f4;
  content: "";
  left: 13px;
  top: 29px;
  position: absolute;
}
@keyframes loader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes checkmark {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
  }
  20% {
    height: 0;
    width: 15px;
    opacity: 1;
  }
  40% {
    height: 29px;
    width: 15px;
    opacity: 1;
  }
  100% {
    height: 29px;
    width: 15px;
    opacity: 1;
  }
}
a {
  color: #2758f4;
}
.paymentLeft {
  width: calc(100% - 380px);
  float: left;
}
@media (max-width: 1169px) {
  .paymentLeft {
    width: 100%;
  }
}
.paymentLeft .flight_scheduleTime {
  width: 202px;
}
@media (max-width: 767px) {
  .paymentLeft .flight_scheduleTime {
    width: 90px;
  }
}
@media (max-width: 479px) {
  .paymentLeft .flight_scheduleTime {
    width: 65px;
  }
}
.paymentRight {
  width: 380px;
  float: left;
  padding-left: 30px;
}
@media (max-width: 1169px) {
  .paymentRight {
    width: 100%;
    padding-left: 0px;
  }
}
.traveller-row {
  margin-top: 18px;
}
.payment_title {
  margin: 0px;
  padding: 25px 0 20px 0;
  font-size: 18px;
  color: #343434;
  position: relative;
}
.payment_title:before {
  content: "";
  width: 46px;
  height: 3px;
  background: #2758f4;
  display: block;
  position: absolute;
  left: 0px;
  bottom: 8px;
}
@media (max-width: 767px) {
  .payment_title:before {
    display: none;
  }
}
@media (max-width: 767px) {
  .payment_title {
    font-size: 16px;
    padding: 10px;
    font-weight: 600;
  }
}
@media (max-width: 1169px) {
  .payment_title.mobile-title:before {
    display: none;
  }
}
@media (max-width: 1169px) {
  .payment_title.mobile-title {
    font-size: 16px;
    padding: 12px 0px;
    margin: 10px -10px;
    padding: 12px;
    background: #605f5d;
    color: #fff;
  }
}
@media (max-width: 1169px) {
  .payment_title.mobile-title .taxes_fees_payment {
    margin: 0 50px 0 0;
    color: #fff;
  }
}
.sub_title {
  color: #343434;
  margin: 0px;
  padding-bottom: 18px;
}
@media (max-width: 767px) {
  .sub_title {
    padding-top: 15px;
    padding-bottom: 12px;
  }
}
.label_name {
  font-weight: normal;
  color: #343434;
  font-size: 14px;
}
@media (max-width: 767px) {
  .label_name {
    margin-bottom: 0px;
  }
}
.label_name.f-16 {
  font-size: 16px;
}
.label_name sup {
  color: #f15a5f;
}
.payment-page {
  padding: 0 0 50px 0;
  overflow: hidden;
}
.payment-page .text-box {
  font-size: 14px;
  color: #000;
  padding: 10px 16px;
  height: auto;
  box-shadow: none;
  border-radius: 0px;
}
@media (max-width: 767px) {
  .payment-page .text-box {
    padding: 10px;
    margin: 5px 0;
  }
}
.payment-page .select-dropdown {
  font-size: 14px;
  color: #000;
}
.payment-page .select-dropdown select {
  height: auto;
  padding: 10px 10px;
  border: 1px solid #ccc;
  white-space: nowrap;
  border-radius: 0px;
  box-shadow: none;
}
@media (max-width: 767px) {
  .payment-page .select-dropdown select {
    padding: 10px 22px 10px 10px;
    margin: 5px 0;
  }
}
.payment-page .select-dropdown.drop-arrow:before {
  color: #000;
  top: 7px;
}
.payment-page .has-error .select-dropdown select {
  border-color: #fe0000;
}
.payment-page .bottom-row {
  padding: 15px 0px;
}
@media (max-width: 767px) {
  .payment-page .bottom-row {
    padding: 0px;
  }
}
.payment-page .return-flight {
  border-top: 1px dashed #ccc;
}
@media (max-width: 767px) {
  .payment-page .form-group {
    margin: 0px;
  }
}
.payment-page .form-group [class*="col-sm"] {
  margin-bottom: 10px;
}
.travellerBox {
  padding-bottom: 28px;
}
.paymentLeft .form-group {
  margin-bottom: 0px !important;
}
.paymentBox {
  padding-bottom: 28px;
}
.paymentBox .block {
  max-width: 440px;
}
.paymentBox .postal_code {
  width: 184px;
  float: left;
  padding-left: 16px;
}
.paymentBox .state_column {
  width: calc(100% - 184px);
  float: left;
}
.paymentBox .years {
  padding: 0 10px;
}
.priceBox {
  width: 100%;
  padding: 17px 17px 0;
  background: #fff;
  font-size: 14px;
  border-radius: 4px;
}
.priceBox .traveler-fees-toggle {
  font-size: 14px;
  color: #000;
  margin-bottom: 10px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .priceBox .traveler-fees-toggle {
    font-size: 14px;
    margin-bottom: 5px;
  }
}
.priceBox .traveler-fees-toggle i {
  margin-left: 3px;
  margin-right: 3px;
  color: #2758f4;
}
.priceBox .traveler-fees-slide {
  color: #989aa2;
  padding-bottom: 15px;
  font-size: 13px;
  font-weight: normal;
  display: none;
}
.priceBox .traveler-fees-slide i {
  margin-right: 3px;
}
.priceBox .promo_block {
  padding: 7px 0 0px 0;
  overflow: hidden;
  float: left;
}
.priceBox .promo_block .label_promo {
  background: url(../images/percentage.png) left top no-repeat;
  padding-left: 35px;
  color: #696a6d;
  font-size: 13px;
  line-height: 18px;
}
.priceBox .promo_block .input-box {
  width: calc(100% - 62px);
  float: left;
  border: 1px solid #bfc0c5;
  height: 35px;
  padding: 0 10px;
}
.priceBox .promo_block .button {
  width: 62px;
  background: #2758f4;
  float: left;
  height: 35px;
  border: none;
  padding: 3px;
  cursor: pointer;
}
.priceBox .promo_block .button:hover {
  background: #2758f4;
}
.priceBox .total_price {
  padding: 12px 0;
  font-size: 17px;
  color: #333;
}
.priceBox .total_price .price {
  font-size: 18px;
  color: #2758f4;
  font-weight: bold;
}
@media (max-width: 767px) {
  .priceBox .total_price .price {
    font-size: 18px;
  }
}
.priceBox .total_price.margin-top {
  margin-top: 20px;
  margin-left: -17px;
  margin-right: -17px;
  background: #e1e6ff;
  padding: 13px 10px;
}
.priceBox .note {
  color: #a2a2a2;
  padding: 5px 16px;
  background: #f7f7f7;
  margin: 0px -17px 3px -17px;
  font-size: 12px;
}
.text-green {
  color: #0ac775 !important;
}
.text-red {
  color: #ea392b !important;
}
.bottom-text {
  padding: 17px 0 50px 0px;
  color: #8e8e8e;
  font-size: 12px;
}
.book-button {
  border: none;
  padding: 18px 50px;
  font-size: 18px;
  background: #2758f4;
  color: #fff;
}
.padding-top30 {
  padding-top: 34px;
}
@media (max-width: 767px) {
  .padding-top30 {
    padding-top: 10px;
  }
}
.cloudflare {
  position: absolute;
  right: 30px;
  top: 60px;
  display: none;
}
.back-button {
  cursor: pointer;
  margin-top: 15px;
  display: inline-block;
}
.gender_selection {
  position: relative;
}
.gender_selection .error {
  position: absolute;
  left: 0px;
  bottom: -40px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .gender_selection .error {
    bottom: -26px;
  }
}
.gender_selection.english .error {
  left: -80px;
}
.taxes_fees_payment {
  float: right;
  font-size: 15px;
  margin-top: 9px;
}
.price-fixed {
  position: fixed;
  top: 50px;
  width: 350px;
  z-index: 1;
}
@media (max-width: 1169px) {
  .price-fixed {
    position: static;
    width: 100%;
  }
}
.offer_price {
  background: #eaebf2;
  float: left;
  font-size: 14px;
  width: 100%;
  margin: 5px 0;
}
.offer_price ul {
  width: 100%;
  float: left;
  margin: 0px;
  padding: 0px;
}
.offer_price ul li {
  list-style: none;
  display: inline-block;
  float: left;
  padding: 3px 12px;
}
.offer_price ul li:first-child {
  position: relative;
  background: #37ce3d;
  width: 55%;
  color: #fff;
}
.offer_price ul li:first-child:after {
  position: absolute;
  top: -27px;
  right: -2px;
  font-family: FontAwesome;
  content: "\f0d9";
  color: #eaebf2;
  font-size: 56px;
}
.offer_price ul li:last-child {
  width: 45%;
  text-align: right;
  text-decoration: line-through;
}
#price_block {
  transition: all 0.5s ease 0s;
  z-index: 2;
  width: 350px;
  position: fixed;
}
@media (max-width: 980px) {
  #price_block {
    width: 100%;
  }
}
#price_block.sticky {
  position: fixed;
  right: 15px;
}
@media (max-width: 980px) {
  #price_block.sticky {
    position: static;
  }
}
@media (max-width: 980px) {
  #price_block {
    position: static;
  }
}
@media (max-width: 767px) {
  .block1 .form-group [class*="col-sm"] {
    margin-bottom: 0;
    padding: 0px;
  }
}
.travel-advisory {
  color: #946f03;
  border: 1px solid #ffd45b;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 20px;
}
.travel-advisory .t-head {
  font-size: 16px;
  font-weight: bold;
}
@media (max-width: 479px) {
  .travel-advisory .t-head {
    font-size: 14px;
  }
}
.travel-advisory .t-head .fa {
  padding-right: 6px;
  font-size: 20px;
  vertical-align: middle;
}
@media (max-width: 479px) {
  .travel-advisory .t-head .fa {
    font-size: 16px;
    padding-right: 5px;
  }
}
.travel-advisory p {
  padding-left: 34px;
  margin: 0;
}
@media (max-width: 479px) {
  .travel-advisory p {
    padding-left: 0;
    margin: 5px;
    font-size: 12px;
    text-align: justify;
  }
}
.travel-advisory p a {
  color: #7f5f01;
  text-decoration: underline;
}
.travel-advisory p a:hover {
  text-decoration: none;
}
.popup_header--fixed {
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 2;
}
.trip_protection_tooltip {
  position: absolute;
  padding: 6px;
  background-color: #eaffd4;
  width: 300px;
  left: 0px;
  bottom: 30px;
  border: 1px solid #4fb67a;
}
.trip_protection_tooltip .close_tooltip {
  position: absolute;
  right: -11px;
  top: -9px;
  color: #686b70;
  cursor: pointer;
  font-size: 17px;
  background: #fff;
  width: 20px;
  height: 17px;
  border-radius: 100%;
}
.trip_protection_tooltip p {
  margin: 0px;
  padding-left: 27px;
  position: relative;
  font-size: 12px;
}
.trip_protection_tooltip .fa-thumbs-up {
  font-size: 21px;
  color: #4fb67a;
  position: absolute;
  left: 0px;
}
.trip_protection_tooltip:after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 10%;
  margin-left: 0;
  border-width: 8px;
  border-style: solid;
  border-color: #4fb67a transparent transparent transparent;
}
.risk-free-payment {
  width: auto;
  float: right;
  color: #fff;
  padding: 5px 15px;
  font-size: 12px;
  font-weight: 700;
  margin: -68px 0px 0px 0px;
  background: #00b67a;
  border-radius: 3px;
}
@media (max-width: 767px) {
  .risk-free-payment {
    margin: 0px 0px 10px 0px;
    float: none;
    width: auto;
  }
}
.risk-free-payment .fa-thumbs-up {
  font-size: 20px;
  color: #ffcf00;
  vertical-align: middle;
}
.risk-free-payment .fa-info-circle {
  font-size: 18px;
  color: #fff;
  vertical-align: middle;
  cursor: pointer;
}
.risk-free-payment .custom-tooltip .tooltip-right {
  right: -25px;
}
.risk-free-payment .mb5px {
  margin: 0px;
}
.close_price_list:hover {
  color: #fff;
}
.tsa_section .more-option {
  cursor: pointer;
  color: #2758f4;
  text-decoration: underline;
}
.tsa_section .tsa_detail {
  background: #f0f2f7;
  padding: 10px;
  margin: 10px 0 0 0;
}
.tsa_section .tsa_note {
  font-size: 13px;
  padding-top: 10px;
  border-top: 1px dotted #ccc;
  margin-top: 17px;
}
.tsa_section .ff-input {
  position: relative;
}
.tsa_section .ff-logo {
  width: 35px;
  position: absolute;
  left: 7px;
  top: 2px;
  border-right: 1px solid #ccc;
  padding-right: 10px;
  margin-right: 5px;
  padding-top: 8px;
  padding-bottom: 9px;
}
.tsa_section .ff-airline-name {
  position: absolute;
  left: 46px;
  top: 12px;
  transition: all 0.2s;
  touch-action: manipulation;
  pointer-events: none;
}
.payment-page .text-box.ff-inputBox:focus ~ .ff-airline-name,
.valid .ff-airline-name {
  top: 6px;
  font-size: 11px;
}
.payment-page .text-box.ff-inputBox {
  padding: 10px 10px 10px 46px;
}
.payment-wrapper .form-box .country-code input {
  padding-left: 50px;
  margin: 0;
}
.farebreak {
  font-size: 12px;
}
.payment-page {
  padding: 0 0 50px;
  overflow: hidden;
  background: #f9f9f9;
}
.payment-page .border-bottom {
  background: #fff;
  padding: 15px;
  border-radius: 4px;
}
.payment-page .flightResult_box {
  background: #fff !important;
  box-shadow: none !important;
  padding: 0px;
}
.connecting_airport {
  position: absolute;
  left: 37%;
  margin-top: 6px;
  font-size: 12px;
  line-height: 1;
  display: initial;
  background: #d4deff;
  display: inline-block;
  text-align: center;
  padding: 5px 13px;
  border-radius: 15px;
}
.connecting_airport_mob {
  position: absolute;
  left: 20%;
  margin-top: -2px;
  font-size: 12px;
  line-height: 1;
  display: initial;
  background: #d4deff;
  display: inline-block;
  text-align: center;
  padding: 4px 8px;
  border-radius: 15px;
}
.segment_price {
  padding-bottom: 10px;
}
.segment_price h5 {
  font-weight: 700;
  color: #277df7;
}
#dep_co_ch,
#ret_co_ch {
  color: #747070;
}
.pci-dss {
  position: absolute;
  right: 0px;
  top: -11px;
}
.secured-by {
  font-size: 10px;
  line-height: 13px;
}
input.cc-number.visa {
  background: #fff url(../images/card-icon/visa.png) 99% center no-repeat !important;
}
input.cc-number.amex {
  background: #fff url(../images/card-icon/amex.png) 99% center no-repeat !important;
}
input.cc-number.dinersclub {
  background: #fff url(../images/card-icon/diners.png) 99% center no-repeat !important;
}
input.cc-number.discover {
  background: #fff url(../images/card-icon/discover.png) 99% center no-repeat !important;
}
input.cc-number.mastercard {
  background: #fff url(../images/card-icon/master.png) 99% center no-repeat !important;
}
.spnCardImg span {
  width: 45px;
  height: 30px;
  display: inline-block;
  float: left;
  margin: 0 2px;
  background: #fff url(../images/card-icon/card-sprite.png) left top
    no-repeat;
}
.spnCardImg span.marterCard {
  background-position: -54px 0;
}
.spnCardImg span.americanCard {
  background-position: -112px 0;
}
.spnCardImg span.dinersCard {
  background-position: -172px 0;
}
.spnCardImg span.discoverCard {
  background-position: -230px 0;
}
@media (max-width: 767px) {
  .spnCardImg {
    margin-top: 6px;
  }
}
@media (max-width: 479px) {
  .spnCardImg {
    margin-top: 6px;
  }
}
.ccv-card {
  position: relative;
  cursor: pointer;
}
.ccv-card a {
  color: #343434;
  text-decoration: none;
}
@media (max-width: 767px) {
  .ccv-card {
    text-decoration: none;
    cursor: default;
    font-size: 11px;
  }
}
.ccv-card:hover {
  text-decoration: none;
}
.ccv-card:hover .cardImg {
  background: url(../images/card-icon/card.gif) no-repeat;
  position: absolute;
  z-index: 12;
  height: 270px;
  width: 700px;
  right: -95%;
  top: 37px;
  background-size: 100%;
  z-index: 9999;
}
@media (max-width: 980px) {
  .ccv-card:hover .cardImg {
    right: 0;
    width: 500px;
  }
}
@media (max-width: 767px) {
  .ccv-card:hover .cardImg {
    right: 0;
    width: 400px;
  }
}
@media (max-width: 479px) {
  .ccv-card:hover .cardImg {
    right: 0;
    width: 280px;
  }
}
.ccv-card:hover .cardImg.spanish-image {
  background: url(../images/card-icon/card-spanish-hover.png) no-repeat;
  background-size: 100%;
}
#ccvimg {
  margin-right: 5px;
}
.margin-top30 {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .margin-top30 {
    margin-top: 0px;
    margin-bottom: 5px;
    width: 100%;
    float: left;
  }
}
.show_mobile {
  display: none;
}
@media (max-width: 767px) {
  .show_mobile {
    display: block;
  }
}
.tab-list {
  list-style: none;
  margin: 0px -10px 0px -10px;
  padding: 0 6px;
  border-bottom: 0;
  background: #2758f4;
}
.tab-list li {
  float: left;
  margin-bottom: 0px;
  width: 50%;
  text-align: center;
  padding: 3px 3px 0 3px;
  cursor: pointer;
}
.tab-list li a {
  color: #fff;
  display: block;
  cursor: pointer;
}
.mobile-price-fixed {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  font-size: 14px;
  background: #f60;
  color: #fff;
  padding: 10px 15px 5px 10px;
  display: none;
}
@media (max-width: 1169px) {
  .mobile-price-fixed {
    display: block;
  }
}
.mobile-price-fixed .content-sec a {
  color: #fff;
  width: 100%;
  height: 36px;
  line-height: 30px;
  display: block;
}
.mobile-price-fixed .content-sec a .total {
  font-size: 20px;
  float: right;
}
.mobile-price-fixed .view-detail {
  position: absolute;
  left: 0;
  text-align: center;
  font-size: 12px;
  width: 100%;
}
@media (max-width: 1169px) {
  #main_price11 {
    position: fixed;
    left: 0px;
    top: 0px;
    background: white;
    width: 100%;
    height: 100%;
    z-index: 8;
    padding: 10px;
    display: none;
  }
}
@media (max-width: 1169px) {
  #main_price11 .priceBox {
    border: none;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100vh;
    padding-bottom: 50px;
  }
}
@media (max-width: 1169px) {
  #main_price11 .payment_title {
    position: relative;
    z-index: 1;
    margin: 0px;
  }
}
#main_price11.priceOpen {
  display: block;
}
.close_price_list {
  position: absolute;
  right: 10px;
  top: 10px;
  color: #f5f5f5;
}
.star_mobile {
  display: none;
  position: absolute;
  left: 10px;
  top: 21px;
  font-size: 15px;
  color: red;
}
@media (max-width: 767px) {
  .star_mobile {
    display: block;
  }
}
.returnTitle {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .returnTitle {
    margin-top: 10px;
  }
}
#return-tab2 {
  display: block;
}
@media (max-width: 767px) {
  #return-tab2 {
    display: none;
  }
}
.btxt-italic {
  font-size: 17px;
  font-weight: 700;
  font-style: italic;
  color: #2758f4;
  margin-bottom: 20px;
}
@media (max-width: 980px) {
  .btxt-italic {
    font-size: 15px;
    margin-bottom: 10px;
  }
}
.baggage-img {
  float: right;
}
@media (max-width: 479px) {
  .baggage-img {
    width: 100px;
  }
}
.baggage_tab_block {
  overflow: hidden;
  margin-top: -38px;
}
@media (max-width: 980px) {
  .baggage_tab_block {
    margin: 0;
    padding-bottom: 0px;
  }
}
@media (max-width: 479px) {
  .baggage_tab_block {
    padding: 0px;
  }
}
.baggage_tab_block .nav-tabs li a {
  padding: 5px 20px;
  font-size: 16px;
  color: #595858;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 767px) {
  .baggage_tab_block .nav-tabs li a {
    font-size: 13px !important;
    padding: 5px 14px;
  }
}
.baggage_tab_block .nav-tabs li a span {
  display: block;
  font-size: 12px;
  font-weight: 400;
}
.baggage_tab_block .nav-tabs li a:hover {
  border-radius: 2px 2px 0 0;
}
.baggage_tab_block .nav-tabs li.active a {
  color: #2758f4;
}
.baggage_tab_block .tab-content {
  padding: 15px 10px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .baggage_tab_block .tab-content {
    padding: 0px;
  }
}
.baggage_tab_block .tab-content .text {
  font-size: 17px;
  color: #737373;
}
@media (max-width: 767px) {
  .baggage_tab_block .tab-content .text {
    font-size: 13px;
  }
}
.baggage_tab_block .tab-content .table {
  margin-bottom: 0;
}
.baggage_tab_block .tab-content .tab-pane {
  background: none;
}
@media (max-width: 767px) {
  .baggage_tab_block .tab-content .tab-pane {
    padding: 10px 0 0 0 !important;
  }
}
.baggage_tab_block .tab-content .baggage_table th,
.baggage_tab_block .tab-content .baggage_table td {
  border: none;
  padding: 5px;
  font-size: 13px;
  color: #454545;
  font-weight: normal;
  vertical-align: middle;
}
.baggage_tab_block .tab-content .baggage_table th {
  padding-bottom: 5px;
  border-bottom: 1px solid #ddd;
}
.baggage_tab_block .tab-content .baggage_table .blankTd {
  width: 20%;
  border: none;
}
@media (max-width: 980px) {
  .baggage_tab_block .tab-content .baggage_table .blankTd {
    display: none;
  }
}
.baggage_tab_block .tab-content .baggage_table .checkbox {
  margin: 5px 0px 0 0;
}
.baggage_tab_block .tab-content .baggage_table .fa-info-circle {
  color: #2758f4;
}
.baggage_tab_block .tab-content .baggage_table .tooltip-custom .promo-detail {
  font-size: 11px;
  text-align: center;
  padding: 5px;
}
.baggage_tab_block .tab-content .baggage_table .tooltip_detail {
  left: inherit;
  right: -40px;
}
.baggage_tab_block .tab-content .baggage_table .tooltip_detail .arrow {
  left: inherit;
  right: 33px;
}
.adult_row {
  padding-left: 26px;
  position: relative;
}
.adult_row:before {
  content: "";
  position: absolute;
  left: 16px;
  top: 9px;
  width: 5px;
  height: 5px;
  background: #595959;
  border-radius: 100%;
  display: inline-block;
}
.checkin-image {
  text-align: right;
}
@media (max-width: 767px) {
  .checkin-image {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .checkin-image img {
    width: 65%;
    display: inline-block;
  }
}
.checked_baggage .sub_title {
  font-size: 14px;
  padding-bottom: 10px;
}
.checked_baggage .checked_baggage_title {
  margin-bottom: 10px;
  border-bottom: 1px solid #dadada;
  padding-bottom: 5px;
}
.checked_baggage .checked_baggage_note {
  color: #a2a2a2;
  padding: 5px 8px;
  background: #f7f7f7;
  margin: 5px -10px -5px -10px;
  font-size: 12px;
  line-height: 19px;
  position: relative;
  bottom: -5px;
}
.cbaggage-data .rowdata {
  padding: 10px 20px;
  clear: both;
  color: #1f1f1f;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ced0d4;
}
.cbaggage-data .rowdata.bdrb0 {
  border: none;
  margin-bottom: 30px;
}
.cbaggage-data .carryon {
  font-size: 14px;
  font-weight: 600;
}
.cbaggage-data .baggage_size {
  font-size: 11px;
  color: #5b5b5b;
  font-weight: 500;
}
.cbaggage-data .select_button {
  text-align: left;
}
.cbaggage-data .select_button {
  font-size: 14px;
  border: 1px solid #bcbdbd;
  background: #fff;
  color: #595959;
  padding: 8px;
  border-radius: 3px;
  width: 100%;
  display: inline-block;
}
.cbaggage-data .select_button .down_arrow {
  color: #333;
  font-size: 22px;
  font-weight: 700;
  top: 4px;
}
.cbaggage-data .lagguage_icon {
  width: 28px;
}
.cbaggage-data .lagguage_icon2 {
  width: 20px;
}
.cbaggage-data .custom_drop {
  width: 270px;
  left: inherit;
  right: 0;
  top: 39px;
  padding: 0;
}
.cbaggage-data .leg-status {
  float: right;
  width: 200px;
  font-weight: 500;
}
.checked-baggage-popup .checked_icon {
  width: 47px;
}
.checked-baggage-popup .done_button {
  width: 133px;
  height: 40px;
  background: #2758f4;
  border-radius: 5px;
  display: inline-block;
  color: #fff;
  font-size: 14px;
  line-height: 40px;
}
.checked-baggage-popup .cancel_button {
  width: 133px;
  background: #fff;
  margin: 15px 0 5px;
  display: inline-block;
  color: #2758f4;
  font-size: 14px;
  font-weight: 500;
}
.checked_price_title {
  color: #1b75bc;
  font-weight: 700;
  margin: 0 0 6px 0;
}
.checked_price_title.mt-10 {
  margin-top: 10px;
}
.popup_Box {
  background-color: rgba(0, 0, 0, 0.75);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  overflow-y: auto;
}
#pricingCheckedBag .remove_icon {
  margin-left: 6px;
}
.seatmap-information {
  padding-bottom: 20px;
}
.seatmap_table {
  font-size: 13px;
}
.seatmap_table .table {
  margin-bottom: 0px;
}
.seatmap_table .table .traveller_col {
  width: 185px;
  vertical-align: middle;
}
.seatmap_table .table th {
  border-bottom: 0px;
}
.seatmap_table .table th strong {
  color: #2758f4;
  white-space: nowrap;
}
.seatmap_table .table td {
  padding: 10px 8px;
  width: 123px;
  vertical-align: middle;
}
.seatmap_table .table .border-right {
  position: relative;
}
.seatmap_table .table .border-right:after {
  content: "";
  position: absolute;
  right: 0px;
  top: -13px;
  height: 42px;
  border-right: 1px solid #ccc;
}
.seatmap_table .table .col-50 {
  width: 50%;
  float: left;
  font-weight: 700;
}
.seatmap_table .table .grayBg {
  background: #f2f2f2;
}
.seatmap_table .table .grayBg strong {
  white-space: nowrap;
}
.price_section {
  padding: 0;
  font-size: 13px;
  line-height: 24px;
  color: #807e7e;
}
.confirmation_section_box.seatmap {
  border: none;
  padding: 0px;
}
@media (max-width: 767px) {
  .confirmation_section_box.seatmap {
    border: 1px solid #dadada;
    padding: 6px;
  }
}
.confirmation_section_box.seatmap .price_section {
  padding: 10px;
  border: 1px solid #ddd;
  width: 100%;
  border-top: none;
}
@media (max-width: 767px) {
  .confirmation_section_box.seatmap .price_section {
    border: none;
  }
}
.view_seatmap {
  font-size: 12px;
  text-decoration: underline;
  color: #2758f4;
}
.mt-0 {
  margin-top: 0px;
}
.mb-1 {
  margin-bottom: 10px;
}
.confirmationBox {
  max-width: 765px;
  margin: 0px auto;
  font-size: 16px;
  padding-bottom: 50px;
  padding-top: 20px;
}
@media (max-width: 980px) {
  .confirmationBox {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .confirmationBox {
    font-size: 12px;
  }
}
.confirmationBox .noteText {
  font-size: 13px;
}
.confirmation_travellerBox {
  padding-bottom: 10px;
}
.confirmation_strip {
  background: #e9ebf7;
  padding: 20px 0;
  overflow: hidden;
  font-size: 18px;
}
@media (max-width: 767px) {
  .confirmation_strip {
    font-size: 15px;
  }
}
.confirmation_strip .reference-number {
  font-size: 20px;
  color: #2758f4;
  font-weight: 700;
}
@media (max-width: 767px) {
  .confirmation_strip .reference-number {
    font-size: 18px;
  }
}
.confirmation_strip .block {
  max-width: 765px;
  margin: 0px auto;
}
.smallText {
  font-weight: 700;
}
.confor-mid-sec {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
}
.confor-mid-sec .block {
  background: #fff;
  padding: 10px;
  width: 400px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.dot span {
  font-size: 50px;
  color: #0739da;
  animation-name: blink;
  animation-duration: 1.4s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}
.dot span:nth-child(2) {
  animation-delay: 0.2s;
}
.dot span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes blink {
  0% {
    opacity: 0.2;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
.confirmation_text_small {
  font-size: 12px;
  padding-top: 20px;
  line-height: 22px;
  color: #a2a2a2;
}
.printEmail_row {
  margin: 30px 0;
  text-align: center;
}
.printEmail_row .button2 {
  color: #666;
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 30px;
  margin: 0 5px;
}
.print_email_box {
  width: 350px;
  margin: 0px auto;
  background: #e9ebf7;
  border-radius: 2px;
}
.print_email_box .form {
  padding: 20px;
  position: relative;
}
.print_email_box .fa-sort-up {
  position: absolute;
  right: 81px;
  top: -15px;
  font-size: 42px;
  color: #e9ebf7;
}
.print_email_box .subscribe-input {
  box-shadow: none;
  border-radius: 0;
  height: auto;
  padding: 11px;
}
.print_email_box .subscribe-submit {
  width: 100%;
}
@media print {
  div.navigation_block {
    position: fixed;
    bottom: 0;
  }
  .top-footer {
    display: none;
  }
  a[href]:after {
    content: none;
  }
  .menuBox .menu {
    padding: 24px 0 0 0px;
  }
  #hotelDealHtml,
  .car-deals {
    display: none;
  }
  .flightResult_box .depart-flight .connnecting-block .leg-points {
    border-top: 1px solid #989aa2;
    margin-top: 5px;
  }
  .flightResult_box .depart-flight .connnecting-block .leg-points:before,
  .flightResult_box .depart-flight .connnecting-block .leg-points:after {
    content: "";
    z-index: 2;
    top: -8px;
  }
  .payment_title {
    page-break-after: auto;
  }
  .menuBox .menu li {
    border: none;
  }
  .menuBox .menu li a {
    display: none;
  }
  .menuBox .menu li a.phoneNumber {
    display: block;
  }
  .confirmation_strip {
    print-color-adjust: exact;
    background-color: #e9ebf7;
    padding: 20px 0;
    overflow: hidden;
    font-size: 18px;
  }
}
@page {
  size: auto;
  margin: 6mm 4mm;
}
.confirmation_section_box {
  border: 1px solid #dadada;
  padding: 10px;
  overflow: hidden;
}
.mobile-label_conf {
  float: left;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .contact_label_mobile {
    float: left;
    width: 50%;
  }
}
@media (max-width: 767px) {
  .email_label_mobile {
    float: left;
    padding-right: 10px;
  }
}
.atten-txt2 {
  padding-top: 10px;
}
.flightResult_box.flight-detail-expend {
  background: #f5f5f5;
  margin: 0px -18px;
  border: none;
  border-top: 1px solid #dedede;
}
@media (max-width: 767px) {
  .flightResult_box.flight-detail-expend.flight-detail-popup {
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 8;
    padding: 10px;
    margin: 0px;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: #fff;
    animation: popout 0.5s ease;
    -webkit-animation: popout 0.5s ease;
    -moz-animation: popout 0.5s ease;
  }
}
.flightResult_box.flight-detail-expend .depart-flight .leg-details .city {
  width: 130px;
}
@media (max-width: 767px) {
  .flightResult_box.flight-detail-expend .depart-flight .leg-details .city {
    width: 70px;
    text-align: left;
  }
}
.flightResult_box.flight-detail-expend .depart-flight .leg-details .city .date {
  font-size: 12px;
}
.flightResult_box.flight-detail-expend .depart-flight .connnecting-block {
  width: calc(100% - 260px);
}
@media (max-width: 767px) {
  .flightResult_box.flight-detail-expend .depart-flight .connnecting-block {
    width: calc(100% - 150px);
  }
}
.flightResult_box.flight-detail-expend.border {
  border: 1px solid #efefef;
}
.flightResult_box .flight-layover-time {
  background: #eaeaea;
  padding: 5px;
  text-align: center;
  margin: 5px 0px;
  position: relative;
  font-size: 13px;
}
@media (max-width: 767px) {
  .flightResult_box .flight-layover-time {
    margin: 5px 0px;
  }
}
.flightResult_box .flight-layover-time span {
  white-space: nowrap;
}
@media (max-width: 767px) {
  .flightResult_box .flight-layover-time span {
    font-size: 12px;
  }
}
.flightResult_box .nav-tabs {
  border-color: #2758f4;
  padding-top: 10px;
}
@media (max-width: 767px) {
  .flightResult_box .nav-tabs {
    background: #2758f4;
    margin: -10px -10px 0 -10px;
    padding: 10px 0 0 10px;
  }
}
.flightResult_box .nav-tabs li a {
  border-radius: 2px;
  padding: 8px 22px;
  font-weight: 700;
  font-size: 15px;
  color: #343434;
}
@media (max-width: 767px) {
  .flightResult_box .nav-tabs li a {
    padding: 9px 22px;
    color: #fff;
  }
}
.flightResult_box .nav-tabs li a:hover {
  background: transparent;
  border-color: transparent;
}
.flightResult_box .nav-tabs li.active a {
  color: #2758f4;
  background-color: #f5f5f5;
  border: 1px solid #2758f4;
  border-bottom-color: transparent;
}
@media (max-width: 767px) {
  .flightResult_box .nav-tabs li.active a {
    background-color: #fff;
  }
}
.flight-detail-bottom {
  border-top: 1px solid #ccc;
  padding: 10px 0;
}
.flight-detail-bottom .baggage_link {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
@media (max-width: 767px) {
  .flight-detail-bottom .baggage_link {
    width: 100%;
    text-align: center;
  }
}
.flight-detail-bottom .baggage_link li {
  float: left;
  border-right: 1px solid #ccc;
  padding: 0 10px;
  font-size: 13px;
}
@media (max-width: 767px) {
  .flight-detail-bottom .baggage_link li {
    padding: 0 5px;
    font-size: 12px;
    float: none;
    display: inline-block;
  }
}
.flight-detail-bottom .baggage_link li:last-child {
  border-right: none;
}
.flight-detail-bottom .baggage_link li a {
  color: #343434;
}
@media (max-width: 767px) {
  .margin-sm-1 {
    margin-top: 10px;
  }
}
.flight-detail-close {
  color: #000;
  float: right;
  font-size: 20px;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .flight-detail-close {
    color: #fff;
  }
}
.opratedBy {
  font-size: 12px;
  margin-top: 12px;
  white-space: normal;
}
@media (max-width: 1169px) {
  .opratedBy {
    white-space: normal;
  }
}
@media (max-width: 767px) {
  .opratedBy {
    white-space: nowrap;
  }
}
@media (max-width: 479px) {
  .opratedBy {
    white-space: normal;
  }
}
.check-in-baggage {
  font-size: 13px;
  margin-left: -5px;
  display: block;
}
@media (max-width: 767px) {
  .check-in-baggage {
    margin: 0px;
    font-size: 11px;
    white-space: normal;
  }
}
@media (max-width: 767px) {
  .mobile_detail_changes {
    padding-left: 43px;
  }
  .mobile_detail_changes .connnecting-block {
    width: 1px !important;
    position: absolute;
    left: 0px;
    top: 0px;
    height: 75%;
  }
  .mobile_detail_changes .connnecting-block .leg-points {
    width: 1px;
    height: 100% !important;
  }
  .mobile_detail_changes .connnecting-block .leg-points:after {
    content: "";
    bottom: 0px;
    left: inherit !important;
    right: -6px !important;
    top: inherit !important;
  }
  .mobile_detail_changes .connnecting-block .leg-points:before {
    content: "";
    left: -5px !important;
  }
  .mobile_detail_changes .leg-details {
    overflow: hidden;
  }
  .mobile_detail_changes .leg-details.pd-b-15 {
    padding-bottom: 15px;
  }
  .mobile_detail_changes .leg-details .time {
    font-weight: 700;
    font-size: 16px;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .mobile_detail_changes .leg-details .time {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .mobile_detail_changes .leg-details .city {
    width: 100% !important;
  }
}
.border-bot {
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}
.tsanumb {
  padding-right: 15px;
}
@media (max-width: 767px) {
  .tsanumb {
    display: block;
    padding-bottom: 6px;
  }
  .custom-tooltip .tooltip_detail.economy {
    width: 230px;
    padding-bottom: 50px;
  }
}
@media (max-width: 460px) {
  .custom-tooltip .tooltip_detail.economy {
    width: 185px;
    font-weight: 400;
  }
}
.flight__wrapper__details {
  z-index: 7;
  position: fixed;
  right: -200%;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
}
.flight__wrapper__details .price__detail_bottom.expend {
  right: 0px;
}
.flight__wrapper__details.expend {
  right: 0px;
}
.flight__detail {
  max-height: 100%;
  float: right;
  width: 650px;
  margin: 0px auto;
  background: #fff;
  height: 100%;
}
.flight__detail .flight__title {
  position: fixed;
  background: #fff;
  width: 100%;
  height: 40px;
}
.flight__detail .flight__title .close_flight_detail {
  position: absolute;
  color: #2a2c2c;
  font-size: 32px;
  font-weight: 400;
  left: -45px;
  top: 0px;
  text-decoration: none;
  background: #fff;
  padding: 4px;
  width: 46px;
  display: block;
  line-height: 29px;
}
.flight__detail .price__detail_bottom {
  background: #e1e8ff;
  padding: 13px 20px;
  width: 650px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  right: -200%;
  bottom: 0px;
}
@media (max-width: 767px) {
  .flight__detail .price__detail_bottom {
    padding: 7px;
  }
}
.flight__detail .price__detail_bottom .price {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  line-height: 25px;
}
.flight__detail .price__detail_bottom .price .per-person {
  font-size: 12px;
  font-weight: 400;
}
.flight__detail .price__detail_bottom .price .taxes {
  font-size: 13px;
  display: block;
  font-weight: normal;
}
.flight__detail .price__detail_bottom .select__button {
  font-size: 18px;
  text-decoration: none;
  display: block;
  padding: 9px 18px;
  color: #fff;
  background: #2758f4;
  cursor: pointer;
  width: 139px;
  text-align: center;
}
.flight__detail .flight_detail_content {
  padding: 0 20px 100px 20px;
  height: calc(100% - 30px);
  overflow-y: auto;
  overflow-x: hidden;
  background: #fff;
  margin-top: 29px;
}
@media (max-width: 767px) {
  .flight__detail .flight_detail_content {
    padding: 0 15px 100px 15px;
  }
}
.flight__detail .flexi-content {
  padding: 0px;
}
@media (max-width: 767px) {
  .flight__detail .flexi-content {
    padding: 0 7px;
  }
}
.flight__content-box {
  padding: 20px 0;
}
.Sort_flight_detail {
  width: 100%;
}
.Sort_flight_detail h4 {
  font-size: 16px;
  color: #1f1f1f;
  margin-bottom: 10px;
  padding-top: 3px;
}
.Sort_flight_detail .airline-detail {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #1f1f1f;
}
@media (max-width: 767px) {
  .Sort_flight_detail .airline-detail {
    align-items: self-start;
  }
}
.Sort_flight_detail .airline-detail img {
  width: 30px;
  float: left;
}
.Sort_flight_detail .airline-detail .name {
  padding-left: 6px;
  float: left;
  font-weight: 500;
}
.Sort_flight_detail .airline-detail .date {
  display: inline-block;
}
.Sort_flight_detail .airline-detail .date .dot {
  width: 1px;
  height: 12px;
  background: #d6d6d6;
  display: inline-block;
  border-radius: 100%;
  margin: 0px 4px 0 6px;
  position: relative;
  top: 1px;
}
.Sort_flight_detail .time {
  padding-top: 8px;
  padding-bottom: 15px;
  font-size: 14px;
  font-weight: 600;
}
.Sort_flight_detail .time .total_time {
  padding-top: 8px;
  display: block;
  font-weight: 400;
  color: #5b5b5b;
  font-size: 12px;
}
.Sort_flight_detail .cityname {
  padding-bottom: 2px;
  font-size: 16px;
  font-weight: 600;
}
.flight_detail_link {
  font-size: 13px;
  color: #2758f4;
  text-decoration: none;
}
.flight_detail_link:focus {
  color: #2758f4;
  text-decoration: none;
}
.flight_detail_link:hover {
  color: #2758f4;
  text-decoration: none;
}
.flight_detail_link:after {
  content: "\f282";
  font-family: bootstrap-icons !important;
  position: relative;
  top: 2px;
  margin-left: 7px;
}
.flight_detail_link.change:after {
  content: "\f286";
  font-family: bootstrap-icons !important;
  position: relative;
  top: 2px;
  margin-left: 7px;
}
.total-trip-time {
  padding: 10px;
  margin-top: 20px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.flight-schedule {
  display: flex;
}
.flight_scheduleTime {
  font-weight: 400;
  color: #414141;
  float: left;
  text-align: right;
  width: 210px;
}
.flight_scheduleTime strong {
  font-size: 16px;
}
.flight_scheduleStops-circle {
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 7px 10px;
  position: relative;
  border: 2px solid #2758f4;
  z-index: 1;
}
.flight_scheduleLocation {
  width: calc(100% - 150px);
}
.flight_scheduleLocation .city {
  font-weight: 700;
  color: #414141;
}
.flight_scheduleLocation .airpoetname {
  font-weight: 400;
  color: #757575;
  max-height: 2.4em;
  overflow: hidden;
}
.flight_detailsInfoTravel {
  padding: 20px 0;
  position: relative;
}
.flight-duration {
  float: left;
  font-weight: 400;
  padding-top: 10px;
  text-align: right;
  width: 180px;
}
.flight_stopIntervalSeparator {
  border-left: 1px solid #2758f4;
  bottom: -5px;
  left: 197px;
  position: absolute;
  top: -26px;
  transform: translateX(-1px);
}
.flight-stop {
  display: flex;
  padding: 20px 0;
  position: relative;
}
.flight-stop .flight_stopIntervalSeparator {
  border-left: 1px dashed #2758f4;
}
.flight-stop.flight-stop--danger .flight-duration {
  color: red;
  padding: 7px 5px 0 5px;
  border-radius: 20px;
  margin-top: 7px;
  white-space: nowrap;
}
.flight-layover-label {
  font-weight: 400;
  margin-top: 10px;
  color: #414141;
  margin-left: 35px;
  background: #e1e8ff;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.flight-travel-details {
  float: right;
  margin-left: 30px;
  width: calc(100% - 215px);
}
.airlines-details {
  display: flex;
  padding-bottom: 5px;
}
.airlines-details img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.airlines-details .right {
  width: 100%;
  float: left;
}
.airlines-details .flight-info {
  margin-top: 5px;
}
.airlines-details .air-name {
  font-weight: 700;
  display: flex;
  align-items: self-start;
  justify-content: space-between;
  padding: 6px 0 0 0;
}
.open-model-2 {
  height: 100vh;
  overflow: hidden;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .open-model-2 {
    position: fixed;
  }
}
.sort_detail .city {
  width: 70px;
  float: left;
}
.sort_detail .connnecting-block {
  padding: 20px 10px 0 24px;
  width: 100%;
  position: relative;
}
.sort_detail .connnecting-block:hover .tooltip__custom {
  display: block;
}
.sort_detail .leg-points {
  background: gray;
  height: 2px;
  position: relative;
  text-align: center;
}
.sort_detail .leg-points:before {
  content: "";
  width: 30px;
  height: 22px;
  display: block;
  position: absolute;
  left: -20px;
  top: -12px;
}
.sort_detail .leg-points:after {
  content: "";
  position: absolute;
  top: -10px;
  height: 20px;
  right: -5px;
  width: 17px;
}
.sort_detail .leg-points .layovertime {
  position: absolute;
  width: 100%;
  text-align: center;
  top: -24px;
  font-size: 13px;
}
.sort_detail .leg-points .stops {
  position: relative;
  top: -13px;
  font-size: 11px;
}
.sort_detail .leg-points .stops i:before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-top: 10px;
  border: 2px solid #2758f4;
  border-radius: 100%;
  background: #fff;
}
.flight_refund_Flap {
  margin: 30px 0;
  border: 1px solid #ced0d4;
  border-radius: 6px;
  padding: 15px;
}
@media (max-width: 767px) {
  .flight_refund_Flap {
    margin-bottom: 15px;
  }
}
.flight_refund_Flap .payment_title {
  padding-top: 0px;
}
.flight_refund_Flap .ribin {
  right: 20px !important;
}
.flight_refund_Flap .benefits ul {
  padding-top: 7px !important;
}
.flight_refund_Flap .continue_btn {
  background: #2758f4;
  border: 0;
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 4px;
  margin: 15px auto;
  display: block;
  position: relative;
  color: #fff;
  font-weight: 500;
}
.results {
  padding-top: 15px;
  background: #fafafa;
}
@media (max-width: 767px) {
  .flight__detail {
    width: 100%;
  }
  .flight__detail .flight__title .close_flight_detail {
    left: inherit;
    right: 0px;
  }
  .flight__detail .price__detail_bottom {
    width: 100%;
  }
  .flight-details-segment {
    font-size: 12px;
  }
  .Sort_flight_detail h4 {
    font-size: 12px;
  }
  .Sort_flight_detail .airline-detail img {
    width: 24px;
  }
  .Sort_flight_detail .time {
    font-size: 13px;
    padding-bottom: 10px;
  }
  .Sort_flight_detail .cityname {
    font-size: 13px;
  }
  .flight_scheduleTime {
    width: 90px;
    white-space: nowrap;
  }
  .flight-duration {
    width: 90px;
  }
  .flight_stopIntervalSeparator {
    left: 109px;
  }
  .flight-travel-details {
    width: calc(100% - 127px);
  }
  .airlines-details img {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 479px) {
  .flight__detail .price__detail_bottom .price {
    font-size: 16px;
  }
  .flight__detail .price__detail_bottom .price .per-person {
    font-size: 11px;
  }
  .flight__detail .price__detail_bottom .price .taxes {
    font-size: 11px;
    line-height: 15px;
  }
  .flight_scheduleTime {
    width: 65px;
  }
  .flight_scheduleTime strong {
    font-size: 13px;
  }
  .flight-duration {
    width: 65px;
  }
  .flight_stopIntervalSeparator {
    left: 83px;
  }
  .flight-travel-details {
    width: calc(100% - 102px);
  }
}
@media (max-width: 980px) {
  .results {
    padding-top: 0px;
  }
}
.class_display {
  padding-left: 10px;
  font-size: 11px;
  padding-right: 14px;
  position: relative;
}
.class_display .fa-info-circle {
  position: absolute;
  right: -12px;
}
@media (max-width: 767px) {
  .class_display {
    line-height: 13px;
    text-align: right;
  }
}
#return-tab22 {
  border-top: 1px dashed #eee;
  margin-top: 15px;
}
.matrix__wrapper {
  margin-bottom: 10px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .matrix__wrapper {
    overflow: inherit;
  }
}
.matrix__wrapper .slick-list {
  overflow: hidden;
}
.matrix__wrapper h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .matrix__wrapper h3 {
    display: none;
  }
}
.matrix__wrapper .matrix__aside {
  position: relative;
  float: left;
  width: 14%;
  z-index: 1;
  border-left: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
}
@media (max-width: 767px) {
  .matrix__wrapper .matrix__aside {
    width: 100px;
  }
}
.matrix__wrapper .matrix__slider {
  position: relative;
  float: left;
  width: 86%;
  border-right: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
}
@media (max-width: 767px) {
  .matrix__wrapper .matrix__slider {
    width: calc(100% - 100px);
  }
}
.matrix__wrapper .matrix__item {
  width: 20%;
  float: left;
}
.matrix__wrapper .matix__Box-lg {
  border: 1px solid #ddd;
  border-left: 0;
  font-size: 12px;
  text-align: center;
  height: 68px;
  line-height: normal;
  padding: 8px;
  position: relative;
  width: 100%;
  cursor: pointer;
}
@media (max-width: 767px) {
  .matrix__wrapper .matix__Box-lg {
    padding: 5px;
    height: 43px;
  }
}
.matrix__wrapper .matix__Box-lg:hover,
.matrix__wrapper .matix__Box-lg .is-active {
  background: #e1f0ff;
}
.matrix__wrapper .matix__Box-lg.is--default {
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
}
.matrix__wrapper .matix__Box-lg.is--default:hover {
  background: transparent;
}
.matrix__wrapper .matix__Box-lg .matrix__airline-name {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
}
@media (max-width: 767px) {
  .matrix__wrapper .matix__Box-lg .matrix__airline-name {
    display: none;
  }
}
.matrix__wrapper .matrix__cell {
  padding: 3px;
  text-align: center;
  font-weight: 700;
  vertical-align: middle;
  width: 100%;
  border-right: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  cursor: pointer;
  line-height: 30px;
  font-size: 12px;
}
@media (max-width: 767px) {
  .matrix__wrapper .matrix__cell {
    font-size: 11px;
    line-height: 25px;
  }
}
.matrix__wrapper .matrix__cell:hover,
.matrix__wrapper .matrix__cell .is-active {
  background: #e1f0ff;
}
.matrix__wrapper .matrix__cell.is--default {
  cursor: default;
}
.matrix__wrapper .matrix__cell.is--default:hover {
  background: transparent;
}
.matrix__wrapper .matrix__airline-logo {
  width: 32px;
  margin: 0 auto 6px auto;
}
.matrix__wrapper .matrix__airline-logo img {
  width: 100%;
}
.matrix__wrapper .slick-prev,
.matrix__wrapper .slick-next {
  top: -30px;
  width: 26px;
  height: 26px;
  border-radius: 100%;
  background: #fff;
  color: #343434;
  border: 1px solid #ccc;
  position: absolute;
}
.matrix__wrapper .slick-prev {
  left: inherit;
  right: 39px;
}
.matrix__wrapper .slick-next {
  right: 0px;
}
.matrix__wrapper .slick-prev:before,
.matrix__wrapper .slick-next:before {
  font-family: "FontAwesome";
  content: "\f105";
  color: #343434;
  font-size: 21px;
  line-height: 22px;
}
.matrix__wrapper .slick-prev:before {
  font-family: "FontAwesome";
  content: "\f104";
}
.matrix__wrapper .slick-prev:hover,
.matrix__wrapper .slick-next:hover {
  border: 1px solid #2758f4;
}
.matrix__wrapper .slick-prev:hover:before,
.matrix__wrapper .slick-next:hover:before {
  color: #2758f4;
}
.matrixactive {
  color: #2758f4;
  background: #e1f0ff;
}
@media (max-width: 767px) {
  .matrix__wrapper h3 {
    margin: 0px 0 35px;
    font-size: 14px;
  }
  .matix__Box-lg .matrix__airline-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.matrix__wrapper .slick-prev,
.matrix__wrapper .slick-next {
  padding: 0 0 0 1px;
}
.matrix-airline-icon {
  position: absolute;
  top: 0px;
  right: 5px;
}
.matrix-airline-icon img {
  width: 25px;
}
.matrix__wrapper .reset {
  position: absolute;
  top: 7px;
  right: 78px;
  background: #2758f4;
  color: #fff;
  border-radius: 3px;
  padding: 2px 10px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .matrix__wrapper .reset {
    top: 13px;
  }
}
.header_strip_fixed.fixed {
  z-index: 2;
}
.matrix__wrapper .matrix__cell .is--default {
  cursor: default;
}
.results {
  padding-top: 25px;
}
@media (max-width: 980px) {
  .results {
    padding-top: 0px;
  }
}
.leftCntr {
  width: 280px;
  float: left;
}
.rightCntr {
  width: calc(100% - 280px);
  float: left;
  padding-left: 28px;
}
@media (max-width: 980px) {
  .rightCntr {
    width: 100%;
    padding-left: 0px;
  }
}
.total-results {
  font-size: 15px;
  display: block;
  padding-top: 8px;
  float: right;
  font-weight: normal;
}
@media (max-width: 980px) {
  .total-results {
    width: 100%;
    padding: 12px 0 8px 0;
    float: none;
  }
}
.itinerary-info-detail {
  font-size: 18px;
  color: #343434;
  padding: 6px 0;
}
@media (max-width: 980px) {
  .itinerary-info-detail {
    display: none;
    font-size: 13px;
  }
}
.itinerary-info-detail .fa-angle-right {
  padding: 0 10px;
}
.results-container {
  padding-bottom: 30px;
}
.flightResult_box {
  background: #fff;
  padding: 0 18px;
  box-shadow: 0 0 6px #e3e3e3;
  margin-bottom: 20px;
  position: relative;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .flightResult_box {
    padding: 0 12px;
  }
}
.flightResult_box .price_list {
  display: table;
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .flightResult_box .price_list {
    height: auto;
    width: auto;
    margin: 0 -13px;
    border-bottom: 1px solid #ccc;
    display: block;
  }
}
.flightResult_box .price_list .price-list-inner {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding: 30px 0px;
}
@media (max-width: 767px) {
  .flightResult_box .price_list .price-list-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px;
  }
}
.flightResult_box .price_list .price-list-inner.price-listOneway {
  padding: 8px 8px 50px 8px;
}
@media (max-width: 767px) {
  .flightResult_box .price_list .price-list-inner.price-listOneway {
    padding: 0px;
  }
}
.flightResult_box .price_list .price {
  font-size: 18px;
  font-weight: 700;
  color: #2758f4;
  line-height: 20px;
}
@media (max-width: 767px) {
  .flightResult_box .price_list .price {
    padding: 6px 0 0 10px;
    font-size: 16px;
    float: left;
    color: #2758f4;
  }
}
.flightResult_box .price_list .price .fa-usd {
  font-size: 23px;
}
@media (max-width: 767px) {
  .flightResult_box .price_list .price .fa-usd {
    font-size: 15px;
  }
}
.flightResult_box .price_list .texes {
  display: block;
  margin-top: 6px;
}
.flightResult_box .selectButton {
  font-size: 18px;
  text-decoration: none;
  display: block;
  padding: 9px 18px;
  color: #fff;
  background: #2758f4;
  cursor: pointer;
  width: 139px;
  border: 1px solid #2758f4;
  margin: 5px auto 0px auto;
}
@media (max-width: 767px) {
  .flightResult_box .selectButton {
    float: right;
    width: auto;
    font-size: 14px;
    padding: 5px 11px;
    margin: 5px 5px 5px auto;
  }
}
.flightResult_box .selectButton:hover {
  background: #1343de;
  color: #fff;
}
.flightResult_box .depart-flight {
  font-size: 13px;
  padding-bottom: 8px;
  padding-top: 8px;
}
@media (max-width: 767px) {
  .flightResult_box .depart-flight {
    font-size: 12px;
  }
}
.flightResult_box .depart-flight .head {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .flightResult_box .depart-flight .head {
    font-size: 13px;
    margin-bottom: 5px;
  }
}
.flightResult_box .depart-flight .head small {
  font-size: 13px;
  font-weight: normal;
}
.flightResult_box .depart-flight .flight-info img {
  width: 35px;
  float: left;
}
@media (max-width: 767px) {
  .flightResult_box .depart-flight .flight-info img {
    width: 30px;
  }
}
.flightResult_box .depart-flight .flight-info .name {
  margin-left: 45px;
  text-transform: capitalize;
  padding-top: 6px;
}
@media (max-width: 767px) {
  .flightResult_box .depart-flight .flight-info .name {
    margin-left: 35px;
  }
}
.flightResult_box .depart-flight .flight-info .name span {
  font-weight: 500;
  display: block;
}
.flightResult_box .depart-flight .flight-info .eqp {
  font-size: 12px;
}
@media (max-width: 767px) {
  .flightResult_box .depart-flight .flight-info .eqp {
    display: inline-block;
    border-left: 1px solid #ccc;
    margin: 0px 5px;
    padding: 0px 6px;
    line-height: 12px;
  }
}
.flightResult_box .depart-flight .leg-details .city {
  width: 70px;
  float: left;
}
@media (max-width: 767px) {
  .flightResult_box .depart-flight .leg-details .city {
    width: 70px;
  }
}
.flightResult_box .depart-flight .leg-details .city .code {
  font-size: 14px;
  font-weight: 400;
  position: relative;
  display: inline-block;
}
.flightResult_box .depart-flight .leg-details .city .code strong {
  font-weight: 400;
}
@media (max-width: 767px) {
  .flightResult_box .depart-flight .leg-details .city .code {
    font-size: 14px;
  }
}
.flightResult_box .depart-flight .leg-details .city .name {
  color: #5c5c5c;
}
.flightResult_box .depart-flight .leg-details .city .time {
  font-weight: 700;
  font-size: 14px;
}
@media (max-width: 767px) {
  .flightResult_box .depart-flight .leg-details .city .time {
    font-size: 13px;
  }
}
.flightResult_box .depart-flight .connnecting-block {
  padding: 13px 15px 0 15px;
  float: left;
  width: calc(100% - 140px);
}
@media (max-width: 767px) {
  .flightResult_box .depart-flight .connnecting-block {
    width: calc(100% - 140px);
  }
}
.flightResult_box .depart-flight .connnecting-block .leg-points {
  background: #989aa2;
  height: 1px;
  position: relative;
  text-align: center;
  font-size: 12px;
}
.flightResult_box .depart-flight .connnecting-block .leg-points:before,
.flightResult_box .depart-flight .connnecting-block .leg-points:after {
  content: "";
  width: 12px;
  height: 12px;
  display: block;
  position: absolute;
  left: 0px;
  top: -5px;
  border: 2px solid #2758f4;
  border-radius: 100%;
  background: #fff;
}
.flightResult_box .depart-flight .connnecting-block .leg-points:after {
  content: "";
  left: inherit;
  right: 0px;
}
.flightResult_box .depart-flight .connnecting-block .leg-points span {
  font-size: 12px;
  text-align: center;
  width: 55px;
  display: inline-block;
  margin-top: -12px;
  color: #5c5c5c;
  position: relative;
}
.flightResult_box .depart-flight .connnecting-block .leg-points span i:before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  position: unset;
  margin-top: 8px;
  border: 2px solid #2758f4;
  border-radius: 100%;
  background: #2758f4;
}
.flightResult_box .depart-flight .connnecting-block .leg-points .layover-time {
  font-style: normal;
  position: absolute;
  left: 0px;
  top: -13px;
  width: 100%;
}
.flightResult_box .depart-flight .total-time {
  font-size: 14px;
  white-space: nowrap;
  font-weight: 700;
}
@media (max-width: 767px) {
  .flightResult_box .depart-flight .total-time {
    text-align: right;
  }
}
.flightResult_box:hover {
  box-shadow: 0 0 6px #7697ff;
}
.flightResult_box.active {
  background: #ecf0fd;
}
.return-flight {
  border-top: 1px dashed #ccc;
}
.loading_image {
  margin-bottom: 30px;
}
.loading_image img {
  width: 100%;
}
@media (max-width: 767px) {
  .margin-sm {
    margin-top: 6px;
  }
}
.more_results {
  display: inline-block;
  padding-left: 26px;
  padding-right: 26px;
}
.airport-name {
  font-size: 13px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media (max-width: 767px) {
  .airport-name {
    font-size: 12px;
    white-space: normal;
  }
}
.results_bottom_strip {
  background: #eaeaea;
  border-top: 1px solid #dedede;
  margin: 0 -18px;
}
@media (max-width: 767px) {
  .results_bottom_strip {
    margin: 0 -12px;
  }
}
.results_bottom_strip .flight-detail-button {
  font-size: 15px;
  color: #2758f4;
  font-weight: 500;
  text-decoration: none;
  padding: 12px 10px;
  border: 1px solid transparent;
  border-bottom: none;
  display: inline-block;
  cursor: pointer;
}
.results_bottom_strip .flight-detail-button:hover {
  color: #2758f4;
}
@media (max-width: 767px) {
  .results_bottom_strip .flight-detail-button {
    width: auto;
    padding: 14px 5px;
    font-size: 13px;
  }
}
.results_bottom_strip .flight-detail-button:after {
  content: "\f103";
  font-family: "FontAwesome";
  margin-left: 5px;
}
.results_bottom_strip .flight-detail-button.active:after {
  content: "\f102";
  font-family: "FontAwesome";
}
.results_bottom_strip ul.list {
  list-style: none;
  margin: 0px;
  padding: 13px 0;
}
.results_bottom_strip ul.list li {
  float: left;
  padding: 0 17px;
  border-right: 1px solid #ccc;
}
@media (max-width: 1169px) {
  .results_bottom_strip ul.list li {
    padding: 0 10px;
  }
}
.results_bottom_strip ul.list li a {
  color: #4b4b4b;
}
.results_bottom_strip ul.list li a:hover {
  text-decoration: none;
  color: #2758f4;
}
.results_bottom_strip ul.list li img {
  padding-left: 7px;
}
.results_bottom_strip ul.list li:last-child {
  border-right: 0px;
}
.results_bottom_strip .share_icon {
  width: 19px;
  height: 18px;
  opacity: 0.5;
  transform: rotate(180deg);
  margin-left: 7px;
}
.filter-air-logo {
  width: 21px;
}
.change-search {
  position: absolute;
  padding: 0 0 10px 10px;
}
.coach-hilight,
.coach-highlight {
  background: #d4deff;
  padding: 2px 5px;
}
.matrix-note {
  font-size: 12px;
  color: #8a8989;
}
.matrix-note .collapse.in {
  display: inline !important;
}
.matrix-note a {
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
}
.matrix-note a:hover,
.matrix-note a:focus {
  text-decoration: none;
  color: #2758f4;
}
.matrix-note a u {
  text-decoration: none;
}
.matrix-note a:hover,
.matrix-note a:focus {
  text-decoration: none;
}
.menu-hover {
  position: relative;
}
.menu-hover .more-option {
  display: none;
  float: left;
  color: #333;
  padding: 13px;
}
@media (max-width: 767px) {
  .menu-hover ul.list {
    display: none;
  }
  .menu-hover .more-option {
    display: block;
  }
  .menu-hover:hover ul.list {
    display: block;
    position: absolute;
    left: -1px;
    top: 46px;
    width: 211px;
    background: #eaeaea;
    border: 1px solid #dedede;
    z-index: 1;
    border-top: none;
  }
  .menu-hover:hover ul.list li {
    padding: 7px;
    border: none;
  }
}
.flexi-content {
  margin: 0px;
  padding: 7px 0px;
  color: #2758f4;
  font-size: 13px;
  display: inline-block;
}
@media (max-width: 767px) {
  .flexi-content {
    margin: 0px -9px;
    display: block;
    padding: 5px;
  }
}
.flexi-content span {
  display: inline-block;
  padding: 3px 5px;
  border: 1px solid #91abfd;
  background: #e1e6ff;
  color: #2758f4;
  border-radius: 4px;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .flexi-content span {
    font-size: 12px;
    margin-right: 5px;
    margin-bottom: 5px;
  }
}
.flexi-content.flexi-content-payment {
  margin: 0px;
  padding: 7px 3px;
}
.nbhilight {
  color: #2758f4;
}
.mix_airline_option {
  font-size: 12px;
  float: right;
  padding-top: 15px;
}
@media (max-width: 767px) {
  .mix_airline_option {
    padding-top: 9px;
  }
}
@media (max-width: 767px) {
  .economy-class-name {
    position: absolute;
    right: 10px;
    top: 15px;
    text-align: right;
    width: 171px;
  }
}
.no_results_block {
  color: #343434;
}
.price-breakup {
  font-size: 13px;
  color: #2758f4;
  margin-top: 5px;
  position: relative;
}
@media (max-width: 767px) {
  .price-breakup {
    display: inline-block;
    margin-left: 5px;
  }
}
.price-breakup span {
  color: #59595b;
  font-size: 12px;
  display: block;
}
.fare-breakup {
  display: none;
  width: 300px;
  position: absolute;
  bottom: 40px;
  right: -28px;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  color: #242328;
  z-index: 5;
}
.fare-breakup .page_overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0px;
  top: 0px;
}
.fare-breakup .inner_fareBreak {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 13px 15px 10px 15px;
  border-radius: 8px;
  box-shadow: 0 0 11px #a5a4a4;
}
.fare-breakup .close_mobile {
  font-size: 30px;
  line-height: 28px;
  margin-bottom: 9px;
  display: inline-block;
  position: absolute;
  right: -9px;
  top: -23px;
  background: #fff;
  border-radius: 20px;
  color: blue;
}
@media (max-width: 767px) {
  .fare-breakup {
    right: -80px;
  }
}
.fare-breakup:before,
.fare-breakup:after {
  content: "";
  position: absolute;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  top: 100%;
  left: 50%;
  border-top: 15px solid #ccc;
}
.fare-breakup:after {
  border-top: 14px solid #fff;
  margin-top: -1px;
  z-index: 1;
}
.fare-breakup ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.fare-breakup ul li {
  border-bottom: 1px dashed #a6a6a6;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 13px;
}
.fare-breakup ul li strong {
  display: block;
}
.fare-breakup ul li:last-child {
  border: none;
  margin-bottom: 0px;
}
.covid-list {
  background: #ffe98d;
  color: #434343;
  border: 1px solid #ffd38d;
  padding: 10px;
  border-radius: 3px;
  font-size: 13px;
  line-height: 1.2em;
  margin: 15px 0;
}
.covid-list .d-block {
  color: #333;
  display: inline-block;
  font-weight: 700;
  text-decoration: underline;
}
.covid-list .collapse.in {
  display: inline !important;
}
@media (max-width: 767px) {
  .covid-list {
    font-size: 12px;
    margin: 10px 0;
    padding: 5px 10px;
  }
}
.oops.alert-danger {
  color: #a51d1d;
  padding: 10px;
  font-size: 15px;
}
.rsloading_div {
  position: fixed;
  left: 0px;
  top: 0px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  z-index: 10;
}
.rsloading_div .inner {
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 15px 50px;
  overflow: hidden;
  text-align: center;
  border-radius: 10px;
}
.rsloading_div .inner .loader_icon {
  background: url("../images/d-blue.png") center center no-repeat;
}
.rsloading_div .inner .rsloader {
  border: 5px solid #eaeaea;
  border-radius: 50%;
  border-top: 5px solid #4f7bf6;
  width: 60px;
  height: 60px;
  margin: 0px auto 10px auto;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
.rsloading_div .inner .rsloader img {
  animation: none;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.tooltipcity {
  position: absolute;
  opacity: 0;
  top: -30px;
  display: none;
  left: 50%;
  background: #fff;
  padding: 4px 10px;
  font-size: 12px;
  color: #919192;
  border-radius: 4px;
  z-index: 1;
  box-shadow: inset 0 0 4px #00000033;
  transform: translateX(-50%);
  white-space: nowrap;
  border: 1px solid #ced0d4;
}
.tooltipcity:after,
.tooltipcity:before {
  content: "";
  position: absolute;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  bottom: -6px;
  left: 50%;
  border-top: 5px solid #ccc;
  transform: translateX(-50%);
}
.tooltipcity:after {
  border-top: 5px solid #f8f8f8;
  z-index: 1;
}
.flightResult_box .depart-flight .leg-details .city .code:hover .tooltipcity {
  opacity: 1;
  display: block;
}
.seatmaptab ul li a img {
  width: 50px;
}
.techStop {
  clear: both;
  background: #e1e6ff;
  text-align: center;
  margin-top: 10px;
  display: inline-block;
  padding: 2px 14px;
  border-radius: 30px;
  margin-bottom: 7px;
}
.connnecting-block .tooltip_detail {
  left: 50%;
  width: 290px;
  transform: translateX(-50%);
}
.connnecting-block .tooltip_detail span.arrow {
  width: 21px !important;
  margin: 0px;
  left: 46%;
  position: absolute !important;
  margin: 0px !important;
}
.sortingBox ul {
  list-style: none;
  padding: 0px;
  margin: 8px 0px;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
}
.sortingBox ul li {
  float: left;
  font-size: 13px;
  color: #343434;
  font-weight: 700;
  display: block;
  padding: 8px 20px 8px 20px;
  height: 50px;
  background: #e1e6ff;
  position: relative;
  margin-right: 10px;
  margin-bottom: 15px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .sortingBox ul li {
    margin-right: 1px;
    padding: 8px 6px 8px 6px;
    font-size: 11px;
    height: 40px;
  }
}
.sortingBox ul li small {
  color: #2758f4;
}
.sortingBox ul li.active {
  background: #2758f4;
  color: #fff;
}
.sortingBox ul li.active:after {
  font-family: fontawesome;
  content: "\f0d7";
  position: absolute;
  bottom: -26px;
  left: 41%;
  font-size: 35px;
  color: #2758f4;
}
.sortingBox ul li.active small {
  color: #fff;
}
.sortingBox ul li:first-child span {
  display: block;
  padding-top: 10px;
}
@media (max-width: 767px) {
  .sortingBox ul li:first-child span {
    padding-top: 6px;
  }
}
.applyedFilterBox {
  width: 100%;
  overflow: hidden;
}
.applyedFilterBox ul {
  list-style: none;
  float: left;
  margin-right: -5px;
  margin-bottom: 0px;
  padding: 0px;
}
.applyedFilterBox ul li {
  position: relative;
  margin: 10px 5px 0px 0px;
  display: inline-block;
  border: 0;
  padding: 7px 28px 7px 10px;
  border-radius: 20px;
  background: #e6eaff;
  color: #0b1e34;
  font-size: 12px;
  float: left;
}
.applyedFilterBox ul .resetFilter {
  font-size: 21px;
  position: absolute;
  top: 2px;
  right: 6px;
  cursor: pointer;
}
.applyedFilterBox .clear_filter {
  margin-top: 15px;
  margin-left: 5px;
  display: inline-block;
  font-size: 13px;
  color: #4f8ffc;
  text-decoration: underline;
  cursor: pointer;
}
.mobileFilterBox {
  display: none;
  padding: 5px 10px 0 10px;
  border: 1px solid #e9e9e9;
  background: #f9f9f9;
  z-index: 2;
}
.mobileFilterBox .filter_text {
  padding-top: 6px;
  float: left;
  font-weight: 500;
  padding-right: 11px;
  color: #1f1f1f;
  width: 65px;
}
.mobileFilterBox ul {
  margin: 0;
  padding: 4px 0 11px 0;
  overflow-x: scroll;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
  display: flex;
  list-style: none;
}
.mobileFilterBox ul li {
  margin-right: 3px;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
  padding: 0px 7px 0 9px;
  height: 22px;
  line-height: 22px;
  border-radius: 13px;
}
.mobileFilterBox ul li span {
  color: #5b5b5b;
  text-decoration: none;
}
.mobileFilterBox ul li span:hover {
  text-decoration: none;
  color: #5b5b5b;
}
.mobileFilterBox ul li span:focus {
  text-decoration: none;
  color: #5b5b5b;
}
.mobileFilterBox ul li a:hover {
  text-decoration: none;
  color: #5b5b5b;
}
.mobileFilterBox ul li a:focus {
  text-decoration: none;
  color: #5b5b5b;
}
.mobileFilterBox ul li .resetFilter {
  display: none;
  font-size: 18px;
  line-height: 15px;
  position: relative;
  top: 1px;
  cursor: pointer;
  color: #2758f4;
}
.mobileFilterBox ul li.is-active {
  background: #d9e7ff;
}
.mobileFilterBox ul li.is-active span {
  color: #2758f4;
}
.mobileFilterBox ul li.is-active .resetFilter {
  display: inline-block;
}
.mobileFilterBox.fixed {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
}
@media (max-width: 767px) {
  .applyedFilterBox {
    display: none;
  }
}
@media (max-width: 1169px) {
  .mobileFilterBox {
    display: flex;
  }
}
.mobile-itenery {
  background: #2758f4;
  color: #fff;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.mobile-itenery .itenery-date {
  padding-top: 3px;
}
.mobile-itenery .city-itenery {
  padding: 8px 0 8px 10px;
  font-size: 11px;
  line-height: 14px;
}
.mobile-itenery .column {
  width: 50px;
  float: left;
}
.mobile-itenery .column2 {
  width: 100px;
  float: left;
}
.mobile-itenery .airportCode {
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
}
.mobile-itenery .airporticon {
  font-size: 16px;
  text-align: center;
  line-height: 16px;
}
.mobile-itenery .modify-src-btn {
  background: #0739da;
  width: 57px;
  text-align: center;
  cursor: pointer;
  height: 48px;
  line-height: 48px;
  font-size: 20px;
  position: absolute;
  right: 0px;
  top: 0;
  padding-top: 4px;
  color: #fff;
}
.mobile-itenery p {
  margin: 0px;
}
.form-div{
width: min-content;
height: auto;
margin-top: 0px;
position: relative;
/* background: #11172b; */
/* box-shadow: rgb(0 0 0 / 25%) 0px 50px 100px -20px, rgb(0 0 0 / 30%) 0px 30px 60px -30px, rgb(0 0 0 / 35%) 0px -2px 6px 0px inset; */
margin-left: auto;
margin-right: auto;
    margin-top: 50px;
}

.form-div .container {
    width: 1200px;
}


.bannerBox {
  width: 100%;
  height: 450px;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-color: #acbae0;
}
@media (max-width: 767px) {
  .bannerBox {
    height: auto;
    padding-bottom: 0px;
  }
}
.bannerBox:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgb(255 255 255 / 44%);
}
.destination-engine-wrapper {
  padding-top: 115px;
}


@media (max-width: 1169px) {
  .destination-engine-wrapper {
    padding-top: 0px;
  }
}
@media (max-width: 767px) {
  .destination-engine-wrapper {
    padding-bottom: 10px;
  }
.form-div {
    width: 100%;
    position: relative;
/*     background-color: #12192e; */
    height: auto;
}  
}

@media (max-width: 767px) {

}
.destination-engine-wrapper .trip-type {
  left: 0px;
}
@media (max-width: 767px) {
  .destination-engine-wrapper .trip-type {
    top: -40px;
    left: 92px;
  }
}
.banner-logo {
  position: absolute;
  bottom: 12px;
  right: 10px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .banner-logo {
    width: 100%;
    padding: 18px 0 0 14px;
    bottom: 5px;
    position: static;
  }
}
.banner-logo .bbb_logo {
  background: rgba(255, 255, 255, 0.9);
  padding: 6px 7px;
  float: left;
  margin-right: 10px;
  width: 156px;
  overflow: hidden;
}
.banner-logo .bbb_logo img {
  width: 100%;
}
@media (max-width: 767px) {
  .banner-logo .bbb_logo {
    width: 124px;
    height: 70px;
    margin-right: 4px;
  }
}
.banner-logo .bbb_logo .bbb_anchor_logo {
  overflow: hidden;
}
@media (max-width: 767px) {
  .banner-logo .bbb_logo .bbb_anchor_logo {
    padding: 5px 7px;
    width: 115px !important;
  }
}
@media (max-width: 767px) {
  .banner-logo .bbb_logo .bbb_anchor_logo:hover img {
    margin-left: -115px !important;
  }
}
.banner-logo .bbb_logo #bbblinkimg {
  width: 300px;
  height: 68px;
}
@media (max-width: 767px) {
  .banner-logo .bbb_logo #bbblinkimg {
    width: 230px;
    height: auto;
  }
}
.banner-logo .tp-logo-in-banner {
  background: rgba(255, 255, 255, 0.9);
  padding: 14px 10px;
  width: 200px;
  float: left;
}
@media (max-width: 767px) {
  .banner-logo .tp-logo-in-banner {
    width: 177px;
    padding: 6px;
  }
}
@media (max-width: 767px) {
  .banner-logo .tp-logo-in-banner img {
    width: 100px;
  }
}
.banner-logo .tp-logo-in-banner .review_total {
  font-size: 15px;
  color: #2758f4;
  font-weight: 700;
}
@media (max-width: 767px) {
  .banner-logo .tp-logo-in-banner .review_total {
    font-size: 11px;
  }
}
.dynamic-dealBox h3 {
  font-size: 20px;
  font-weight: 600;
  color: #343434;
  padding-top: 15px;
  padding-bottom: 15px;
  margin: 0px;
}
@media (max-width: 767px) {
  .dynamic-dealBox h3 {
    font-size: 17px;
    padding: 0px;
  }
}
.dynamic-dealBox .holder {
  margin-right: -67px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1169px) {
  .dynamic-dealBox .holder {
    margin-right: -30px;
  }
}
@media (max-width: 980px) {
  .dynamic-dealBox .holder {
    margin-right: -10px;
  }
}
@media (max-width: 767px) {
  .dynamic-dealBox .holder {
    margin-right: 0px;
  }
}
.dynamic-dealBox .holder .deal_block {
  width: calc(50% - 67px);
  float: left;
  font-size: 14px;
  color: #7e7e7e;
  border: 1px solid #dddddd;
  padding: 15px 20px;
  margin: 0 67px 22px 0;
  cursor: pointer;
}
@media (max-width: 1169px) {
  .dynamic-dealBox .holder .deal_block {
    width: calc(50% - 30px);
    margin-right: 30px;
  }
}
@media (max-width: 980px) {
  .dynamic-dealBox .holder .deal_block {
    width: calc(50% - 10px);
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 8px;
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .dynamic-dealBox .holder .deal_block {
    width: 100%;
    margin-right: 0px;
  }
}
.dynamic-dealBox .holder .deal_block:hover {
  border: 1px solid #2758f4;
}
.dynamic-dealBox .holder .deal_block .logo {
  float: left;
  display: none;
}
@media (max-width: 980px) {
  .dynamic-dealBox .holder .deal_block .logo img {
    width: 45px;
  }
}
@media (max-width: 479px) {
  .dynamic-dealBox .holder .deal_block .logo img {
    width: 40px;
  }
}
.dynamic-dealBox .holder .deal_block .destination-code {
  font-size: 14px;
  font-weight: 600;
  color: #343434;
  line-height: 18px;
}
@media (max-width: 980px) {
  .dynamic-dealBox .holder .deal_block .destination-code {
    font-size: 12px;
  }
}
.dynamic-dealBox .holder .deal_block .destination-code .fa-angle-right {
  font-weight: 700;
  margin: 0 2px;
}
.dynamic-dealBox .holder .deal_block .deal-price {
  font-size: 18px;
  color: #2758f4;
  font-weight: 600;
}
@media (max-width: 980px) {
  .dynamic-dealBox .holder .deal_block .deal-price {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .dynamic-dealBox .holder .deal_block .deal-price {
    font-size: 12px;
  }
}
.dynamic-dealBox .holder .deal_block .deal-price-text {
  border-left: 1px solid #dddddd;
  padding-top: 5px;
  padding-bottom: 5px;
}
.tripadvisor {
  position: relative;
  height: 23px;
  display: block;
  width: 123px;
  margin: 0px auto;
  margin-top: 5px;
  margin-bottom: 15px;
}
@media (max-width: 479px) {
  .tripadvisor {
    float: left;
  }
}
.tripadvisor.hotel-payment-tripadvisor {
  margin: 0px 0 0 15px;
}
.tripadvisor img {
  float: left;
  margin-top: -2px;
  margin-right: 6px;
}
span.stars,
span.stars span {
  display: inline-block;
  background: url("../images/hotels/stars.png") 0 -16px repeat-x;
  width: 80px;
  height: 16px;
}
span.stars span {
  background-position: 0 0;
}
span.advisorCircle:before {
  content: "";
  width: 35px;
  height: 22px;
  display: block;
  position: absolute;
  left: -37px;
  top: -3px;
}
span.advisorCircle,
span.advisorCircle span {
  display: inline-block;
  position: relative;
  background: url("../images/hotels/trip_rating.png") 0 -15px repeat-x;
  width: 80px;
  height: 16px;
  float: left;
}
span.advisorCircle span {
  background-position: 0 0;
  float: left;
}
.baggage_protection .small_text {
  font-size: 12px;
}
.baggage_protection a {
  color: #2758f4;
  text-decoration: underline;
}
.baggage_protection a:hover {
  text-decoration: none;
}
.baggage_protection .brb-logo {
  position: absolute;
  right: 0px;
  top: -61px;
  width: 103px;
}
.baggage_protection .contentexpend {
  font-size: 13px;
}
.send-email-popup .modal-content {
  box-shadow: none;
  border: none;
  border-radius: 0px;
}
.send-email-popup.modal.in {
  background: rgba(0, 0, 0, 0.5);
}
.send-email-popup .close_model {
  background: transparent;
  border: none;
  position: absolute;
  right: 8px;
  top: 10px;
}
.send-email-popup .close_model .close_btn_color {
  color: #2758f4;
}
.send-email-popup .close_model .close_btn_color:hover {
  color: #f26722;
}
.send-email-popup .modal-header {
  border: none;
}
.send-email-popup .flight-info img {
  width: 35px;
  display: inline-block;
}
.send-email-popup .flight-info .name {
  text-transform: capitalize;
}
.send-email-popup .leg-details .city {
  width: 96px;
  float: left;
  margin: 0 12px;
}
.send-email-popup .leg-details .code {
  font-size: 22px;
  color: #343434;
  font-weight: bold;
}
.send-email-popup .price {
  font-size: 24px;
  font-weight: 500;
  color: #2758f4;
  line-height: 25px;
}
.send-email-popup .connnecting-block {
  padding: 13px 15px 0 15px;
  float: left;
  width: calc(100% - 255px);
}
.send-email-popup .connnecting-block .leg-points {
  background: #989aa2;
  height: 1px;
  position: relative;
  text-align: center;
  font-size: 12px;
}
.send-email-popup .connnecting-block .leg-points:before,
.send-email-popup .connnecting-block .leg-points:after {
  content: "";
  width: 12px;
  height: 12px;
  display: block;
  position: absolute;
  left: 0px;
  top: -5px;
  border: 2px solid #2758f4;
  border-radius: 100%;
  background: #fff;
}
.send-email-popup .connnecting-block .leg-points:after {
  content: "";
  left: inherit;
  right: 0px;
}
.send-email-popup .connnecting-block .leg-points span {
  font-size: 12px;
  text-align: center;
  width: 85px;
  display: inline-block;
  margin-top: -12px;
  color: #5c5c5c;
  position: relative;
}
.send-email-popup .connnecting-block .leg-points span i:before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  position: unset;
  margin-top: 8px;
  border: 2px solid #2758f4;
  border-radius: 100%;
  background: #2758f4;
}
.send-email-popup .connnecting-block .leg-points .layover-time {
  font-style: normal;
  position: absolute;
  left: 0px;
  top: -13px;
  width: 100%;
}
.send-email-popup .share_itinerary {
  padding: 30px 0;
}
.send-email-popup .share_class_row {
  border-top: 1px solid #e9e9e9;
  padding-top: 5px;
  margin-top: 10px;
}
.send-email-popup .input_text {
  width: calc(100% - 129px);
  float: left;
  padding: 19px 16px;
  font-size: 16px;
  color: #343434;
  border: none;
  background: #e2e2e2;
}
.send-email-popup .submit_button {
  width: 129px;
  border: none;
  padding: 18px 0 17px 0;
  background: #2758f4;
  color: #fff;
  font-size: 18px;
}
.send-email-popup .note_text {
  padding: 30px 0 0 0;
  font-size: 12px;
  color: #8d8d8d;
}
.send-email-popup ::-webkit-input-placeholder {
  color: #979797;
}
.send-email-popup ::-moz-placeholder {
  color: #979797;
}
.send-email-popup :-ms-input-placeholder {
  color: #979797;
}
.send-email-popup :-moz-placeholder {
  color: #979797;
}
.price_down_msg {
  margin: 22px 0 18px;
  font-size: 18px;
  line-height: 27px;
  font-weight: 600;
  text-align: center;
  color: #343434;
}
.custom_popup {
  position: absolute;
  left: 0;
  top: 0px;
  width: 100%;
  height: 100%;
}
.custom_popup .background-overlay {
  background: #fff;
  z-index: 7;
  position: fixed;
  left: 0px;
  top: 0px;
  display: block;
  width: 100%;
  height: 100%;
}
.custom_popup .popup-content {
  padding: 40px;
  overflow: hidden;
  width: 600px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  background: #fff;
  border: 1px solid #ebebeb;
}
.fare_lock_popup .price {
  font-size: 30px;
  font-weight: 700;
  padding: 54px 0 8px 0;
}
.fare_lock_popup .list {
  list-style: none;
  padding-left: 0px;
}
.fare_lock_popup .list li {
  position: relative;
  padding-left: 15px;
  line-height: 24px;
}
.fare_lock_popup .list li:before {
  content: "";
  width: 6px;
  height: 6px;
  background: #2758f4;
  border-radius: 100%;
  display: block;
  position: absolute;
  left: 0px;
  top: 9px;
}
.fare_lock_popup .buttons {
  padding: 20px 0px;
}
.fare_lock_popup .buttons .goback {
  background: #2758f4;
  color: #fff;
  border: none;
}
.fare_lock_popup .buttons .continue {
  background: #cecece;
  color: #fff;
  border: none;
  width: 190px;
  display: inline-block;
  padding: 17px;
  font-size: 18px;
  text-decoration: none;
}
.fare_lock_popup .buttons .continue.active {
  background: #2758f4;
}
.fare_lock_popup .close_model {
  width: 25px;
  height: 25px;
  background: url(../images/svg/close.png) left top no-repeat;
  border: none;
  position: absolute;
  right: 15px;
  top: 15px;
}
.lock-icon {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0px auto;
}
.lock-icon:before {
  content: "";
  width: 60px;
  height: 60px;
  background: url(../images/svg/lock-icon-mid.png) no-repeat center center;
  animation: none;
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
}
.call-bottom-mob {
  background: #fff url(../images/call-banner-bg.png) no-repeat right -80px center;
  width: 100%;
  height: 70px;
  position: fixed;
  bottom: -170px;
  left: 0;
  margin: 0px;
  box-shadow: 0px 0px 8px 0px #000;
  z-index: 12;
  background-color: #fff;
}
@media (max-width: 479px) {
  .call-bottom-mob {
    padding-top: 0px;
  }
  .right h5{
    margin-top: 3px;
    margin-bottom: 0px;
}
}
.call-bottom-mob h4 {
  text-align: center;
  color: #000;
  font-size: 16px;
  margin: 10px 0 0 0;
  padding: 0px;
  display: block;
}
@media (max-width: 479px) {
  .call-bottom-mob h4 {
    font-size: 12px;
  }
}
.call-bottom-mob .call {
  font-size: 32px;
  text-align: center;
  margin: 0;
  color: #2758f4;
  font-weight: 900;
  display: block;
}
@media (max-width: 479px) {
  .call-bottom-mob .call {
    font-size: 25px;
  }
}
.call-bottom-mob .call_image {
  position: absolute;
  top: 4px;
  left: 9px;
  background: url(../images/call-image9996.png?1235) no-repeat;
  background-size: 100%;
  width: 65px;
  height: 65px;
  display: block;
}
.call-bottom-mob .close_call_banner {
  position: absolute;
  right: 5px;
  top: 4px;
  color: #000;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  font-size: 23px;
}
.call-bottom-mob .right {
  width: 80%;
  float: right;
}
.check-my-booking .submit_button {
  padding: 10px 30px;
}
.check-my-booking .submit_button.margin-top24 {
  margin-top: 24px;
}
@media (max-width: 767px) {
  .check-my-booking .submit_button.margin-top24 {
    margin: 0px;
  }
}
.check-my-booking .or-text {
  margin-top: 35px;
}
@media (max-width: 767px) {
  .check-my-booking .or-text {
    margin-top: 0px;
    text-align: center;
    width: 30px;
    margin: 0px auto;
    height: 30px;
    line-height: 30px;
    border-radius: 100%;
    background: #2758f4;
    color: #fff;
  }
}
.check-my-booking .booking-data th {
  background: #2758f4;
  color: #fff;
  white-space: nowrap;
  text-align: center;
}
.check-my-booking .booking-data td {
  vertical-align: middle;
}
.check-my-booking .form_title {
  position: relative;
  padding: 10px 0 10px 55px;
  margin: 15px 0;
}
@media (max-width: 767px) {
  .check-my-booking .form_title {
    padding: 5px 0 10px 44px;
  }
}
.check-my-booking .form_title strong {
  background-color: #ff7f00;
  width: 40px;
  height: 40px;
  display: inline-block;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  line-height: 40px;
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
}
@media (max-width: 767px) {
  .check-my-booking .form_title strong {
    width: 34px;
    height: 34px;
    line-height: 36px;
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .check-my-booking .form_title h3 {
    font-size: 15px;
  }
}
.check-my-booking .width3 {
  width: 3%;
}
@media (max-width: 767px) {
  .check-my-booking .width3 {
    width: 100%;
  }
}
.check-my-booking .width13 {
  width: 13%;
}
@media (max-width: 767px) {
  .check-my-booking .width13 {
    width: 100%;
  }
}
.check-my-booking .contactBox {
  padding: 20px 0 20px 0;
}
.his-format {
  margin-top: 32px;
}
@media (max-width: 767px) {
  .his-format {
    margin-top: 0px;
    margin-bottom: 18px;
  }
}
@media (max-width: 767px) {
  .noresults_checkmybooking h2 {
    font-size: 18px;
    margin: 0px;
  }
}
.commonpopup {
  background-color: rgba(0, 0, 0, 0.75);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  overflow-y: auto;
}
.commonpopup .center-block {
  width: 100%;
  height: 100%;
  z-index: 1001;
  display: table;
  table-layout: fixed;
}
.commonpopup .outer {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  padding: 40px 0;
}
.ucBanner_new {
  width: 600px;
  z-index: 7;
  position: relative;
  margin: 0px auto;
  background: #fff;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .ucBanner_new {
    width: 430px;
  }
}
@media (max-width: 479px) {
  .ucBanner_new {
    width: 300px;
    border-radius: 10px;
  }
}
.ucBanner_new .left {
  width: 236px;
  float: left;
  position: relative;
}
@media (max-width: 767px) {
  .ucBanner_new .left {
    width: 100%;
  }
}
.ucBanner_new .left .site_logo {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 86px;
}
@media (max-width: 479px) {
  .ucBanner_new .left .site_logo {
    left: 5px;
    top: 5px;
    width: 60px;
  }
}
.ucBanner_new .left .desktop_image {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.ucBanner_new .left .mobile_img {
  width: 100%;
}
.ucBanner_new .right {
  padding: 13px 22px;
  width: calc(100% - 236px);
  float: left;
}
@media (max-width: 767px) {
  .ucBanner_new .right {
    width: 100%;
  }
}
@media (max-width: 479px) {
  .ucBanner_new .right {
    padding: 13px 15px;
  }
}
.list-count-banner .close-btn {
  background: #fff;
  width: 32px;
  height: 32px;
  line-height: 28px;
  position: absolute;
  top: -15px;
  right: -15px;
  text-align: center;
  border-radius: 100%;
  box-shadow: 1px 1px 1px #333;
  font-size: 26px;
  cursor: pointer;
  z-index: 1;
  color: #888888;
}
@media (max-width: 479px) {
  .list-count-banner .close-btn {
    font-size: 19px;
    width: 22px;
    height: 22px;
    line-height: 22px;
    top: -10px;
    right: -6px;
  }
}
.list-count-banner .top-head {
  width: 100%;
  font-size: 13px;
  color: #3663f4;
}
.list-count-banner .top-head .lto {
  font-size: 13px;
  color: #3b3b3b;
}
@media (max-width: 479px) {
  .list-count-banner .top-head .lto {
    font-size: 11px;
  }
}
.list-count-banner .top-head .clock_timer {
  font-size: 30px;
  font-weight: 600;
  line-height: 29px;
}
@media (max-width: 767px) {
  .list-count-banner .top-head .clock_timer {
    font-size: 26px;
    line-height: 21px;
  }
}
@media (max-width: 479px) {
  .list-count-banner .top-head .clock_timer {
    font-size: 17px;
  }
}
.list-count-banner .special-fare {
  padding: 11px 0;
  width: 100%;
}
@media (max-width: 479px) {
  .list-count-banner .special-fare {
    padding: 8px 0px;
  }
}
.list-count-banner .special-fare .price-text {
  font-size: 28px;
  color: #2758f4;
  float: right;
  line-height: 24px;
}
@media (max-width: 767px) {
  .list-count-banner .special-fare .price-text {
    font-size: 22px;
    line-height: 22px;
  }
}
.list-count-banner .special-fare .peradult {
  font-size: 12px;
  line-height: 14px;
  color: #3b3b3b;
}
.list-count-banner .special-fare .special-txt .city_name_full {
  font-size: 28px;
  color: #2758f4;
  font-weight: 700;
  line-height: 24px;
}
@media (max-width: 767px) {
  .list-count-banner .special-fare .special-txt .city_name_full {
    font-size: 22px;
    line-height: 22px;
  }
}
.list-count-banner .special-fare .special-txt .special {
  color: #3b3b3b;
  font-size: 12px;
  line-height: 14px;
}
.list-count-banner .triptype {
  font-size: 13px;
  color: #717171;
  padding-bottom: 10px;
}
@media (max-width: 479px) {
  .list-count-banner .triptype {
    font-size: 11px;
    padding-bottom: 4px;
  }
}
.list-count-banner .call-btn {
  width: 100%;
}
.list-count-banner .call-btn a {
  white-space: nowrap;
  display: inline-block;
  border-radius: 3px;
  background: #2758f4;
  color: #fff;
  width: 100%;
  text-align: center;
  text-decoration: none;
  padding: 11px;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 5px;
}
@media (max-width: 479px) {
  .list-count-banner .call-btn a {
    font-size: 16px;
  }
}
.list-count-banner .call-btn a img {
  margin: 0 5px;
}
.list-count-banner .btm-txt {
  color: #a2a2a2;
  font-size: 10px;
  text-align: center;
}
@media (max-width: 479px) {
  .list-count-banner .btm-txt {
    font-size: 8px;
  }
}
.list-count-banner .itenerary-section {
  position: relative;
}
.list-count-banner .itenerary-section .city-code {
  color: #3b3b3b;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 479px) {
  .list-count-banner .itenerary-section .city-code {
    font-size: 11px;
  }
}
.list-count-banner .itenerary-section .city-code b {
  font-size: 22px;
  display: block;
}
@media (max-width: 479px) {
  .list-count-banner .itenerary-section .city-code b {
    font-size: 20px;
  }
}
.list-count-banner .itenerary-section .trip-type-arrow {
  border-bottom: 1px dotted #6e8ff7;
  display: block;
  width: 50%;
  position: absolute;
  left: 25%;
  top: 52%;
}
.list-count-banner .itenerary-section .trip-type-icon {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
}
.list-count-banner .city_full_name_div {
  font-size: 12px;
  color: #717171;
  padding: 6px 0 8px 0;
}
@media (max-width: 479px) {
  .list-count-banner .city_full_name_div {
    font-size: 11px;
  }
}
.list-count-banner .trustpilot {
  display: flex;
  justify-content: center;
  align-items: center;
}
.list-count-banner .trustpilot .t-logo {
  display: inline-block;
  width: 100px;
  vertical-align: middle;
}
.list-count-banner .trustpilot .t-rating {
  display: inline-block;
  text-align: center;
  font-size: 12px;
  width: 110px;
  vertical-align: middle;
}
.list-count-banner .trustpilot .tp-rating .rating {
  font-size: 11px;
  color: #333;
}
.list-count-banner .trustpilot .review_total.excellent {
  font-size: 11px;
}
@media (max-width: 767px) {
  .list-count-banner .trustpilot {
    font-size: 13px;
  }
}
.list-count-banner .trustpilot img {
  vertical-align: middle;
}
@media (max-width: 767px) {
  .list-count-banner .trustpilot img {
    margin-bottom: 4px;
  }
}
.count-top-icon {
  position: fixed;
  bottom: 10px;
  left: 10px;
  border-radius: 12px;
  padding: 10px 14px;
  color: #fff;
  background: #2758f4;
  font-weight: 700;
  transition: width 2s;
  box-shadow: 0px 3px 6px #00000029;
  -webkit-transition: width 2s;
  cursor: pointer;
}
@media (max-width: 767px) {
  .count-top-icon {
    width: auto;
    padding: 6px;
  }
}
.count-top-icon .strip-content {
  font-size: 20px;
  text-align: center;
  font-weight: 400;
}
@media (max-width: 767px) {
  .count-top-icon .strip-content {
    font-size: 17px;
  }
}
.count-top-icon .Timer {
  font-weight: 400;
  font-size: 16px;
  border-left: 1px solid #fff;
  padding-left: 7px;
  margin-left: 5px;
  text-transform: lowercase;
}
.model-open {
  overflow: hidden;
}
@media only screen and (min-width: 1330px) {
  .rightCntr {
    width: 870px;
  }
}
.trustpilot-wraper {
  background: #eee;
  padding: 30px 0;
}
@media (max-width: 767px) {
  .trustpilot-wraper {
    padding: 10px 0;
  }
}
.trustpilot-wraper .trustpilot-content {
  color: #484848;
  position: relative;
}
.trustpilot-wraper .trustpilot-content .title h4 {
  font-size: 16px;
  color: #222;
  margin-top: 0;
}
@media (max-width: 479px) {
  .trustpilot-wraper .trustpilot-content .title h4 {
    font-size: 18px;
  }
}
.trustpilot-wraper .trustpilot-content .title h4 img {
  margin: -15px 5px 0 0;
  width: 150px;
  display: inline-block;
}
@media (max-width: 479px) {
  .trustpilot-wraper .trustpilot-content .title h4 img {
    width: 100px;
  }
}
.trustpilot-wraper .trustpilot-content .title p {
  font-size: 16px;
  margin-bottom: 10px;
}
@media (max-width: 479px) {
  .trustpilot-wraper .trustpilot-content .title p {
    font-size: 12px;
  }
}
.trustpilot-wraper .trustpilot-content .title .right {
  float: right;
}
@media (max-width: 767px) {
  .trustpilot-wraper .trustpilot-content .title .right {
    float: none;
  }
}
.trustpilot-wraper .trustpilot-content .total-review {
  text-align: right;
}
.trustpilot-wraper .trustpilot-content .total-review img {
  margin-bottom: 5px;
  width: 150px;
}
@media (max-width: 479px) {
  .trustpilot-wraper .trustpilot-content .total-review img {
    width: 100px;
  }
}
.trustpilot-wraper .trustpilot-content .total-review a {
  color: #222;
  text-decoration: underline;
  font-weight: bold;
  display: block;
}
.trustpilot-wraper .trustpilot-content .tp-home-slider {
  position: relative;
}
.trustpilot-wraper .trustpilot-content .tp-home-slider .slick-prev,
.trustpilot-wraper .trustpilot-content .tp-home-slider .slick-next {
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 25px;
}
.trustpilot-wraper .trustpilot-content .tp-home-slider .slick-prev {
  left: -20px;
}
.trustpilot-wraper .trustpilot-content .tp-home-slider .slick-prev:before {
  font-family: "FontAwesome";
  content: "\f104";
}
.trustpilot-wraper
  .trustpilot-content
  .tp-home-slider
  .slick-prev.slick-disabled {
  display: none !important;
}
.trustpilot-wraper .trustpilot-content .tp-home-slider .slick-next {
  right: -20px;
}
.trustpilot-wraper .trustpilot-content .tp-home-slider .slick-next:before {
  font-family: "FontAwesome";
  content: "\f105";
}
.trustpilot-wraper
  .trustpilot-content
  .tp-home-slider
  .slick-next.slick-disabled {
  display: none !important;
}
.trustpilot-wraper .review-block {
  background: #fff;
  padding: 15px 22px;
  box-shadow: 0 0 5px #d5d5d5;
  font-size: 14px;
  min-height: 133px;
  margin: 4px 4px 0px 4px;
  float: left;
}
@media (max-width: 980px) {
  .trustpilot-wraper .review-block {
    margin-bottom: 15px;
  }
}
@media (max-width: 479px) {
  .trustpilot-wraper .review-block {
    font-size: 12px;
    min-height: 110px;
    padding: 10px;
    margin-bottom: 10px;
  }
}
.trustpilot-wraper .review-block .name {
  font-weight: bold;
  color: #222;
}
.trustpilot-wraper .review-block .txt {
  line-height: 1.5em;
  margin: 0;
}
.trustpilot-wraper .review-block .read-more {
  text-decoration: underline;
  font-weight: bold;
}
.trustpilot-wraper .review-block .read-more:hover {
  color: #00b67a;
}
.trustpilot-wraper .review-block .rating-strip {
  overflow: hidden;
  padding-bottom: 10px;
}
.trustpilot-wraper .review-block .rating-strip .time {
  float: right;
  color: #888;
  margin-top: 10px;
  font-size: 12px;
}
.trustpilot-wraper .review-block .rating-strip .first-letter {
  background: #0c1129;
  color: #fff;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  font-size: 20px;
  border-radius: 50%;
  position: absolute;
}
.trustpilot-wraper .slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.trustpilot-wraper.trustpilot_list {
  padding: 10px;
  margin-bottom: 20px;
  background: #e9f1e4;
}
.trustpilot-wraper.trustpilot_list .title {
  margin-top: 12px;
}
@media (max-width: 767px) {
  .trustpilot-wraper.trustpilot_list .title {
    margin-top: 0px;
    margin-bottom: 10px;
  }
}
.trustpilot-wraper.trustpilot_list .title h4 {
  margin-top: 10px;
  color: #2758f4;
  font-weight: 700;
}
@media (max-width: 767px) {
  .trustpilot-wraper.trustpilot_list .title h4 {
    display: inline-block;
  }
}
.trustpilot-wraper.trustpilot_list .review_total {
  margin-top: 10px;
}
@media (max-width: 767px) {
  .trustpilot-wraper.trustpilot_list .review_total {
    display: inline-block;
    font-size: 11px;
  }
}
.trustpilot-wraper.trustpilot_list .review-block {
  padding: 6px 16px;
  font-size: 13px;
  min-height: 110px;
  overflow: hidden;
  width: 49%;
  float: left;
  margin: 0px 2px 0px 0;
  box-shadow: none;
}
.trustpilot-wraper.trustpilot_list .slick-prev,
.trustpilot-wraper.trustpilot_list .slick-next {
  width: 30px;
  height: 30px;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 700;
}
.trustpilot-wraper.trustpilot_list .slick-prev {
  left: -18px;
}
.trustpilot-wraper.trustpilot_list .slick-prev:before {
  font-family: "FontAwesome";
  content: "\f104";
}
.trustpilot-wraper.trustpilot_list .slick-prev.slick-disabled {
  display: none !important;
}
.trustpilot-wraper.trustpilot_list .slick-next {
  right: -12px;
}
.trustpilot-wraper.trustpilot_list .slick-next:before {
  font-family: "FontAwesome";
  content: "\f105";
}
.trustpilot-wraper.trustpilot_list .slick-next.slick-disabled {
  display: none !important;
}
.tp-rating.position {
  width: 100%;
  padding: 3px 0 0 45px;
}
.tp-rating i {
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  color: #fff;
  display: block;
  margin-right: 2px;
  float: left;
  background: #d6d6d6;
}
.tp-rating.one i:first-child {
  background: red;
}
.tp-rating.two i:nth-last-child(n + 4) {
  background: #ff8622;
}
.tp-rating.three i:nth-last-child(n + 3) {
  background: #ffce00;
}
.tp-rating.four i:nth-last-child(n + 2) {
  background: #73cf11;
}
.tp-rating.five i {
  background: #00b67a;
}
.tp-rating.bigStar i {
  width: 30px;
  height: 30px;
  display: inline-block;
  float: none;
  font-size: 19px;
  line-height: 32px;
}
.tp-rating .rating {
  font-size: 17px;
  color: #2758f4;
  font-weight: bold;
}
.bigStar {
  float: left;
  height: 28px;
  margin-right: 5px;
}
.review_link {
  text-decoration: none;
  color: #222;
}
.review_link:hover {
  text-decoration: none;
}
.trust-score {
  display: inline-block;
  background: #0c1129;
  color: #fff;
  padding: 2px 5px;
}
.tp-full-review {
  position: absolute;
  top: 0px;
  left: 0;
  background: #fff;
  border: 1px solid #e8e8e8;
  padding: 13px 10px;
  font-size: 13px;
  width: 100%;
  z-index: 1;
  box-shadow: 0 0 5px #d5d5d5;
}
@media (max-width: 479px) {
  .tp-full-review {
    top: -31px;
  }
}
.close_readmoreTp {
  position: absolute;
  right: -6px;
  top: -9px;
  background: #2758f4;
  color: #fff;
  text-decoration: none;
  padding: 5px;
  border-radius: 100%;
  width: 22px;
  height: 22px;
  line-height: 15px;
  text-align: center;
  cursor: pointer;
}
.close_readmoreTp:hover {
  color: #fff;
}
.insurance_contentlist {
  list-style: none;
  padding: 10px 0px;
}
.insurance_contentlist li {
  width: 100%;
  padding: 4px 0 4px 20px;
  position: relative;
  background: url(../images/insurance/check.png) left 9px no-repeat;
}
@media (max-width: 767px) {
  .insurance_contentlist li {
    font-size: 13px;
  }
}
.insurance_price {
  padding-bottom: 20px;
  font-size: 16px;
  color: #000;
}
.insurance_price strong {
  font-size: 28px;
  color: #0739da;
}
@media (max-width: 767px) {
  .insurance_price strong {
    font-size: 23px;
  }
}
.tripmate-image {
  float: right;
}
@media (max-width: 767px) {
  .tripmate-image img {
    width: 70px;
  }
}
.trip_protection_strip {
  position: absolute;
  right: 0px;
  top: 28px;
  font-size: 13px;
}
.trip_protection_strip span {
  color: #2758f4;
  padding: 0 3px;
  display: inline-block;
  font-weight: 700;
  font-size: 11px;
}
.trip_protection_strip strong {
  color: #343434;
}
.fare-protection-plan {
  color: #343434;
  font-size: 13px;
  padding: 10px 0 15px;
  line-height: 2em;
}
@media (max-width: 479px) {
  .fare-protection-plan {
    font-size: 12px;
    white-space: nowrap;
  }
}
.tripmatContent {
  background-color: #fff;
  overflow: hidden;
  color: #343434;
  padding: 5px;
  position: relative;
  width: 100%;
}
.tripmatContent p {
  padding: 10px 0px 5px 0px;
  margin: 0px;
  font-size: 15px;
  line-height: 26px;
}
.tripmatContent .data {
  margin-bottom: 20px;
}
.data table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}
.data th,
.data td {
  padding: 10px;
  text-align: left;
  border: 1px solid #c2c2c2;
  overflow: hidden;
}
.data th {
  background: #fff;
  color: #343434;
  font-size: 16px;
  font-weight: 600;
}
.insurance_header {
  padding: 10px 0;
  overflow: hidden;
}
.bodybg {
  background: #f5f5f5;
  padding: 20px 0;
  width: 100%;
  overflow: hidden;
}
.close_window {
  background: #2758f4;
  width: 100%;
  line-height: 50px;
  font-size: 18px;
  color: #fff;
}
.close_window .back_btn {
  width: 50px;
  margin-right: 15px;
  font-size: 18px;
  float: left;
  opacity: 1;
  background: 0 0;
  border: none;
  border-right: 1px solid #fff;
  height: 52px;
}
.close_window .close_btn {
  width: 50px;
  float: right;
  opacity: 1;
  background: 0 0;
  border: none;
  border-left: 1px solid #fff;
}
.brbblock {
  border: 1px solid #ccc;
  padding: 10px 5px;
  border-radius: 5px;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .brbblock {
    padding: 10px 0px;
    border: none;
    border-bottom: 1px solid #ccc;
    margin-bottom: 0px;
    border-radius: 0px;
  }
}
.brbblock strong {
  font-size: 16px;
}
.brbblock .text {
  font-size: 11px;
}
ul.radio-black.inputSet label input[type="radio"]:checked ~ span.text {
  color: #343434;
}
@media (max-width: 767px) {
  .baggage_protection .radiolist li {
    display: block;
  }
}
.baggage_protection .radiolist li:last-child {
  margin-top: 10px;
}
.no-padding-lg-left {
  padding-left: 0px;
}
@media (max-width: 767px) {
  .mb-sm-1 {
    margin-bottom: 8px;
  }
}
.covid-note {
  border: 1px solid #92aaf9;
  padding: 5px 10px;
  margin: 0 0 10px;
  background: #dee6fd;
  width: 78%;
}
@media (max-width: 479px) {
  .covid-note {
    font-size: 12px;
  }
}
.flight_soldout .button {
  margin: 20px 0;
  display: inline-block;
}
.flight_soldout .fa-plane {
  font-size: 35px;
  transform: rotate(45deg);
}
.flight_soldout .plan_icon {
  border: 1px solid #ccc;
  display: inline-block;
  border-radius: 100%;
  width: 60px;
  height: 60px;
  line-height: 76px;
}
.blockBox .show-hide {
  color: #2758f4;
  font-size: 15px;
  position: absolute;
  top: 13px;
  right: 35px;
  font-weight: normal;
  display: none;
  padding: 0px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .blockBox .show-hide {
    right: 25px;
    font-size: 14px;
    color: #fff;
  }
}
.blockBox .show-hide:hover,
.blockBox .show-hide:focus {
  color: #2758f4;
}
@media (max-width: 767px) {
  .blockBox .show-hide:hover,
  .blockBox .show-hide:focus {
    color: #fff;
  }
}
.blockBox .show-hide:before {
  content: "\f107";
  color: #2758f4;
  font-family: "FontAwesome";
  position: absolute;
  right: -15px;
}
@media (max-width: 767px) {
  .blockBox .show-hide:before {
    color: #fff;
  }
}
.blockBox .show-hide.active:before {
  content: "\f106";
  color: #2758f4;
  font-family: "FontAwesome";
  position: absolute;
  right: -15px;
}
@media (max-width: 767px) {
  .blockBox .show-hide.active:before {
    color: #fff;
  }
}
.tcp_selected_image {
  float: right;
  margin: -15px 0 8px 0;
}
@media (max-width: 767px) {
  .tcp_selected_image {
    margin-top: 7px;
  }
}
.removeTcp_price {
  font-size: 11px;
  padding: 4px;
  border: 1px solid #4863db;
  margin-left: 5px;
  border-radius: 3px;
}
.tcp_greatChoise {
  font-size: 14px;
  line-height: 24px;
}
@media (max-width: 767px) {
  .tcp_greatChoise {
    font-size: 14px;
    padding-top: 10px;
    padding-right: 68px;
  }
}
.tcp_contentBox p.tcp_text_black {
  font-size: 16px;
  color: #4b4b4b;
  margin: 10px 0 45px 0;
}
@media (max-width: 767px) {
  .tcp_contentBox p.tcp_text_black {
    padding-right: 50px;
    font-size: 14px;
    margin-bottom: 20px;
  }
}
@media (max-width: 479px) {
  .tcp_contentBox p.tcp_text_black {
    font-size: 13px;
  }
}
.tcp_contentBox .tcp_image {
  float: right;
}
@media (max-width: 479px) {
  .tcp_contentBox .tcp_image {
    width: 65px;
  }
}
.tcp_contentBox .tcp_plan table tr th:first-child,
.tcp_contentBox .tcp_plan table tr td:first-child {
  text-align: left;
}
.tcp_contentBox .tcp_plan table tr td.pd-top {
  padding-top: 20px;
}
.tcp_contentBox .tcp_plan table tr td {
  border: none;
  text-align: center;
  vertical-align: middle;
  padding: 8px 0px;
  font-size: 13px;
  color: #49575c;
}
.tcp_contentBox .tcp_plan table tr td strong {
  font-size: 15px;
  color: #4b4b4b;
  display: block;
}
@media (max-width: 767px) {
  .tcp_contentBox .tcp_plan table tr td strong {
    font-size: 14px;
  }
}
.tcp_contentBox .tcp_plan table tr td strong sup {
  width: 5px;
  height: 5px;
  background: #0ac775;
  border-radius: 100%;
  display: inline-block;
}
@media (max-width: 767px) {
  .tcp_contentBox .tcp_plan table tr td {
    font-size: 12px;
  }
}
.tcp_contentBox .tcp_plan .tdwidth {
  width: 185px;
  text-align: center;
}
@media (max-width: 767px) {
  .tcp_contentBox .tcp_plan .tdwidth {
    width: 100px;
  }
}
.tcp_contentBox .tcp_plan .heading {
  padding: 6px 0px 15px;
  font-size: 18px;
}
@media (max-width: 767px) {
  .tcp_contentBox .tcp_plan .heading {
    font-size: 15px;
    padding-bottom: 10px;
  }
}
.tcp_contentBox .tcp_plan .tcp_price strong {
  font-size: 24px;
}
@media (max-width: 767px) {
  .tcp_contentBox .tcp_plan .tcp_price strong {
    font-size: 18px;
  }
}
.tcp_contentBox .tcp_plan .selected-btn {
  background: #bbb;
  padding: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  width: 138px;
  display: inline-block;
  text-decoration: none;
  cursor: default;
  margin-top: 10px;
  border-radius: 3px;
}
@media (max-width: 767px) {
  .tcp_contentBox .tcp_plan .selected-btn {
    width: 75px;
    font-size: 12px;
  }
}
.tcp_contentBox .tcp_plan .selected-btn:hover {
  text-decoration: none;
}
.tcp_contentBox .tcp_plan .selected-btn.active {
  background: #2758f4;
  color: #fff;
  border-color: #2758f4;
  margin-left: 0;
  cursor: pointer;
}
.tcp_contentBox .tcp_plan .learn-more {
  color: #2758f4;
  font-size: 15px;
  position: relative;
}
@media (max-width: 767px) {
  .tcp_contentBox .tcp_plan .learn-more {
    font-size: 12px;
  }
}
.tcp_contentBox .tcp_plan .learn-more:before {
  content: "\f106";
  color: #2758f4;
  font-family: "FontAwesome";
  position: absolute;
  right: -15px;
}
@media (max-width: 767px) {
  .tcp_contentBox .tcp_plan .learn-more:before {
    right: -13px;
  }
}
.tcp_contentBox .tcp_plan .learn-more.collapsed:before {
  content: "\f107";
  color: #2758f4;
  font-family: "FontAwesome";
  position: absolute;
  right: -15px;
}
@media (max-width: 767px) {
  .tcp_contentBox .tcp_plan .learn-more.collapsed:before {
    right: -13px;
  }
}
.tcp_contentBox .learn-more-content {
  padding-right: 15px;
}
.tcp_contentBox .learn-more-content .tab-content {
  padding-top: 15px;
}
@media (max-width: 767px) {
  .tcp_contentBox .learn-more-content .tab-content {
    font-size: 12px;
  }
}
.tcp_contentBox .learn-more-content .tab-content p {
  line-height: 22px;
}
.tcp_contentBox .learn-more-content .nav-tabs {
  margin-left: 0;
}
.tcp_contentBox .learn-more-content .nav-tabs li {
  margin-right: 20px;
}
@media (max-width: 767px) {
  .tcp_contentBox .learn-more-content .nav-tabs li {
    margin-right: 10px;
  }
}
.tcp_contentBox .learn-more-content .nav-tabs li a {
  background: none !important;
  border: 0;
  padding-left: 0;
  padding-right: 0;
  color: #4b4b4b;
  cursor: pointer;
  font-size: 14px;
}
@media (max-width: 767px) {
  .tcp_contentBox .learn-more-content .nav-tabs li a {
    font-size: 13px;
  }
}
@media (max-width: 479px) {
  .tcp_contentBox .learn-more-content .nav-tabs li a {
    font-size: 11px;
  }
}
.tcp_contentBox .learn-more-content .nav-tabs li.active {
  border-bottom: 2px solid #4b4b4b;
}
.tcp_contentBox .learn-more-content .nav-tabs li.active a {
  font-weight: 700;
}
.tcp_contentBox .learn-more-content .brb-list li {
  line-height: 22px;
  margin-bottom: 9px;
}
@media (max-width: 767px) {
  .tcp_contentBox .learn-more-content .tab-pane {
    padding: 0px !important;
  }
}
.toster_anceliry {
  max-width: 560px;
  background: #019df4;
  border-radius: 3px;
  padding: 10px;
  position: fixed;
  left: 50%;
  top: 50px;
  z-index: 9;
  color: #fff;
  transform: translateX(-50%);
  -webkit-animation: mymove 5s;
  animation: mymove 2s;
}
@media (max-width: 767px) {
  .toster_anceliry {
    width: 95%;
  }
}
.toster_anceliry img {
  float: left;
}
.toster_anceliry p {
  float: left;
  padding-left: 22px;
  border-left: 1px solid #fff;
  font-size: 15px;
  font-weight: 400;
  width: calc(100% - 60px);
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .toster_anceliry p {
    font-size: 12px;
    padding-left: 10px;
  }
}
.toster_anceliry .toster-closebtn {
  float: right;
  color: #fff;
  padding: 0 5px;
  font-size: 14px;
  font-weight: 100;
  margin: 0;
}
.ancillary_block {
  font-size: 13px;
  position: relative;
}
.ancillary_block .w-heading {
  font-weight: 700;
  color: #2758f4;
}
.ancillary_block .benefits {
  list-style: none;
}
.ancillary_block .benefits ul {
  list-style: none;
  padding: 30px 0 0 0;
  overflow: hidden;
}
@media (max-width: 479px) {
  .ancillary_block .benefits ul {
    padding: 0px;
  }
}
.ancillary_block .benefits ul li {
  width: 50%;
  float: left;
  padding: 5px 10px 5px 18px;
  position: relative;
  background: url(../images/insurance/check.png) left 8px no-repeat;
}
@media (max-width: 767px) {
  .ancillary_block .benefits ul li {
    width: 100%;
  }
}
.ancillary_block .benefits ul.rf-list {
  padding-top: 10px;
}
.ancillary_block .ribin {
  position: absolute;
  right: 0px;
  top: 25px;
  background: #1eb41c;
  font-size: 12px;
  color: #fff;
  display: inline-block;
  padding: 6px 25px 5px 14px;
}
.ancillary_block .ribin:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0px;
  display: block;
  border: 13px solid #1eb41c;
  z-index: 0;
  border-left-width: 5px;
  border-right-color: #fff;
}
@media (max-width: 767px) {
  .ancillary_block .ribin {
    position: relative;
    top: 0px;
  }
}
.ancillary_block .check-inList {
  width: 75%;
  float: left;
}
@media (max-width: 479px) {
  .ancillary_block .check-inList {
    width: 100%;
  }
}
.ancillary_block .webcheckin-image {
  width: 20%;
  float: right;
}
@media (max-width: 479px) {
  .ancillary_block .webcheckin-image {
    width: 24%;
    position: relative;
  }
}
.ancillary_block .webcheckin-image img {
  width: 100%;
}
@media (max-width: 479px) {
  .ancillary_block .webcheckin-image img {
    position: absolute;
    right: 0px;
    top: -32px;
  }
}
.ancillary_block .imp-note {
  font-size: 12px;
  color: #8a8a8a;
}
.ancillary_block .checkbox-upselling .custom-checkbox {
  padding-top: 0px;
  margin-bottom: 11px;
}
.ancillary_block .total-price {
  font-size: 20px;
  padding-top: 15px;
}
.ancillary_block .total-price small {
  font-size: 12px;
}
.ancillary_block .learn-more-content {
  padding-top: 10px;
}
.ancillary_block .learn-more {
  color: #2758f4;
  font-size: 15px;
  position: relative;
}
@media (max-width: 767px) {
  .ancillary_block .learn-more {
    font-size: 12px;
  }
}
.ancillary_block .learn-more:before {
  content: "\f106";
  color: #2758f4;
  font-family: "FontAwesome";
  position: absolute;
  right: -15px;
}
@media (max-width: 767px) {
  .ancillary_block .learn-more:before {
    right: -13px;
  }
}
.ancillary_block .learn-more.collapsed:before {
  content: "\f107";
  color: #2758f4;
  font-family: "FontAwesome";
  position: absolute;
  right: -15px;
}
@media (max-width: 767px) {
  .ancillary_block .learn-more.collapsed:before {
    right: -13px;
  }
}
.ancillary_block .learn-more-details {
  padding-top: 15px;
  padding-bottom: 10px;
}
.ancillary_block .learn-more-details ul {
  list-style: none;
  padding: 0px;
}
.ancillary_block .learn-more-details ul li {
  color: #333;
  position: relative;
  margin-bottom: 5px;
  padding: 0px 0 0px 18px;
  background: url(../images/insurance/check.png) left 1px no-repeat;
}
.ancillary_block #refundTxt .tab-content {
  padding-top: 15px;
}
.ancillary_block #refundTxt .nav-tabs li {
  margin: 0px 20px 0 0;
  padding: 0px;
  background: none;
}
.ancillary_block #refundTxt .nav-tabs li a {
  background: none !important;
  border: 0;
  padding-left: 0;
  padding-right: 0;
  color: #4b4b4b;
  cursor: pointer;
  font-size: 14px;
}
.ancillary_block #refundTxt .nav-tabs li.active {
  border-bottom: 2px solid #4b4b4b;
  font-weight: 700;
}
.radioSet {
  padding: 15px 0px;
}
.radioSet label {
  text-transform: none;
  padding: 8px 27px 8px 10px;
  border: 1px solid #ccc;
  display: block;
}
@media (max-width: 767px) {
  .radioSet label {
    margin-bottom: 10px;
  }
}
.radioSet .radio-in {
  padding-left: 27px;
  position: relative;
}
.baggage_note {
  font-size: 12px;
  color: #8a8a8a;
}
.refund-subtital {
  font-size: 14px;
  color: #1a58c4;
  background: #f1f8fd;
  border-left: 3px solid #4f8ffc;
  padding: 10px 10px 10px 15px;
  margin: 10px 0;
  clear: both;
}
@media (max-width: 767px) {
  .refund-subtital {
    font-size: 12px;
  }
}
.covid-txt {
  font-size: 14px;
  color: #2ba23b;
  background: #b8f3c0;
  padding: 10px 10px 10px 23px;
  margin-bottom: 10px;
  position: relative;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .covid-txt {
    font-size: 12px;
  }
}
.covid-txt a {
  color: #2ba23b;
  font-weight: 600;
  text-decoration: underline;
}
.highlited-orange {
  font-weight: 600;
  font-size: 16px;
  padding: 0 0 10px;
}
@media (max-width: 767px) {
  .highlited-orange {
    font-size: 13px;
  }
}
.highlited-orange span {
  color: #ff6e03;
}
.ancillary_block .benefits ul li.moreList {
  width: auto;
  background: none;
  padding: 0px;
}
.ancillary_block .benefits ul li.moreList ul {
  padding: 0px;
}
.covid-information {
  display: none;
}
.showbeforeseatmap .subhead strong {
  color: #1daf1b;
}
.ancillary_block .benefits ul li.manymore {
  background: none;
  color: #2758f4;
  cursor: pointer;
}
.checkedbag_Box {
  overflow: inherit;
}
.checkedbag_Box .subhead {
  font-size: 13px;
  font-weight: 700;
  margin: 10px 0;
  color: #2758f4;
}
@media (max-width: 479px) {
  .checkedbag_Box .subhead {
    font-size: 13px;
    margin: 0px;
  }
}
.checkedbag_Box .note_text {
  font-size: 12px;
  color: #8a8a8a;
}
.checkedbag_Box .mainprice {
  font-size: 20px;
  font-weight: 700;
  float: right;
  line-height: 1.4em;
  margin-top: -4px;
  text-align: right;
  line-height: 20px;
}
@media (max-width: 479px) {
  .checkedbag_Box .mainprice {
    font-size: 17px;
    margin-top: -8px;
    text-align: right;
  }
}
.checkedbag_Box .mainprice small {
  font-weight: normal;
  font-size: 12px;
  display: block;
}
@media (max-width: 479px) {
  .checkedbag_Box .mainprice small {
    font-size: 11px;
    line-height: 12px;
  }
}
.checkedbag_Box .remove_icon {
  margin-left: 10px;
}
.checkedbag_Box .leg-section {
  font-size: 13px;
  color: #3b3b3b;
  margin-bottom: 0px;
}
.checkedbag_Box .leg-section .leg-data {
  padding: 20px 0;
  border-bottom: 1px solid #ced0d4;
  font-size: 13px;
}
@media (max-width: 479px) {
  .checkedbag_Box .leg-section .leg-data {
    font-size: 11px;
  }
}
.checkedbag_Box .leg-section .leg-data.last {
  margin: 0;
  border: 0;
}
.checkedbag_Box .leg-section .leg-data .leg-detail .air-logo {
  float: left;
  margin-right: 10px;
  width: 35px;
}
@media (max-width: 479px) {
  .checkedbag_Box .leg-section .leg-data .leg-detail .air-logo {
    width: 30px;
  }
}
.checkedbag_Box .leg-section .leg-data .leg-detail .name {
  font-weight: bold;
  color: #1f1f1f;
}
.checkedbag_Box .leg-section .leg-data .leg-detail .name span {
  padding: 0 3px;
}
.checkedbag_Box .leg-section .leg-data .leg-detail .name span img {
  width: 9px;
}
.checkedbag_Box .leg-section .leg-data .leg-status {
  float: right;
  width: 200px;
  font-weight: 500;
}
@media (max-width: 479px) {
  .checkedbag_Box .leg-section .leg-data .leg-status {
    width: 150px;
  }
}
.checkedbag_Box .leg-section .leg-data .leg-status .select_button {
  font-size: 14px;
  border: 1px solid #bcbdbd;
  background: #fff;
  color: #595959;
  padding: 8px;
  width: 100%;
  display: inline-block;
}
@media (max-width: 479px) {
  .checkedbag_Box .leg-section .leg-data .leg-status .select_button {
    width: 100%;
    padding: 8px 8px;
    font-size: 12px;
    border-radius: 0px;
  }
}
.checkedbag_Box .leg-section .leg-data .leg-status .select_button .down_arrow {
  color: #333;
  font-size: 22px;
  top: 5px;
}
@media (max-width: 767px) {
  .checkedbag_Box
    .leg-section
    .leg-data
    .leg-status
    .select_button
    .down_arrow {
    top: 5px;
  }
}
.checkedbag_Box .leg-section .leg-data .leg-status .custom_drop {
  width: 250px;
  left: inherit;
  right: 0px;
  top: 39px;
  padding: 0px;
}
.checkedbag_Box .leg-section .leg-data .leg-status .custom_drop li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.checkedbag_Box .leg-section .leg-data .leg-status .mb10 {
  margin-bottom: 10px;
}
.checkedbag_Box .leg-section .leg-data .leg-status .mb10 img {
  margin-right: 2px;
  vertical-align: middle;
}
.checkedbag_Box .leg-section .leg-data .leg-status .mb10 a {
  color: #2758f4;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.checkedbag_Box .leg-section .leg-data .leg-status .mb10 a:hover {
  text-decoration: none;
}
.checkedbag_Box .entire_trip {
  font-size: 15px;
  color: #1f1f1f;
  font-weight: 600;
  display: flex;
  align-items: center;
}
@media (max-width: 479px) {
  .checkedbag_Box .entire_trip {
    font-size: 12px;
  }
}
.checkedbag_Box .entire_trip img {
  margin-right: 10px;
  width: 43px;
}
@media (max-width: 479px) {
  .checkedbag_Box .price {
    width: 70px;
  }
}
.checked-baggage-popup {
  width: 400px;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 479px) {
  .checked-baggage-popup {
    z-index: 2;
    width: 100%;
  }
}
.checked-baggage-popup .cbaggage-content {
  padding: 20px 0 10px 0;
  background: #fff;
  border-radius: 8px;
}
@media (max-width: 479px) {
  .checked-baggage-popup .cbaggage-content {
    border-radius: 8px 8px 0 0;
  }
}
.checked-baggage-popup .cbaggage-content .icon {
  margin-bottom: 25px;
}
.checked-baggage-popup .cbaggage-content .close-baggage {
  position: absolute;
  right: 10px;
  cursor: pointer;
  font-size: 30px;
  color: #1f1f1f;
  top: 0;
}
.checked-baggage-popup .cbaggage-content .main-head {
  font-size: 14px;
  color: #2758f4;
  border-bottom: 1px solid #2758f4;
  width: 60%;
  margin: auto;
}
.checked-baggage-popup .cbaggage-content .main-head span {
  margin: 0;
  position: absolute;
  top: inherit;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 0 5px;
  font-weight: 600;
  white-space: nowrap;
}
.checked-baggage-popup .cbaggage-content .cbaggage-data {
  font-size: 12px;
  padding: 20px 0 0 0;
}
.checked-baggage-popup .cbaggage-content .cbaggage-data ul {
  margin: 0;
  padding: 0;
}
.checked-baggage-popup .cbaggage-content .cbaggage-data ul li {
  padding: 10px 15px;
  clear: both;
  color: #1f1f1f;
  font-weight: 600;
  list-style: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.checked-baggage-popup .cbaggage-content .cbaggage-data ul li:hover,
.checked-baggage-popup .cbaggage-content .cbaggage-data ul li.selected {
  background: #2758f4;
  color: #fff;
}
.checked-baggage-popup .cbaggage-content .cbaggage-data ul li span {
  float: right;
}
.baggage-text {
  padding-top: 10px;
  font-size: 12px;
  color: #8a8a8a;
}
.tp_logo {
  margin-right: 20px;
}
.custom_select {
  position: relative;
}
.custom_select ul {
  position: absolute;
  left: 0px;
  top: 43px;
  z-index: 3;
  border: 1px solid #acacac;
  box-shadow: 0 3px 6px #00000029;
  list-style: none;
  width: 100%;
  background: #fff;
  display: none;
  max-height: 200px;
  overflow-y: auto;
}
.custom_select ul li {
  padding: 7px 13px;
  font-weight: 500;
  border: none;
}
.custom_select ul li:hover {
  background: #1e90ff;
  color: #fff;
}
.custom_select .down_arrow {
  position: absolute;
  right: 10px;
  top: 9px;
  pointer-events: none;
}
.travel-alert-Box {
  background: #fed967;
  padding: 10px 30px 10px 40px;
  position: relative;
  font-size: 14px;
  color: #000;
  line-height: 22px;
  display: none;
}
@media (max-width: 980px) {
  .travel-alert-Box {
    font-size: 13px;
    line-height: 20px;
    padding: 7px 10px;
  }
}
@media (max-width: 767px) {
  .travel-alert-Box {
    display: none;
  }
}
.travel-alert-Box p {
  margin: 0px;
  position: relative;
}
.travel-alert-Box p i {
  position: absolute;
  left: -30px;
  top: 9px;
  font-size: 21px;
}
.travel-alert-Box a {
  color: #000;
  text-decoration: underline;
}
.travel-alert-Box a:hover {
  text-decoration: none;
}
.travel-alert-Box .close_alertBox {
  position: absolute;
  right: 15px;
  bottom: 0;
  width: 40px;
  height: 40px;
  color: #7d4f05;
  text-align: center;
  line-height: 40px;
}
.travel-alert-mobile-Box {
  display: none;
  background: #fed967;
  padding: 7px 10px;
  position: relative;
  z-index: 2;
  font-size: 13px;
  color: #000;
  line-height: 20px;
}
.travel-alert-mobile-Box p {
  margin: 0px;
}
.travel-alert-mobile-Box a {
  color: #000;
  text-decoration: underline;
}
.travel-alert-mobile-Box a:hover {
  text-decoration: none;
}
.travel-alert-mobile-Box .close_alert-mobileBox {
  position: absolute;
  right: 5px;
  top: -3px;
  width: 40px;
  height: 40px;
  color: #7d4f05;
  text-align: center;
  line-height: 40px;
}
@media (max-width: 767px) {
  .travel-alert-mobile-Box {
    display: none;
  }
}
.travel-alert-mobile-Box .travel-alert-head .title {
  font-weight: 700;
  text-decoration: underline;
  position: relative;
}
.travel-alert-mobile-Box .travel-alert-head .title .arrow {
  font-size: 20px;
  line-height: 22px;
  position: relative;
  top: 3px;
  margin-left: 6px;
}
.travel-alert-mobile-Box .detail {
  padding-top: 10px;
}
.data img {
  outline: 1px solid #fff;
  outline-offset: -1px;
  border-radius: 8px;
  margin-right: 10px;
}
.baggage-layer {
  width: 48%;
  margin-left: 1%;
  margin-right: 1%;
  float: left;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #2758f4;
  padding: 10px;
  color: #fff;
  background: #2758f4;
  margin-bottom: 15px;
}
.airline-layer {
  float: left;
  width: 48%;
  margin-left: 1%;
  margin-right: 1%;
  border-bottom: 1px dashed #ccc;
  padding: 15px 0;
  min-height: 68px;
}
@media only screen and (min-width: 668px) and (max-width: 1023px) {
  .baggage-layer {
    font-size: 14px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 667px) {
  .baggage-layer,
  .airline-layer {
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
    font-size: 12px;
    white-space: nowrap;
  }
}
.airport-shuttle:before,
.free-shuttle:before,
.shuttle:before {
  content: "";
  background: url("https://cmsrepository.com/static//HotelImages/hotelamenities/airport-shuttle.svg")
    no-repeat;
}
.free-parking:before,
.parking:before {
  content: "";
  background: url("https://cmsrepository.com/static//HotelImages/hotelamenities/free-parking.svg")
    no-repeat;
}
.restaurant:before,
.restaurant-services:before {
  content: "";
  background: url("https://cmsrepository.com/static//HotelImages/hotelamenities/restaurant.svg")
    no-repeat;
}
.swimming-pool:before {
  content: "";
  background: url("https://cmsrepository.com/static//HotelImages/hotelamenities/swimming-pool.svg")
    no-repeat;
}
.spa:before {
  content: "";
  background: url("https://cmsrepository.com/static//HotelImages/hotelamenities/spa.svg")
    no-repeat;
}
.fitness-center:before,
.gym:before {
  content: "";
  background: url("https://cmsrepository.com/static//HotelImages/hotelamenities/fitness-center.svg")
    no-repeat;
}
.casino:before {
  content: "";
  background: url("https://cmsrepository.com/static//HotelImages/hotelamenities/casino.svg")
    no-repeat;
}
.free-internet:before,
.internet:before,
.free-wifi:before,
.wifi:before {
  content: "";
  background: url("https://cmsrepository.com/static//HotelImages/hotelamenities/free-internet.svg")
    no-repeat;
}
.business-center:before {
  content: "";
  background: url("https://cmsrepository.com/static//HotelImages/hotelamenities/business-center.svg")
    no-repeat;
}
.free-breakfast:before,
.breakfast:before {
  content: "";
  background: url("https://cmsrepository.com/static//HotelImages/hotelamenities/free-breakfast.svg")
    no-repeat;
}
.smoking-free:before {
  content: "";
  background: url("https://cmsrepository.com/static//HotelImages/hotelamenities/smoking-free.svg")
    no-repeat;
}
.pets-allowed:before,
.pet-allowed:before {
  content: "";
  background: url("https://cmsrepository.com/static//HotelImages/hotelamenities/pets-allowed.svg")
    no-repeat;
}
.pet-bed:before {
  content: "";
  background: url("https://cmsrepository.com/static//HotelImages/hotelamenities/pet-bed-4.svg")
    no-repeat;
}
.pet-feeding-bowl:before {
  content: "";
  background: url("https://cmsrepository.com/static//HotelImages/hotelamenities/pet-feeding-bowl.svg")
    no-repeat;
}
.pet-walking-path:before {
  content: "";
  background: url("https://cmsrepository.com/static//HotelImages/hotelamenities/pet-walking-path-5.svg")
    no-repeat;
}
.free-newspaper:before,
.newspaper:before {
  content: "";
  background: url("https://cmsrepository.com/static//HotelImages/hotelamenities/newspaper.svg")
    no-repeat;
}
.currency-exchange:before {
  content: "";
  background: url("https://cmsrepository.com/static//HotelImages/hotelamenities/currency-exchange.svg")
    no-repeat;
}
.library:before {
  content: "";
  background: url("https://cmsrepository.com/static//HotelImages/hotelamenities/library.svg")
    no-repeat;
}
.medical-services:before {
  content: "";
  background: url("https://cmsrepository.com/static//HotelImages/hotelamenities/medical-services.svg")
    no-repeat;
}
.room-services:before {
  content: "";
  background: url("https://cmsrepository.com/static//HotelImages/hotelamenities/room-services.svg")
    no-repeat;
}
.laundry-facility:before {
  content: "";
  background: url("https://cmsrepository.com/static//HotelImages/hotelamenities/dry-cleaning.svg")
    no-repeat;
}
.childcare:before {
  content: "";
  background: url("https://cmsrepository.com/static//HotelImages/hotelamenities/childcare.svg")
    no-repeat;
}
.wheelchair:before {
  content: "";
  background: url("https://cmsrepository.com/static//HotelImages/hotelamenities/wheelchair.svg")
    no-repeat;
}
.disabled-facilities:before {
  content: "";
  background: url("https://cmsrepository.com/static//HotelImages/hotelamenities/disabled-facilities.svg")
    no-repeat;
}
.all-inclusive:before {
  content: "";
  background: url("https://cmsrepository.com/static//HotelImages/hotelamenities/all-inclusive.svg")
    no-repeat;
}
.hotel-amenities .location-icon:before {
  content: "";
  background: url("../../../index.html") no-repeat;
  width: 22px;
  height: 22px;
  background-size: 22px;
  float: left;
  margin-right: 5px;
  display: inline-block;
  opacity: 0.3;
}
.location-green-icon:before {
  content: "";
  background: url("../../../index.html") no-repeat;
  width: 22px;
  height: 22px;
  background-size: 22px;
  float: left;
  margin-right: 5px;
  display: inline-block;
}
.hotel-icon:before {
  content: "";
  background: url("../../../index.html") no-repeat;
  width: 22px;
  height: 22px;
  background-size: 22px;
  float: left;
  margin-right: 5px;
  display: inline-block;
  opacity: 0.3;
}
.hotel-green-icon:before {
  content: "";
  background: url("../../../index.html") no-repeat;
  width: 22px;
  height: 22px;
  background-size: 22px;
  float: left;
  margin-right: 5px;
  display: inline-block;
  opacity: 1;
}
.star-icon:before {
  content: "";
  background: url("../../../index.html") no-repeat;
  width: 22px;
  height: 22px;
  background-size: 22px;
  float: left;
  margin-right: 5px;
  display: inline-block;
  opacity: 0.3;
}
.list-view-icon:before {
  content: "";
  background: url("../../../index.html") no-repeat;
  width: 22px;
  height: 22px;
  background-size: 22px;
  float: left;
  margin-right: 5px;
  display: inline-block;
  opacity: 1;
}
.hotel-amenities {
  width: 100%;
  float: left;
  padding: 2px 0 0 15px;
  height: 20px;
}
.hotel-amenities ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.5;
}
.hotel-amenities ul li {
  display: inline-block;
  float: left;
  padding-right: 10px;
  position: relative;
}
.hotel-amenities ul li:hover .tool-tip {
  display: block;
}
.hotel-amenities ul li .tool-tip {
  display: none;
  width: 100px;
  text-align: center;
  background: #fff;
  border: 1px solid #999;
  padding: 5px 5px;
  position: absolute;
  bottom: 30px;
  left: -40px;
  border-radius: 2px;
  color: #333;
}
.hotel-amenities ul li .tool-tip:after {
  font-family: FontAwesome;
  content: "\f0d7";
  display: inline-block;
  position: absolute;
  left: 42px;
  bottom: -16px;
  vertical-align: middle;
  font-size: 18px;
  color: #fff;
  z-index: 1;
}
.hotel-amenities ul li .tool-tip:before {
  font-family: FontAwesome;
  content: "\f0d7";
  display: inline-block;
  position: absolute;
  left: 42px;
  bottom: -17px;
  vertical-align: middle;
  font-size: 18px;
  color: #333;
}
.hotel-amenities ul .more-amenities {
  color: #2758f4;
  cursor: pointer;
}
.hotel-amenities ul li img {
  padding-right: 5px;
}
.hotel-amenities ul li i {
  float: left;
  display: inline-block;
}
.hotel-amenities ul li .airport-shuttle:before,
.hotel-amenities ul li .free-shuttle:before,
.hotel-amenities ul li .shuttle:before,
.hotel-amenities ul li .free-parking:before,
.hotel-amenities ul li .parking:before,
.hotel-amenities ul li .restaurant:before,
.hotel-amenities ul li .restaurant-services:before,
.hotel-amenities ul li .swimming-pool:before,
.hotel-amenities ul li .spa:before,
.hotel-amenities ul li .fitness-center:before,
.hotel-amenities ul li .gym:before,
.hotel-amenities ul li .casino:before,
.hotel-amenities ul li .free-internet:before,
.hotel-amenities ul li .free-wifi:before,
.hotel-amenities ul li .wifi:before,
.hotel-amenities ul li .business-center:before,
.hotel-amenities ul li .free-breakfast:before,
.hotel-amenities ul li .breakfast:before,
.hotel-amenities ul li .smoking-free:before,
.hotel-amenities ul li .pets-allowed:before,
.hotel-amenities ul li .pet-allowed:before,
.hotel-amenities ul li .pet-bed:before,
.hotel-amenities ul li .pet-feeding-bowl:before,
.hotel-amenities ul li .pet-walking-path:before,
.hotel-amenities ul li .free-newspaper:before,
.hotel-amenities ul li .newspaper:before,
.hotel-amenities ul li .currency-exchange:before,
.hotel-amenities ul li .library:before,
.hotel-amenities ul li .medical-services:before,
.hotel-amenities ul li .room-services:before,
.hotel-amenities ul li .laundry-facility:before,
.hotel-amenities ul li .childcare:before,
.hotel-amenities ul li .wheelchair:before,
.hotel-amenities ul li .disabled-facilities:before,
.hotel-amenities ul li .all-inclusive:before {
  width: 16px;
  height: 16px;
  background-size: 16px;
  display: inline-block;
  opacity: 0.45;
  margin-top: 3px;
}
.hotel-amenities .more-amenities {
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.hotel-amenities .more-amenities ul {
  width: 460px;
  margin: 0;
  padding: 20px 10px 10px !important;
  border: 1px solid #ededed;
  background: #fff;
  position: absolute;
  color: #989aa2;
  top: 25px;
  right: -130px;
  z-index: 1;
}
.hotel-amenities .more-amenities ul:before {
  font-family: FontAwesome;
  content: "\f0d8";
  display: inline-block;
  position: absolute;
  left: 270px;
  top: -38px;
  vertical-align: middle;
  font-size: 40px;
  color: #989aa2;
}
@media (max-width: 767px) {
  .hotel-amenities .more-amenities ul:before {
    left: 60px;
  }
}
.hotel-amenities .more-amenities ul:after {
  font-family: FontAwesome;
  content: "\f0d8";
  display: inline-block;
  position: absolute;
  left: 270px;
  top: -37px;
  vertical-align: middle;
  font-size: 40px;
  color: #fff;
}
@media (max-width: 767px) {
  .hotel-amenities .more-amenities ul:after {
    left: 60px;
  }
}
.hotel-amenities .more-amenities ul .hide-more-amenities,
.hotel-amenities .more-amenities ul .hide-more-amenities1,
.hotel-amenities .more-amenities ul .hide-more-amenities2,
.hotel-amenities .more-amenities ul .hide-more-amenities3,
.hotel-amenities .more-amenities ul .hide-more-amenities4 {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 16px;
  color: #2758f4;
}
@media (max-width: 767px) {
  .hotel-amenities .more-amenities ul {
    left: -25px;
    width: 165px;
    z-index: 2;
  }
}
@media (max-width: 479px) {
  .hotel-amenities .more-amenities ul {
    width: 140px;
  }
}
.hotel-amenities .more-amenities ul li {
  display: block;
  list-style: none;
  float: left;
  margin: 0;
  padding: 3px 0;
  width: 33%;
  min-height: 30px;
  font-weight: 500;
  font-size: 12px;
}
@media (max-width: 767px) {
  .hotel-amenities .more-amenities ul li {
    width: 100%;
  }
}
@media (max-width: 479px) {
  .hotel-amenities .more-amenities ul li {
    font-size: 11px;
    min-height: 25px;
  }
}
.car-deals {
  padding: 15px 0;
}
.car-deals h2 {
  margin: 0 0 15px;
  font-size: 20px;
}
.car-deals h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 20px;
  color: #333;
}
@media (max-width: 767px) {
  .car-deals h3 {
    font-size: 18px;
  }
}
.car-deals .car-deal-block {
  background: #fff;
  float: left;
  padding: 10px;
  border-radius: 3px;
  box-shadow: 1px 0 5px #d5d5d5;
  cursor: pointer;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .car-deals .car-deal-block {
    padding: 11px 15px 12px 13px;
  }
}
.car-deals .car-deal-block:hover {
  box-shadow: 0 2px 3px #9dacec;
}
.car-deals .car-deal-block h4 {
  margin: 0 0 10px 0;
  font-size: 18px;
}
@media (max-width: 767px) {
  .car-deals .car-deal-block h4 {
    font-size: 14px;
  }
}
.car-deals .car-deal-block .left-block {
  width: 100%;
  display: inline-block;
  float: left;
  position: relative;
  min-height: 130px;
}
@media (max-width: 980px) {
  .car-deals .car-deal-block .left-block {
    width: 100%;
    min-height: 110px;
  }
}
@media (max-width: 767px) {
  .car-deals .car-deal-block .left-block {
    width: 100%;
    min-height: 70px;
  }
}
.car-deals .car-deal-block .left-block .car-img {
  width: 170px;
  display: block;
}
@media (max-width: 980px) {
  .car-deals .car-deal-block .left-block .car-img {
    width: 150px;
  }
}
@media (max-width: 767px) {
  .car-deals .car-deal-block .left-block .car-img {
    margin-bottom: 0px;
    min-height: 50px;
    width: 170px;
  }
}
.car-deals .car-deal-block .left-block .logo-img {
  display: block;
  position: absolute;
  top: 5px;
  right: 5px;
  border: 1px solid #dbdbdb;
  padding: 0px;
  border-radius: 0px;
}
@media (max-width: 980px) {
  .car-deals .car-deal-block .left-block .logo-img {
    width: 45px;
  }
}
@media (max-width: 767px) {
  .car-deals .car-deal-block .left-block .logo-img {
    top: 0px;
    right: 0px;
    left: auto;
    width: auto;
  }
}
.car-deals .car-deal-block .right-block {
  width: 100%;
  display: inline-block;
  min-height: 130px;
  float: left;
  position: relative;
}
@media (max-width: 767px) {
  .car-deals .car-deal-block .right-block {
    width: 100%;
    margin-top: 15px;
    padding-left: 0px;
    border-left: none;
  }
}
.car-deals .car-deal-block .right-block .car-details {
  width: 100%;
  float: left;
  margin-bottom: 15px;
}
.car-deals .car-deal-block .right-block .car-details ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.car-deals .car-deal-block .right-block .car-details ul li {
  float: left;
  display: inline-block;
  color: #2758f4;
  font-size: 11px;
  margin-right: 5px;
  position: relative;
  padding-right: 18px;
}
@media (max-width: 980px) {
  .car-deals .car-deal-block .right-block .car-details ul li {
    font-size: 12px;
    margin-right: 5px;
    padding-right: 11px;
  }
}
@media (max-width: 767px) {
  .car-deals .car-deal-block .right-block .car-details ul li {
    font-size: 14px;
    margin-right: 20px;
    padding-right: 20px;
  }
}
.car-deals .car-deal-block .right-block .car-details ul li::after {
  font-family: "FontAwesome";
  content: "\f107";
  position: absolute;
  top: -5px;
  font-size: 18px;
  right: 0px;
}
@media (max-width: 980px) {
  .car-deals .car-deal-block .right-block .car-details ul li::after {
    top: 0px;
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .car-deals .car-deal-block .right-block .car-details ul li::after {
    top: 0px;
    font-size: 14px;
  }
}
.car-deals .car-deal-block .right-block .car-details ul li:last-child {
  margin-right: none;
}
.car-deals .car-deal-block .right-block .car-details ul li .loc {
  display: none;
  position: absolute;
  top: 25px;
  right: -35px;
  width: 160px;
  background: #fff;
  color: #333;
  box-shadow: 0px 0px 1px #636363;
  padding: 5px;
  border-radius: 3px;
  font-size: 12px;
  text-align: center;
}
@media (max-width: 767px) {
  .car-deals .car-deal-block .right-block .car-details ul li .loc {
    left: 0px;
    right: auto;
  }
}
.car-deals .car-deal-block .right-block .car-details ul li .loc::after {
  font-family: "FontAwesome";
  content: "\f0de";
  position: absolute;
  top: -15px;
  font-size: 26px;
  left: 48%;
  color: #ccc;
}
@media (max-width: 767px) {
  .car-deals .car-deal-block .right-block .car-details ul li .loc::after {
    left: 13%;
  }
}
.car-deals .car-deal-block .right-block .car-details ul li .loc::before {
  font-family: "FontAwesome";
  content: "\f0de";
  position: absolute;
  top: -13px;
  font-size: 26px;
  left: 48%;
  color: #fff;
  z-index: 1;
}
@media (max-width: 767px) {
  .car-deals .car-deal-block .right-block .car-details ul li .loc::before {
    left: 13%;
  }
}
.car-deals .car-deal-block .right-block .car-details ul li .car_info {
  display: none;
  position: absolute;
  top: 25px;
  right: -20px;
  width: 150px;
  background: #fff;
  box-shadow: 0px 0px 1px #636363;
  padding: 5px;
  border-radius: 3px;
  color: #333;
}
.car-deals .car-deal-block .right-block .car-details ul li .car_info::after {
  font-family: "FontAwesome";
  content: "\f0de";
  position: absolute;
  top: -15px;
  font-size: 26px;
  left: 48%;
  color: #ccc;
}
.car-deals .car-deal-block .right-block .car-details ul li .car_info::before {
  font-family: "FontAwesome";
  content: "\f0de";
  position: absolute;
  top: -13px;
  font-size: 26px;
  left: 48%;
  color: #fff;
  z-index: 1;
}
.car-deals .car-deal-block .right-block .car-details ul li .car_info ul li {
  width: 100%;
  text-decoration: none;
  color: #333;
  font-size: 12px;
  padding: 3px;
  margin-right: 0px;
}
.car-deals
  .car-deal-block
  .right-block
  .car-details
  ul
  li
  .car_info
  ul
  li::after {
  display: none;
}
.car-deals .car-deal-block .right-block .car-details ul li .car-aminities {
  display: none;
  position: absolute;
  top: 25px;
  right: -50px;
  width: 170px;
  background: #fff;
  z-index: 1;
  box-shadow: 0px 0px 1px #636363;
  border-radius: 3px;
  padding: 5px;
  color: #333;
}
.car-deals
  .car-deal-block
  .right-block
  .car-details
  ul
  li
  .car-aminities::after {
  font-family: "FontAwesome";
  content: "\f0de";
  position: absolute;
  top: -15px;
  font-size: 26px;
  left: 49%;
  color: #ccc;
}
.car-deals
  .car-deal-block
  .right-block
  .car-details
  ul
  li
  .car-aminities::before {
  font-family: "FontAwesome";
  content: "\f0de";
  position: absolute;
  top: -13px;
  font-size: 26px;
  left: 49%;
  color: #fff;
  z-index: 1;
}
.car-deals
  .car-deal-block
  .right-block
  .car-details
  ul
  li
  .car-aminities
  ul
  li {
  width: 100%;
  text-decoration: none;
  color: #333;
  font-size: 12px;
  padding-bottom: 5px;
  padding: 3px;
  margin-right: 0px;
}
.car-deals
  .car-deal-block
  .right-block
  .car-details
  ul
  li
  .car-aminities
  ul
  li::after {
  display: none;
}
.car-deals
  .car-deal-block
  .right-block
  .car-details
  ul
  li
  .car-aminities
  ul
  li
  .passenger-icon {
  background: url(https://www.travelopick.com/us/car/images/svg/passenger.svg)
    no-repeat;
}
.car-deals
  .car-deal-block
  .right-block
  .car-details
  ul
  li
  .car-aminities
  ul
  li
  .car-window-icon {
  background: url(https://www.travelopick.com/us/car/images/svg/car-window.svg)
    no-repeat;
}
.car-deals
  .car-deal-block
  .right-block
  .car-details
  ul
  li
  .car-aminities
  ul
  li
  .luggage-icon {
  display: block;
  width: 15px;
  height: 15px;
  position: relative;
  top: 3px;
  background: url(https://www.travelopick.com/us/car/images/svg/luggage.svg)
    no-repeat;
}
.car-deals
  .car-deal-block
  .right-block
  .car-details
  ul
  li
  .car-aminities
  ul
  li
  .transmission-A-icon {
  display: block;
  width: 16px;
  height: 16px;
  position: relative;
  top: 3px;
  background: url(https://www.travelopick.com/us/car/images/svg/transmission-a.svg)
    no-repeat;
}
.car-deals
  .car-deal-block
  .right-block
  .car-details
  ul
  li
  .car-aminities
  ul
  li
  i {
  opacity: 0.5;
  display: block;
  width: 14px;
  height: 14px;
  float: left;
}
.car-deals
  .car-deal-block
  .right-block
  .car-details
  ul
  li
  .car-aminities
  ul
  li
  .info_text {
  float: left;
  margin: 0px 0 0 5px;
}
.car-deals .car-deal-block .right-block .car-details ul li:hover .car_info,
.car-deals .car-deal-block .right-block .car-details ul li:hover .car-aminities,
.car-deals .car-deal-block .right-block .car-details ul li:hover .loc {
  display: block;
}
.car-deals .car-deal-block .right-block .brand {
  font-size: 18px;
  font-weight: 700;
  width: 100%;
  float: left;
  color: #333;
}
.car-deals .car-deal-block .right-block .type {
  color: #1a1a1a;
  font-size: 14px;
  width: 100%;
  float: left;
}
.car-deals .car-deal-block .right-block .customer_review {
  cursor: pointer;
  float: left;
  width: 100%;
}
.car-deals .car-deal-block .right-block .customer_review .left {
  float: left;
  font-weight: 600;
  line-height: 38px;
  font-size: 18px;
}
.car-deals .car-deal-block .right-block .customer_review .left .rating {
  font-size: 22px;
  color: #2758f4;
}
.car-deals .car-deal-block .right-block .customer_review .right {
  float: left;
  padding-left: 2px;
  margin-top: 9px;
}
.car-deals .car-deal-block .right-block .customer_review .right strong {
  color: #2758f4;
}
.car-deals .car-deal-block .right-block .customer_review .right .text-link {
  color: gray;
  text-decoration: underline;
  font-size: 12px;
}
.car-deals .car-deal-block .right-block .location {
  font-size: 14px;
  font-weight: 300;
  color: #2758f4;
  margin-top: 10px;
}
.car-deals .car-deal-block .right-block .price-block {
  font-size: 13px;
  color: #1a1a1a;
  padding: 5px 0;
  border-top: 1px dotted gray;
  float: left;
  width: 100%;
  position: absolute;
  bottom: 0px;
  padding-right: 15px;
}
.car-deals .car-deal-block .right-block .price-block span {
  font-size: 22px;
  font-weight: 600;
  color: #2758f4;
}
.car-deals .car-deal-block .right-block .price-block .select-btn {
  color: #fff;
  background: #2758f4;
  padding: 7px 16px;
  border-radius: 3px;
  font-size: 12px;
  border: none;
  display: inline-block;
  float: right;
}
.car-deals .car-deal-block .right-block .booknow-pay {
  color: #2758f4;
  margin-top: 5px;
  font-size: 12px;
  width: 100%;
  float: left;
}
.see-more-btn {
  color: #fff;
  background: #2758f4;
  padding: 7px 16px;
  border-radius: 3px;
  font-size: 14px;
  border: none;
  display: inline-block;
  float: left;
  margin-bottom: 20px;
}
.see-more-btn:hover {
  color: #fff;
  text-decoration: none;
}
.xsell-hotel-deal {
  padding: 15px 0;
}
.xsell-hotel-deal h2 {
  margin: 0 0 15px;
  font-size: 20px;
}
.xsell-hotel-deal h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 20px;
  color: #333;
}
@media (max-width: 767px) {
  .xsell-hotel-deal h3 {
    font-size: 18px;
  }
}
.xsell-hotel-deal .hotel-deal-block {
  background: #fff;
  float: left;
  padding: 0px;
  border-radius: 0px;
  border: 1px solid #88a3f9;
  cursor: pointer;
  margin-bottom: 20px;
  min-height: 360px;
  width: 100%;
}
@media (max-width: 767px) {
  .xsell-hotel-deal .hotel-deal-block {
    padding: 11px 15px 12px 13px;
  }
}
.xsell-hotel-deal .hotel-deal-block:hover {
  border: 1px solid #2758f4;
}
.xsell-hotel-deal .hotel-deal-block .left-block {
  width: 100%;
  display: inline-block;
  float: left;
  height: 180px;
  overflow: hidden;
  position: relative;
}
.xsell-hotel-deal .hotel-deal-block .left-block img {
  width: 100%;
}
.xsell-hotel-deal .hotel-deal-block .left-block .trip-advisor {
  margin-top: 0px;
  text-align: left;
  position: absolute;
  bottom: 3px;
  right: 3px;
  z-index: 1;
  background: rgba(250, 250, 250, 0.9);
  padding: 7px;
  border-radius: 3px;
}
.xsell-hotel-deal .hotel-deal-block .left-block .trip-advisor .rating {
  font-size: 11px;
  color: #000;
  width: 100%;
  display: block;
}
.xsell-hotel-deal .hotel-deal-block .left-block .reviews {
  width: 100%;
  float: left;
  position: absolute;
  bottom: 0px;
  left: 0px;
  background: linear-gradient(
    to top,
    #000 0,
    rgba(0, 0, 0, 0.6) 50%,
    transparent 100%
  );
}
.xsell-hotel-deal .hotel-deal-block .left-block .reviews ul {
  margin: 0;
  padding: 0;
}
.xsell-hotel-deal .hotel-deal-block .left-block .reviews ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  float: left;
  display: inline-block;
}
.xsell-hotel-deal .hotel-deal-block .left-block .reviews ul li:nth-child(1) {
  width: 40%;
}
.xsell-hotel-deal
  .hotel-deal-block
  .left-block
  .reviews
  ul
  li:nth-child(1)
  img {
  padding-top: 10px;
}
.xsell-hotel-deal .hotel-deal-block .left-block .reviews ul li:nth-child(1) i {
  padding-top: 7px;
  display: inline-block;
}
.xsell-hotel-deal .hotel-deal-block .left-block .reviews ul li:nth-child(2) {
  width: 20%;
}
.xsell-hotel-deal
  .hotel-deal-block
  .left-block
  .reviews
  ul
  li:nth-child(2)
  span {
  display: inline-block;
  text-align: center;
  background: #2758f4;
  color: #fff;
  height: 32px;
  width: 32px;
  padding-top: 8px;
  font-size: 12px;
}
.xsell-hotel-deal .hotel-deal-block .left-block .reviews ul li:nth-child(3) {
  width: 40%;
}
.xsell-hotel-deal .hotel-deal-block .left-block .reviews ul li:nth-child(3) p {
  margin: 0;
  padding: 10px 0 0;
}
.xsell-hotel-deal .hotel-deal-block .right-block {
  width: 100%;
  display: inline-block;
  float: left;
  position: relative;
  min-height: 170px;
  padding: 5px 15px;
}
.xsell-hotel-deal .hotel-deal-block .right-block .head {
  font-size: 14px;
  font-weight: 700;
  margin: 10px 0px;
  color: #333;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.xsell-hotel-deal .hotel-deal-block .right-block .hotel-location {
  margin-bottom: 10px;
  float: left;
  width: 100%;
}
.xsell-hotel-deal .hotel-deal-block .right-block .hotel-location ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.5;
}
.xsell-hotel-deal .hotel-deal-block .right-block .hotel-location ul li {
  padding-left: 15px;
  color: #333;
}
.xsell-hotel-deal
  .hotel-deal-block
  .right-block
  .hotel-location
  ul
  li:first-child {
  position: relative;
  color: #1a1a1a;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.xsell-hotel-deal
  .hotel-deal-block
  .right-block
  .hotel-location
  ul
  li:first-child:before {
  font-family: FontAwesome;
  content: "\f041";
  display: inline-block;
  position: absolute;
  left: 0px;
  top: -4px;
  padding-right: 3px;
  vertical-align: middle;
  font-size: 18px;
  color: #1a1a1a;
}
.xsell-hotel-deal .hotel-deal-block .btm-block {
  width: 100%;
  float: left;
  margin-top: 10px;
  border-top: 1px dotted #ccc;
  padding-top: 10px;
}
.xsell-hotel-deal .hotel-deal-block .btm-block .lt-block {
  width: 100%;
  float: left;
  display: inline-block;
}
.xsell-hotel-deal .hotel-deal-block .btm-block .lt-block .price {
  font-weight: 700;
  font-size: 22px;
  text-align: left;
  color: #2758f4;
  cursor: pointer;
  line-height: 1.1;
  padding-left: 5px;
}
.xsell-hotel-deal .hotel-deal-block .btm-block .lt-block .price del {
  color: #b3b3b3;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  display: block;
}
.xsell-hotel-deal .hotel-deal-block .btm-block .lt-block .price span {
  display: inline-block;
  transition: all 0.5s ease-in;
}
.xsell-hotel-deal .hotel-deal-block .btm-block .lt-block .price .ppp {
  font-size: 14px;
  color: #333;
  font-weight: 400;
  display: inline-block;
}
@media (max-width: 767px) {
  .xsell-hotel-deal .hotel-deal-block .btm-block .lt-block {
    width: 60%;
  }
}
.xsell-hotel-deal .hotel-deal-block .btm-block .rt-block {
  width: 30%;
  float: left;
  text-align: right;
  display: inline-block;
}
@media (max-width: 767px) {
  .xsell-hotel-deal .hotel-deal-block .btm-block .rt-block {
    width: 40%;
  }
}
.xsell-hotel-deal .hotel-deal-block .btm-block .rt-block .select-btn {
  color: #fff;
  background: #2758f4;
  padding: 7px 16px;
  border-radius: 3px;
  border: none;
  display: inline-block;
}
.xsell-hotel-deal .hotel-deal-block .pay-facility {
  float: left;
  font-size: 12px;
  line-height: 1.4;
  color: #2758f4;
}
@media (max-width: 767px) {
  .xsell-hotel-deal .hotel-deal-block .pay-facility {
    margin-top: 0px;
  }
}
.xsell-hotel-deal .hotel-deal-block .pay-facility ul {
  margin: 0;
  padding: 0;
}
.xsell-hotel-deal .hotel-deal-block .pay-facility ul li {
  position: relative;
  display: inline-block;
  padding-left: 18px;
  float: left;
  margin-left: 15px;
}
@media (max-width: 767px) {
  .xsell-hotel-deal .hotel-deal-block .pay-facility ul li {
    margin-left: 0px;
  }
}
.xsell-hotel-deal .hotel-deal-block .pay-facility ul li:before {
  font-family: FontAwesome;
  content: "\f00c";
  display: inline-block;
  position: absolute;
  left: 0px;
  top: -1px;
  vertical-align: middle;
  font-size: 14px;
}
.star5-0:before {
  content: "";
  background: url("https://www.viajaralmundo.com/resources/images/hotels/star-ratings.png")
    0px 0px no-repeat;
  width: 100px;
  height: 20px;
  background-size: 100px;
  display: inline-block;
}
.star4-5:before {
  content: "";
  background: url("https://www.viajaralmundo.com/resources/images/hotels/star-ratings.png")
    0px -18px no-repeat;
  width: 100px;
  height: 20px;
  background-size: 100px;
  display: inline-block;
}
.star4-0:before {
  content: "";
  background: url("https://www.viajaralmundo.com/resources/images/hotels/star-ratings.png")
    0px -35px no-repeat;
  width: 100px;
  height: 20px;
  background-size: 100px;
  display: inline-block;
}
.star3-5:before {
  content: "";
  background: url("https://www.viajaralmundo.com/resources/images/hotels/star-ratings.png")
    0px -54px no-repeat;
  width: 100px;
  height: 20px;
  background-size: 100px;
  display: inline-block;
}
.star3-0:before {
  content: "";
  background: url("https://www.viajaralmundo.com/resources/images/hotels/star-ratings.png")
    0px -71px no-repeat;
  width: 100px;
  height: 20px;
  background-size: 100px;
  display: inline-block;
}
.star2-5:before {
  content: "";
  background: url("https://www.viajaralmundo.com/resources/images/hotels/star-ratings.png")
    0px -90px no-repeat;
  width: 100px;
  height: 20px;
  background-size: 100px;
  display: inline-block;
}
.star2-0:before {
  content: "";
  background: url("https://www.viajaralmundo.com/resources/images/hotels/star-ratings.png")
    0px -106px no-repeat;
  width: 100px;
  height: 20px;
  background-size: 100px;
  display: inline-block;
}
.star1-5:before {
  content: "";
  background: url("https://www.viajaralmundo.com/resources/images/hotels/star-ratings.png")
    0px -124px no-repeat;
  width: 100px;
  height: 20px;
  background-size: 100px;
  display: inline-block;
}
.star1-0:before {
  content: "";
  background: url("https://www.viajaralmundo.com/resources/images/hotels/star-ratings.png")
    0px -141px no-repeat;
  width: 100px;
  height: 20px;
  background-size: 100px;
  display: inline-block;
}
.star0-5:before {
  content: "";
  background: url("https://www.viajaralmundo.com/resources/images/hotels/star-ratings.png")
    0px -160px no-repeat;
  width: 100px;
  height: 20px;
  background-size: 100px;
  display: inline-block;
}
.star0-0:before {
  content: "";
  background: url("https://www.viajaralmundo.com/resources/images/hotels/star-ratings.png")
    0px -177px no-repeat;
  width: 100px;
  height: 20px;
  background-size: 100px;
  display: inline-block;
}
.md-star5:before {
  content: "";
  background: url("https://www.viajaralmundo.com/resources/images/hotels/star-ratings.png")
    0px 0px no-repeat;
  width: 75px;
  height: 15px;
  background-size: 75px;
  display: inline-block;
}
.md-star4-5:before {
  content: "";
  background: url("https://www.viajaralmundo.com/resources/images/hotels/star-ratings.png")
    0px -15px no-repeat;
  width: 75px;
  height: 15px;
  background-size: 75px;
  display: inline-block;
}
.md-star4:before {
  content: "";
  background: url("https://www.viajaralmundo.com/resources/images/hotels/star-ratings.png")
    0px -30px no-repeat;
  width: 75px;
  height: 15px;
  background-size: 75px;
  display: inline-block;
}
.md-star3-5:before {
  content: "";
  background: url("https://www.viajaralmundo.com/resources/images/hotels/star-ratings.png")
    0px -45px no-repeat;
  width: 75px;
  height: 15px;
  background-size: 75px;
  display: inline-block;
}
.md-star3:before {
  content: "";
  background: url("https://www.viajaralmundo.com/resources/images/hotels/star-ratings.png")
    0px -60px no-repeat;
  width: 75px;
  height: 15px;
  background-size: 75px;
  display: inline-block;
}
.md-star2-5:before {
  content: "";
  background: url("https://www.viajaralmundo.com/resources/images/hotels/star-ratings.png")
    0px -75px no-repeat;
  width: 75px;
  height: 15px;
  background-size: 75px;
  display: inline-block;
}
.md-star2:before {
  content: "";
  background: url("https://www.viajaralmundo.com/resources/images/hotels/star-ratings.png")
    0px -90px no-repeat;
  width: 75px;
  height: 15px;
  background-size: 75px;
  display: inline-block;
}
.md-star1-5:before {
  content: "";
  background: url("https://www.viajaralmundo.com/resources/images/hotels/star-ratings.png")
    0px -105px no-repeat;
  width: 75px;
  height: 15px;
  background-size: 75px;
  display: inline-block;
}
.md-star1:before {
  content: "";
  background: url("https://www.viajaralmundo.com/resources/images/hotels/star-ratings.png")
    0px -120px no-repeat;
  width: 75px;
  height: 15px;
  background-size: 75px;
  display: inline-block;
}
.trip-ad5:before {
  content: "";
  background: url("https://www.viajaralmundo.com/resources/images/hotels/trip-ratings.png")
    0px 0px no-repeat;
  width: 90px;
  height: 16px;
  background-size: 90px;
  display: inline-block;
}
.trip-ad5-0:before {
  content: "";
  background: url("https://www.viajaralmundo.com/resources/images/hotels/trip-ratings.png")
    0px 0px no-repeat;
  width: 90px;
  height: 16px;
  background-size: 90px;
  display: inline-block;
}
.trip-ad4-5:before {
  content: "";
  background: url("https://www.viajaralmundo.com/resources/images/hotels/trip-ratings.png")
    0px -18px no-repeat;
  width: 101px;
  height: 18px;
  background-size: 101px;
  display: inline-block;
}
.trip-ad4:before {
  content: "";
  background: url("https://www.viajaralmundo.com/resources/images/hotels/trip-ratings.png")
    0px -36px no-repeat;
  width: 101px;
  height: 18px;
  background-size: 101px;
  display: inline-block;
}
.trip-ad4-0:before {
  content: "";
  background: url("https://www.viajaralmundo.com/resources/images/hotels/trip-ratings.png")
    0px -36px no-repeat;
  width: 101px;
  height: 18px;
  background-size: 101px;
  display: inline-block;
}
.trip-ad3-5:before {
  content: "";
  background: url("https://www.viajaralmundo.com/resources/images/hotels/trip-ratings.png")
    0px -48px no-repeat;
  width: 90px;
  height: 16px;
  background-size: 90px;
  display: inline-block;
}
.trip-ad3:before {
  content: "";
  background: url("https://www.viajaralmundo.com/resources/images/hotels/trip-ratings.png")
    0px -72px no-repeat;
  width: 101px;
  height: 18px;
  background-size: 101px;
  display: inline-block;
}
.trip-ad3-0:before {
  content: "";
  background: url("https://www.viajaralmundo.com/resources/images/hotels/trip-ratings.png")
    0px -72px no-repeat;
  width: 101px;
  height: 18px;
  background-size: 101px;
  display: inline-block;
}
.trip-ad2-5:before {
  content: "";
  background: url("https://www.viajaralmundo.com/resources/images/hotels/trip-ratings.png")
    0px -90px no-repeat;
  width: 101px;
  height: 18px;
  background-size: 101px;
  display: inline-block;
}
.trip-ad2:before {
  content: "";
  background: url("https://www.viajaralmundo.com/resources/images/hotels/trip-ratings.png")
    0px -108px no-repeat;
  width: 101px;
  height: 18px;
  background-size: 101px;
  display: inline-block;
}
.trip-ad2-0:before {
  content: "";
  background: url("https://www.viajaralmundo.com/resources/images/hotels/trip-ratings.png")
    0px -108px no-repeat;
  width: 101px;
  height: 18px;
  background-size: 101px;
  display: inline-block;
}
.trip-ad1-5:before {
  content: "";
  background: url("https://www.viajaralmundo.com/resources/images/hotels/trip-ratings.png")
    0px -126px no-repeat;
  width: 101px;
  height: 18px;
  background-size: 101px;
  display: inline-block;
}
.trip-ad1:before {
  content: "";
  background: url("https://www.viajaralmundo.com/resources/images/hotels/trip-ratings.png")
    0px -144px no-repeat;
  width: 101px;
  height: 18px;
  background-size: 101px;
  display: inline-block;
}
.trip-ad1-0:before {
  content: "";
  background: url("https://www.viajaralmundo.com/resources/images/hotels/trip-ratings.png")
    0px -144px no-repeat;
  width: 101px;
  height: 18px;
  background-size: 101px;
  display: inline-block;
}
.matrix__wrapper {
  margin-bottom: 10px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .matrix__wrapper {
    overflow: inherit;
  }
}
.matrix__wrapper .slick-list {
  overflow: hidden;
}
.matrix__wrapper h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .matrix__wrapper h3 {
    display: none;
  }
}
.matrix__wrapper .matrix__aside {
  position: relative;
  float: left;
  width: 14%;
  z-index: 1;
  border-left: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
}
@media (max-width: 767px) {
  .matrix__wrapper .matrix__aside {
    width: 100px;
  }
}
.matrix__wrapper .matrix__slider {
  position: relative;
  float: left;
  width: 86%;
  border-right: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
}
@media (max-width: 767px) {
  .matrix__wrapper .matrix__slider {
    width: calc(100% - 100px);
  }
}
.matrix__wrapper .matrix__item {
  width: 20%;
  float: left;
}
.matrix__wrapper .matix__Box-lg {
  border: 1px solid #ddd;
  border-left: 0;
  font-size: 12px;
  text-align: center;
  height: 68px;
  line-height: normal;
  padding: 8px;
  position: relative;
  width: 100%;
  cursor: pointer;
}
@media (max-width: 767px) {
  .matrix__wrapper .matix__Box-lg {
    padding: 5px;
    height: 43px;
  }
}
.matrix__wrapper .matix__Box-lg:hover,
.matrix__wrapper .matix__Box-lg .is-active {
  background: #e1f0ff;
}
.matrix__wrapper .matix__Box-lg.is--default {
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
}
.matrix__wrapper .matix__Box-lg.is--default:hover {
  background: transparent;
}
.matrix__wrapper .matix__Box-lg .matrix__airline-name {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
}
@media (max-width: 767px) {
  .matrix__wrapper .matix__Box-lg .matrix__airline-name {
    display: none;
  }
}
.matrix__wrapper .matrix__cell {
  padding: 3px;
  text-align: center;
  font-weight: 700;
  vertical-align: middle;
  width: 100%;
  border-right: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  cursor: pointer;
  line-height: 30px;
  font-size: 12px;
}
@media (max-width: 767px) {
  .matrix__wrapper .matrix__cell {
    font-size: 11px;
    line-height: 25px;
  }
}
.matrix__wrapper .matrix__cell:hover,
.matrix__wrapper .matrix__cell .is-active {
  background: #e1f0ff;
}
.matrix__wrapper .matrix__cell.is--default {
  cursor: default;
}
.matrix__wrapper .matrix__cell.is--default:hover {
  background: transparent;
}
.matrix__wrapper .matrix__airline-logo {
  width: 32px;
  margin: 0 auto 6px auto;
}
.matrix__wrapper .matrix__airline-logo img {
  width: 100%;
}
.matrix__wrapper .slick-prev,
.matrix__wrapper .slick-next {
  top: -30px;
  width: 26px;
  height: 26px;
  border-radius: 100%;
  background: #fff;
  color: #343434;
  border: 1px solid #ccc;
  position: absolute;
}
.matrix__wrapper .slick-prev {
  left: inherit;
  right: 39px;
}
.matrix__wrapper .slick-next {
  right: 0px;
}
.matrix__wrapper .slick-prev:before,
.matrix__wrapper .slick-next:before {
  font-family: "FontAwesome";
  content: "\f105";
  color: #343434;
  font-size: 21px;
  line-height: 22px;
}
.matrix__wrapper .slick-prev:before {
  font-family: "FontAwesome";
  content: "\f104";
}
.matrix__wrapper .slick-prev:hover,
.matrix__wrapper .slick-next:hover {
  border: 1px solid #2758f4;
}
.matrix__wrapper .slick-prev:hover:before,
.matrix__wrapper .slick-next:hover:before {
  color: #2758f4;
}
.matrixactive {
  color: #2758f4;
  background: #e1f0ff;
}
@media (max-width: 767px) {
  .matrix__wrapper h3 {
    margin: 0px 0 35px;
    font-size: 14px;
  }
  .matix__Box-lg .matrix__airline-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.matrix__wrapper .slick-prev,
.matrix__wrapper .slick-next {
  padding: 0 0 0 1px;
}
.matrix-airline-icon {
  position: absolute;
  top: 0px;
  right: 5px;
}
.matrix-airline-icon img {
  width: 25px;
}
.matrix__wrapper .reset {
  position: absolute;
  top: 7px;
  right: 78px;
  background: #2758f4;
  color: #fff;
  border-radius: 3px;
  padding: 2px 10px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .matrix__wrapper .reset {
    top: 13px;
  }
}
.header_strip_fixed.fixed {
  z-index: 2;
}
.matrix__wrapper .matrix__cell .is--default {
  cursor: default;
}
.actionicons {
  width: 130px;
  margin: 0px auto;
  position: absolute;
  list-style: none;
  bottom: 15px;
  right: 40px;
}
.actionicons:hover .tooltipBox {
  display: block;
}
@media (max-width: 767px) {
  .actionicons {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 10px;
    bottom: 0px;
    right: 0px;
  }
}
.actionicons ul {
  width: 145px;
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 8px 22px 0 0px;
  margin: 0px;
}
.actionicons li .icons {
  width: 21px;
}
.actionicons li .icons.last {
  width: auto;
  height: 22px;
}
.actionicons li .top_icon {
  position: absolute;
  right: -8px;
  top: -4px;
}
.actionicons li .top_icon img {
  width: 13px;
  border-radius: 100%;
  background: #fff;
}
.actionicons .tooltipBox {
  left: inherit;
  right: 0px;
  top: 31px;
  width: 330px;
  border-radius: 3px;
  box-shadow: 0 0 9px #00000059;
  padding: 7px;
  color: #1f1f1f;
  display: none;
  position: absolute;
  z-index: 1;
  background: #fff;
}
@media (max-width: 479px) {
  .actionicons .tooltipBox {
    width: 285px;
    top: 37px;
  }
}
.actionicons .tooltipBox .light {
  color: #5b5b5b;
  font-size: 11px;
}
.actionicons .tooltipBox .green {
  color: #3ab54a;
}
.actionicons .tooltipBox .red {
  color: #f00;
}
.actionicons .tooltipBox .pt-5 {
  padding-top: 5px;
}
.actionicons .tooltipBox .d-flex {
  justify-content: space-between;
  display: flex;
  font-size: 12px;
}
.actionicons .tooltipBox .baggage_row {
  padding: 8px 0 8px 35px;
  position: relative;
  margin-bottom: 0px;
}
.actionicons .tooltipBox .popup_icon {
  position: absolute;
  left: 0px;
  top: 6px;
}
.actionicons .tooltipBox .popup_icon .icons {
  width: 21px;
}
.actionicons .tooltipBox .popup_icon .icons.last {
  height: 22px;
}
.actionicons .tooltipBox .top_icon {
  position: absolute;
  right: -8px;
  top: -4px;
}
.actionicons .tooltipBox .top_icon img {
  width: 15px;
  border-radius: 100%;
  background: #fff;
}
.actionicons .tooltipBox .icons {
  height: inherit;
  width: 20px;
}
.actionicons .tooltipBox:after,
.actionicons .tooltipBox:before {
  content: "";
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 8px solid #ccc;
  right: 57px;
  top: -8px;
  position: absolute;
}
.actionicons .tooltipBox:after {
  border-bottom: 8px solid #ffffff;
}
.baggage_status,
.t-right2 {
  font-weight: 600 !important;
}
.baggage_information-new {
  width: 100%;
  overflow: hidden;
  padding-bottom: 35px;
  padding-top: 20px;
}
.baggage_information-new h4 {
  font-size: 16px;
  color: #1f1f1f;
  font-weight: 600;
}
.baggage_information-new p.subTitle {
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .baggage_information-new p.subTitle {
    font-size: 12px;
  }
}
.baggage_information-new .baggageBox {
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  margin-bottom: 0;
  display: flex;
  margin-right: -15px;
}
.baggage_information-new .baggageBox .block {
  width: 100%;
  margin: 10px 15px 10px 0;
  float: left;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.baggage_information-new .baggageBox .head {
  padding: 8px 10px;
  border-bottom: 1px solid #ced0d4;
}
.baggage_information-new .baggageBox .head .air-name {
  overflow: hidden;
  display: flex;
  align-items: center;
  font-size: 13px;
}
@media (max-width: 767px) {
  .baggage_information-new .baggageBox .head .air-name {
    font-size: 11px;
  }
}
.baggage_information-new .baggageBox .head .air-name img {
  margin-right: 5px;
  width: 24px;
  float: left;
}
@media (max-width: 767px) {
  .baggage_information-new .baggageBox .head .air-name img {
    width: 18px;
  }
}
.baggage_information-new .baggageBox .head .air-name .name {
  padding-left: 6px;
  float: left;
  font-weight: 500;
}
.baggage_information-new .baggageBox .content {
  padding: 10px 25px 10px 10px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 479px) {
  .baggage_information-new .baggageBox .content {
    padding: 13px 11px;
  }
}
.baggage_information-new .baggageBox .content .baggageicons {
  position: absolute;
  left: 0px;
  top: 9px;
}
.baggage_information-new .baggageBox .content .baggageicons .top_icon {
  position: absolute;
  right: -8px;
  top: -4px;
}
.baggage_information-new .baggageBox .content .baggageicons .top_icon img {
  width: 15px;
  border-radius: 100%;
  background: #fff;
}
.baggage_information-new .baggageBox .content .baggageicons .icons {
  height: 18px;
  width: 22px;
}
.baggage_information-new .baggageBox .content .baggageicons .icons.last {
  height: 22px;
  width: auto;
}
.baggage_information-new .baggageBox .content .fa-suitcase {
  font-size: 90px;
  color: #b7b5b3;
  position: absolute;
  right: 20px;
  top: 20px;
}
.baggage_information-new .baggageBox .content ul {
  list-style: none;
  padding: 0px;
  margin: 0px 0 20px 0;
}
.baggage_information-new .baggageBox .content ul li {
  font-size: 13px;
  color: #1f1f1f;
  font-weight: 500;
  padding-bottom: 8px;
  position: relative;
  padding-left: 28px;
  padding-top: 8px;
  justify-content: space-between;
  display: flex;
  min-width: 215px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .baggage_information-new .baggageBox .content ul li {
    font-size: 11px;
  }
}
@media (max-width: 479px) {
  .baggage_information-new .baggageBox .content ul li {
    flex-direction: column;
    justify-content: space-between;
  }
}
.baggage_information-new .baggageBox .content ul li .d-flex {
  width: 100%;
  justify-content: space-between;
  display: flex;
  font-size: 12px;
  font-weight: 400;
}
.baggage_information-new .baggageBox .content ul li .t-left {
  padding-left: 7px;
  font-size: 12px;
  font-weight: 400;
  width: 200px;
  padding-right: 15px;
}
.baggage_information-new .baggageBox .content ul li .t-left .light {
  color: #5b5b5b;
  font-size: 11px;
  font-weight: 400;
  white-space: normal;
}
@media (max-width: 479px) {
  .baggage_information-new .baggageBox .content ul li .t-left .light {
    font-size: 10px;
  }
}
.baggage_information-new .baggageBox .content ul li .t-right {
  width: 130px;
  text-align: right;
}
@media (max-width: 479px) {
  .baggage_information-new .baggageBox .content ul li .t-right {
    width: auto;
    text-align: left;
    padding-left: 7px;
  }
}
.baggage_information-new .baggageBox .content ul li .t-right2 {
  width: 110px;
  text-align: right;
}
@media (max-width: 479px) {
  .baggage_information-new .baggageBox .content ul li .t-right2 {
    width: auto;
    padding-right: 10px;
  }
}
.baggage_information-new .baggageBox .content ul li p {
  display: inline-block;
  margin: 0px;
}
@media (max-width: 479px) {
  .baggage_information-new .baggageBox .content ul li p {
    font-size: 10px;
  }
}
.baggage_information-new .baggageBox .content ul li .baggage_row_div {
  display: flex;
  justify-content: space-between;
}
.baggage_information-new .baggageBox .content .text {
  font-size: 12px;
  font-weight: 500;
  color: #686868;
}
@media (max-width: 479px) {
  .baggage_information-new .baggageBox .content .text {
    font-size: 10px;
  }
}
.baggage_information-new .baggageBox .content .text a {
  color: #ff7f00;
  cursor: pointer;
  text-decoration: underline;
}
.baggage_information-new .baggageBox .tooltip-custom {
  position: absolute;
  right: -18px;
}
@media (max-width: 479px) {
  .baggage_information-new .baggageBox .tooltip-custom {
    right: -7px;
  }
}
.baggage_information-new
  .baggageBox
  .tooltip-custom
  .promo-detail.right_tooltip {
  max-width: max-content;
  min-width: fit-content;
  right: -6px;
}
@media (max-width: 479px) {
  .baggage_information-new
    .baggageBox
    .tooltip-custom
    .promo-detail.right_tooltip {
    right: -3px;
  }
}
.baggage_information-new .baggage_inner_div {
  display: flex;
  width: 180px;
  justify-content: space-between;
}
.itenerary-baggage {
  margin-bottom: 15px;
}
.itenerary-baggage ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.itenerary-baggage ul li {
  display: inline-block;
  margin-right: 20px;
  vertical-align: text-top;
  position: relative;
  font-size: 11px;
  color: #5b5b5b;
  padding-left: 27px;
  margin-bottom: 8px;
}
.itenerary-baggage ul li.no-selection {
  opacity: 0.5;
}
.itenerary-baggage ul li img {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
}
.itenerary-baggage ul li img.last {
  width: auto;
  height: 23px;
}
.itenerary-baggage ul li .cut {
  border-bottom: 2px solid #666;
  display: inline-block;
  width: 27px;
  position: absolute;
  left: -5px;
  top: 10px;
  transform: rotate(45deg);
}
.itenerary-baggage ul li:nth-child(1) .cut {
  left: -3px;
  top: 9px;
}
.itenerary-baggage ul li:nth-child(2) .cut {
  left: -3px;
  top: 8px;
}
baggage-new html,
body {
  height: 100%;
  width: 100%;
  background: #fff;
}
.wrapper {
  min-height: 100%;
  margin-bottom: -16px;
}
.copyright,
.push {
  height: 30px;
}

.top_car_deal {
    padding: 20px 0 25px;
}
.top_car_deal h3 {
    font-size: 18px;
    margin-bottom: 10px;
    padding: 14px 10px;
    border-radius: 2px;
    color: #fff;
    text-align: center;
    font-weight: 500;
    background: #11172b;
}
.top_car_deal .top_deal_block {
    background: #fff;
    overflow: hidden;
    padding: 12px 24px 18px 16px;
    border-radius: 0px;
    box-shadow: 1px 0 5px #d5d5d5;
    border: 1px solid #e3e3e3;
    cursor: pointer;
    margin-bottom: 15px;
}
.top_car_deal .top_deal_block h4 {
    margin: 0 0 10px 0;
    font-size: 14px;
}
.top_car_deal .supplier_logo {
    border: 1px solid #dadada;
}
.top_car_deal .top_deal_block .price_block {
    float: right;
    text-align: right;
}
.top_car_deal .top_deal_block .price_block .starting-fare {
    font-size: 13px;
    text-align: right;
    font-weight: 500;
}
.top_car_deal .top_deal_block .price_block .price {
    color: #e01933;
    font-size: 22px;
    font-weight: 700;
    line-height: 24px;
}
.top_car_deal .top_deal_block .price_block .starting-fare {
    font-size: 13px;
    text-align: right;
    font-weight: 500;
}
.top_car_deal .top_deal_block .left_info {
    float: left;
    margin: 6px 0 0 10px;
    width: 150px;
}
.top_car_deal .top_deal_block .left_info .dates {
    background: #e01933;
    display: inline-block;
    padding: 2px 9px;
    border-radius: 11px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
}
.top_car_deal .top_deal_block .left_info .cites {
    font-size: 14px;
    margin-top: 6px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.top-destination {
    width: 100%;
    padding: 20px 0 25px;
}
.top-destination h2 {
    font-size: 18px;
    margin-bottom: 10px;
    padding: 14px 10px;
    border-radius: 2px;
    color: #ffffff;
    text-align: center;
    font-weight: 500;
    background: #11172b;
}
.top-destination .item_block a {
    text-decoration: none;
    border: 0px solid #ccc;
    border-radius: 0px;
    margin: 0;
    display: block;
    overflow: hidden;
    color: #333;
    box-shadow: 0px 0px 5px #ccc;
    margin-bottom: 15px;
}
.top-destination .item_block a img {
    width: 100%;
    height: 167px;
}
.top-destination .item_block a .deal-content {
    padding: 14px;
    box-shadow: 0px 0px 5px #ccc;
}
.top-destination .item_block a .deal-content .price_block {
    float: right;
    text-align: right;
}
.top-destination .item_block a .deal-content .price_block .starting-fare {
    font-size: 13px;
    text-align: right;
    font-weight: 500;
}
.top-destination .item_block a .deal-content .price_block .price {
    color: #e01933;
    font-size: 22px;
    font-weight: 700;
    line-height: 24px;
}
.top-destination .item_block a .deal-content .price_block .starting-fare {
    font-size: 13px;
    text-align: right;
    font-weight: 500;
}
.top-destination .item_block a .deal-content .name {
    font-size: 18px;
    margin-bottom: 8px;
}
.top-destination .item_block a .deal-content .book {
    font-size: 16px;
    color: #e01933;
    font-weight: 700;
}

@media (max-width: 767px) {
.top_car_deal h3 {
    font-size: 18px;
}
.top_car_deal .top_deal_block {
    padding: 11px 15px 12px 13px;
}
.top_car_deal .top_deal_block h4 {
    font-size: 14px;
}
.top_car_deal .top_deal_block img {
    width: 40px;
}
.top_car_deal .top_deal_block .left_info {
    margin-top: 0px;
}
.top_car_deal .top_deal_block .left_info .cites {
    font-size: 13px;
}
.top-destination {
    padding: 0px;
}
.top-destination h2 {
    font-size: 18px;
    margin-bottom: 15px;
}

}
