/*
 * Theme Name: vemaybaynamphuong_2026
 * Description: vemaybaynamphuong_2026
 * Theme URI: https://vemaybaynamphuong.vn/
 * Version: 1.0.2
 * Author: vemaybaynamphuong_2026
 * Author URI: https://vemaybaynamphuong.vn/
 * Tags: ve may bay gia re, ve may bay khuyen mai
 * Textdomain: https://vemaybaynamphuong.vn/
 */

/* ==================== CSS FOR NEW VERSION ==================== */
/* ============================================================= */
/* ============================================================= */
/* ============================================================= */
/* ============================================================= */
/* ============================================================= */
/* ============================================================= */
/* ============================================================= */
/* ============================================================= */
/* ============================================================= */
/* ============================================================= */
/* ==================== CSS FOR NEW VERSION ==================== */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

/* html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
 */
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --white-color: #fff;
  --black-color: #000;
  --text-color: #4a5568;
  --border-color: rgb(203, 213, 224);
  --title-color: #1a202c;
  --subheading-color: #4a5568;
  --bgsection-color: rgb(237, 242, 247);
  --bgdecs-color: #e8f6ef;
  --bgheading-color: #222;
  --bgsection-footer: #f7fafc;
  --saphire-color: #00917c;
  --green-color: #00917c;
  --blue-color: #51ade5;
  --red-color: #f76570;
  --redvj-color: #ec2029;
  --orange-color: #f3a46b;
  --yellow-color: #ffd205;
  --purple-color: #ba71da;

  --hue-color: 190;
  --text-color-light: hsl(var(--hue-color), 8%, 60%);
  --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 75%);
}

@font-face {
  font-family: Mt;
  src: url(fonts/Mt/Mt-Regular.otf);
  font-display: swap;
}

@font-face {
  font-family: Mt-SemiBold;
  src: url(fonts/Mt/Mt-SemiBold.otf);
  font-display: swap;
}

@font-face {
  font-family: Mt-Bold;
  src: url(fonts/Mt/Mt-Bold.otf);
  font-display: swap;
}

* {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  line-height: 1.6rem;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: Mt, -apple-system, BlinkMacSystemFont, sans-serif !important;
  overflow-x: hidden;
}

/* =================== SCROLLBAR ================ */
/* ============================================== */
/* ============================================== */
::-webkit-scrollbar,
.popup__wrap::-webkit-scrollbar {
  width: 1rem;
  background-color: var(--scroll-bar-color);
}

::-webkit-scrollbar-thumb,
select::-webkit-scrollbar-thumb,
.popup__wrap::-webkit-scrollbar-thumb,
ul.select2-results__options::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb-color);
}

::-webkit-scrollbar-thumb:hover,
select::-webkit-scrollbar-thumb:hover,
.popup__wrap::-webkit-scrollbar-thumb:hover,
ul.select2-results__options::-webkit-scrollbar-thumb:hover {
  background-color: var(--text-color-light);
}

select::-webkit-scrollbar,
ul.select2-results__options::-webkit-scrollbar {
  width: 0.7rem;
  background-color: var(--scroll-bar-color);

}

/* ================ END SCROLLBAR =============== */
/* ============================================== */
/* ============================================== */

ul {
  margin-bottom: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

/*=========== AMINATION =========*/

@keyframes line-animation {
  0% {
    width: 0;
    opacity: 1;
  }

  99% {
    width: 100%;
    opacity: 1;
  }

  100% {
    width: 100%;
    opacity: 0;
  }
}

@keyframes open-animation {
  0% {
    height: 0;
    top: 50%;
  }

  100% {
    height: 100vh;
    top: 0;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes growth {
  from {
    transform: scale(var(--growth-from));
  }

  to {
    transform: scale(var(--growth-to));
  }
}

.global-wrap {
  overflow: hidden;
}

.rotate-90 {
  transform: rotate(90deg);
}

.pass {
  color: var(--green-color);
}

/*========== Btn style ==========*/
.btn {
  min-width: 124px;
  text-decoration: none;
  border: none;
  border-radius: 0.375rem;
  font-size: 1.5rem;
  padding: 15px 8px;
  outline: none;
  cursor: pointer;
  color: var(--text-color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: 1.6rem;
}

/* row reverse */

.flex-direction-column {
  flex-direction: column !important;
}

.row-reverse {
  flex-direction: row-reverse;
}

/* text color */
.text-white {
  color: var(--white-color);
}

.text-green {
  color: var(--green-color) !important;
}

.text-orange {
  color: var(--orange-color) !important;
}

.text-blue-sky {
  color: #51ade5 !important;
}

.text-default {
  color: var(--text-color) !important;
}

/* background color */

.background-white {
  background-color: var(--white-color);
}

.background-yellow {
  background-color: #ffd205;
}

.background-pink {
  background-color: #f76570;
}

.background-purple {
  background-color: #ba71da;
}

.background-green {
  background-color: #1bbc9b;
}

.background-blue-sky {
  background-color: #51ade5;
}

/* Btn color */
.btn-yellow {
  background-color: #ffd205;
}

.btn-pink {
  background-color: #f76570;
}

.btn-purple {
  background-color: #ba71da;
}

.btn-blue-sky {
  background-color: #51ade5;
}

.btn-orange {
  background-color: #f3a46b;
}

.btn-white {
  background-color: var(--white-color);
}

/* ------btn gradient----- */
.btn-yellow-g {
  background: linear-gradient(to right, #ffd205 0%, #ff9b05 100%);
}

.btn-purple-g {
  background: linear-gradient(to right, #ba71da 0%, #da717b 100%);
}

.btn-pink-g {
  background: linear-gradient(to right, #f76570 0%, #f78d65 100%);
}

.btn-green-g {
  background: linear-gradient(to right, #1bbc9b 0%, #1bbc63 100%);
}

.btn-orange-g {
  background: linear-gradient(to right, #f3a46b 0%, #f3c96b 100%);
}

.btn-blue-sky-g {
  background: linear-gradient(to right, #51ade5 0%, #14d5b1 100%);
}

.btn-green-sky-g {
  background: #00917c;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right,
      #54777d,
      #00917c);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right,
      #54777d,
      #00917c);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.btn-green-sky-g:hover {
  background: #00917c;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right,
      #00917c,
      #54777d);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right,
      #00917c,
      #54777d);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.btn-blue-g {
  background: linear-gradient(to right, #4facfe 0%, #51ade5 100%);
}

/* btn hover */
.btn-white:hover {
  background: linear-gradient(to right, #edc3ff 0%, #ffd7db 100%);
}

.btn-yellow:hover {
  background: linear-gradient(to left bottom, #ffd205 0%, #ff9b05 100%);
}

.btn-pink:hover {
  background: linear-gradient(to left bottom, #f76570 0%, #f75c2d 100%);
}

.btn-purple:hover {
  background: linear-gradient(to left bottom, #ba71da 0%, #da717b 100%);
}

.btn-blue-sky:hover {
  background: linear-gradient(to left bottom, #51ade5 0%, #14d5b1 100%);
}

.btn-orange:hover {
  background: linear-gradient(to left bottom, #f3a46b 0%, #ff792c 100%);
}

/*Canh lề*/
.mt-6 {
  margin-top: 6px;
}

.mb-6 {
  margin-bottom: 6px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

.pdr-32 {
  padding-right: 32px;
}

.no-wrap {
  flex-wrap: nowrap;
}

.m0-auto {
  margin: 0 auto !important;
}

.form-group {
  margin-bottom: 15px;
}

/* =========== TOGGLE SWICHES ======== */
.toggle-switches {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.toggle-direction {
  position: relative;
  display: block;
  width: 40px;
  height: 20px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transform: translate3d(0, 0, 0);
}

.toggle-direction:before {
  content: "";
  position: relative;
  top: 3px;
  left: 3px;
  width: 34px;
  height: 14px;
  display: block;
  background: #9a9999;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.toggle-direction span {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  display: block;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(154, 153, 153, 0.5);
  transition: all 0.2s ease;
}

.toggle-direction span:before {
  content: "";
  position: absolute;
  display: block;
  margin: -18px;
  width: 56px;
  height: 56px;
  background: var(--bgdecs-color);
  border-radius: 50%;
  transform: scale(0);
  opacity: 1;
  pointer-events: none;
}

#cbx:checked+.toggle-direction:before {
  background: #a0d995;
}

#cbx:checked+.toggle-direction span {
  background: var(--saphire-color);
  transform: translateX(20px);
  transition: all 0.2s cubic-bezier(0.8, 0.4, 0.3, 1.25), background 0.15s ease;
  box-shadow: 0 3px 8px rgba(79, 46, 220, 0.2);
}

#cbx:checked+.toggle-direction span:before {
  transform: scale(1);
  opacity: 0;
  transition: all 0.4s ease;
}

/* breadcumb */

#progressbar {
  overflow: hidden;
  margin-top: 20px;
  overflow: hidden;
  counter-reset: step;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px,
    rgb(209, 213, 219) 0px 0px 0px 1px inset;
  padding: 20px;
  border-radius: 0.375rem;
  background: var(--white-color);
}

#progressbar li {
  list-style-type: none;
  color: #000;
  float: left;
  position: relative;
  text-align: center;
  width: 25%;
  font-size: 14px;
}

#progressbar li::before {
  content: counter(step);
  counter-increment: step;
  width: 20px;
  line-height: 20px;
  display: block;
  font-size: 12px;
  color: #333;
  background: rgba(203, 203, 203, 0.2);
  border-radius: 3px;
  text-align: center;
  margin: auto;
}

#progressbar li::after {
  content: "";
  width: 71%;
  height: 2px;
  background: #dbdbdb;
  position: absolute;
  right: 65%;
  top: 9px;
}

#progressbar li.current:before,
#progressbar li.current:after,
#progressbar li.pass:before,
#progressbar li.pass:after {
  background: var(--green-color);
  color: var(--white-color);
  z-index: 1;
}

#progressbar li:first-child:after {
  content: none;
}

#progressbar li.pass a {
  color: var(--green-color);
}

/* =========== scroll to top ========= */
.scroll-to-top {
  position: fixed;
  right: 40px;
  bottom: 70px;
  border: 5px solid var(--saphire-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: none;
  cursor: pointer;
  z-index: 10;
}

#return-to-top {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scroll-to-top svg {
  position: absolute;
  color: var(--saphire-color);
  font-size: 22px;
  font-weight: 700;
  transition: transform 0.5s ease-in;
}

.scroll-to-top:hover svg {
  transform: rotate(360deg);
}

/* =========== scroll to top ========= */

/* ============== toast ========*/
.toast-warning {
  min-width: 400px;
  max-width: 500px;
  background-color: var(--white-color);
  color: var(--black-color);
  padding: 20px 0;
  z-index: 1010;
  font-size: 14px;
  position: fixed;
  top: 20%;
  right: 32px;
  display: flex;
  align-items: center;
  border-left: 4px solid var(--red-color);
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px,
    rgba(17, 17, 26, 0.05) 0px 8px 32px;
  transition: all linear 0.3s;
}

.toast-passenger {
  transform: translateX(115%);
}

.toast-location {
  transform: translateX(115%);
}

.toast-location span,
#req-select span {
  flex: 1;
  text-align: left;
}

.toast-passenger.active {
  transform: translateX(0);
}

.toast-location.active {
  transform: translateX(0);
}

.toast-warning svg,
#req-select svg {
  color: var(--red-color);
  font-size: 24px;
  margin: 0 10px;
  cursor: pointer;
}

#req-select svg {
  color: var(--green-color);
}

#req-select {
  transform: translateX(300%);
  min-width: 300px;
  max-width: 500px;
  background-color: var(--white-color);
  color: var(--black-color);
  padding: 20px 0;
  z-index: 1010;
  font-size: 14px;
  position: fixed;
  top: 20%;
  right: 32px;
  display: flex;
  align-items: center;
  border-left: 4px solid var(--green-color);
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px,
    rgba(17, 17, 26, 0.05) 0px 8px 32px;
  transition: all linear 0.3s;
}

#req-select.show-toast {
  /* visibility: visible; */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
  transform: translateX(0);
}

/* =============== end toast =================*/

/* ======== button tìm chuyến bay ========== */
.button-gradient {
  display: block;
  width: 320px;
  max-width: 100%;
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
  transform: translatez(0);
  text-decoration: none;
  box-sizing: border-box;
  font-size: 22px;
  font-weight: normal;
  border: none;
}

.button-gradient.continue {
  width: 250px;
}

.button-gradient.sidebar-continue,
.button-gradient.home {
  width: 100%;
  /* margin-top: 10px; */
  font-size: 20px;
}

.button-gradient.book {
  width: 270px;
  margin: auto 0 auto auto;
}

.instagram {
  text-align: center;
  border-radius: 50px;
  padding: 10px;
  color: var(--white-color);
  background: var(--saphire-color);
  transition: all 0.2s ease-out 0s;
  font-weight: bold;
  width: 100%;
}

.instagram.book {
  padding: 12px;
}

a.instagram:hover {
  color: var(--black-color);
}

.gradient {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  bottom: auto;
  margin: auto;
  z-index: -1;
  background: radial-gradient(90px circle at top center,
      rgb(16 193 98 / 80%) 30%,
      rgba(255, 255, 255, 0));
  transition: all 0s ease-out 0s;
  transform: translatex(-140px);
  animation: 18s linear 0s infinite move;
}

@keyframes move {
  0% {
    transform: translatex(-140px);
  }

  25% {
    transform: translatex(140px);
    opacity: 0.3;
  }

  50% {
    transform: translatex(140px);
    opacity: 1;
    background: radial-gradient(90px circle at bottom center,
        rgb(16 193 98 / 80%) 30%,
        rgba(255, 255, 255, 0));
  }

  75% {
    transform: translatex(-140px);
    opacity: 0.3;
  }

  100% {
    opacity: 1;
    transform: translatex(-140px);
    background: radial-gradient(90px circle at top center,
        rgb(16 193 98 / 80%) 30%,
        rgba(255, 255, 255, 0));
  }
}

/* icon */

.svg-plane {
  fill: var(--saphire-color);
  margin-bottom: 4px;
  transform: rotate(180deg);
}

.journey-line {
  border-left: 1px solid var(--saphire-color);
  height: 132px;
  padding-bottom: 24px;
  width: 1px;
  padding-top: 4px;
}

/* ========== TITLE ========== */
.section-title {
  margin-bottom: 20px;
  font-size: 30px;
  line-height: 30px;
  color: var(--title-color);
  font-weight: bold;
  text-align: center;
  text-decoration: none;

  position: relative;
  z-index: 0;

  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title a {
  color: var(--saphire-color);
}

.box-title {
  position: absolute;
  left: 0;
  bottom: 0;

  color: var(--white-color);
  width: 100%;
  height: 70px;

  display: flex;
  padding: 0 0 25px 25px;
  font-size: 20px;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.7) 100%);
  align-items: flex-end;
  font-weight: 600;
  line-height: 26px;
  border-radius: 0px 0px 8px 8px;
}

.swiper-wrapper .box-title {
  border-radius: 0;
  padding: 0 0;
  margin: 0;
  text-align: center;
  display: block;
  height: 55px;
  font-size: 18px;
}

.box-heading {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  color: var(--title-color);
  margin-bottom: 12px;
  line-height: 20px;
}

.box-subheading {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  margin: 0;
}

.box-heading-h6,
.thead-title,
.name__passenger--title {
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  color: var(--title-color);
  margin-bottom: 0;
}

.title-input,
.title-select,
.caption-details,
.caption-birthday {
  color: var(--title-color);
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  margin-bottom: 5px;
}

.box-subheading-span,
.tbody-title {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: var(--text-color);
}

/* ======== BREADCRUMB ======== */
.breadcrumb__list {
  display: flex;
  align-items: center;
  margin-top: 25px;
}

.breadcrumb__list li#breadcrumbs {
  margin: auto 0;
  font-size: 14px;
  color: var(--text-color);
}

.breadcrumb__list li#breadcrumbs a {
  color: var(--text-color);
}

.breadcrumb__list li#breadcrumbs:hover a {
  color: var(--saphire-color);
}

