.title-primary {
  display: flex;
  border-bottom: 2px dashed var(--highlight-color);
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 15px;
  line-height: initial;
}
.title-primary i {
  font-size: 30px;
  margin-right: 15px;
  color: var(--highlight-color);
}

.tour-search-box ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #999 !important;
  font-weight: 500;
}
.tour-search-box ::-moz-placeholder { /* Firefox 19+ */
  color: #999 !important;
  font-weight: 500;
}
.tour-search-box :-ms-input-placeholder { /* IE 10+ */
  color: #999 !important;
  font-weight: 500;
}
.tour-search-box :-moz-placeholder { /* Firefox 18- */
  color: #999 !important;
  font-weight: 500;
}
.tour-search-box .form-control {
  border-color: var(--border-color);
  border-radius: 5px;
  font-weight: 500;
}
.tour-search-box .vs__dropdown-toggle {
  padding: 0;
}
.tour-search-box .vs__dropdown-toggle .vs__selected-options {
  font-weight: 500;
}
.tour-search-box .form-control {
  padding-left: 36px;
}
.tour-search-box .radio .radio-label {
  margin-bottom: 0;
  font-weight: 500;
}
.tour-search-box .vs--single .vs__selected {
  line-height: 38px;
  border: 0;
  margin: 0;
  padding: 0 7px;
}
.tour-search-box .radio input[type=radio] ~ .radio-label:before {
  top: 3px;
}
.tour-search-box .vs--single.vs--open .vs__selected {
  top: 0;
  font-weight: 500;
  margin-top: 0;
}
.tour-search-box .vs__search, .tour-search-box .vs__search:focus {
  margin: 0;
  border: 0;
  line-height: 38px;
}
.tour-search-box .vs__actions {
  padding-top: 0;
}
.tour-search-box .origin-location .vs__dropdown-menu,
.tour-search-box .destination-location .vs__dropdown-menu {
  min-width: 300px;
  border-top: 1px solid #b7c5ce;
}
.tour-search-box .origin-location .vs__dropdown-option,
.tour-search-box .destination-location .vs__dropdown-option {
  white-space: inherit;
}
.tour-search-box .origin-location .vs__dropdown-toggle .vs__selected-options,
.tour-search-box .destination-location .vs__dropdown-toggle .vs__selected-options {
  padding-left: 32px;
  overflow: auto;
}
.tour-search-box .radio {
  font-weight: 500;
}
.tour-search-box .mdi {
  top: 8px;
  left: 10px;
  font-size: 20px;
  color: var(--primary-color);
}
.tour-search-box .text {
  font-size: var(--text-font-size-small);
  color: #999;
}
.tour-search-box .btn-primary {
  background: var(--highlight-color);
  border-color: var(--highlight-color);
  padding-top: 10px;
  padding-bottom: 9px;
}
.tour-search-box .btn-primary:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.tour-search-box .btn-clear {
  right: 0px;
  top: 7px;
}
.tour-search-box .btn-clear svg {
  fill: rgba(60, 60, 60, 0.5);
}
.tour-search-box .flatpickr-input {
  background: none;
}

.tour-item {
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.tour-item:hover {
  box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.2);
}
.tour-item:hover .title {
  color: var(--highlight-color);
}
.tour-item .type {
  top: 15px;
  left: 0;
  z-index: 1;
  background: white;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 12px;
  padding: 1px 12px 1px 7px;
  box-shadow: 4px 0 5px #666;
  border-radius: 0 20px 20px 0;
}
.tour-item .img {
  display: block;
}
.tour-item .img img {
  width: 100%;
}
.tour-item .cnt {
  padding: 15px 10px;
  display: block;
  border: 1px solid var(--border-color);
}
.tour-item .price {
  display: flex;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
  color: var(--highlight-color);
}
.tour-item .price .old-price {
  font-size: 15px;
  font-weight: normal;
  margin-left: 15px;
  color: #888;
  text-decoration: line-through;
}
.tour-item .title {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #000;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 44px;
  line-height: 22px;
}
.tour-item .title:hover {
  color: var(--highlight-color);
}

.see-more {
  font-weight: 500;
  color: var(--primary-color);
}
.see-more i {
  font-size: 24px;
  vertical-align: middle;
}
.see-more:hover {
  color: var(--highlight-color);
}