li.breadcrumb__item {
  position: relative;
  display: flex;
  align-items: center;
}

li.breadcrumb__item:hover a {
  color: var(--saphire-color);
}

li.breadcrumb__item a {
  font-size: 14px;
  line-height: 20px;
  margin-right: 10px;
  color: var(--title-color);
}

li.breadcrumb__item span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
}

li.breadcrumb__item.current a {
  color: var(--saphire-color);
}

/* CSS FOR ERR */
.err__name {
  margin-top: 5px;
  font-size: 14px;
  color: var(--redvj-color);
}

/* === Position ==== */
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.align-items-center {
  align-items: center !important;
}

.cursor-pointer {
  cursor: pointer;
}

/* memu table and tablet */
.menu-control__tablet-wrap,
.menu-control__mobile-wrap {
  display: none;
}

/* check box */
.form-control:disabled {
  background-color: transparent !important;
  cursor: default !important;
}

.form-group {
  cursor: pointer;
}

/* ======= CUSTOM DATEPICKER ========== */
#ui-datepicker-div {
  padding: 10px !important;
  border-radius: 0.375rem !important;
  width: 32em;
  box-shadow: rgb(0 0 0 / 5%) 0px 0px 0px 1px,
    rgb(209 213 219) 0px 0px 0px 1px inset !important;
}

#ui-datepicker-div .ui-datepicker-header {
  background: none;
  padding: 0;
  border: 0;
}

.ui-datepicker-year {
  color: var(--title-color);
  font-size: 16px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  width: 40px !important;
  height: 22px !important;
  top: 0 !important;
}

.ui-datepicker-month {
  font-size: 16px;
  color: var(--saphire-color);
  margin-right: 5px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  cursor: pointer;
}

.ui-datepicker th {
  font-size: 13px;
}

table.ui-datepicker-calendar tbody tr td a.ui-state-default {
  border: 1px solid #ccc;
  font-size: 13px;
  color: var(--saphire-color);
  font-weight: 600;
}

table.ui-datepicker-calendar tbody tr td {
  position: relative;
  width: 14.2857%;
  line-height: 0;
  padding-top: 5px;

  border: 1px solid var(--border-color);
  background: var(--white-color);
  padding: 7px;
  color: var(--black-color);
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}

table.ui-datepicker-calendar tbody tr td.ui-state-disabled {
  background-color: #dbdbdb;
}

table.ui-datepicker-calendar tbody tr td a {
  padding: 7px 0 7px 2px !important;
  text-align: left;
}

table.ui-datepicker-calendar tbody tr td.ui-datepicker-current-day {
  background-color: var(--saphire-color) !important;
}

.ui-datepicker table.ui-datepicker-calendar td a span.ui-datepicker-lunar {
  display: block;
}

.ui-datepicker .ui-state-highlight span.ui-datepicker-lunar {
  color: #333;
}

.ui-datepicker .ui-state-active span.ui-datepicker-lunar {
  color: #333;
}

table.ui-datepicker-calendar .ui-state-default,
.ui-widget-content table.ui-datepicker-calendar .ui-state-default,
.ui-widget-header table.ui-datepicker-calendar .ui-state-default {
  border-radius: 0;
  border: none;
  background: none;
}

table.ui-datepicker-calendar>thead>tr>th:nth-child(6)>span {
  color: var(--saphire-color);
}

table.ui-datepicker-calendar>thead>tr>th:nth-child(7)>span {
  color: var(--redvj-color);
}

table.ui-datepicker-calendar td.ui-datepicker-current-day a.ui-state-active {
  background-color: var(--saphire-color) !important;
  font-size: 13px;
}

.ui-datepicker table.ui-datepicker-calendar td a:hover span.ui-datepicker-day {
  color: #333;
}

.ui-datepicker table.ui-datepicker-calendar td a:hover span.ui-datepicker-lunar {
  color: #333;
}

.ui-datepicker table.ui-datepicker-calendar td a:hover {
  background: var(--white-color) !important;
  color: #333;
  border: 0;
}

.ui-datepicker table.ui-datepicker-calendar td:nth-child(6) .ui-datepicker-day {
  color: #158cb3 !important;
}

.ui-datepicker table.ui-datepicker-calendar td:nth-child(7) .ui-datepicker-day {
  color: var(--redvj-color) !important;
}

.ui-datepicker .ui-datepicker-lunar {
  text-align: right;
  font-size: 13px;
  font-weight: 600;
  line-height: 100%;
  color: var(--text-color);
  padding: 4px 4px 0 0;
}

.ui-datepicker td a span.ui-datepicker-day {
  text-align: left;
}

.ui-datepicker table.ui-datepicker-calendar td span.ui-datepicker-day {
  padding: 7px 0 7px 2px !important;
  text-align: left;
}

.ui-datepicker table.ui-datepicker-calendar td span.ui-datepicker-lunar {
  padding-right: 0 !important;
}

.ui-datepicker table.ui-datepicker-calendar a.ui-state-default span.lunar-date-tet {
  color: var(--white-color);
  background: var(--redvj-color);
  padding: 4px 4px 4px 0 !important;
}

.ui-datepicker table.ui-datepicker-calendar a.ui-state-default span.lunar-date-leap {
  color: var(--white-color);
  background: #ffc52a;
  padding: 4px 4px 4px 0 !important;
}

.ui-datepicker table.ui-datepicker-calendar a.ui-state-hover span.lunar-date-tet {
  color: var(--white-color) !important;
}

.ui-datepicker table.ui-datepicker-calendar a.ui-state-hover span.lunar-date-leap {
  color: var(--white-color) !important;
}

table.ui-datepicker-calendar td.ui-datepicker-current-day a.ui-state-active {
  color: var(--white-color);
  font-size: 13px;
}

table.ui-datepicker-calendar td.ui-datepicker-current-day span.ui-datepicker-lunar {
  color: var(--white-color);
}

table.ui-datepicker-calendar td.ui-datepicker-current-day a.ui-state-active.ui-state-hover {
  background-color: var(--saphire-color) !important;
}

.ui-datepicker table.ui-datepicker-calendar span.lunar-date-tet {
  color: var(--white-color);
  background: var(--redvj-color);
  padding: 4px 4px 4px 0 !important;
}

table.ui-datepicker-calendar td.ui-state-disabled span.ui-state-default {
  padding: 7px 0 7px 2px !important;
  text-align: left;
  font-size: 12px;
}

.ui-datepicker table.ui-datepicker-calendar tbody tr td span.ui-datepicker-lunar.lunar-date-tet {
  padding-right: 7px !important;
}

/*  ==== HEADER ====== */
/* ====== STYLE FOR HEADER ======= */
/* .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 60px;
  width: 100%;
  background: var(--white-color);

  box-shadow: rgb(17 17 26 / 20%) 0px 1px 0px;
  position: fixed;
  z-index: 99;
  height: 96px;
} */

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

.header__logo {
  display: flex;
  align-items: center;
  width: 160px;
  padding: 0 15px;
}

.header__logo--img {
  position: relative;
  display: block;
  width: 70%;
  top: -4px;
  cursor: pointer;
}

.header__logo--link {
  cursor: pointer;
  display: flex;
}

.header-nav {
  display: flex;
  align-items: center;
  padding: 0 15px;
  list-style: none;
  flex: 1;
}

.nav__item {
  position: relative;
  padding: 15px 0px;
  cursor: pointer;
  margin: 0 15px;
}

.nav__item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0px;
  width: 0%;
  height: 3px;
  background: var(--saphire-color);
  transition: all 0.3s;
  border-radius: 5px;
}

.nav__item:hover::before {
  width: 100%;
}

.nav__item--link {
  display: block;
  color: var(--black-color);
  font-size: 15px;
  line-height: 18px;
  text-decoration: none;
  letter-spacing: 1px;
  font-weight: 600;
}

.header-phone {
  color: var(--white-color);
  display: flex;
  font-size: 18px;
  margin: 0;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}

.header-phone:hover {
  color: var(--white-color);
}

.phone-number {
  margin-left: 5px;
  text-shadow: 1px 1px 2px var(--black-color);
}

.accountant-phone {
  display: block !important;
  text-align: center;
}

.section__decs .accountant-phone__dash {
  margin: 0 3px 0 0;
}

/* =========== Search =========*/
.search__section {
  /* background-image: linear-gradient(
      to top,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.05)
    ),
    url(images/img/Images-bg/bg_search.jpg); */
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* margin-top: 96px; */
  padding: 80px 0 200px;

  cursor: pointer;
  width: 100%;
}

.section__decs {
  color: var(--text-color);
  padding: 15px;
  border-bottom: 1px solid rgb(237, 242, 247);
  font-size: 14px;
  background-color: var(--bgdecs-color);
  border-radius: 8px;
  line-height: 22px;
}

.section__decs a {
  color: var(--saphire-color);
}

.section__decs a:hover {
  color: var(--saphire-color);
}

.section__decs span {
  display: inline-block;
  font-weight: 600;
}

ul.section__decs li {
  display: flex;
  align-items: center;
}

ul.section__decs li p {
  margin: 0;
}

.search__title {
  margin: 0 0 0 10px;
  font-size: 4rem;
  line-height: 20px;
  color: var(--white-color);
  font-weight: bold;
  text-align: center;
  padding: 15px 0;
  margin-bottom: 20px;
}

.form-control {
  padding: 10px;
  font-size: 14px;
  color: var(--text-color);
  appearance: auto;
}

/*============== list dep and list des ============ */
.grid {
  list-style: none;
}

.gc {
  box-sizing: border-box;
  display: inline-block;
  margin-right: -0.25em;
  min-height: 1px;
  vertical-align: top;
}

.gc--1-of-4 {
  width: 25%;
}

.gc--3-of-4 {
  width: 75%;
}

.list__dep--wrap-mobile,
.list__ret--wrap-mobile {
  display: none;
}

.list__dep--wrap,
.list__ret--wrap {
  position: absolute;
  top: 110%;
  width: 85%;
  padding: 15px;
  border-radius: 8px;

  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  z-index: 10;
}

#listDes .list__ret--wrap {
  left: 15%;
}

.list__dep--wrap .menu div,
.list__ret--wrap .menu div {
  padding: 15px 20px 15px 40px;
  margin-bottom: 10px;
  color: var(--title-color);
  background: var(--white-color);

  box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em,
    rgba(90, 125, 188, 0.05) 0px 0.25em 1em;

  cursor: pointer;
  position: relative;
  vertical-align: middle;
  font-weight: 700;
  transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
  text-transform: uppercase;

  font-size: 14px;
}

.menu div:last-child {
  margin-bottom: 0px;
}

.list__dep--wrap .menu div:hover,
.list__ret--wrap .menu div:hover {
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px,
    rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.list__dep--wrap .menu div span.light,
.list__ret--wrap .menu div span.light {
  height: 10px;
  width: 10px;
  position: absolute;
  top: 22px;
  left: 15px;
  background-color: var(--text-color);
  border-radius: 100%;
  transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.list__dep--wrap .menu div.active span.light,
.list__ret--wrap .menu div.active span.light {
  background-color: var(--saphire-color);
  left: 0;
  height: 100%;
  width: 3px;
  top: 0;
  border-radius: 0;
}

.list__dep--wrap .menu div.active,
.list__ret--wrap .menu div.active {
  color: var(--saphire-color);
  padding: 15px 20px 15px 20px;
}

ul.nacc {
  position: relative;
  height: 0px;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

ul.nacc li {
  opacity: 0;
  list-style: none;
  transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
  /* display: none; */
  transform: translateX(50px);
  position: absolute;
}

ul.nacc li.active {
  transition-delay: 0.3s;
  z-index: 2;
  opacity: 1;
  /* display: block; */
  transform: translateX(0px);
}

.list-area {
  display: flex;
  padding: 15px 10px 10px 30px;
}

.list-destination {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.destination-item {
  /* width: 75px;
  height: 75px;
  position: relative; */
  width: 30%;
}

.destination-title {
  /* position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 14px;
  text-transform: capitalize;
  text-align: center;
  
  width: 120%; */
  font-size: 14px;
  text-transform: capitalize;
}

input#search_dep--mobile,
input#search_ret--mobile,
input#search_dep,
input#search_ret {
  width: 100%;
  padding: 8px 13px;
  font-size: 14px;
  margin: 0 10px;
  outline: none;
  border: 1px solid var(--saphire-color);
  border-radius: 0.375rem;
}

.easy-autocomplete {
  width: auto !important;
}

ul#result_dep li,
ul#result_ret li,
ul#result_dep--mobile li,
ul#result_ret--mobile li {
  padding: 10px 20px;
  font-size: 12px;
  color: var(--text-color);
}

ul#result_dep,
ul#result_ret,
ul#result_dep--mobile,
ul#result_ret--mobile {
  position: absolute;
  top: 60px;
  z-index: 101;
  background: var(--white-color);
  left: 25%;
  width: 73%;
  margin: 0 20px;
  height: auto !important;
  max-height: 235px !important;
  overflow-y: scroll;
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px,
    rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

/*============== list dep and list des ============ */

/* ======== PASSENGER ======= */
.hide {
  display: none !important;
}

.show {
  display: flex !important;
}

.group-passenger {
  position: relative;
}

.dropdown-box-inner {
  position: absolute;
  top: 200%;
  left: 0;
  background: #fff;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  width: 200%;
  left: 0;
  padding: 10px;

  display: flex;
  flex-direction: column;
  border-radius: 8px;
  z-index: 10;
}

.row-adult,
.row-child,
.row-infant {
  align-items: center;
  padding: 10px 0;

  border-bottom: 1px solid #ccc;
}

.row-child {
  padding: 12px 0;
}

.row-infant {
  border-bottom: none;
}

.row-confirm {
  display: none;
}

.title-people {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
}

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

.btn-value,
input.input-value {
  color: #000;
  font-weight: 600;

  width: 24px;
  display: flex;
  font-size: 16px;
  line-height: 19px;
  justify-content: center;
  outline: none;
  border: none;
  text-align: center;
}

/* ======== END PASSENGER ======= */

/* ============== BEGIN SEARCH =============*/
.section__search--wrap {
  width: 80%;
}

.booking-form {
  position: relative;
  background: var(--white-color);
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px,
    rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px,
    rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
}

.booking-form .form-btn {
  padding: 15px 5px;
}

.booking-form .submit-btn {
  background: var(--saphire-color);
  border: none;
  text-transform: capitalize;
  display: block;
  border-radius: 2px;
  width: 100%;
  height: 75px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white-color);
}

.booking-form .form-search-label {
  color: var(--saphire-color);
  display: block;
  font-weight: 600;
  height: 25px;
  line-height: 25px;
  font-size: 14px;
}

.booking-form .form-group {
  position: relative;
  padding: 15px;
  margin-bottom: 0px;
}

.booking-form .form-control,
.count-passenger {
  background-color: transparent;
  border-radius: 0px;
  border: none;
  height: 50px;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 16px;
  color: var(--text-color);
  font-weight: 400;
  padding: 0;
  cursor: pointer;
}

.booking-form .form-group:after {
  content: "";
  background: rgba(129, 131, 144, 0.15);
  position: absolute;
  top: 15px;
  bottom: 0;
  right: 0px;
  width: 2px;
  height: 75px;
}

.booking-form .form-control::-webkit-input-placeholder {
  color: #818390;
}

.booking-form .form-control:-ms-input-placeholder {
  color: #818390;
}

.booking-form .form-control::placeholder {
  color: #818390;
}

.booking-form input[type="date"].form-control:invalid {
  color: #818390;
}

#input_from,
#input_to {
  cursor: pointer;
}

.booking-form div.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.booking-form div.form-control+.select-arrow {
  position: absolute;
  right: 0px;
  bottom: -25px;
  width: 32px;
  line-height: 32px;
  height: 32px;
  text-align: center;
  pointer-events: none;
  color: #818390;
  font-size: 14px;
}

.booking-form div.form-control+.select-arrow:after {
  content: "\279C";
  display: block;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.count-passenger {
  position: absolute;
  top: 50px;
}

/* ============== END SEARCH ==========*/
input.input-departure:focus,
input.input-departure:active,
input.input-return:focus,
input.input-return:active {
  border-bottom: 2px solid var(--saphire-color);
}

/* ======== END HEADER ========= */

.sidebar-filters,
.form-search-sidebar,
.sidebar-filters-price,
.sidebar-sort-price {
  width: 100%;
  box-shadow: rgb(0 0 0 / 5%) 0px 0px 0px 1px,
    rgb(209 213 219) 0px 0px 0px 1px inset;
  border-radius: 0.375rem;
  background: var(--white-color);
  margin-top: 24px;
  padding: 20px;
}

.form-search-sidebar,
.sidebar-filters-price,
.sidebar-sort-price {
  margin-bottom: 24px;
}

.form-search-sidebar {
  background: var(--border-color);
}

.sidebar-filters-wrap {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.sidebar__title,
.sidebar__reset {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
  padding: 10px 0;
}

.sidebar__reset {
  color: var(--saphire-color);
  cursor: pointer;
}

/* ========= TITLE LIST POST ======== */
.category-wrap,
.fullpage-wrap {
  height: 50vh;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  /* background-image: url(images/img/Images-bg/bg_post.jpg); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0 5%;
  background: var(--bgdecs-color);
}

.category__title {
  font-size: 30px;
  font-weight: 600;
  color: var(--black-color);
}

.category__desc {
  font-size: 16px;
  color: var(--black-color);

  padding: 0 20%;
}

/* ============== LIST POST ========== */
.list-card {
  margin: 25px 25px 0px 0;
}

.blog-card {
  display: flex;
  flex-direction: row;
  background: var(--white-color);
  border-radius: 0.375rem;
  overflow: hidden;
  z-index: 0;
  margin-bottom: 30px;
  line-height: 2;
  box-shadow: rgb(60 64 67 / 30%) 0px 1px 2px 0px,
    rgb(60 64 67 / 15%) 0px 2px 6px 2px;
}

.list-card .blog-card button.button_cat {
  margin-top: 5px;
  float: right !important;
}

.blog-card a {
  color: inherit;
}

.blog-card a:hover {
  color: var(--saphire-color);
}

.blog-card:hover .photo {
  transform: scale(1.3) rotate(3deg);
}

.blog-card .meta {
  position: relative;
  z-index: 0;
  height: 200px;

  flex-basis: 35%;
  height: auto;
}

.blog-card .photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.2s;
}

.blog-card .description {
  padding: 2rem;
  background: var(--white-color);
  position: relative;
  /* z-index: 1; */

  flex-basis: 65%;
}

.blog-card .description h2 {
  line-height: 1;
  margin: 0;
  font-size: 20px;
  color: var(--saphire-color);
  font-weight: 600;
}

.blog-card p {
  position: relative;
  margin: 1rem 0 0;
  font-size: 14px;
  text-align: justify;
}

.blog-card p:first-of-type {
  margin-top: 1.25rem;
}

.content__card_mobile {
  display: none;
}

.button_cat {
  border: none;
  display: block;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  outline: none;
  overflow: hidden;
  position: relative;
  color: var(--white-color);
  font-weight: 600;
  font-size: 14px;
  background-color: var(--bgheading-color);
  padding: 8px 35px;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  font-family: "Mt", sans-serif;
}

.button_cat span {
  position: relative;
  /* z-index: 1; */
}

.button_cat:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 490%;
  width: 140%;
  background: var(--saphire-color);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
  transform: translateX(-98%) translateY(-25%) rotate(45deg);
}

.button_cat:hover:after {
  -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
  transform: translateX(-9%) translateY(-25%) rotate(45deg);
}

/* ========= PAGINATION ========== */
.post-panigation {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.wp-pagenavi .last,
.wp-pagenavi span.pages {
  display: none;
}

.wp-pagenavi a,
.wp-pagenavi span.current,
.wp-pagenavi span.extend {
  font-weight: 700;
  font-size: 1.7rem !important;
  line-height: 3.2rem;
  display: inline-block;
  padding: 0.2rem 1.3rem !important;
  height: 3.6rem;
  margin: 0.2rem 0.7rem;
  color: var(--black-color) !important;
  transition: all, 0.3s, ease-in-out;

  text-shadow: none !important;
  border: none !important;
  background: none !important;
  box-shadow: none !important;
}

.wp-pagenavi span.current {
  background-color: var(--black-color) !important;
  color: var(--white-color) !important;
}

.wp-pagenavi a:hover {
  background: #d3d3d3 !important;
  cursor: pointer;
}

/* ===================== FULLPAGE ==================== */
/* =================================================== */
/* =================================================== */
/* =================================================== */
/* =================================================== */
.fullpage__title {
  font-size: 30px;
  font-weight: 600;
  color: var(--black-color);
}

.section__category,
.section__fullpage {
  /* margin-top: 96px; */
  margin-top: 80px;
}

/* =================== SINGLE ======================== */
/* =================================================== */
/* =================================================== */
/* =================================================== */
/* =================================================== */
.infor__single-wrap,
.infor__fullpage-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.block-infor {
  display: flex;
  align-items: center;
  margin: 0 10px;
}

.block-infor span {
  font-size: 14px;
  color: var(--black-color);
  line-height: 16px;
  font-weight: 600;
  margin-left: 5px;
}

.block-infor a {
  color: var(--black-color);
}

.content__post-wrap {
  padding: 12px 0;
}

.single__social--title {
  font-size: 14px;
  line-height: 20px;
  color: var(--text-color);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.single__social--list {
  display: flex;
  align-items: center;
}

.single__social--wrap {
  display: flex;
  align-items: center;
}

li.post__social--item {
  margin: 0 10px;
}

li.post__social--item:last-child {
  margin-right: 0;
}

li.post__social--item img {
  object-fit: cover;
  width: 40px;
  height: 40px;
}

.post__content,
.post__discuss {
  padding: 0 4%;
}

.post__content a,
.post__discuss a {
  color: var(--saphire-color);
}

.post__content p {
  font-size: 14px;
  color: var(--text-color);
  line-height: 30px;
  text-align: justify;
}

.post__content img,
.post__content .wp-caption img {
  display: block;
  margin: 10px auto;
}

.post__content .wp-caption {
  margin: 0 auto;
}

.post__content h2 {
  color: var(--saphire-color);
  font-weight: 600;
  margin: 15px 0 10px;
  line-height: 2rem;
}

.post__content h3 {
  font-weight: 600;
  font-size: 16px;
  color: var(--saphire-color);
  margin: 10px 0;
  text-transform: capitalize;
}

.post__content h3.none-content {
  text-align: center;
}

.post__content table {
  border: 1px solid var(--black-color);
  margin: 10px auto;
  font-size: 14px;
}

.post__content tbody,
.post__content tr,
.post__content td {
  border: 1px solid var(--black-color);
}

.post__content td {
  padding: 10px;
}

.post__content ul {
  list-style: square;
  margin-left: 30px;
  margin-bottom: 20px;
}

.post__content li {
  font-size: 14px;
  line-height: 24px;
}

.single__pagenav {
  margin-top: 15px;
  padding: 2rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;

  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.single__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* text-align: center; */
  /* padding-right: 2rem; */
}

.single__nav a {
  font-size: 16px;
  color: var(--title-color);
  line-height: 20px;
}

.single__nav span {
  display: block;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--text-color);
  margin-bottom: 1.6rem;
  transition: all 0.3s;
}

.single__prev,
.single__next {
  flex: 1;
}

.single__prev {
  padding-left: 4%;
}

.single__next {
  text-align: right;
  padding-right: 4%;
}

.single__title {
  margin-top: 30px;
}

/* ====== bài viết liên quan ============*/

/*proposal-item*/
.proposal-item__img {
  position: relative;
  background-color: linear-gradient(to bottom,
      rgba(101, 100, 96, 0) 0%,
      rgba(101, 100, 96, 0.1) 60%,
      rgba(101, 100, 96, 0.493) 100%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 100%;
}

.proposal-item__img-content {
  color: var(--white-color);
  text-shadow: 0 0 2px rgb(0 0 0 / 35%);

  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  height: 70px;
  display: flex;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.7) 100%);
  align-items: flex-end;
  line-height: 26px;
}

.proposal-item__img-heading {
  position: absolute;
  top: 20px;
  left: 10px;
  font-size: 15px;
  line-height: 18px;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--white-color);
}