.news-item .img {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  display: block;
}
.news-item .img img {
  width: 100%;
  margin: auto;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100%;
  width: auto;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  object-fit: cover;
  -webkit-filter: sepia(0);
  filter: sepia(0);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.news-item:hover .img img {
  -webkit-filter: sepia(100%);
  filter: sepia(100%);
}
.news-item:hover .title {
  color: var(--highlight-color);
}
.news-item .title {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #000;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 44px;
  line-height: 22px;
  margin-top: 12px;
}
.news-item .title:hover {
  color: var(--highlight-color);
}

.slider-partners .title {
  font-size: 24px;
  font-weight: 500;
  border-bottom: 1px dotted #e5e5e5;
  padding-bottom: 15px;
  position: relative;
  text-transform: uppercase;
  color: var(--primary-color);
  line-height: initial;
}
.slider-partners .title:before {
  position: absolute;
  height: 3px;
  content: "";
  background: var(--primary-color);
  bottom: -2px;
  left: 42%;
  right: 42%;
  border-radius: 2px;
}
.slider-partners .flex-control-nav {
  display: none;
}
.slider-partners .flexslider .slides img {
  max-height: 65px;
  width: initial;
  margin: 0 auto;
}

.link-SEO {
  background: #fafafa;
  border-top: 1px solid #eee;
  padding: 30px 0 10px;
  font-size: 13px;
}
.link-SEO .title {
  color: #000;
  font-weight: 500;
  margin: 10px 0;
  font-size: 15px;
}
.link-SEO .title strong {
  font-weight: 500;
}
.link-SEO p {
  margin-bottom: 15px;
  color: #333333;
  line-height: 20px;
  text-align: justify;
}
.link-SEO strong {
  font-weight: 500;
}
.link-SEO a {
  color: #333333;
  text-decoration: underline;
  font-weight: 500;
}
.link-SEO a:hover {
  color: var(--primary-color);
}

#carouselPromotionalTour {
  border-radius: 6px;
  border: 1px solid #91d5ff;
  max-height: 352px;
  overflow: hidden;
}
#carouselPromotionalTour img {
  border-radius: 3px;
}

.page-home-index {
  background: #fff;
}
.page-home-index .bg-box-search {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.page-home-index .bg-box-search img {
  flex-shrink: 0;
  min-width: 100%;
  min-height: 100%;
  margin: auto;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: auto;
  -webkit-transform: translate(0%, 0%);
  -ms-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  object-fit: fill;
}
.page-home-index .box-search-tour .search-tour {
  background: #fff;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 6px;
  min-height: 100%;
  padding-bottom: 4px;
  padding-top: 12px;
  display: flex;
  align-items: center;
}
.page-home-index .box-search-tour .search-tour h1 {
  font-size: 20px;
  font-weight: 500;
}
.page-home-index .tour-search-box {
  /*.control {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
      text-align: right;
  }*/
}
.page-home-index .tour-search-box .vs__dropdown-toggle {
  padding: 0;
}
.page-home-index .tour-search-box .group-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.page-home-index .tour-search-box .origin-location, .page-home-index .tour-search-box .destination-location, .page-home-index .tour-search-box .start-date, .page-home-index .tour-search-box .days, .page-home-index .tour-search-box .agent,
.page-home-index .tour-search-box .control {
  padding-left: 15px;
  padding-right: 15px;
}
.page-home-index .tour-search-box .origin-location, .page-home-index .tour-search-box .destination-location, .page-home-index .tour-search-box .start-date, .page-home-index .tour-search-box .days, .page-home-index .tour-search-box .agent, .page-home-index .tour-search-box .control {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  margin-bottom: 16px;
}
.page-home-index .tour-search-box .control {
  flex: 0 0 100%;
  max-width: 100%;
  text-align: right;
}
.page-home-index .tour-search-box .control .btn {
  height: 40px;
  width: calc(50% - 16px);
}
.page-home-index .tour-search-box .origin-location[style="display: none;"] ~ .destination-location {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.page-home-index .tour-search-box .agent {
  display: none;
}
.page-home-index .tour-item:hover .cnt {
  border-color: transparent;
}
.page-home-index .tour-item .cnt {
  padding: 13px 10px;
}
.page-home-index .tour-item .price {
  justify-content: space-between;
  margin-bottom: 5px;
}
.page-home-index .tour-item .img {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  display: block;
}
.page-home-index .tour-item .img img {
  margin: auto;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100%;
  width: auto;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.star {
  color: var(--highlight-color);
}

.group-star i.mdi {
  color: var(--highlight-color) !important;
  vertical-align: middle;
}

#page-content {
  min-height: calc(100vh - 72px - 64px);
}
#page-content .plugin-fb-like {
  padding: 15px !important;
}
#page-content .fb_iframe_widget iframe {
  width: 100% !important;
}
#page-content .card {
  border: 0;
  border-radius: 0;
}
#page-content .card .card-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-color);
  margin: 0;
  padding: 12px 15px;
  background: #fff;
  border-bottom: 3px solid var(--background);
}
#page-content .card .card-body {
  padding: 20px 15px;
}
#page-content .card .card-body.pt-5.pb-5 {
  padding: 20px 15px !important;
}