.single__post-relation {
  padding: 0 4%;
}

/* ========= CONTENT ======== */
a.add_tag_2 {
  color: var(--saphire-color);
}

#cb-previous-next-links {
  width: 100%;
  overflow: hidden;
  text-align: center;
  color: #999999;
  padding: 0px 0px 20px 0px;
  border-top: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
}

#cb-previous-next-links p {
  font-size: 14px;
  color: var(--text-color);
  line-height: 24px;
}

/* ========= PAGE TÌM CHUYẾN BAY ========= */
.options__airline--item {
  display: flex;
  align-items: center;
}

.options__airline--item span {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: var(--text-color);
  margin-left: 10px;
}

#filter-options__airline li img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-left: 4px;
}

.filter-flight__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  color: var(--text-color);
  margin-bottom: 10px;
}

/*====== Checkboxes styles ======*/
.filter-flight__transit {
  margin-top: 20px;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

.options__transit--item,
.options__airline--item {
  margin-bottom: 8px;
}

.options__transit--item:last-child,
.options__airline--item:last-child {
  margin-bottom: 0px;
}

.sidebar-filters input[type="checkbox"] {
  display: none;
}

.sidebar-filters input[type="checkbox"]+label {
  display: block;
  position: relative;
  padding-left: 30px;
  color: var(--text-color);
  cursor: pointer;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;

  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.sidebar-filters input[type="checkbox"]+label:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--saphire-color);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.6;
  -webkit-transition: all 0.12s, border-color 0.08s;
  transition: all 0.12s, border-color 0.08s;
}

.sidebar-filters input[type="checkbox"]:checked+label:before {
  width: 10px;
  top: -5px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* =========== SIDEBAR INFOR JOURNEY ========= */
.sidebar-journey,
.sidebar-table__prices,
.sidebar-journey-popup {
  width: 100%;
  border-radius: 0.375rem;
  background: var(--white-color);
  margin-top: 25px;
  padding: 20px;
  box-shadow: rgb(0 0 0 / 5%) 0px 0px 0px 1px,
    rgb(209 213 219) 0px 0px 0px 1px inset;
}

.sidebar-journey {
  margin-bottom: 20px;
}

.journey-infor__title {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.journey-infor__title label,
.infor-ticket-title label {
  background-color: var(--saphire-color);
  color: var(--white-color);
  width: 80px;
  text-align: center;
  padding: 8px;
  border-radius: 4px;
  margin-right: 8px;
  font-weight: 600;
  line-height: 15px;
  font-size: 12px;
  text-transform: capitalize;
}

.journey-infor__title span {
  font-weight: 600;
  line-height: 20px;
  font-size: 15px;
  color: var(--text-color);
}

.infor-ticket-title {
  text-align: center;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--white-color);
  font-weight: 600;
  background: var(--saphire-color);
  padding: 5px;
  border-radius: 0.375rem;
}

.journey-infor__datetime {
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 12px;
}

.journey-details .journey-line {
  height: 120px;
}

.hr-line-1 {
  margin-top: 12px;
  height: 1px;
  color: var(--saphire-color);
}

.infor-journey-wrap {
  display: flex;
  flex: 1.5 1 0%;
  min-height: 200px;
}

.journey-timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  /* padding-bottom: 10px; */
}

.journey-citypair {
  display: flex;
  flex-direction: column;
  /* height: 100%; */
  justify-content: space-between;
  margin-left: 8px;
}

.citypair-arrive h6 {
  margin-top: 16px;
}

.journey-infor-plane {
  display: flex;
  align-items: center;
}

.infor-price__body tr:last-child {
  border-top: 1px solid var(--border-color);
}

.infor-price table {
  width: 100%;
}

.infor-price th,
.infor-price td {
  padding: 7px;
  text-align: right;
  /* letter-spacing: 1px; */
}

.infor-price tr td:first-child {
  text-align: left;
}

.infor-price strong {
  color: var(--black-color);
  font-weight: 600;
}

td.total_amount,
.infor-price {
  color: var(--redvj-color);
  font-weight: 600;
  font-size: 18px;
}

td.included_taxfee {
  text-align: right !important;
  font-style: italic;
  font-size: 14px;
  font-weight: 600;
}

.infor-journey__transit,
.infor-citypair__transit {
  display: flex;
  /* height: 100%; */
  justify-content: space-between;
  flex-direction: column;
}

.journey-datetime__transit-1,
.journey-citypair__transit-1 {
  height: 180px;
}

.journey-datetime__transit-2,
.journey-citypair__transit-2 {
  height: 195px;
}

.journey-datetime__transit-3,
.journey-citypair__transit-3 {
  height: 195px;
}

.location__transit h6 {
  margin-left: 8px;
  color: var(--saphire-color);
}

.location__transit {
  position: relative;
}

.location__transit::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -50px;
  width: 120%;
  height: 1px;
  background: var(--saphire-color);
}

.select-flight__dep input[type="radio"] {
  /* display: none; */
  cursor: pointer;
}

.journey-datetime {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.journey-datetime .datetime-depart,
.journey-datetime .datetime-arrive {
  display: flex;
  flex-direction: column;
  min-width: 80px;
  margin-right: 8px;
  text-align: end;
}

.datetime-duration {
  text-align: right;
}

.journey-ret-wrap {
  margin-top: 10px;
}

.section__infor--flight .journey-ret-wrap {
  margin-top: 0px;
}

/* ========== LIST FLIGHT ========= */
.result-flight {
  margin: 25px 25px 0 0;
  border-radius: 8px;
}

.label-journey {
  width: 100%;
  min-height: 50px;
  background: var(--blue-color);
  border: 1px solid var(--border-color);
  border-radius: 0.375rem;
  margin-bottom: 20px;
  padding: 10px;
}

.label-journey .journey-infor__title {
  margin-bottom: 0;
}

.label-journey .journey-infor__title span {
  color: var(--title-color);
}

.flight-item {
  box-shadow: 0px 1px 1px rgb(0 0 0 / 5%);
  box-sizing: border-box;
  border-radius: 8px;
  background: var(--white-color);
  padding: 15px;
  margin-bottom: 16px;
}

.flight-item:hover {
  border: 1px solid var(--saphire-color);
}

.flight-infor {
  display: flex;
  align-items: center;
  /* border-bottom: 1px solid var(--border-color); */
}

.flight-infor-item {
  display: flex;
  width: 30%;
}

#tblInterFlightList .infor-time {
  justify-content: center;
}

.infor-time__depart,
.infor-time__destination {
  text-align: center;
}

.infor-plane-wrap {
  width: 35%;
}

.infor-plane {
  display: flex;
  justify-content: center;
  align-items: center;
}

.infor-brand {
  display: flex;
  align-items: center;
  margin-right: 8px;
}

.flight-transit-1 .infor-brand {
  margin-right: 0;
}

.infor-plane__name {
  display: flex;
  overflow: hidden;
  margin-left: 8px;
  flex-direction: column;
}

.time__depart,
.time__destination {
  display: flex;
  font-size: 18px;
}

.flight-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.flight-details .flightno,
.flight-details-inter .flightno {
  opacity: 0;
}

.flight-details-item {
  width: 33, 33%;
}

.flight-details .details {
  background: var(--bgsection-color);
  border-radius: 20px;
  padding: 5px 10px;

  display: flex;
  align-items: center;
  cursor: pointer;
}

.flight-details .details:active {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
    rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.flight-details .details svg {
  margin-right: 5px;
}

.flight-details button {
  border-radius: 8px;
  color: var(--white-color);
  font-weight: 600;
  font-size: 16px;
}

.flight-details:hover button {
  color: var(--white-color);
}

.infor-brand img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.infor-duration {
  display: flex;
  flex-direction: column;
  flex: 15%;
}

.infor-price {
  flex: 20%;
  font-size: 18px;
  justify-content: flex-end;
}

/* ======== BẢNG GIÁ ========= */
.sidebar-table__prices table {
  width: 100%;
}

.sidebar-table__prices caption {
  font-size: 16px;
  margin-top: 10px;
  color: var(--saphire-color);
  font-weight: 600;
  line-height: 20px;
}

.table__price--ret {
  margin-top: 10px;
}

.total_amount--dep,
.total_amount--ret {
  font-size: 16px;
  color: var(--black-color);
  font-weight: 600;
}

.total__price-wrap {
  display: flex;
  justify-content: space-between;
  background-color: var(--bgdecs-color);
  padding: 20px;
  color: var(--saphire-color);
  /* margin-top: 10px; */
  align-items: center;
}

.total__price-title h6 {
  font-size: 18px;
  text-transform: uppercase;
  line-height: 22px;
  font-weight: 600;
  color: var(--title-color);
}

.total__price-title p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  margin: 0;
  color: var(--text-color);
  font-style: italic;
}

.total__price {
  font-size: 20px;
  line-height: 22px;
  font-weight: 600;
  color: var(--redvj-color);
}

.section__infor--prices-mobile {
  display: none;
}

/* ======== SIDEBAR POST XEM NHIỀU NHẤT ========*/
.sidebar-widget {
  margin: 15px 0;
  box-shadow: rgb(60 64 67 / 30%) 0px 1px 2px 0px,
    rgb(60 64 67 / 15%) 0px 1px 3px 1px;
  padding: 20px 20px 10px 20px;
  border-radius: 5px;
  background: var(--white-color);
}

.sidebar-widget h4 {
  color: var(--saphire-color);
  text-align: center;
  padding: 10px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  background: var(--bgheading-color);
  margin: 0;
}

.card-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.card-post {
  display: flex;
  background: var(--white-color);
  max-height: 16rem;
  border-bottom: 1px solid var(--bgheading-color);
}

li.card-post:last-child {
  border-bottom: none;
}

.image-data {
  height: 28rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  flex-basis: 35%;
  height: unset;
}

.image-data img {
  width: 100%;
  height: 75%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(15%);
  object-fit: cover;
  z-index: -1;
}

.post-data {
  background: var(--white-color);
  padding: 1.7rem 1rem;
  position: relative;
  flex: 1;
}

.post-data__title a {
  font-size: 15px;
  line-height: 16px;
  color: var(--saphire-color);
  font-weight: 600;
}

.post-data__desciption {
  position: relative;
  text-align: justify;

  color: var(--text-color);
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  margin-top: 5px;
}

.post-data-desciption::first-letter {
  margin-left: 1rem;
}

.post-data-desciption::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 0.5rem;
  height: 2rem;
  background: var(--saphire-color);
  border-radius: 2rem;
}

.cta {
  text-align: right;
  font-weight: bold;
  margin-top: 1rem;
}

.cta a {
  background: var(--black-color);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  position: relative;

  font-size: 14px;
}

.cta a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 100%;
  height: 3px;
  background: var(--saphire-color);
  transform: scale(0);
  transform-origin: left;
  transition: transform 0.5s;
}

.cta a:hover::before {
  transform: scale(1);
  background: var(--saphire-color);
}

.cta a:hover {
  color: var(--saphire-color);
}

/* ======== END SIDEBAR POST XEM NHIỀU NHẤT ========*/

/* =========== FORM SEARCH ============ */
.form-search-sidebar h2 {
  text-align: center;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--white-color);
  font-weight: 600;
  background: var(--saphire-color);
  padding: 10px;
  border-radius: 0.375rem;
}

.wgquantity {
  padding: 0 5px !important;
}

.wgquantity label,
.form-group-icon-left label {
  font-size: 13px;
  font-weight: 600;
  color: var(--title-color);
  line-height: 16px;
  text-transform: capitalize;
  margin-bottom: 3px;
}

.direction-sidebar-wrap {
  display: inline-flex;
  height: 80px;
  width: 300px;
  align-items: center;
  justify-content: space-evenly;
  border-radius: 5px;
  padding: 20px 15px 20px 0;
}

.direction-sidebar-wrap .option-label {
  background: var(--white-color);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  border-radius: 0.357rem;
  cursor: pointer;
  padding: 0 5px;
  border: 2px solid lightgrey;
  transition: all 0.3s ease;
  margin: 0;
}

.direction-sidebar-wrap .option__oneway {
  margin-right: 20px;
}

.direction-sidebar-wrap .option-label .dot {
  height: 20px;
  width: 20px;
  background: #d9d9d9;
  border-radius: 50%;
  position: relative;
}

.direction-sidebar-wrap .option-label .dot::before {
  position: absolute;
  content: "";
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  background: var(--saphire-color);
  border-radius: 50%;
  opacity: 0;
  transform: scale(1.5);
  transition: all 0.3s ease;
}

input[type="radio"] {
  display: none;
}

#wgoneway:checked:checked~.option__oneway,
#wgroundtrip:checked:checked~.option__roundtrip {
  border-color: var(--saphire-color);
  background: var(--saphire-color);
}

#wgoneway:checked:checked~.option__oneway .dot,
#wgroundtrip:checked:checked~.option__roundtrip .dot {
  background: #fff;
}

#wgoneway:checked:checked~.option__oneway .dot::before,
#wgroundtrip:checked:checked~.option__roundtrip .dot::before {
  opacity: 1;
  transform: scale(1);
}

.direction-sidebar-wrap .option-label span {
  font-size: 14px;
  color: #808080;
}

#wgoneway:checked:checked~.option__oneway span,
#wgroundtrip:checked:checked~.option__roundtrip span {
  color: var(--white-color);
}

/* =============== SIDEBAR FILTER PRICE ============== */
input#amount {
  border: 0;
  color: var(--saphire-color);
  font-weight: bold;
  width: 100%;
  font-size: 14px;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  outline: none;
  height: 15px;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover,
.ui-slider-horizontal .ui-slider-range {
  background: var(--saphire-color) !important;
}

/* ============== SIDEBAR SẮP XẾP THEO GIÁ ========== */

/* ===================== HOME ======================== */
/* =================================================== */
/* =================================================== */
/* =================================================== */
/* genneral */
ul {
  padding: 0;
}

/* ========== SLIDER SWIPER ========= */
.swiper-pagination-bullet-active {
  background: var(--saphire-color) !important;
}

.image-slider {
  display: grid;
  /* grid-template-columns: repeat(4, 1fr); */
  /* grid-gap: 20px; */
  align-items: center;
  margin-top: 30px;
  margin-bottom: 40px;
}

.image-item {
  position: relative;
  cursor: pointer;
  border-radius: 0.375rem;
  overflow: hidden;
}

.image__img {
  height: 350px;
}

.image__img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.swiper {
  width: 100%;
  height: 100%;
  margin: 20px auto;
  padding-bottom: 40px !important;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0 !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--white-color) !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 30px !important;
  font-weight: 600 !important;
}

/* ========== END SLIDER SWIPER ========= */

.section-heading {
  margin-bottom: 28px;
  font-size: 1.4rem;
  line-height: 1.4rem;
  letter-spacing: 2px;
  color: var(--text-color);
  font-weight: normal;
  text-align: center;
}

.section__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--title-color);
  line-height: 22px;
  margin-bottom: 10px;
}

/* ==================== FOOTER ======================= */
/* =================================================== */
/* =================================================== */
/* =================================================== */
/* =================================================== */
.footer {
  background: var(--bgsection-footer);
  font-family: "Mt", sans-serif;
}

.footer__top {
  padding: 10px 0px 270px;
  position: relative;
  overflow-x: hidden;
  border-top: 5px solid var(--saphire-color);
}

.footer__bottom {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  color: #1a202c;
}

.contact-menu__item h4 {
  font-size: 1.4rem;
  line-height: 1.4rem;
  letter-spacing: 2px;
  color: var(--saphire-color);
  font-weight: bold;
  text-transform: uppercase;
}

.contact-menu__item ul {
  list-style: none;
}

.contact-menu__item img {
  width: 10px;
  vertical-align: baseline;
}

.contact-menu__item a,
.contact-menu__item li {
  font-size: 1.4rem;
  line-height: 3.5rem;
  letter-spacing: 1px;
  color: var(--text-color);
  cursor: pointer;
}

.contact-menu__item li:hover a {
  color: var(--saphire-color);
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ccc;
}

.footer-copyright h6,
.footer-helps {
  color: var(--black-color);
  padding: 20px;
  font-size: 1.2rem;
  line-height: 1.2rem;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-helps a {
  color: var(--white-color);
}

/* =========== icon reset key search ========== */
.reset-search {
  position: absolute;
  top: 22px;
  right: 15px;
}

/*  ========================= RESPONSIVE ========================
====================================================================
====================================================================
====================================================================
====================================================================
Common breakpoints are 
     + 320px — 480px for mobile devices, 
     + 481px — 768px for iPads & tablets, 
     + 769px — 1024px for small screens like laptop, 
     + 1025px — 1200px for large screens like Desktops, 
     + and 1201px and above for extra large screens like TV.

     Boostrap 5.0
     + Extra small (xs)- <576px - .col-
     + Small (sm) - ≥576px - .col-sm-
     + Medium (md) - ≥768px - .col-md-
     + Large (lg) - ≥992px - .col-lg-
     + Extra large (xl) - ≥1200px - .col-xl-
     + Extra extra large (xxl) - ≥1400px - .col-xxl-

     $grid-breakpoints: (
          xs: 0,
          sm: 480px,
          md: 768px,
          lg: 1024px
     );
*/

/* ==================== LOADER =================== */
/* ===================================================== */
/* ===================================================== */
/* ===================================================== */
#preloader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  animation: fadeIn linear 0.2s;
  z-index: 100;
}

.spinner-loader {
  width: 40px;
  height: 40px;

  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--saphire-color);
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;

  -webkit-animation: sk-bounce 2s infinite ease-in-out;
  animation: sk-bounce 2s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes sk-bounce {

  0%,
  100% {
    -webkit-transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bounce {

  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }

  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

/* =========== TEST HOME ============ */

.home-search {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  /* background: #2696E9; */
}

.home-search:before {
  /* z-index: 1; */
  content: "";
  position: absolute;
  background: rgba(3, 96, 251, 0.3);
  /* background: rgb(49 111 93 / 30%); */
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;

  display: none;
}

.home-search video {
  z-index: 000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-slide {
  clip-path: circle(150% at 0 50%);
  transition: 2s ease;
  transition-property: clip-path;
}

.home-search h1 {
  font-size: 5em;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 5px;
  line-height: 75px;
  margin-bottom: 20px;
  z-index: 0;
  color: var(--white-color);
  text-shadow: 1px 1px 2px var(--black-color);
}

/* ========== header ======== */
.header {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  transition: 0.5s ease;
}

.header .brand {
  color: #fff;
  font-size: 2.5em;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

.header .navigation {
  position: relative;
}

.header .navigation .navigation-items li a {
  color: #fff;
  font-size: 1.5em;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
  font-weight: 600;
  text-shadow: 1px 1px 2px var(--black-color);
}

.header .navigation .navigation-items li a:hover:before {
  width: 100%;
}

/* ================= BLOCK MONTH - HOME CATEGORY =========== */
.section-month .section-title {
  margin: 20px 0;
}

.block-month__item {
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: 100%;
  color: #fff;
  text-align: left;
  font-size: 16px;
  background: #000;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  height: 300px;
}

.block-month__item * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.block-month__item img {
  max-width: 100%;
  width: 100%;
  vertical-align: top;
  height: 200px;
}

.block-month__item figcaption {
  position: absolute;
  height: 75px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  overflow: hidden;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.75);
}

.block-month__item h3 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 3px 0;
}

.block-month__item h5 {
  font-weight: 400;
  margin: 0px 0 15px;
  text-transform: uppercase;
  color: #bbb;
  letter-spacing: 1px;
  font-size: 18px;
}

.block-month__item blockquote {
  padding: 0;
  margin: 0;
  font-style: italic;
  font-size: 14px;
  border-left: 5px solid #eee;
}

.block-month__item p {
  color: var(--white-color);
  padding-left: 5px;
}

.block-month__item a {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.block-month__item:hover figcaption {
  height: calc(55%);
}

/* ============= WHY CHOOSE US ============== */
.why-choose-us {
  background: #f5f8fd;
  padding: 15px 0;
}

.why-choose-us .why-choose-us-title {
  padding: 0;
  margin: 0 0 20px;
  text-align: center;
}

.why-choose-us .wrap {
  margin: 0 -30px;
}

.why-choose-us .why-choose-us-item {
  padding: 0 30px;
  float: left;
  width: 25%;
  font-size: 18px;
  line-height: initial;
  margin-bottom: 5px;
  text-align: center;
}

.why-choose-us .why-choose-us-item .img {
  text-align: center;
}

.why-choose-us .why-choose-us-item img {
  display: block;
  margin: 0 auto;
  max-height: 130px;
  margin-bottom: 15px;
}

.why-choose-us .why-choose-us-item h4 {
  font-size: 24px;
  line-height: initial;
  margin: 10px 0 15px;
}

.why-choose-us .why-choose-us-item p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}

.why-choose-us-title .container {
  width: 100%;
}

/* =============== FOOTER ============== */
/* ===================================== */
/* ===================================== */
/* ===================================== */
.footer {
  padding: 50px 0;

  background: #134e5e;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right,
      #00917a,
      #134e5e);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right,
      #00917a,
      #134e5e);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.footer-heading-with-submit {
  display: flex;
  justify-content: center;
}

.footer-heading__heading,
.footer-heading__title {
  text-align: left;
}

.footer-submit {
  display: flex;
  justify-content: space-between;
  align-items: center;

  position: relative;
}

.form-input {
  border: none;
  border-radius: 30px;
  height: 45px;
  line-height: 2rem;
  font-size: 1.4rem;
  padding: 0 20px;
  outline: none;
  color: var(--text-color);
  transition: 0.25s ease;
  flex: 1;
}

.form-input:focus {
  border: 1px solid rgb(38, 178, 243);
  outline: none;
  background-color: #e4e3e8;
}

.form-input:not(:placeholder-shown)+.form-label {
  background-color: #fff;
}

.form-input:focus+.form-label {
  background-color: #e4e3e8;
  border-top: 1px solid rgb(38, 178, 243);
}

.form-input:not(:placeholder-shown)+.form-label,
.form-input:focus+.form-label {
  top: 30%;
  padding: 8px;
  display: inline-block;
  transition: 0.25s ease;
  border-top-left-radius: 35%;
  border-top-right-radius: 35%;
}

.form-label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 37px;
  user-select: none;
  color: var(--text-color);
  pointer-events: none;
  font-size: 1.4rem;
}

.footer-submit a {
  display: block;
  padding: 10px 22px;
  margin-left: 10px;
  font-size: 1.5rem;
  line-height: 2.3rem;
  letter-spacing: 2px;
  color: var(--white-color);
  text-decoration: none;
  border-radius: 30px;
}

.contact-social img {
  width: 150px;
}

.footer-contact {
  padding: 20px;
  background-color: var(--white-color);
}

.contact-social p {
  margin: 30px 30px 30px 0;
  font-size: 1.4rem;
  line-height: 2.7rem;
  letter-spacing: 1px;
  color: var(--text-color);
}

.footer-contact-social__icon-wrapper {
  display: flex;
}

.footer-contact-social__icon-wrapper img {
  display: block;
  width: 22px;
  object-fit: cover;
  margin-right: 20px;
  cursor: pointer;
}

.contact-menu-wrapper {
  margin-top: 15px;
}

.contact-menu__item h6 {
  margin-bottom: 10px;
  font-size: 1.4rem;
  line-height: 1.4rem;
  letter-spacing: 2px;
  color: #555;
  font-weight: bold;
}

.contact-menu__item ul {
  padding-top: 4px;
  list-style: none;
}

.contact-menu__item img {
  width: 10px;
}

.contact-menu__item p {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 2.7rem;
  letter-spacing: 1px;
  color: var(--text-color);
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
  /* background-color: var(--saphire-color); */
  background: #134e5e;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right,
      #00917a,
      #134e5e);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right,
      #00917a,
      #134e5e);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.footer-copyright h6 {
  color: var(--white-color);
  padding: 20px;
  font-size: 1.2rem;
  line-height: 1.2rem;
  letter-spacing: 2px;
  font-weight: 600;
}

/* =========== DESTINATION INTER ============== */
/* ============================================ */
/* ============================================ */
/* ============================================ */

.destination__inter--wrap {
  padding: 20px 0;
}

.destination__inter {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 250px 250px 250px;
  grid-gap: 10px;
}

.destination__inter--item img {
  width: 100%;
  height: 100%;
}

.destination__inter--item {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
}

.destination__inter--hover {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  position: absolute;
  bottom: 0%;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--saphire-color);
  z-index: -1;
}