.sidebar .tour-summary .text {
  color: #999;
  text-transform: uppercase;
  font-weight: 500;
}
.sidebar .card .card-title {
  font-size: 15px !important;
}
.sidebar .box-price hr {
  border-style: dashed;
}

.tab-payment .nav {
  background: var(--primary-color);
  width: 160px;
  border-bottom: 5px solid var(--primary-color);
}
.tab-payment .tab-content {
  flex: 1;
  border: 5px solid var(--primary-color);
  border-left: 0;
}
.tab-payment .tab-content .payoo img {
  width: 88px;
  height: 44px;
}
.tab-payment .nav-pills .nav-link {
  color: #fff;
}
.tab-payment .nav-pills .nav-link:hover {
  background: #0084e4;
  color: #fff;
}
.tab-payment .nav-pills .nav-link.active {
  background: #fff;
  color: var(--primary-color);
}
.tab-payment .nav-pills .show > .nav-link {
  background: #fff;
  color: var(--primary-color);
}
.tab-payment .nav-pills img {
  width: 100%;
  border-radius: 5px;
  display: block;
}

#modalLocation:before {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  opacity: 0.5;
  content: "";
}
#modalLocation .modal-body {
  padding: 20px 30px;
}
.list-location .location-item {
  color: #222;
  font-weight: 500;
}
.list-location .location-item:hover {
  background: var(--highlight-color);
  color: #fff;
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.25);
}
.list-location .location-item:hover .value {
  border-bottom: 0;
}
.list-location .location-item .value {
  padding: 10px 0;
  cursor: pointer;
  transition: all 0.03s ease;
  border-bottom: 1px solid #ececec;
}

.page-article-newslist .news-item {
  background: #fff;
  padding-bottom: 20px;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.page-article-newslist .news-item .title {
  margin-left: 15px;
  margin-right: 15px;
}
.page-article-newslist .news-item:hover {
  box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.2);
}

.page-article-articledetail .title-detail {
  font-size: 24px;
  color: var(--primary-color);
  line-height: initial;
}
.page-article-articledetail .date {
  font-size: 13px;
  color: #666;
}
.page-article-articledetail #lst-older-post a {
  color: #000;
}
.page-article-articledetail #lst-older-post a:hover {
  color: var(--primary-color);
}
.page-article-articledetail .images-gallery .slides li {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.page-article-articledetail .images-gallery .slides li img {
  height: auto;
  -moz-user-select: none;
  margin: auto;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100%;
  width: auto;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.page-article-articledetail .news-detail table {
  width: 100%;
  border-color: var(--border-color);
  margin-bottom: 15px;
  border-collapse: collapse;
  border-spacing: 0;
  height: auto !important;
}
.page-article-articledetail .news-detail table tr td, .page-article-articledetail .news-detail table tr th {
  border-color: var(--border-color);
  padding: 6px 15px;
}

.page-account label {
  display: none;
}
.page-account .icon {
  top: 8px;
  left: 12px;
  width: 24px;
  height: 24px;
}
.page-account .icon-email {
  background: url(../images/ic-email.png) no-repeat center center;
}
.page-account .icon-name {
  background: url(../images/ic-user.png) no-repeat center center;
}
.page-account .icon-password {
  background: url(../images/ic-lock.png) no-repeat center center;
}
.page-account .icon-phone {
  background: url(../images/ic-phone.png) no-repeat center center;
}
.page-account .btn-primary {
  height: 50px;
  background: var(--highlight-color);
  border-color: var(--highlight-color);
}
.page-account .btn-primary:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.page-account .sidebar a {
  color: #333;
}
.page-account .sidebar a:hover {
  color: var(--highlight-color);
  text-decoration: underline;
}
.page-account .sidebar a i.mdi {
  font-size: 20px;
}

.page-booking-operatorbooking .booking-item .text, .page-tour-tourreview .booking-item .text {
  color: #999;
  width: 130px;
}
.page-booking-operatorbooking .booking-item .view-detail, .page-tour-tourreview .booking-item .view-detail {
  padding: 5px 20px;
  border-radius: 30px;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  text-decoration: none;
}
.page-booking-operatorbooking .booking-item .view-detail:hover, .page-tour-tourreview .booking-item .view-detail:hover {
  background: var(--primary-color);
  color: #fff;
}

#modalPolicy .title {
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px 15px;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  margin-top: -1px;
}

.slogan {
  background: #f4fafe;
  border-bottom: 1px solid var(--border-color);
}

#modalQuoteRequestForm .note {
  font-size: 11px;
}
#modalQuoteRequestForm label {
  margin-bottom: 2px;
  font-weight: 500;
}
#modalQuoteRequestForm .form-control {
  padding-left: 15px;
}
#modalQuoteRequestForm .flatpickr-input {
  background: #fff;
}
#modalQuoteRequestForm textarea {
  padding-top: 10px;
  padding-bottom: 10px;
}
#modalQuoteRequestForm .modal-footer {
  margin: 15px -15px -15px -15px;
}
#modalQuoteRequestForm .modal-header h5 {
  margin-bottom: 0;
}
#modalQuoteRequestForm .error {
  padding: 0;
  background: none;
  border: 0;
  font-size: 13px;
}

div.modal-footer:empty {
  display: none;
}

.sort-other-products {
  margin-bottom: 10px;
  background: #0796ff;
  color: #fff;
  padding: 7px 0;
  position: relative;
  display: flex;
}
.sort-other-products .text {
  width: 240px;
  padding: 0 15px;
}
.sort-other-products .cnt {
  flex: 1;
  padding: 0 15px;
}
.sort-other-products .cnt a {
  color: #fff;
}
.sort-other-products .mdi {
  font-size: 16px !important;
  margin-left: 4px;
}

.flatpickr-input {
  background: url(../images/ic-calendar.png) no-repeat right 10px center;
}

.flatpickr-input[readonly=readonly] {
  background-color: #fff;
}

#collapseNote > .card {
  background: #f9fafb;
}

.flexslider-travel-partners .flex-viewport {
  height: inherit !important;
}

.class-blur {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 999;
}
.class-blur img {
  border-radius: 12px;
}

.tour-item ~ .infinite-loading-container .class-blur {
  display: none;
}

.author-info {
  border: 3px solid var(--primary-color);
  border-radius: var(--border-radius);
}
.author-info .avatar {
  width: 240px;
  height: 240px;
  border: 1px solid #b7c5ce;
}
.author-info .avatar:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 5px solid #fff;
  border-radius: 50%;
  z-index: 1;
}
.author-info .avatar img {
  margin: auto;
  min-height: 100%;
  min-width: 100%;
  left: 50%;
  top: 50%;
  height: 100%;
  width: auto;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.author-info .name {
  font-size: 16px;
  font-weight: 600;
}

@keyframes phone-outer {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    box-shadow: 0 0 0 0em rgba(52, 152, 219, 0), 0em 0.05em 0.1em rgba(0, 0, 0, 0.2);
  }
  33.3333% {
    transform: translate3d(0, 0, 0) scale(1.1);
    box-shadow: 0 0 0 0em rgba(52, 152, 219, 0.1), 0em 0.05em 0.1em rgba(0, 0, 0, 0.5);
  }
  66.6666% {
    transform: translate3d(0, 0, 0) scale(1);
    box-shadow: 0 0 0 0.5em rgba(52, 152, 219, 0), 0em 0.05em 0.1em rgba(0, 0, 0, 0.2);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    box-shadow: 0 0 0 0em rgba(52, 152, 219, 0), 0em 0.05em 0.1em rgba(0, 0, 0, 0.2);
  }
}
@keyframes phone-inner {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(0);
  }
  33.3333% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(0.9);
  }
  66.6666% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0);
  }
}
@keyframes phone-icon {
  0% {
    transform: translate3d(0em, 0, 0);
  }
  2% {
    transform: translate3d(0.01em, 0, 0);
  }
  4% {
    transform: translate3d(-0.01em, 0, 0);
  }
  6% {
    transform: translate3d(0.01em, 0, 0);
  }
  8% {
    transform: translate3d(-0.01em, 0, 0);
  }
  10% {
    transform: translate3d(0.01em, 0, 0);
  }
  12% {
    transform: translate3d(-0.01em, 0, 0);
  }
  14% {
    transform: translate3d(0.01em, 0, 0);
  }
  16% {
    transform: translate3d(-0.01em, 0, 0);
  }
  18% {
    transform: translate3d(0.01em, 0, 0);
  }
  20% {
    transform: translate3d(-0.01em, 0, 0);
  }
  22% {
    transform: translate3d(0.01em, 0, 0);
  }
  24% {
    transform: translate3d(-0.01em, 0, 0);
  }
  26% {
    transform: translate3d(0.01em, 0, 0);
  }
  28% {
    transform: translate3d(-0.01em, 0, 0);
  }
  30% {
    transform: translate3d(0.01em, 0, 0);
  }
  32% {
    transform: translate3d(-0.01em, 0, 0);
  }
  34% {
    transform: translate3d(0.01em, 0, 0);
  }
  36% {
    transform: translate3d(-0.01em, 0, 0);
  }
  38% {
    transform: translate3d(0.01em, 0, 0);
  }
  40% {
    transform: translate3d(-0.01em, 0, 0);
  }
  42% {
    transform: translate3d(0.01em, 0, 0);
  }
  44% {
    transform: translate3d(-0.01em, 0, 0);
  }
  46% {
    transform: translate3d(0em, 0, 0);
  }
}
.sort-icon {
  font-size: 36px !important;
}