.destination__inter--item:hover .destination__inter--hover {
  height: 100%;
  animation: downtop linear 0.3s;
  z-index: 1;
}

.destination__hover--heading {
  margin-bottom: 18px;
  font-size: 2rem;
  line-height: 2rem;
  font-weight: bold;
  color: var(--white-color);

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes downtop {
  0% {
    height: 0%;
  }

  50% {
    height: 50%;
  }

  100% {
    height: 100%;
  }
}

.destination__inter--item:first-child {
  grid-column: 1/2;
  grid-row: 1/2;
}

.destination__inter--item:nth-child(2) {
  grid-column: 2/4;
  grid-row: 1/2;
}

.destination__inter--item:nth-child(3) {
  grid-column: 4/5;
  grid-row: 1/2;
}

.destination__inter--item:nth-child(4) {
  grid-column: 5/6;
  grid-row: 1/2;
}

.destination__inter--item:nth-child(5) {
  grid-column: 1/3;
  grid-row: 2/3;
}

.destination__inter--item:nth-child(6) {
  grid-column: 3/4;
  grid-row: 2/3;
}

.destination__inter--item:nth-child(7) {
  grid-column: 4/6;
  grid-row: 2/3;
}

.destination__inter--item:nth-child(8) {
  grid-column: 1/2;
  grid-row: 3/4;
}

.destination__inter--item:nth-child(9) {
  grid-column: 2/3;
  grid-row: 3/4;
}

.destination__inter--item:nth-child(10) {
  grid-column: 3/5;
  grid-row: 3/4;
}

.destination__inter--item:nth-child(11) {
  grid-column: 5/6;
  grid-row: 3/4;
}

/* ===== EMPTY ======= */
.empty-title {
  font-size: 20px;
  font-weight: 600;
  color: red;
  text-align: center;
  margin-bottom: 20px;
}

.bg-empty {
  background-image: url(images/404.svg);
  background-size: cover;
  width: 710px;
  height: 560px;
  background-position: center;
  display: block;
  margin: 0 auto;
}

.btn-empty-flight {
  color: var(--white-color);
  margin: 0 auto;
  display: block;
  margin-bottom: 15px;
  max-width: 120px;
}

.btn-empty-flight:hover {
  color: var(--white-color);
}

/* =================== LIBRARY SWIPER ================= */
/* ==================================================== */
/* ==================================================== */
.swiper {
  z-index: 0;
}

/* =================== LIBRARY SELECT2 ================= */
/* ==================================================== */
/* ==================================================== */
.select2-container {
  width: 100% !important;
}

.select2-results {
  box-shadow: rgb(50 50 93 / 25%) 0px 13px 27px -5px,
    rgb(0 0 0 / 30%) 0px 8px 16px -8px;
}

.select2-container .select2-selection--single {
  height: 40px !important;
}

.select2-container--default .select2-selection--single {
  border: 1px solid var(--border-color) !important;
  border-radius: 0.375rem !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: 14px;
  padding: 7px 15px;
  line-height: 24px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50% !important;
  right: 5px !important;
  transform: translate(0, -50%);
}

.select2-container--open .select2-dropdown {
  top: 5px;
  border: 1px solid var(--border-color) !important;
  border-radius: 0.375rem;
}

.select2-container--open .select2-dropdown--below {
  border-top-left-radius: 0.375rem !important;
  border-top-right-radius: 0.375rem !important;
}

.select2-container--default .select2-results__group {
  font-size: 12px;
  color: var(--saphire-color);
  text-align: center;
}

.select2-container--default .select2-results__option .select2-results__option {
  font-size: 12px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: var(--saphire-color) !important;
}

.select2-search--dropdown .select2-search__field {
  padding: 8px !important;
  outline: none;
}

/* =========================== RESPONSIVE ====================== */
/* ============================================================= */
/* ============================================================= */
/* ============================================================= */

@media screen and (min-width: 992px) and (max-width: 1023px) {

  .list__dep--wrap,
  .list__ret--wrap {
    width: 100%;
  }
}

/* For small screens */
@media screen and (min-width: 768px) and (max-width: 991px) {

  /* =========== menu nav for screen tablet ========== */
  .menu-control__tablet-wrap {
    display: block;
  }

  #slide-menu {
    display: none;
  }

  .header-slide-menu__btn {
    cursor: pointer;
    /* position: relative; */
    display: none;
  }

  .header-slide-menu__overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    background: linear-gradient(to left,
        rgba(239, 50, 217, 0.4),
        rgba(137, 255, 253, 0.4));
    animation: fadeIn linear 0.2s;
  }



  .mobile-menu {
    display: flex;
    /* display: none; */
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 0 15px;
    width: 285px;
    max-width: 100%;
    overflow-y: scroll;
    background-color: var(--border-color);
    transform: translateX(100%);
    transition: transform ease-out 0.5s;
    overflow: hidden;
    z-index: 2;
  }

  .mobile-menu-wrapper {
    margin-top: 50px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
  }

  .mobile-menu img {
    position: absolute;
    display: inline-block;
    top: 10px;
    right: 15px;
    cursor: pointer;
    width: 35px;
    height: 35px;
    object-fit: cover;
  }

  .mobile-menu__title {
    display: block;
    font-size: 2.4rem;
    line-height: 2.4rem;
    color: var(--white-color);
    font-weight: bold;
    text-decoration: none;
  }

  .mobile-menu__list {
    list-style: none;
  }

  .mobile-menu__item--link,
  .header-phone-mobile {
    display: block;
    font-size: 14px;
    line-height: 4.5rem;
    letter-spacing: 2px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
  }

  .header-phone-mobile {
    display: flex;
    align-items: center;
  }

  .header-phone-mobile p {
    color: var(--text-color);
    margin: 0 0 0 10px;
  }

  .mobile-menu__item--link:hover,
  .header-phone-mobile:hover p {
    color: var(--saphire-color);
  }

  #slide-menu:checked~.mobile-menu {
    transform: translateX(0%);
  }

  #slide-menu:checked~.header-slide-menu__overlay {
    display: block;
  }

  .menu-control__mobile-wrap {
    display: none;
  }

  /* genneral */
  .section-title {
    font-size: 26px;
  }

  .col-12-tablet {
    flex: 0 0 auto;
    width: 100%;
  }

  .booking-form .submit-btn {
    font-size: 18px;
  }

  .booking-form .form-btn {
    padding: 0 20px 20px;
  }

  .booking-form .form-control {
    border-bottom: 1px solid var(--border-color);
  }

  .booking-form div.form-control+.select-arrow {
    top: 30px;
    right: 20px;
  }

  .count-passenger {
    position: unset;
  }

  /* nav */
  .header-slide-menu__btn {
    display: block;
  }

  .menu-control {
    display: none;
  }

  .sidebar {
    display: none;
  }

  /* header */
  .header-nav,
  .header-phone {
    display: none;
  }

  .header-phone-mobile {
    color: var(--white-color);
  }

  .list__dep--wrap .menu div,
  .list__ret--wrap .menu div {
    font-size: 12px;
  }

  .list__dep--wrap .menu div span.light,
  .list__ret--wrap .menu div span.light {
    height: 7px;
    width: 7px;
  }

  .column-3-tb {
    width: 25%;
  }

  .column-6-tb {
    width: 75%;
    padding-left: 10px;
  }

  .list__dep--wrap,
  .list__ret--wrap {
    width: 100%;
    top: 25%;
    left: 2%;
  }

  #listDes .list__ret--wrap {
    left: 2%;
  }

  .list-area {
    padding: 15px 10px 10px 20px;
  }

  .dropdown-box-inner {
    width: 100%;
    top: 100%;
    left: 0%;
    border: 1px solid var(--border-color);
  }

  .title-people {
    font-size: 14px;
  }

  .toggle-direction:before {
    width: 25px;
    height: 10px;
  }

  .toggle-direction span {
    width: 16px;
    height: 16px;
  }

  .btn-value {
    width: 35px;
  }

  /* ============ VÉ MÁY BAY QUỐC TẾ - HOME ============== */
  .destination__inter {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 200px 200px 200px;
    grid-gap: 15px;
  }

  .destination__inter--item:first-child {
    grid-column: 1/2;
    grid-row: 1/2;
  }

  .destination__inter--item:nth-child(2) {
    grid-column: 2/4;
    grid-row: 1/2;
  }

  .destination__inter--item:nth-child(3) {
    grid-column: 1/3;
    grid-row: 2/3;
  }

  .destination__inter--item:nth-child(4) {
    grid-column: 3/4;
    grid-row: 2/3;
  }

  .destination__inter--item:nth-child(5) {
    grid-column: 1/2;
    grid-row: 3/4;
  }

  .destination__inter--item:nth-child(6) {
    grid-column: 2/3;
    grid-row: 3/4;
  }

  .destination__inter--item:nth-child(7) {
    grid-column: 3/4;
    grid-row: 3/4;
  }

  .destination__inter--item:nth-child(8),
  .destination__inter--item:nth-child(9),
  .destination__inter--item:nth-child(10),
  .destination__inter--item:nth-child(11) {
    display: none;
  }

  /* ============ FOOTER ============ */
  .footer {
    padding: 15px 0;
  }

  .contact-menu__item p {
    font-size: 12px;
  }

  .contact-menu__item img {
    display: none;
  }

  .contact-menu__item h4 {
    font-size: 14px;
  }

  .container {
    max-width: 820px;
  }

  /* ======== PAGE CHỌN HÀNH TRÌNH ========== */
  .result-flight {
    margin: 25px 0 0 0;
  }

  .flight-infor {
    justify-content: space-between;
  }

  .infor-duration {
    align-items: center;
  }

  .flight-infor-details {
    flex-direction: column;
  }

  .infor-details-journey {
    width: 100%;
  }

  .infor-journey-wrap {
    justify-content: center;
  }

  .infor-details__wrap {
    margin-top: 10px;
  }

  .sidebar__title,
  .sidebar__reset {
    font-size: 14px;
  }

  .journey-infor__title span,
  .infor-ticket-title span {
    font-size: 14px;
  }

  /* THÔNG TIN HÀNH KHÁCH */
  .section-box-passengers {
    margin: 25px 0 0;
  }

  /* HOÀN TẤT ĐƠN HÀNG */
  .section__complete--order {
    margin: 25px 0 0 0;
  }

  .section__complete--order {
    margin: 15px 0 0 0;
  }

  .order__code,
  .order__status {
    margin: 5px 0;
  }

  .journey-details {
    margin-bottom: 30px;
  }

  .complete__button button {
    font-size: 15px;
  }

  .section__infor--passengers,
  .section__complete--order,
  .section__infor--order,
  .section__infor--contact,
  .section__order--infor,
  .section__infor--flight,
  .section__infor--prices {
    margin: 15px 15px 0 0;
  }

  .popup__content {
    padding: 10px 10px 20px;
  }

  .popup__wrap {
    height: calc(100vh - 30px);
    width: calc(100vw - 60px);
  }

  /* CATEGORY */
  .image-data {
    flex-basis: 20%;
  }

  /* Box passenger */
  .row-confirm {
    display: none;
  }
}