.display-flex {
  display: flex !important;
}

@media screen and (max-width: 767px) {
  .display-flex {
    justify-content: center;
  }
}
.modal-article-destination-intro .title-collapse {
  background: none;
  color: var(--primary-color);
  width: 100%;
  text-align: left;
  border-color: var(--border-color);
  border-width: 1px;
  font-size: 16px;
}
.modal-article-destination-intro .title-collapse h2 {
  font-size: 16px;
  font-weight: 500;
}
.modal-article-destination-intro .title-collapse:hover {
  outline: none;
}
.modal-article-destination-intro .title-collapse:hover h2 {
  color: var(--highlight-color);
}
.modal-article-destination-intro .title-collapse:focus {
  outline: none;
  box-shadow: none !important;
  background: none !important;
  border-color: var(--border-color) !important;
  color: var(--primary-color) !important;
}
.modal-article-destination-intro .title-collapse .note {
  font-size: 12px;
  color: #888;
}
.modal-article-destination-intro .title-collapse .mdi {
  font-size: 24px !important;
  color: var(--primary-color) !important;
}
.modal-article-destination-intro .title-collapse .mdi-menu-right {
  display: inline-block;
}
.modal-article-destination-intro .title-collapse .mdi-menu-down {
  display: none;
}
.modal-article-destination-intro .title-collapse[aria-expanded=true] .mdi-menu-right {
  display: none;
}
.modal-article-destination-intro .title-collapse[aria-expanded=true] .mdi-menu-down {
  display: inline-block;
}
.modal-article-destination-intro .title-collapse[aria-expanded=true] .note-expanded {
  display: inline-block !important;
}
.modal-article-destination-intro .title-collapse[aria-expanded=true] .note-collapse {
  display: none !important;
}

.overflow-auto::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #f1f1f1;
}

.overflow-auto::-webkit-scrollbar-thumb {
  background-color: var(--border-color);
}

.flexslider-TourDestinationIntro .flex-control-paging {
  display: none;
}
.flexslider-TourDestinationIntro .flex-direction-nav .flex-next {
  right: 0;
}
.flexslider-TourDestinationIntro .flex-direction-nav .flex-prev {
  left: 0;
}

.list-more-tours table tr td {
  padding: 0.75rem;
}
.list-more-tours table tr td:last-child {
  padding-right: 0.75rem;
}
.list-more-tours .btn {
  text-transform: none;
  font-size: 15px;
  padding: 8px 12px;
  margin-left: 10px;
}
.list-more-tours .view-detail {
  padding: 15px !important;
  background: #f4f7fb;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
.list-more-tours .view-detail table {
  background-color: white;
  margin: 0;
}
.list-more-tours .view-detail .mdi-close {
  position: absolute;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}
.list-more-tours .view-detail .mdi-close:hover {
  color: var(--highlight-color);
}
.list-more-tours .view-detail .title {
  color: var(--primary-color);
}
.list-more-tours .note {
  font-weight: normal;
  font-size: 85%;
  font-style: italic;
}

.footer {
  padding-top: 0 !important;
}

.btn-download-pdf {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 500;
}
.btn-download-pdf:hover {
  color: white;
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-download-pdf svg {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.page-hotel-index {
  background: url(../images/bg.jpg) no-repeat center center;
  position: relative;
  background-size: cover;
}
.page-hotel-index .box-search-hotel {
  padding-top: 100px;
  position: relative;
}
.page-hotel-index .hotel-search-box {
  padding: 28px 32px;
  background: #fff;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .page-hotel-index .hotel-search-box {
    padding: 20px;
  }
}
.page-hotel-index:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
}