/* For iPads & tablets */
@media screen and (min-width: 576px) and (max-width: 767px) {

  /* =========== menu nav for screen tablet ========== */
  .menu-control__tablet-wrap {
    display: block;
  }

  #slide-menu {
    display: none;
  }

  .header-slide-menu__btn {
    cursor: pointer;
    /* position: relative; */
    display: none;
  }

  .header-slide-menu__overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    background: linear-gradient(to left,
        rgba(239, 50, 217, 0.4),
        rgba(137, 255, 253, 0.4));
    animation: fadeIn linear 0.2s;
  }

  .mobile-menu {
    display: flex;
    /* display: none; */
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 0 15px;
    width: 285px;
    max-width: 100%;
    overflow-y: scroll;
    background-color: var(--border-color);
    transform: translateX(100%);
    transition: transform ease-out 0.5s;
    overflow: hidden;
    z-index: 2;
  }

  .mobile-menu-wrapper {
    margin-top: 50px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
  }

  .mobile-menu img {
    position: absolute;
    display: inline-block;
    top: 10px;
    right: 15px;
    cursor: pointer;
    width: 35px;
    height: 35px;
    object-fit: cover;
  }

  .mobile-menu__title {
    display: block;
    font-size: 2.4rem;
    line-height: 2.4rem;
    color: var(--white-color);
    font-weight: bold;
    text-decoration: none;
  }

  .mobile-menu__list {
    list-style: none;
  }

  .mobile-menu__item--link,
  .header-phone-mobile {
    display: block;
    font-size: 14px;
    line-height: 4.5rem;
    letter-spacing: 2px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
  }

  .header-phone-mobile {
    display: flex;
    align-items: center;
  }

  .header-phone-mobile p {
    color: var(--text-color);
    margin: 0 0 0 10px;
  }

  .mobile-menu__item--link:hover,
  .header-phone-mobile:hover p {
    color: var(--saphire-color);
  }

  #slide-menu:checked~.mobile-menu {
    transform: translateX(0%);
  }

  #slide-menu:checked~.header-slide-menu__overlay {
    display: block;
  }

  .menu-control__mobile-wrap {
    display: none;
  }

  .mobile-menu__list li {
    position: relative;
  }

  .mobile-menu__list li::before {
    content: "";
    height: 2px;
    background: var(--saphire-color);
    width: 120px;
    position: absolute;
    bottom: -2px;
    left: 0;
    transform: translatex(-50%);
    opacity: 0;
    transition: transform 0.3s ease-in-out, opacity 0.3s linear;
  }

  .mobile-menu__list li:hover::before {
    transform: translatex(0);
    opacity: 1;
  }

  /* genneral  */
  .search__title {
    font-size: 3rem;
    margin: 20px 0;
  }

  .home-search h1 {
    font-size: 3.5em;
  }

  .destination-title {
    width: 150%;
    line-height: 16px;
    font-size: 13px;
  }

  .list__dep--wrap .menu div,
  .list__ret--wrap .menu div {
    font-size: 12px;
    padding: 10px;
  }

  .list__dep--wrap .menu div span.light,
  .list__ret--wrap .menu div span.light {
    display: none;
  }

  .list__dep--wrap .menu div.active,
  .list__ret--wrap .menu div.active {
    padding: 10px;
  }

  .booking-form div.form-control+.select-arrow {
    top: 40px;
    right: 20px;
  }

  .list-destination {
    gap: 15px;
  }

  .list-area {
    padding: 15px;
  }

  /* nav */
  .menu-control {
    display: none;
  }

  .sidebar {
    display: none;
  }

  .header-slide-menu__btn {
    display: block;
  }

  .booking-form .form-btn {
    padding: 0 20px 20px;
  }

  /* header */
  .header-nav,
  .header-phone {
    display: none;
  }

  .header-phone-mobile {
    color: var(--white-color);
  }

  .header-nav {
    display: none;
  }

  /* search */
  .booking-form .form-control {
    border-bottom: 1px solid var(--border-color);
  }

  .count-passenger {
    position: unset;
  }

  .list__dep--wrap {
    top: 15%;
    width: 100%;
    left: 2%;
  }

  #listDes .list__ret--wrap {
    top: 35%;
    width: 105%;
    left: 2%;
  }

  .dropdown-box-inner {
    top: 90%;
    width: 96%;
    left: 10px;
  }

  .box-people {
    margin-top: 10px;
  }

  .title-people {
    font-size: 16px;
  }

  .row-confirm {
    display: none;
  }

  /* ======== VÉ MÁY BAY QUỐC TẾ - HOME ========= */
  .destination__inter {
    display: grid;
    grid-template-rows: 200px 200px 200px;
    grid-gap: 10px;
  }

  .destination__inter--item:first-child {
    grid-column: 1/3;
    grid-row: 1/2;
  }

  .destination__inter--item:nth-child(2) {
    grid-column: 3/6;
    grid-row: 1/2;
  }

  .destination__inter--item:nth-child(3) {
    grid-column: 1/4;
    grid-row: 2/3;
  }

  .destination__inter--item:nth-child(4) {
    grid-column: 4/6;
    grid-row: 2/3;
  }

  .destination__inter--item:nth-child(5) {
    grid-column: 1/3;
    grid-row: 3/4;
  }

  .destination__inter--item:nth-child(6) {
    grid-column: 3/6;
    grid-row: 3/4;
  }

  .destination__inter--item:nth-child(7),
  .destination__inter--item:nth-child(8),
  .destination__inter--item:nth-child(9),
  .destination__inter--item:nth-child(10),
  .destination__inter--item:nth-child(11) {
    display: none;
  }

  .box-title {
    font-size: 16px;
  }

  .destination__hover--heading {
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /* =========== CHỌN HÀNH TRÌNH =========== */
  .header {
    padding: 0 10px;
  }

  .journey-infor__title span,
  .infor-ticket-title span {
    font-size: 14px;
  }

  .flight-infor {
    justify-content: space-between;
  }

  .infor-duration {
    align-items: center;
  }

  .flight-infor-details {
    flex-direction: column;
  }

  .infor-details-journey {
    width: 100%;
  }

  .infor-journey-wrap {
    justify-content: center;
  }

  .infor-details__wrap {
    margin-top: 30px;
  }

  .infor-other {
    padding-right: 10px;
  }

  .result-flight {
    margin: 25px 0 0 0;
  }

  /* ========== FOOTER ========= */
  .footer {
    padding: 15px 0;
  }

  .footer-contact {
    padding: 0 20px;
  }

  .contact-menu-wrapper {
    margin: 0;
  }

  .contact-menu__item {
    margin-top: 15px;
  }

  .contact-menu__item p {
    font-size: 14px;
  }

  .contact-menu__item ul {
    padding: 0;
  }

  .contact-menu__item h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  /* THÔNG TIN HÀNH KHÁCH */
  .section-box-passengers {
    margin: 25px 0 0;
  }

  .adult-input__gender,
  .child-input__gender,
  .infant-input__gender,
  .input__contact--title,
  .input__contact--name,
  .input__contact--email {
    width: 20%;
  }

  .adult-input__name,
  .child-input__name,
  .infant-input__name {
    flex: 1;
  }

  .adult-baggage,
  .child-baggage,
  .infant-baggage {
    flex-direction: column;
  }

  .baggage__dep-wrap,
  .baggage__ret-wrap {
    width: 100%;
    margin-bottom: 30px;
  }

  .baggage__ret-wrap {
    margin-bottom: 10px;
  }

  /* HOÀN TẤT ĐƠN HÀNG */
  .section__complete--order {
    margin: 25px 0 0 0;
  }

  .section__infor--passengers,
  .section__complete--order,
  .section__infor--order,
  .section__infor--contact {
    margin: 25px 0 0 0;
  }

  .section__complete--order {
    margin: 15px 0 0 0;
  }

  .order__code,
  .order__status {
    margin: 5px 0;
  }

  .journey-details {
    margin-bottom: 30px;
  }

  .complete__button button {
    font-size: 16px;
  }

  .box-heading-h6,
  .thead-title,
  .name__passenger--title,
  .luggage__title {
    font-size: 14px;
  }

  .section__title {
    font-size: 16px;
  }

  .sidebar-journey {
    display: none;
  }

  .section__infor--passengers,
  .section__complete--order,
  .section__infor--order,
  .section__infor--contact,
  .section__order--infor,
  .section__infor--flight,
  .section__infor--prices,
  .list-card {
    margin: 25px 0 0 0;
  }

  .popup__content {
    padding: 10px 20px 20px;
  }

  .popup__wrap {
    height: 100vh;
    width: 100vw;
  }

  /* single */
  .single__end--wrap {
    flex-wrap: wrap;
  }

  .single__social--wrap {
    margin-top: 20px;
  }

  .content__post-wrap .container {
    max-width: 820px;
  }

  .proposal-item__img-heading {
    font-size: 14px;
    left: 0px;
    text-align: center;
  }

  .search__section {
    margin-top: 0px;
  }
}

/* For Mobile Portrait View - chiều dọc */
@media screen and (max-width: 575px) {

  .contact__info--title::before,
  .contact__info--title::after {
    margin-bottom: 10px;
  }

  .destinations-domestic-wrap {
    padding: 20px 0 10px;
  }

  .single__post-relation {
    display: none;
  }

  /* ========= header ======== */
  .home-search h1 {
    font-size: 1.8em !important;
    position: absolute;
    top: 10%;
  }

  .header {
    padding: 0 20px;
    height: 60px;
    /* z-index: 1; */
  }

  .header__logo--img {
    width: 40%;
  }

  .header-nav {
    display: none;
  }

  .header__logo {
    padding: 0;
    width: 130px;
  }

  /* ========= search ========= */
  .section__search--wrap {
    width: 95%;
    position: absolute;
    top: 20%;
  }

  .search__section {
    margin-top: 0;
    padding: 60px 0;
  }

  .list__dep--wrap,
  .list__ret--wrap {
    display: none;
  }

  .booking-form .form-control {
    border-bottom: 1px solid var(--border-color);
  }

  .booking-form .form-control,
  .count-passenger {
    height: 35px;
  }

  .booking-form .form-group {
    padding: 5px 15px 0;
  }

  .booking-form .form-btn {
    padding: 15px;
  }

  .booking-form .submit-btn {
    font-size: 16px;
    height: 50px;
    text-transform: uppercase;
  }

  /* ====== box passengers ======= */
  .dropdown-box-inner {
    width: 100%;
    border: 1px solid var(--border-color);
    top: 75px;
  }

  .close-box-passenger {
    top: 10px;
    right: 15px;
    position: absolute;
  }

  .count-passenger {
    position: unset;
  }

  .row-confirm {
    border-bottom: none;
    display: flex;
  }

  .button-confirm {
    flex: 1;
  }

  #button-cancel {
    border: 1px solid var(--saphire-color);
    margin-right: 5px;
  }

  #button-finish {
    color: var(--white-color);
    background: var(--saphire-color);
  }

  /* ====== CALENDAR ======== */
  #ui-datepicker-div {
    /* width: 33rem; */
    width: 88%;
    padding: 8px !important;
  }

  table.ui-datepicker-calendar td.ui-datepicker-current-day a.ui-state-active,
  .ui-datepicker .ui-datepicker-lunar {
    font-size: 12px;
  }

  .ui-datepicker-month,
  .ui-datepicker-year {
    font-size: 14px;
  }

  .ui-datepicker table {
    margin: 0;
  }

  /* ========= menu for mobile ========== */
  body.body_checked {
    overflow: hidden;
    height: 100%;
    margin: 0;
  }

  .list__dep--wrap-mobile,
  .list__ret--wrap-mobile {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    padding: 0;
    margin: 0;
    z-index: 100;
    border-radius: 0px;
    min-height: 100%;
    width: 100%;
    overflow: hidden;
    background: #acb6e5;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right,
        #86fde8,
        #acb6e5);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right,
        #86fde8,
        #acb6e5);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  }

  .list__dep--wrap-mobile .accordion-wrapper,
  .list__ret--wrap-mobile .accordion-wrapper {
    /* overflow: hidden; */
    width: 100%;
    margin: 0 auto;
  }

  .list__dep--wrap-mobile .accordion-item__mobile,
  .list__ret--wrap-mobile .accordion-item__mobile {
    width: 100%;
    color: white;
    overflow: hidden;
  }

  .list__dep--wrap-mobile .accordion:last-child,
  .list__ret--wrap-mobile .accordion:last-child {
    margin-bottom: 0;
  }

  .list__dep--wrap-mobile .accordion-label,
  .list__ret--wrap-mobile .accordion-label {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 12px 10px;
    background: rgba(4, 57, 94, 0.8);
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    border-bottom: 1px solid;
  }

  .list__dep--wrap-mobile .accordion-label:hover,
  .list__ret--wrap-mobile .accordion-label:hover {
    background: transparent;
    color: var(--black-color);
  }

  .list__dep--wrap-mobile .accordion-label::after,
  .list__ret--wrap-mobile .accordion-label::after {
    content: "\276F";
    width: 16px;
    height: 16px;
    text-align: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  .list__dep--wrap-mobile .accordion-content,
  .list__ret--wrap-mobile .accordion-content {
    max-height: 100vh;
    /* max-height: 480px; */
    display: none;
    padding: 0 16px;
    color: var(--black-color);
    background: var(--white-color);
    overflow: auto;
  }

  .list__dep--wrap-mobile .accordion-content p,
  .list__ret--wrap-mobile .accordion-content p {
    margin: 0;
    color: var(--black-color);
    font-weight: 600;
    font-size: 15px;
  }

  .menu-control__mobile-wrap {
    display: block;
  }

  .menu-mobile {
    /* position: absolute; */
    position: relative;
    left: 0;
    top: -2px;
    display: flex;
    height: 18px;
    width: 24px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  .menu-mobile__icon {
    display: inline-block;
    height: 2px;
    width: 24px;
    background: var(--white-color);
    border-radius: 2px;
  }

  .search__mobile--wrapper {
    position: relative;
  }

  .list-dep__mobile-title-wrap,
  .list-ret__mobile-title-wrap {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 15px 10px;
  }

  .list__mobile--title {
    width: 80%;
    text-align: center;
  }

  .list__mobile--title h6 {
    margin: 0;
    font-size: 20px;
    color: var(--black-color);
  }

  .list__mobile--back {
    border: 3px solid var(--black-color);
    padding: 6px;
    margin: 10px;
    transform: rotate(45deg);
    border-top: transparent;
    border-right: transparent;
  }

  .list-area {
    padding: 10px;
  }

  /* ========= end menu for mobile ========== */

  .sidebar__menu--wrap {
    height: 100vh;
    /* width: 320px; */
    width: 100vw;
    background: var(--border-color);
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    transform: translatex(-100%);
    transition: transform 0.4s ease-in-out;
  }

  .sidebar__close {
    position: absolute;
    top: 5%;
    right: 10%;
    background: #fff;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    box-shadow: 0 0 20px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translatex(-100%);
    cursor: pointer;
    transition: transform 0.4s ease-in-out 0.2s;
  }

  .sidebar__close::before,
  .sidebar__close::after {
    content: "";
    height: 2px;
    background: #898989;
    width: 24px;
    display: block;
    position: absolute;
  }

  .sidebar__close::after {
    transform: rotate(90deg);
  }

  .sidebar__menu {
    display: flex;
    flex-direction: column;
    line-height: 50px;
    font-size: 16px;
    margin-top: 30px;
    color: var(--text-color);
  }

  .sidebar__menu li a {
    /* color: currentcolor; */
    color: var(--text-color);
    text-decoration: none;
    transform: translatex(-80%);
    transition: transform 0.4s ease-in-out;
  }

  .sidebar__menu li:hover a {
    color: var(--saphire-color);
  }

  .sidebar__menu li {
    position: relative;
    cursor: pointer;
  }

  .sidebar__menu li::before {
    content: "";
    height: 2px;
    background: var(--text-color);
    width: 100px;
    position: absolute;
    bottom: -2px;
    left: 0;
    transform: translatex(-50%);
    opacity: 0;
    transition: transform 0.3s ease-in-out, opacity 0.3s linear;
  }

  .sidebar__menu li:hover::before {
    transform: translatex(0);
    opacity: 1;
  }

  .menu-control {
    display: none;
  }

  .menu-control:checked+.sidebar__menu--wrap {
    transform: translatex(0);
  }

  .menu-control:checked+.sidebar__menu--wrap .sidebar__close {
    transform: translatex(0) rotate(45deg);
  }

  .menu-control:checked+.sidebar__menu--wrap .sidebar__menu a {
    transform: translatex(0);
  }

  .header-phone-mobile {
    display: block;
    font-size: 14px;
    line-height: 4.5rem;
    letter-spacing: 2px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
  }

  .header-phone-mobile {
    display: flex;
    align-items: center;
  }

  .header-phone-mobile p {
    color: var(--text-color);
    margin: 0 0 0 10px;
    font-size: 16px;
  }

  .header-phone-mobile:hover p {
    color: var(--saphire-color);
  }

  .booking-form div.form-control+.select-arrow {
    top: 30px;
    right: 20px;
  }

  .grid {
    width: 100%;
    margin: 30px 10px;
  }

  .list__dep--wrap .menu div,
  .list__ret--wrap .menu div {
    font-size: 10px;
    padding: 10px;
  }

  .list__dep--wrap .menu div span.light,
  .list__ret--wrap .menu div span.light {
    display: none;
  }

  .list__dep--wrap .menu div.active,
  .list__ret--wrap .menu div.active {
    padding: 10px;
  }

  input#search_dep--mobile,
  input#search_ret--mobile,
  input#search_dep,
  input#search_ret {
    width: 95%;
    margin: 10px auto;
    font-size: 16px;
    padding: 10px;
    display: block;
  }

  .reset-search {
    display: block;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  ul#result_dep,
  ul#result_ret,
  ul#result_dep--mobile,
  ul#result_ret--mobile {
    top: 60px;
    left: 10px;
    width: 95%;
    /* max-height: 190px !important; */
    border-radius: 0.375rem;
  }

  .toast-warning {
    min-width: 250px;
    right: 20px;
    font-size: 14px;
  }

  .destination-item {
    all: unset;
  }

  .destination-title {
    all: unset;
    font-size: 16px;
    line-height: 10px;
    display: block;
    min-width: 150px;
    margin-top: 10px;
    padding: 6px 0;
  }

  ul#result_dep,
  ul#result_ret,
  ul#result_dep--mobile,
  ul#result_ret--mobile {
    margin: 0;
  }

  .scroll-to-top {
    right: 15px;
    bottom: 40px;
  }

  /* ======== genneral ==========  */
  .search__title {
    font-size: 18px;
    margin: 0;
    padding: 20px 0;
  }

  .section-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .box-title {
    font-size: 14px;
  }

  .contact-menu__item {
    margin-top: 15px;
    margin-left: 20px;
  }

  .contact-menu__item h4 {
    margin-bottom: 0;
  }

  /* destination inter */
  .destination__inter {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 150px 150px 150px;
    grid-gap: 10px;
  }

  .destination__inter--item:first-child {
    grid-column: 1/2;
    grid-row: 1/2;
  }

  .destination__inter--item:nth-child(2) {
    grid-column: 2/3;
    grid-row: 1/2;
  }

  .destination__inter--item:nth-child(3) {
    grid-column: 1/2;
    grid-row: 2/3;
  }

  .destination__inter--item:nth-child(4) {
    grid-column: 2/3;
    grid-row: 2/3;
  }

  .destination__inter--item:nth-child(5) {
    grid-column: 1/2;
    grid-row: 3/4;
  }

  .destination__inter--item:nth-child(6) {
    grid-column: 2/3;
    grid-row: 3/4;
  }

  .destination__inter--item:nth-child(7),
  .destination__inter--item:nth-child(8),
  .destination__inter--item:nth-child(9),
  .destination__inter--item:nth-child(10),
  .destination__inter--item:nth-child(11),
  .destination__inter--item:nth-child(12) {
    display: none;
  }

  .destination__hover--heading {
    font-size: 18px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /* why-choose-us */
  .why-choose-us {
    display: none;
  }

  /* ====== FOOTER ========== */
  .footer {
    padding: 0;
  }

  .contact-menu-wrapper {
    margin-top: 0;
  }

  .footer-contact {
    padding: 5px 20px 10px;
  }

  .footer-copyright h6,
  .footer-helps {
    padding: 15px;
    font-size: 10px;
    width: 50%;
  }

  .footer-helps svg {
    display: none;
  }

  .footer-helps a {
    line-height: 20px;
  }

  .footer__top {
    padding: 0px 0px 20px;
  }

  .footer__top .footer__bg {
    display: none;
  }

  /* ======= CHỌN HÀNH TRÌNH ========== */
  .sidebar-sort-price,
  .sidebar-filters,
  .form-search-sidebar {
    display: none;
  }

  .flight-item {
    padding: 10px;
  }

  .flight-details .flightno,
  .flight-details-inter .flightno {
    font-size: 14px;
    line-height: 20px;
    color: var(--title-color);
    opacity: 1;
  }

  .journey-infor__title span,
  .infor-ticket-title span {
    font-size: 14px;
  }

  .flight-infor {
    justify-content: space-between;
  }

  .infor-duration {
    display: none;
  }

  .infor-plane-wrap {
    width: 30%;
  }

  .infor-plane-wrap .infor-plane__name {
    display: none;
  }

  .infor-time {
    width: 40%;
  }

  .infor-price {
    flex: 1;
  }

  .flight-infor-details {
    flex-direction: column;
    padding: 10px;
  }

  .infor-details-journey {
    width: 100%;
  }

  .infor-journey-wrap {
    justify-content: center;
  }

  .infor-details__wrap {
    margin-top: 20px;
  }

  .infor-other {
    padding-right: 10px;
  }

  .result-flight {
    margin: 15px 0 0 0;
  }

  .btn {
    min-width: 100px;
    padding: 10px 6px;
  }

  .flight-details button {
    font-size: 14px;
  }

  #progressbar li {
    font-size: 12px;
  }

  .time__depart,
  .time__destination {
    font-size: 16px;
  }

  .thead-title {
    font-size: 13px;
  }

  .infor-brand img {
    width: 40px;
    height: 40px;
  }

  .section-choose-flight {
    margin-top: 60px;
  }

  #progressbar {
    display: none;
  }

  /* ======= THÔNG TIN HÀNH KHÁCH =========*/
  .section-infor-wrap {
    margin-top: 60px;
  }

  .section-box-passengers {
    margin: 25px 0 0;
  }

  .sidebar-table__prices {
    margin: 0 0 25px;
  }

  .select-styled,
  .seclect__luggage--options li {
    font-size: 12px;
  }

  .total__price-wrap {
    padding: 0;
  }

  .total__price-title,
  .total__price {
    padding: 15px;
  }

  .sidebar-table__prices .thead-title {
    font-size: 16px;
  }

  .sidebar-table__prices .box-subheading-span,
  .sidebar-table__prices .tbody-title {
    font-size: 16px;
  }

  /* =========== PAYMENT =========*/
  .section__payment-method label {
    font-size: 13px;
  }

  .method-payment-wrap {
    margin-top: 60px;
  }

  .section__payment-method {
    margin: 25px 0 25px;
    background: var(--white-color);
  }

  .button-gradient.continue {
    width: 150px;
  }

  .button-gradient {
    font-size: 18px;
  }

  /* ======== HOÀN TẤT ĐƠN HÀNG ========= */
  .method-complete-wrap {
    margin-top: 60px;
  }

  .section__complete--order {
    margin: 15px 0 0 0;
  }

  .section__order--infor,
  .section__infor--flight,
  .section__infor--prices {
    margin: 20px 0 0;
  }

  .section__infor--prices-mobile {
    display: block;
  }

  .section__infor--prices-desktop {
    display: none;
  }


  .order__code,
  .order__status {
    margin: 5px 0;
  }

  .journey-details {
    margin-bottom: 15px;
  }

  .complete__button button {
    font-size: 16px;
  }

  ul.section__decs {
    line-height: 30px;
  }

  .section__decs li lord-icon {
    display: none;
  }

  .sidebar-journey {
    display: none;
  }

  .popup__wrap {
    height: 100vh;
    width: 100vw;
  }

  .section__infor--passengers,
  .section__complete--order,
  .section__infor--order,
  .section__infor--contact,
  .list-card {
    margin: 10px 0;
  }

  .popup__content {
    padding: 10px;
  }

  /* ======== CATEGORY ======== */
  .section__category,
  .section__fullpage {
    margin-top: 60px;
  }

  .category-wrap,
  .fullpage-wrap {
    height: 30vh;
  }

  .category__desc {
    padding: 0px 10%;
  }

  .blog-card p {
    font-size: 12px;
    text-align: justify;
  }

  .blog-card .description h2 {
    font-size: 14px;
  }

  .blog-card .meta {
    flex-basis: 40%;
  }

  .blog-card .description {
    flex-basis: 60%;
    padding: 1.5rem;
  }

  .button_cat {
    font-size: 12px;
  }

  .category__title {
    font-size: 22px;
  }

  .block-infor {
    margin: 0 5px;
  }

  .block-infor span {
    font-size: 12px;
  }

  .single__end--wrap {
    flex-wrap: wrap;
  }

  .single__social--wrap {
    margin-top: 20px;
  }

  .single__tags {
    display: none;
  }

  .post__content .wp-caption {
    width: unset !important;
  }

  .post__content img,
  .post__content .wp-caption img {
    width: 100%;
    height: 100%;
  }

  .post__content table {
    width: 100% !important;
  }

  .content__card {
    display: none;
  }

  .content__card_mobile {
    display: block;
  }

  .button_cat {
    padding: 8px 30px;
  }

  /* ====== captcha form ======== */
  .captcha-form {
    margin: 25px 0;
  }

  .captcha-form .btn {
    min-width: 120px;
    padding: 15px 10px;
    font-size: 16px;
  }

  .captcha-box-content {
    margin: 10px 50px;
  }

  .captcha-form input[type="text"] {
    margin: 10px;
    width: 100% !important;
    border: 1px solid var(--border-color);
  }

  /* ========== NO FLIGHT =========== */
  .empty_flight {
    margin: 25px 0;
  }

  .bg-empty {
    width: 405px;
    height: 320px;
    margin-bottom: 15px;
  }
}