@charset "UTF-8";
/*Menu mobile*/
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  align-items: center;
  position: absolute;
  top: 6px;
  left: 8px;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 10px;
}

.mobile-menu-overlay,
.mobile-menu-wrapper {
  position: fixed;
  top: 0;
  transition: 0.3s;
}

.mobile-menu-overlay {
  inset: 0;
  z-index: 1040;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
}
.mobile-menu-overlay.show {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-wrapper {
  left: -320px;
  z-index: 1050;
  background: #fff;
  width: 300px;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.mobile-menu-wrapper.show {
  left: 0;
  display: flex !important;
}
.mobile-menu-wrapper .mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: #f2f3f6;
}
.mobile-menu-wrapper .mobile-menu-header img {
  height: 40px !important;
  width: auto !important;
  margin: 0 !important;
}
.mobile-menu-wrapper .mobile-menu-close {
  border: 0;
  background: transparent;
  font-size: 32px;
  line-height: 1;
  width: 36px;
  height: 36px;
  font-weight: normal;
}
.mobile-menu-wrapper ul.dropdown-menu {
  display: none;
  position: static !important;
  float: none;
  transform: none !important;
  border: 0;
  padding: 0;
  margin: 0;
  box-shadow: none;
  padding-left: 24px;
}
.mobile-menu-wrapper ul.dropdown-menu.show {
  display: block;
}
.mobile-menu-wrapper .nav-link,
.mobile-menu-wrapper .dropdown-item,
.mobile-menu-wrapper .dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.mobile-menu-wrapper .active-dropdown {
  font-weight: 700;
}
.mobile-menu-wrapper #navbarNavDropdown {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2rem;
}
.mobile-menu-wrapper .navbar-nav a {
  padding: 0.75rem 1.5rem !important;
  color: var(--text-color) !important;
  font-weight: normal !important;
  line-height: unset !important;
}
.mobile-menu-wrapper .navbar-nav > .nav-item {
  border-bottom: 1px solid #f2f3f6;
}
.mobile-menu-wrapper .navbar-nav > .nav-item:last-child {
  border-bottom: 0;
}
.mobile-menu-wrapper .navbar-nav > .nav-item.dropdown > .dropdown-toggle {
  display: none;
}
.mobile-menu-wrapper .navbar-nav > .nav-item.dropdown > .dropdown-menu {
  display: block;
  padding: 0;
}
.mobile-menu-wrapper .navbar-nav > .nav-item.dropdown > .dropdown-menu > li {
  border-bottom: 1px solid #f2f3f6;
}
.mobile-menu-wrapper .navbar-nav .dropdown-toggle {
  background: #fff;
}
.mobile-menu-wrapper .navbar-nav .dropdown-toggle:after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  transition: transform 0.25s ease;
}
.mobile-menu-wrapper .navbar-nav a:focus {
  background: none;
}
.mobile-menu-wrapper .navbar-nav li.show .dropdown-toggle {
  background: #f2f3f6 !important;
  color: var(--text-color) !important;
}
.mobile-menu-wrapper .navbar-nav li.show .dropdown-toggle:after {
  transform: rotate(180deg);
}

body.mobile-menu-open {
  overflow: hidden;
  height: 100vh;
}

.dmca-badge {
  display: none;
}

.footer {
  background: #fff;
  border-top: 1px solid #eef1f5;
  padding: 1rem 0;
}
.footer #accordionFooter .btn {
  padding: 0;
  border: 0;
  color: var(--text-note-color);
  font-size: 0.925rem;
  font-weight: bold;
  margin: 0 0 0.5rem;
  text-decoration: none;
  text-transform: uppercase;
}
.footer #accordionFooter .btn:focus {
  outline: none;
  border: 0;
  box-shadow: none;
}
.footer #accordionFooter .btn:hover {
  cursor: auto;
}
.footer #accordionFooter ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer #accordionFooter ul li a {
  padding: 2px 0;
  display: inline-block;
  color: var(--text-color);
  text-decoration: none;
}
.footer #accordionFooter ul li a:hover {
  color: var(--primary-color);
}
@media (min-width: 768px) {
  .footer #accordionFooter .collapse {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .footer #accordionFooter {
    box-shadow: none;
    height: auto;
    margin: 0;
  }
  .footer #accordionFooter button.btn {
    padding: 8px 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer #accordionFooter button.btn:after {
    background: url(../images/svg/icon-dropdown.svg) no-repeat center;
    content: "";
    width: 20px;
    height: 20px;
    transition: transform 0.15s ease;
    transform: rotate(180deg);
  }
  .footer #accordionFooter button.btn.collapsed:after {
    transform: rotate(0deg);
  }
  .footer #accordionFooter .col-md-3 {
    padding-left: 0;
    padding-right: 0;
    /* &:has(.show) {
        button.btn {
            &:after {
                transform: rotate(180deg);
            }
        }
    }*/
  }
  .footer #accordionFooter > h3 {
    display: block;
    font-size: 16px;
    color: #000;
    font-weight: bold;
    border: 0;
    padding-left: 15px;
    background: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
  }
  .footer #accordionFooter .ui-accordion-header .ui-accordion-header-icon {
    left: initial;
    right: 15px;
    background: url(/themes/namthanh/content/images/ic/ic-arrown-bottom.png) no-repeat center center;
    transform: rotate(90deg);
  }
  .footer #accordionFooter .ui-accordion-header.ui-state-active .ui-accordion-header-icon {
    transform: rotate(0deg);
  }
  .footer #accordionFooter .ui-accordion-content {
    padding: 15px;
    border: 0;
  }
}

.list-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}
.list-contact a {
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--box-shadow);
}
.list-contact a img {
  width: 28px !important;
  height: 28px;
  padding: 3px !important;
}

.footer-bottom {
  background: #f4f7fb;
  padding: 1.5rem 0;
  font-size: 0.925rem;
  color: #666;
  border-top: 1px solid #eef1f5;
}
.footer-bottom ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-bottom ul li a {
  padding: 2px 0;
  display: inline-block;
  color: var(--text-color);
  text-decoration: none;
}
.footer-bottom ul li a:hover {
  color: var(--primary-color);
}
.footer-bottom .footer-info {
  display: flex;
  align-items: start;
}
.footer-bottom .footer-info .logo-footer {
  max-width: 110px;
  height: auto;
  display: block;
}
.footer-bottom .footer-info .company-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}
.footer-bottom .footer-info .company-info h6 {
  margin: 0;
}
.footer-bottom .footer-info ul li {
  margin-bottom: 0.5rem;
  display: flex;
  gap: 8px;
}
.footer-bottom .footer-info ul li .text {
  flex: 0 0 120px;
  width: 120px;
  font-weight: 500;
  color: var(--text-note-color);
}
.footer-bottom .footer-info ul li:last-child {
  margin-bottom: 0;
}
.footer-bottom .footer-info .ft-left {
  flex: 5;
}
.footer-bottom .footer-info .ft-right {
  flex: 4;
}
.footer-bottom .footer-info .ft-right h6 {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-note-color);
  margin: 0 0 4px;
}
.footer-bottom .footer-info .ft-right img {
  max-height: 40px;
  padding: 6px;
  background: #fff;
  border-radius: 6px;
  width: auto;
}
.footer-bottom .footer-info .ft-right > * {
  margin-bottom: 0.75rem;
}
.footer-bottom .footer-info .ft-right > *:last-child {
  margin-bottom: 0;
}
.footer-bottom .footer-info .ft-right ul li {
  gap: 4px;
}
.footer-bottom .footer-info .ft-right ul li .text {
  flex: 0 0 auto;
  width: auto;
}
.footer-bottom .dmca-badge {
  display: inline-block;
}
.footer-bottom .logo-bct {
  margin-right: 1rem;
  display: inline-block;
}
.footer-bottom .list-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-bottom .list-contact a {
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--box-shadow);
}
.footer-bottom .list-contact a img {
  width: 28px !important;
  height: 28px;
  padding: 3px !important;
}
@media (max-width: 768px) {
  .footer-bottom {
    padding-top: 1rem;
    padding-bottom: 4rem;
  }
  .footer-bottom .footer-info {
    flex-direction: column;
  }
  .footer-bottom .ft-left {
    margin-bottom: 0.75rem;
    border-bottom: 1px dashed #eee;
    padding-bottom: 0.75rem;
  }
  .footer-bottom .ft-right ul li {
    display: block;
  }
}

@media only screen and (min-width: 1025px) {
  .fb-customerchat iframe {
    bottom: 8px !important;
    right: 55px !important;
  }
}
@media only screen and (min-width: 768px) {
  .zalo-chat-widget {
    bottom: 85px !important;
    right: 5px !important;
  }
  .fb_customer_chat_bubble_pop_in {
    bottom: 145px !important;
    right: 14px !important;
    width: 55px !important;
    height: 55px !important;
    box-shadow: none !important;
  }
  .hotline {
    position: fixed;
    bottom: 130px;
    right: 12px;
    z-index: 999;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    border-radius: 50px;
  }
  .hotline a:focus {
    outline: none;
  }
  .hotline .Phone {
    position: relative;
    display: flex;
    margin: 0;
    width: 34px;
    height: 34px;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 0;
    background-color: #f00;
    border-radius: 40px;
    /*border: 3px solid #fff;*/
    box-shadow: 0 0 0 0em rgba(52, 152, 219, 0), 0em 0.05em 0.1em rgba(0, 0, 0, 0.2);
    transform: translate3d(0, 0, 0) scale(1);
  }
  .hotline .Phone img {
    width: 24px !important;
    height: 24px !important;
  }
  .hotline .Phone::before,
  .hotline .Phone::after {
    position: absolute;
    content: "";
  }
  .hotline .Phone::before {
    top: 0;
    left: 0;
    width: 1em;
    height: 1em;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 100%;
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(0);
  }
  .Phone.is-animating {
    animation: phone-outer 3000ms infinite;
  }
  .Phone.is-animating::before {
    animation: phone-inner 3000ms infinite;
  }
  .Phone.is-animating::after {
    animation: phone-icon 3000ms infinite;
  }
  .zalo-chat {
    position: fixed;
    bottom: 80px;
    right: 12px;
  }
  .fb-messenger {
    position: fixed;
    bottom: 34px;
    right: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .open-dialog {
    overflow: hidden;
    height: 100vh;
  }
  .open-dialog .zalo-chat-widget,
  .open-dialog .hotline,
  .open-dialog .fb_customer_chat_bubble_pop_in {
    display: none !important;
  }
  .wrap-support {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50px;
    background: #fff;
    z-index: 1001;
    box-shadow: 0 0 10px -2px #888;
    display: flex;
    align-items: center;
  }
  .wrap-support .zalo-chat-widget {
    width: 25% !important;
    height: 50px !important;
    bottom: 0 !important;
    right: 0 !important;
    display: block !important;
  }
  .wrap-support .zalo-chat-widget > iframe {
    opacity: 0;
    width: 100%;
    height: 100%;
  }
  .wrap-support .zalo-chat-widget #drag-holder {
    width: 40px !important;
    height: 40px !important;
    right: 50% !important;
    margin-right: -20px;
    top: 5px !important;
  }
  .wrap-support .zalo-chat-widget svg {
    display: block !important;
    margin: 0 auto;
    margin-top: 7px;
  }
  .wrap-support .fb_dialog_content {
    height: 50px !important;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 25%;
    right: 25%;
    background: none;
  }
  .wrap-support iframe[data-testid=bubble_iframe] {
    animation: none !important;
    bottom: 0 !important;
    height: 50px !important;
    opacity: 0.00001 !important;
    right: 25% !important;
    left: 50% !important;
    width: inherit !important;
    margin: 0 !important;
  }
  .wrap-support #fb-root {
    width: 25% !important;
    height: 50px !important;
    text-align: center;
    margin-top: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .wrap-support #fb-root .fb_dialog_mobile {
    z-index: 2147483644;
  }
  .wrap-support #fb-root iframe.fb_mpn_mobile_landing_page_slide_up[style*="visibility: visible;"] {
    margin: 0 !important;
    width: 25% !important;
    bottom: 0 !important;
    right: 25% !important;
    height: 50px !important;
    opacity: 0.0001;
  }
  .wrap-support #fb-root .fb-customerchat {
    opacity: 0.0001;
  }
  .wrap-support .menu-home, .wrap-support .hotline-mobile, .wrap-support .zalo-chat, .wrap-support .fb-messenger {
    width: 25%;
    display: flex !important;
    justify-content: center;
    align-items: center;
  }
  .wrap-support .menu-home img, .wrap-support .hotline-mobile img, .wrap-support .zalo-chat img, .wrap-support .fb-messenger img {
    width: 34px;
  }
  .hotline-pc {
    display: none;
  }
  iframe.fb_mpn_mobile_bounce_in {
    z-index: 2147483648 !important;
  }
  iframe[allow=encrypted-media] {
    bottom: 50px !important;
    z-index: 2147483648 !important;
  }
}
.title-primary {
  font-weight: bold;
  margin: 0 0 1rem;
  font-size: 1.5rem;
  text-align: left;
  text-transform: capitalize !important;
  color: var(--primary-color);
  gap: 4px;
  display: flex;
  align-items: center;
}
.title-primary .sub-title {
  font-size: 0.825rem;
  font-weight: normal;
  text-transform: uppercase;
  color: var(--text-note-color);
}
.title-primary i {
  display: none;
}

.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 {
  font-weight: 500;
}
.tour-search-box .vs__dropdown-toggle {
  padding-bottom: 0;
  border-radius: var(--border-radius);
  border-color: var(--border-color);
}
.tour-search-box .vs__dropdown-toggle .vs__actions {
  padding: 2px 6px;
}
.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 {
  margin-top: 0;
}
.tour-search-box .vs--single.vs--open .vs__selected {
  top: 9px;
  font-weight: 500;
  margin-top: 0;
}
.tour-search-box .vs__dropdown-menu {
  min-width: 300px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
}
.tour-search-box .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 .vs__dropdown-toggle {
  padding-bottom: 0;
}
.tour-search-box .radio {
  font-weight: 500;
}
.tour-search-box .mdi {
  top: 6px;
  left: 10px;
  font-size: 20px;
  color: var(--primary-color);
}
.tour-search-box .text {
  font-size: 0.8rem;
  color: #999;
}
.tour-search-box .btn-primary {
  background: #FFA300;
  border-color: #FFA300;
  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;
  border-radius: var(--border-radius);
  background: #fff;
  box-shadow: var(--box-shadow);
  min-height: 100%;
}
.tour-item:hover {
  box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.2);
}
.tour-item:hover .title {
  color: var(--primary-color);
}
.tour-item .type {
  top: 15px;
  left: 0;
  z-index: 1;
  background: white;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 1px 12px 1px 7px;
  box-shadow: 4px 0 5px #666;
  border-radius: 0 20px 20px 0;
}
.tour-item .img {
  display: block;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.tour-item .img img {
  width: 100%;
}
.tour-item .cnt {
  padding: 1rem;
  display: block;
}
.tour-item .price {
  display: flex;
  margin-bottom: 0.755rem;
  font-weight: bold;
  color: var(--primary-color);
}
.tour-item .price .old-price {
  font-weight: normal;
  font-size: 0.875rem;
  color: var(--text-note-color);
  flex: 1;
  text-align: left;
  position: relative;
}
.tour-item .price .old-price:after {
  content: "";
  height: 0.75px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  background: var(--text-note-color);
}
.tour-item .price .old-price del {
  text-decoration: none;
}
.tour-item .price .price-sale {
  text-align: right;
  font-size: 1.125rem;
}
.tour-item .price .price-sale small {
  font-weight: 500;
}
.tour-item .title {
  display: block;
  color: #000;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  height: 68px;
  font-weight: 500;
}
.tour-item .title:hover {
  color: var(--primary-color);
}

.see-more {
  font-weight: 500;
  color: var(--primary-color);
  font-size: 0.925rem;
  display: flex;
  align-items: center;
  gap: 4px;
}
.see-more i {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  margin-top: -3px;
}
.see-more:hover {
  color: #FFA300;
}

.slider-partners {
  padding: var(--space-block);
  margin: 0;
  background: #f2f3f9;
}
.slider-partners .title {
  font-weight: bold;
  margin: 0 0 1rem;
  font-size: var(--title-block);
  text-align: left;
  text-transform: capitalize;
  color: var(--primary-color);
}
.slider-partners .flex-control-nav {
  display: none;
}
.slider-partners .flexslider {
  padding: 1rem 0.75rem;
  border-radius: var(--border-radius);
}
.slider-partners .flexslider .slides {
  display: flex;
  align-items: center;
}
.slider-partners .flexslider .slides img {
  max-height: 65px;
  width: initial;
  margin: 0 auto;
}
.slider-partners .flexslider .flex-direction-nav {
  display: none;
}

.link-SEO {
  background: #fafafa;
  padding: var(--space-block);
  background: linear-gradient(#fff 50%, #f4f7fb 100%);
}
.link-SEO .title {
  color: #000;
  font-weight: 500;
  margin: 10px 0;
}
.link-SEO .title strong {
  font-weight: 500;
}
.link-SEO p {
  color: #333333;
  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);
}
.link-SEO img {
  border-radius: var(--border-radius);
}

.banner-bottom {
  padding: var(--space-block);
  padding-top: 0;
}
.banner-bottom .banner.mb-5 {
  margin-bottom: 0 !important;
}
.banner-bottom img {
  border-radius: var(--border-radius);
}

#carouselPromotionalTour {
  border-radius: var(--border-radius);
  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: 1.5rem 1.25rem;
  border-radius: var(--border-radius);
  min-height: 100%;
}
.page-home-index .box-search-tour .search-tour h1 {
  font-size: 24px;
  font-weight: 500;
}
.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: 1.45rem;
}
.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-item {
  display: flex;
  flex-direction: column;
}
.page-home-index .tour-item:hover .cnt {
  border-color: transparent;
}
.page-home-index .tour-item .cnt {
  padding: 0.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.page-home-index .tour-item .cnt .tour-number {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-note-color);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  flex: 1;
}
.page-home-index .tour-item .price {
  position: relative;
  margin: 0;
  margin-top: 0.75rem;
  align-items: center;
}
.page-home-index .tour-item .price .price-sale {
  margin-left: auto;
}
.page-home-index .tour-item .price .old-price {
  margin-right: auto;
  flex: unset;
}
.page-home-index .tour-item .view-detail {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: #d3e3ff;
  border-radius: var(--border-radius);
  color: #003B6D;
}
.page-home-index .tour-item .view-detail:hover {
  background: var(--highlight-color);
}
.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;
}

.page-list-tour {
  background: var(--background-color);
}
.page-list-tour .seo-onpage {
  margin-bottom: 1rem;
}
.page-list-tour .btn-filter {
  border: 0;
  background: #fff;
  padding: 10px 15px;
  font-weight: bold;
  color: var(--primary-color);
  width: 100%;
  transition: all 0.3s ease;
  border-radius: 0;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  font-size: 1rem;
  display: flex;
  align-items: center;
  text-transform: none;
}
.page-list-tour .btn-filter:active {
  background: #fff !important;
  border: none !important;
  border-bottom: 1px solid #b7c5ce !important;
  border-top: 1px solid #b7c5ce !important;
}
.page-list-tour .btn-filter:active:focus {
  box-shadow: none !important;
}
.page-list-tour .btn-filter:focus-visible {
  outline: none;
}
.page-list-tour .btn-filter b {
  color: #222;
  font-style: italic;
}
.page-list-tour .btn-filter i {
  margin-left: 5px;
}
.page-list-tour .btn-filter span {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding: 5px 10px;
  border-radius: var(--border-radius);
  background: #edf0f4;
  color: var(--primary-color);
}
.page-list-tour .btn-box-search-tour {
  padding: 0;
  border: 0;
  background: none;
  color: #FFA300;
  margin-left: auto;
}
.page-list-tour .btn-box-search-tour i {
  margin: 0;
  font-size: 30px;
}
.page-list-tour .btn-box-search-tour:focus {
  outline: none;
  border: 0;
  box-shadow: none;
  color: var(--primary-color);
}
.page-list-tour .btn-change-date {
  font-size: 0.875rem;
  line-height: 20px;
  border: 1px solid #e5e5e5;
  padding-left: 5px !important;
  padding-right: 5px !important;
  transition: all 0.3s ease;
  background: #fdfdfd;
  color: #333;
  min-width: 80px;
  text-transform: none;
  font-weight: normal;
}
.page-list-tour .btn-change-date:hover, .page-list-tour .btn-change-date:focus {
  text-decoration: none;
  background: var(--primary-color);
  color: #fff !important;
}
.page-list-tour .btn-choose-tour {
  background: var(--primary-color);
  color: white !important;
  border-color: var(--primary-color);
  border-radius: var(--border-radius);
  font-size: 1rem !important;
  padding: 0.175rem 0.75rem !important;
  height: unset;
  line-height: unset;
  display: block;
  text-transform: none;
  font-weight: 500;
}
.page-list-tour .btn-choose-tour:hover, .page-list-tour .btn-choose-tour:focus {
  background: #FFA300;
  border-color: #FFA300;
  color: white !important;
}
.page-list-tour .title-page {
  box-shadow: none;
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  margin: 0;
}
.page-list-tour .box-search-tour {
  display: block;
  background: #fff;
  padding: 25px 0 40px;
  margin-bottom: 40px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12);
  position: relative;
}
.page-list-tour .box-search-tour .tour-search-box > .d-flex.justify-content-between {
  justify-content: inherit !important;
}
.page-list-tour .box-search-tour .radio {
  margin-bottom: 10px;
  margin-right: 30px !important;
}
.page-list-tour .box-search-tour .group-item {
  align-items: flex-end;
}
.page-list-tour .box-search-tour .origin-location,
.page-list-tour .box-search-tour .destination-location {
  margin-right: 15px;
  flex: 0.5;
}
.page-list-tour .box-search-tour .start-date {
  width: 220px;
  margin-right: 15px;
}
.page-list-tour .box-search-tour .days {
  width: 155px;
  margin-right: 15px;
}
.page-list-tour .box-search-tour .agent {
  width: 260px;
}
.page-list-tour .box-search-tour .btn-primary {
  position: absolute;
  left: 50%;
  margin-left: -50px;
  bottom: -20px;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 30px;
  box-shadow: 0 5px 10px #aaa;
}
.page-list-tour .list-tours .tour-item {
  background: #fff;
  margin-bottom: 20px;
  padding-left: 240px;
}
.page-list-tour .list-tours .tour-item .img {
  width: 240px;
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  height: 100%;
  overflow: hidden;
  display: block;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}
.page-list-tour .list-tours .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;
}
.page-list-tour .list-tours .tour-item .cnt {
  border: 0;
  padding: 1rem;
  flex: 1;
}
.page-list-tour .list-tours .tour-item .price {
  margin-bottom: 0;
  font-size: 1.125rem;
  flex-direction: column;
  justify-content: end;
  align-items: end;
}
.page-list-tour .list-tours .tour-item .title {
  margin-bottom: 3px;
  font-size: 1rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 44px;
  line-height: 22px;
}
.page-list-tour .list-tours .tour-item .count {
  line-height: 22px;
}
.page-list-tour .list-tours .tour-item .count .text {
  color: var(--text-note-color);
}
.page-list-tour .list-tours .tour-item .count .value {
  color: var(--primary-color);
  font-weight: 500;
}
.page-list-tour .list-tours .tour-item .star {
  margin: 0 30px;
}
.page-list-tour .list-tours .tour-item .star span {
  color: var(--text-note-color);
  font-size: 0.825rem;
}
.page-list-tour .list-tours .tour-item .star i {
  font-size: 1rem;
  margin: 0;
  color: #FFA300;
}
.page-list-tour .list-tours .tour-item i {
  font-size: 16px;
  margin-right: 7px;
  color: #666;
  vertical-align: middle;
}
.page-list-tour .list-tours .tour-item .line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  height: 22px;
  line-height: 22px;
}
.page-list-tour .list-tours .tour-item .line-clamp-1 .datepicker {
  position: absolute;
  top: 0;
  height: 20px;
  z-index: 0;
  background-color: transparent;
  border: none;
  width: 1px;
}
.page-list-tour .list-tours .tour-item .line-clamp-1 .value {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  height: 22px;
  line-height: 22px;
  margin-right: 3px;
}
.page-list-tour .list-tours .tour-item a {
  color: #000;
}
.page-list-tour .list-tours .tour-item a:hover {
  color: var(--primary-color);
}
.page-list-tour .list-tours .tour-item ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-list-tour .list-tours .tour-item ul li {
  padding: 4px 0;
}
.page-list-tour .list-tours .tour-item .font-size-12px {
  font-size: 10px !important;
  margin-right: 5px;
}
.page-list-tour .list-tours .other-product-item .title {
  height: inherit;
  margin-bottom: 10px;
  font-size: 1rem;
  text-transform: uppercase;
}
.page-list-tour .list-tours .other-product-item .star {
  margin: 0;
}
.page-list-tour .list-tours .other-product-item .vue-star-rating {
  justify-content: center;
}
.page-list-tour .list-tours .other-product-item .price .old-price {
  margin-left: 0px;
}

#modaSearchTour .tour-search-box .origin-location, #modaSearchTour .tour-search-box .destination-location, #modaSearchTour .tour-search-box .start-date, #modaSearchTour .tour-search-box .days, #modaSearchTour .tour-search-box .agent, #modaSearchTour .tour-search-box .control {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 16px;
}
#modaSearchTour .tour-search-box > .d-flex {
  flex-wrap: wrap;
}
#modaSearchTour .tour-search-box > .d-flex .radio {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  margin-right: 0 !important;
}
#modaSearchTour .tour-search-box .control {
  text-align: right;
  margin-bottom: 0;
}

.sort-tour {
  margin-bottom: 0.75rem;
  background: var(--primary-color);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}
.sort-tour .text {
  color: #deecff;
  white-space: nowrap;
}
.sort-tour a {
  color: #fff;
  font-weight: 500;
}
.sort-tour a i {
  font-size: 16px;
  margin-left: 4px;
}
.sort-tour .sorting-desc i.mdi-menu-up {
  display: none;
}
.sort-tour .sorting-asc i.mdi-menu-down {
  display: none;
}

.sort-tour-mobile {
  background: #ffe3ac;
  color: #000;
  padding: 7px 15px;
  font-size: 13px;
}
.sort-tour-mobile .text {
  color: #deecff;
  white-space: nowrap;
  display: none;
}
.sort-tour-mobile a {
  color: #000;
  font-weight: 500;
  position: relative;
  padding-right: 20px;
}
.sort-tour-mobile a:before {
  content: "";
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: var(--border-radius);
  position: absolute;
  right: 2px;
  top: 6px;
  z-index: 0;
}
.sort-tour-mobile a i {
  font-size: 16px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  color: #888;
}
.sort-tour-mobile a i.mdi-radiobox-marked {
  color: var(--primary-color);
}

.sort-otherproduct-mobile .price:before {
  display: none;
}

.filter {
  background: #fff;
  padding: 1rem 0;
  border-radius: var(--border-radius);
}
.filter .lbl-checkbox {
  padding-left: 0;
}
.filter .lbl-checkbox input[type=radio] {
  margin-right: 5px;
}
.filter .title {
  font-size: 16px;
  text-transform: uppercase;
  margin: 0;
  font-weight: 500;
  padding: 0 15px 15px;
  border-bottom: 1px solid #b7c5ce;
}
.filter .sub-title {
  font-weight: 500;
  margin-bottom: 15px;
  color: var(--primary-color);
  text-transform: uppercase;
}
.filter .form-group {
  padding: 20px 15px 0;
}
.filter ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.filter .note {
  font-size: 11px;
  color: #999;
}
.filter .mdi-star {
  color: #FFA300;
  font-size: 18px;
  vertical-align: middle;
  margin-left: 5px;
}
.filter .bar-slider-filter .ui-slider-horizontal {
  background: #ddd;
  height: 5px;
  border: 0;
  box-shadow: none;
  margin: 15px 0;
}
.filter .bar-slider-filter .ui-slider-horizontal .ui-slider-handle {
  background: #fff;
  width: 16px;
  height: 16px;
  top: -6px;
  border-radius: var(--border-radius);
  border: 2px solid #FFA300;
  cursor: pointer;
}
.filter .bar-slider-filter .ui-slider-horizontal .ui-slider-handle:focus-visible {
  outline: none;
}
.filter .bar-slider-filter .ui-slider-horizontal .ui-slider-range {
  background: #fff;
  border-radius: 0;
  box-shadow: none !important;
  font-size: 0;
  padding: 0 !important;
  height: 5px;
  border: 1px solid #eee;
}

.star {
  color: #FFA300;
}

.page-tour-tourdetail, .page-otherproduct-otherproductdetail {
  background: #f4f7fb;
  padding-bottom: 40px;
}
.page-tour-tourdetail .bg-white, .page-otherproduct-otherproductdetail .bg-white {
  border-radius: var(--border-radius);
}
.page-tour-tourdetail .card-slider, .page-otherproduct-otherproductdetail .card-slider {
  padding: 1rem;
  margin-bottom: 0.5rem;
  background: #fff;
  border-radius: var(--border-radius);
}
.page-tour-tourdetail .images-gallery, .page-otherproduct-otherproductdetail .images-gallery {
  position: relative;
}
.page-tour-tourdetail .images-gallery:before, .page-tour-tourdetail .images-gallery:after, .page-otherproduct-otherproductdetail .images-gallery:before, .page-otherproduct-otherproductdetail .images-gallery:after {
  content: "";
  position: absolute;
  display: block;
  z-index: 3;
}
.page-tour-tourdetail .images-gallery:before, .page-otherproduct-otherproductdetail .images-gallery:before {
  top: 12px;
  bottom: 12px;
  left: 12px;
  right: 12px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 6px;
}
.page-tour-tourdetail .images-gallery:after, .page-otherproduct-otherproductdetail .images-gallery:after {
  bottom: 0;
  left: 0;
  width: 125px;
  height: 65px;
  background: url(../images/logo-slider.svg?id=2026) no-repeat center center;
}
.page-tour-tourdetail .images-gallery #slider .slides li, .page-otherproduct-otherproductdetail .images-gallery #slider .slides li {
  position: relative;
  /*height: 480px;*/
  overflow: hidden;
  aspect-ratio: 800/533;
  border-radius: var(--border-radius) !important;
}
.page-tour-tourdetail .images-gallery #slider .slides li img, .page-otherproduct-otherproductdetail .images-gallery #slider .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;
  aspect-ratio: 800/533;
}
.page-tour-tourdetail .images-gallery #carousel, .page-otherproduct-otherproductdetail .images-gallery #carousel {
  width: 20%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}
.page-tour-tourdetail .images-gallery #carousel .flex-direction-nav, .page-otherproduct-otherproductdetail .images-gallery #carousel .flex-direction-nav {
  display: none;
}
.page-tour-tourdetail .images-gallery #carousel .flex-direction-nav .flex-next, .page-otherproduct-otherproductdetail .images-gallery #carousel .flex-direction-nav .flex-next {
  left: 50%;
  transform: rotate(90deg);
  margin-left: -12px;
  top: 95%;
}
.page-tour-tourdetail .images-gallery #carousel .flex-direction-nav .flex-prev, .page-otherproduct-otherproductdetail .images-gallery #carousel .flex-direction-nav .flex-prev {
  top: 5%;
  transform: rotate(90deg);
  left: 50%;
  margin-left: -12px;
}
.page-tour-tourdetail .images-gallery #carousel .flex-viewport, .page-otherproduct-otherproductdetail .images-gallery #carousel .flex-viewport {
  height: 480px !important;
}
.page-tour-tourdetail .images-gallery #carousel .flex-viewport .slides, .page-otherproduct-otherproductdetail .images-gallery #carousel .flex-viewport .slides {
  height: 480px !important;
  overflow-y: auto;
  transform: inherit !important;
  width: 100% !important;
  border: 1px solid #b7c5ce;
  padding: 10px 0;
  border-left: 0;
}
.page-tour-tourdetail .images-gallery #carousel .flex-viewport .slides::-webkit-scrollbar, .page-otherproduct-otherproductdetail .images-gallery #carousel .flex-viewport .slides::-webkit-scrollbar {
  width: 4px;
  background-color: white;
}
.page-tour-tourdetail .images-gallery #carousel .flex-viewport .slides::-webkit-scrollbar-thumb, .page-otherproduct-otherproductdetail .images-gallery #carousel .flex-viewport .slides::-webkit-scrollbar-thumb {
  background-color: #b7c5ce;
}
.page-tour-tourdetail .images-gallery #carousel .slides, .page-otherproduct-otherproductdetail .images-gallery #carousel .slides {
  display: block;
}
.page-tour-tourdetail .images-gallery #carousel .slides > li, .page-otherproduct-otherproductdetail .images-gallery #carousel .slides > li {
  position: relative;
  padding: 0px 8px 10px 10px;
  float: none !important;
  width: inherit !important;
}
.page-tour-tourdetail .images-gallery #carousel .slides > li:after, .page-otherproduct-otherproductdetail .images-gallery #carousel .slides > li:after {
  position: absolute;
  top: 0px;
  left: 10px;
  right: 9px;
  bottom: 10px;
  content: "";
  background: rgba(0, 0, 0, 0.3);
}
.page-tour-tourdetail .images-gallery #carousel .slides > li img, .page-otherproduct-otherproductdetail .images-gallery #carousel .slides > li img {
  border: 1px solid transparent;
}
.page-tour-tourdetail .images-gallery #carousel .slides > li span, .page-otherproduct-otherproductdetail .images-gallery #carousel .slides > li span {
  display: block;
  height: 120px;
  overflow: hidden;
  position: relative;
}
.page-tour-tourdetail .images-gallery #carousel .slides > li span img, .page-otherproduct-otherproductdetail .images-gallery #carousel .slides > li span 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-tour-tourdetail .images-gallery #carousel .slides > li:last-child, .page-otherproduct-otherproductdetail .images-gallery #carousel .slides > li:last-child {
  padding-bottom: 0;
}
.page-tour-tourdetail .images-gallery #carousel .slides > li:last-child:after, .page-otherproduct-otherproductdetail .images-gallery #carousel .slides > li:last-child:after {
  bottom: 0;
}
.page-tour-tourdetail .images-gallery #carousel .slides li.flex-active-slide:after, .page-otherproduct-otherproductdetail .images-gallery #carousel .slides li.flex-active-slide:after {
  background: none;
  border: 1px solid var(--primary-color);
}
.page-tour-tourdetail .images-gallery #carousel .slides li.flex-active-slide:before, .page-otherproduct-otherproductdetail .images-gallery #carousel .slides li.flex-active-slide:before {
  content: "\f035e";
  position: absolute;
  left: -3px;
  font: normal normal normal 24px/1 "Material Design Icons";
  top: 50%;
  margin-top: -10px;
  color: var(--primary-color);
}
.page-tour-tourdetail .position-sticky, .page-otherproduct-otherproductdetail .position-sticky {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}
.page-tour-tourdetail .position-sticky #content, .page-otherproduct-otherproductdetail .position-sticky #content {
  padding: 1rem;
  padding-bottom: 0.5rem;
}
.page-tour-tourdetail .summary i.mdi, .page-otherproduct-otherproductdetail .summary i.mdi {
  font-size: 20px;
  color: #666;
}
.page-tour-tourdetail .summary .value, .page-otherproduct-otherproductdetail .summary .value {
  font-weight: 500;
}
.page-tour-tourdetail .summary .text, .page-otherproduct-otherproductdetail .summary .text {
  font-weight: normal;
}
.page-tour-tourdetail .summary .group-star svg, .page-otherproduct-otherproductdetail .summary .group-star svg {
  margin-right: 0.25rem !important;
}
.page-tour-tourdetail .summary ul, .page-otherproduct-otherproductdetail .summary ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-tour-tourdetail .summary ul > li, .page-otherproduct-otherproductdetail .summary ul > li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}
.page-tour-tourdetail .summary ul > li .text, .page-otherproduct-otherproductdetail .summary ul > li .text {
  width: 145px;
  display: inline-block;
}
.page-tour-tourdetail .summary ul > li i.position-absolute, .page-otherproduct-otherproductdetail .summary ul > li i.position-absolute {
  left: 0;
}
.page-tour-tourdetail .summary .sub-summary, .page-otherproduct-otherproductdetail .summary .sub-summary {
  padding: 0;
  margin: 0;
}
.page-tour-tourdetail .summary .sub-summary li, .page-otherproduct-otherproductdetail .summary .sub-summary li {
  padding-left: 0;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.page-tour-tourdetail .summary .sub-summary li .text, .page-otherproduct-otherproductdetail .summary .sub-summary li .text {
  width: 145px;
}
.page-tour-tourdetail .summary .price .value, .page-otherproduct-otherproductdetail .summary .price .value {
  font-size: 1.25rem;
  font-weight: bold;
}
.page-tour-tourdetail .summary .price .old-price, .page-otherproduct-otherproductdetail .summary .price .old-price {
  font-size: 1rem;
  font-weight: normal;
  color: #888;
}
.page-tour-tourdetail .summary .code .value, .page-otherproduct-otherproductdetail .summary .code .value {
  color: var(--primary-color);
  font-weight: bold;
  border: 2px dashed var(--border-color);
  padding: 0.25rem 1rem;
  border-radius: var(--border-radius);
  background: var(--background-color);
}
.page-tour-tourdetail #accordionTourDetail, .page-otherproduct-otherproductdetail #accordionTourDetail {
  border: 0;
}
.page-tour-tourdetail #accordionTourDetail .card, .page-otherproduct-otherproductdetail #accordionTourDetail .card {
  margin-bottom: 0.5rem;
}
.page-tour-tourdetail #accordionTourDetail .card:last-child, .page-otherproduct-otherproductdetail #accordionTourDetail .card:last-child {
  margin-bottom: 0;
}
.page-tour-tourdetail #accordionTourDetail .card .card-header, .page-otherproduct-otherproductdetail #accordionTourDetail .card .card-header {
  border: 0;
}
.page-tour-tourdetail .title-collapse, .page-otherproduct-otherproductdetail .title-collapse {
  background: none;
  color: var(--primary-color);
  width: 100%;
  text-align: left;
  border-color: #b7c5ce;
  border-width: 1px;
}
.page-tour-tourdetail .title-collapse h2, .page-otherproduct-otherproductdetail .title-collapse h2 {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}
.page-tour-tourdetail .title-collapse h2 .mdi, .page-otherproduct-otherproductdetail .title-collapse h2 .mdi {
  font-size: 1.25rem;
  min-width: 28px;
  margin-right: 0.25rem;
}
.page-tour-tourdetail .title-collapse:hover, .page-otherproduct-otherproductdetail .title-collapse:hover {
  outline: none;
}
.page-tour-tourdetail .title-collapse:hover h2, .page-otherproduct-otherproductdetail .title-collapse:hover h2 {
  color: #FFA300;
}
.page-tour-tourdetail .title-collapse:focus, .page-otherproduct-otherproductdetail .title-collapse:focus {
  outline: none;
  box-shadow: none !important;
  background: none !important;
  border-color: #b7c5ce !important;
  color: var(--primary-color) !important;
}
.page-tour-tourdetail .title-collapse .note, .page-otherproduct-otherproductdetail .title-collapse .note {
  font-size: 0.875rem;
  color: var(--text-note-color);
}
.page-tour-tourdetail .title-collapse .mdi, .page-otherproduct-otherproductdetail .title-collapse .mdi {
  font-size: 24px;
}
.page-tour-tourdetail .title-collapse .mdi-chevron-down, .page-otherproduct-otherproductdetail .title-collapse .mdi-chevron-down {
  transition: transform 0.25s ease;
}
.page-tour-tourdetail .title-collapse[aria-expanded=false] .mdi-menu-down, .page-otherproduct-otherproductdetail .title-collapse[aria-expanded=false] .mdi-menu-down {
  display: none;
}
.page-tour-tourdetail .title-collapse[aria-expanded=false] .mdi-menu-right, .page-otherproduct-otherproductdetail .title-collapse[aria-expanded=false] .mdi-menu-right {
  display: inline-block;
}
.page-tour-tourdetail .title-collapse[aria-expanded=true] .note-expanded, .page-otherproduct-otherproductdetail .title-collapse[aria-expanded=true] .note-expanded {
  display: block !important;
}
.page-tour-tourdetail .title-collapse[aria-expanded=true] .note-collapse, .page-otherproduct-otherproductdetail .title-collapse[aria-expanded=true] .note-collapse {
  display: none !important;
}
.page-tour-tourdetail .title-collapse[aria-expanded=true] .mdi-menu-down, .page-otherproduct-otherproductdetail .title-collapse[aria-expanded=true] .mdi-menu-down {
  display: inline-block;
}
.page-tour-tourdetail .title-collapse[aria-expanded=true] .mdi-menu-right, .page-otherproduct-otherproductdetail .title-collapse[aria-expanded=true] .mdi-menu-right {
  display: none;
}
.page-tour-tourdetail .title-collapse[aria-expanded=true] .mdi-chevron-down, .page-otherproduct-otherproductdetail .title-collapse[aria-expanded=true] .mdi-chevron-down {
  transform: rotate(180deg);
}
.page-tour-tourdetail .collapsed .mdi-plus-circle-outline,
.page-tour-tourdetail .collapsed .mdi-menu-right, .page-otherproduct-otherproductdetail .collapsed .mdi-plus-circle-outline,
.page-otherproduct-otherproductdetail .collapsed .mdi-menu-right {
  display: inline-block;
}
.page-tour-tourdetail .collapsed .mdi-minus-circle-outline,
.page-tour-tourdetail .collapsed .mdi-menu-down, .page-otherproduct-otherproductdetail .collapsed .mdi-minus-circle-outline,
.page-otherproduct-otherproductdetail .collapsed .mdi-menu-down {
  display: none;
}
.page-tour-tourdetail #customerComment h3, .page-otherproduct-otherproductdetail #customerComment h3 {
  font-weight: 500;
  padding: 12px 15px;
  background: #fff;
  border-bottom: 2px solid #f4f7fb;
  margin: -15px -15px 20px;
}
.page-tour-tourdetail #customerComment form, .page-otherproduct-otherproductdetail #customerComment form {
  padding: 20px;
  background: #f4f7fb;
  border: 1px solid #eee;
}
.page-tour-tourdetail #customerComment form input,
.page-tour-tourdetail #customerComment form textarea, .page-otherproduct-otherproductdetail #customerComment form input,
.page-otherproduct-otherproductdetail #customerComment form textarea {
  width: 100%;
  border: 1px solid #b7c5ce;
  padding: 10px 15px;
  box-shadow: none;
  text-indent: 0;
}
.page-tour-tourdetail #customerComment form input:focus,
.page-tour-tourdetail #customerComment form textarea:focus, .page-otherproduct-otherproductdetail #customerComment form input:focus,
.page-otherproduct-otherproductdetail #customerComment form textarea:focus {
  border-color: var(--primary-color);
  background: #fff;
}
.page-tour-tourdetail #customerComment form .form-group, .page-otherproduct-otherproductdetail #customerComment form .form-group {
  margin-bottom: 20px;
  position: relative;
}
.page-tour-tourdetail #customerComment form .form-group label, .page-otherproduct-otherproductdetail #customerComment form .form-group label {
  position: absolute;
  left: 0;
  top: 6px;
  width: 140px;
  text-align: right;
}
.page-tour-tourdetail #customerComment form label, .page-otherproduct-otherproductdetail #customerComment form label {
  display: none;
}
.page-tour-tourdetail #customerComment form .col-md-6, .page-otherproduct-otherproductdetail #customerComment form .col-md-6 {
  float: left;
  padding-right: 15px;
  width: 50%;
}
.page-tour-tourdetail #customerComment form .col-md-6:nth-of-type(2), .page-otherproduct-otherproductdetail #customerComment form .col-md-6:nth-of-type(2) {
  padding-right: 0;
  padding-left: 15px;
}
.page-tour-tourdetail #customerComment .media-body, .page-otherproduct-otherproductdetail #customerComment .media-body {
  position: relative;
  padding-left: 70px;
}
.page-tour-tourdetail #customerComment #btnSendComment,
.page-tour-tourdetail #customerComment .btn-send-reply,
.page-tour-tourdetail #customerComment .btn-close, .page-otherproduct-otherproductdetail #customerComment #btnSendComment,
.page-otherproduct-otherproductdetail #customerComment .btn-send-reply,
.page-otherproduct-otherproductdetail #customerComment .btn-close {
  width: 90px;
  height: 40px;
  line-height: 40px;
  padding: 0;
  text-align: center;
  border: 0;
  font-size: 18px;
  background: #FFA300;
  color: #fff;
  font-weight: 500;
  float: right;
}
.page-tour-tourdetail #customerComment #btnSendComment:hover,
.page-tour-tourdetail #customerComment .btn-send-reply:hover,
.page-tour-tourdetail #customerComment .btn-close:hover, .page-otherproduct-otherproductdetail #customerComment #btnSendComment:hover,
.page-otherproduct-otherproductdetail #customerComment .btn-send-reply:hover,
.page-otherproduct-otherproductdetail #customerComment .btn-close:hover {
  background: var(--primary-color);
}
.page-tour-tourdetail #customerComment #btnSendComment:focus,
.page-tour-tourdetail #customerComment .btn-send-reply:focus,
.page-tour-tourdetail #customerComment .btn-close:focus, .page-otherproduct-otherproductdetail #customerComment #btnSendComment:focus,
.page-otherproduct-otherproductdetail #customerComment .btn-send-reply:focus,
.page-otherproduct-otherproductdetail #customerComment .btn-close:focus {
  outline: none;
}
.page-tour-tourdetail #customerComment .btn-close, .page-otherproduct-otherproductdetail #customerComment .btn-close {
  background: #ccc;
  margin-right: 20px;
}
.page-tour-tourdetail #customerComment .time, .page-otherproduct-otherproductdetail #customerComment .time {
  font-size: 11px;
  color: #888;
  font-weight: 200;
  padding-right: 10px;
}
.page-tour-tourdetail #customerComment .name, .page-otherproduct-otherproductdetail #customerComment .name {
  font-weight: 500;
  text-transform: capitalize;
  color: var(--primary-color);
}
.page-tour-tourdetail #customerComment .btn-reply, .page-otherproduct-otherproductdetail #customerComment .btn-reply {
  border: 0;
  padding: 0;
  box-shadow: none;
  background: none;
  font-size: 11px;
  font-weight: 200;
  text-decoration: underline;
  color: var(--primary-color);
}
.page-tour-tourdetail #customerComment .btn-reply:hover, .page-otherproduct-otherproductdetail #customerComment .btn-reply:hover {
  color: #FFA300;
}
.page-tour-tourdetail #customerComment .btn-reply:focus, .page-otherproduct-otherproductdetail #customerComment .btn-reply:focus {
  outline: none;
}
.page-tour-tourdetail #customerComment .avatar, .page-otherproduct-otherproductdetail #customerComment .avatar {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background: #dcf4fd;
  position: absolute;
  left: 0;
}
.page-tour-tourdetail #customerComment .comment-cnt, .page-otherproduct-otherproductdetail #customerComment .comment-cnt {
  border-bottom: 1px dotted #b7c5ce;
}
.page-tour-tourdetail #customerComment .comment-reply-cnt,
.page-tour-tourdetail #customerComment .form-reply, .page-otherproduct-otherproductdetail #customerComment .comment-reply-cnt,
.page-otherproduct-otherproductdetail #customerComment .form-reply {
  padding-left: 40px;
}
.page-tour-tourdetail #customerComment #divBodyComment ~ form, .page-otherproduct-otherproductdetail #customerComment #divBodyComment ~ form {
  padding-top: 20px;
}
.page-tour-tourdetail #customerComment .form-reply, .page-otherproduct-otherproductdetail #customerComment .form-reply {
  margin-bottom: 30px;
}
.page-tour-tourdetail .count-review, .page-otherproduct-otherproductdetail .count-review {
  font-weight: 500;
  font-style: italic;
}
.page-tour-tourdetail .count-review i.mdi, .page-otherproduct-otherproductdetail .count-review i.mdi {
  font-size: 24px;
}
.page-tour-tourdetail #collapseTourDestinationIntro .flexslider-TourDestinationIntro .slides, .page-otherproduct-otherproductdetail #collapseTourDestinationIntro .flexslider-TourDestinationIntro .slides {
  padding-left: 0;
}
.page-tour-tourdetail #collapseTourDestinationIntro .flex-direction-nav a, .page-otherproduct-otherproductdetail #collapseTourDestinationIntro .flex-direction-nav a {
  width: 28px;
  height: 28px;
  background-size: 12px;
  opacity: 0.6;
  border-radius: 20px;
  box-shadow: 0 1px 5px #333;
}
.page-tour-tourdetail #collapseTourDestinationIntro .flex-direction-nav a.flex-prev, .page-otherproduct-otherproductdetail #collapseTourDestinationIntro .flex-direction-nav a.flex-prev {
  left: 2px !important;
  background: #fff url(../images/ic-previous.png) no-repeat center;
  background-size: 8px;
}
.page-tour-tourdetail #collapseTourDestinationIntro .flex-direction-nav a.flex-next, .page-otherproduct-otherproductdetail #collapseTourDestinationIntro .flex-direction-nav a.flex-next {
  right: 2px !important;
  background: #fff url(../images/ic-next.png) no-repeat center;
  background-size: 8px;
}

.group-star i.mdi {
  color: #FFA300 !important;
  vertical-align: middle;
}

#page-content {
  min-height: calc(100vh - 60px);
}
#page-content .plugin-fb-like {
  padding: 15px !important;
}
#page-content .fb_iframe_widget iframe {
  width: 100% !important;
}
#page-content .card {
  border: 0;
  border-radius: var(--border-radius);
}
#page-content .card .card-title {
  font-weight: bold;
  color: var(--primary-color);
  margin: 0;
  padding: 0.75rem 1rem;
  background: #fff;
  border-bottom: 3px solid #f4f7fb;
  font-size: 1.25rem;
  text-transform: capitalize !important;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}
#page-content .card .card-body {
  padding: 20px 15px;
}

.page-tour-contactinfo .change-date {
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 500;
  color: #999;
}
.page-tour-contactinfo .card-title:hover .change-date {
  color: #FFA300;
}
.page-tour-contactinfo .box-change-date {
  top: 0;
  right: 0;
  bottom: 0;
}
.page-tour-contactinfo .box-change-date > input.form-control {
  opacity: 0 !important;
}
.page-tour-contactinfo .flatpickr-calendar.inline {
  z-index: 9;
}
.page-tour-contactinfo .box-depart ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-tour-contactinfo .box-depart ul li .text {
  width: 120px;
}
.page-tour-contactinfo .box-depart ul li .value {
  font-weight: 500;
}
.page-tour-contactinfo .box-depart .note {
  border-top: 1px dashed #b7c5ce;
  padding-top: 20px;
}
.page-tour-contactinfo .box-depart .note i {
  color: var(--primary-color);
  margin-right: 0.5rem;
  font-size: 1.25rem;
}
.page-tour-contactinfo .box-depart .note .col-sm-4 {
  display: flex;
  align-items: center;
}
.page-tour-contactinfo .form-passenger-info .flatpickr-input {
  background: url(../images/ic-calendar.png) no-repeat right 10px center;
}
.page-tour-contactinfo .form-passenger-info .text {
  font-weight: 500;
}
.page-tour-contactinfo .form-passenger-info .text i {
  color: var(--text-note-color);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: normal;
  margin-left: 3px;
}
.page-tour-contactinfo .form-passenger-info .control {
  display: flex;
  align-items: center;
}
.page-tour-contactinfo .form-passenger-info .control .btn-minus, .page-tour-contactinfo .form-passenger-info .control .btn-plus {
  border: 1px solid #b7c5ce;
  width: 50px;
  height: 40px;
  background: #f4f7fb;
  font-size: 24px;
  font-weight: 500;
}
.page-tour-contactinfo .form-passenger-info .control .btn-minus:focus, .page-tour-contactinfo .form-passenger-info .control .btn-plus:focus {
  outline: none;
}
.page-tour-contactinfo .form-passenger-info .control .btn-minus {
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}
.page-tour-contactinfo .form-passenger-info .control .btn-plus {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}
.page-tour-contactinfo .form-passenger-info .control .step-number {
  height: 40px;
  border-top: 1px solid #b7c5ce;
  border-bottom: 1px solid #b7c5ce;
  width: 60px;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
}
.page-tour-contactinfo .card-voucher ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-tour-contactinfo .card-voucher .form-voucher {
  background: url(../images/ic-gift-card.png) no-repeat left center;
  padding-left: 52px;
  background-size: 40px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.page-tour-contactinfo .card-voucher .form-voucher #voucherCode {
  max-width: 200px;
}
.page-tour-contactinfo .card-voucher #btn-apply-voucher {
  background: #FFA300;
  border: 0;
  font-weight: bold;
  text-transform: capitalize;
  color: #fff;
  height: 100%;
  min-width: 120px;
  height: 40px;
}
.page-tour-contactinfo .not-passenger {
  font-size: 13px;
  color: #333;
}
.page-tour-contactinfo .list-passenger .passenger-item {
  border-bottom: 1px solid #f4f7fb;
  padding-bottom: 15px;
}
.page-tour-contactinfo .list-passenger .passenger-item:last-child {
  border-bottom: 5px solid #f4f7fb;
}

.sidebar .tour-summary .text {
  color: #999;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.875rem;
}
.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: var(--border-radius);
  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: #FFA300;
  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-tour-bookingconfirm .booking-info .text {
  width: 160px;
}
.page-tour-bookingconfirm .note {
  border-color: #FFA300 !important;
  background: #fff8f2;
  font-weight: 500;
}
.page-tour-bookingconfirm .note p:last-child {
  margin-bottom: 0 !important;
}
.page-tour-bookingconfirm .note p:first-child {
  margin-top: 0 !important;
}
.page-tour-bookingconfirm .tour-item {
  background: #fff;
  margin-bottom: 20px;
}
.page-tour-bookingconfirm .tour-item:hover {
  box-shadow: none;
}
.page-tour-bookingconfirm .tour-item .img {
  width: 240px;
  flex: none;
}
.page-tour-bookingconfirm .tour-item .img img {
  width: 100%;
}
.page-tour-bookingconfirm .tour-item .cnt {
  flex: 1;
}
.page-tour-bookingconfirm .tour-item ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-tour-bookingconfirm .tour-item ul li {
  padding: 4px 0;
}
.page-tour-bookingconfirm .tour-item ul li i {
  font-size: 20px;
  margin-right: 10px;
  color: #666;
  vertical-align: middle;
  width: 24px;
}
.page-tour-bookingconfirm .list-passenger .index {
  width: 100px;
}
.page-tour-bookingconfirm .list-passenger .sex {
  width: 80px;
}

.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-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: #FFA300;
  border-color: #FFA300;
}
.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: #FFA300;
  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;
}

.cnt-tour-detail h3.title {
  margin-left: -15px !important;
  margin-right: -15px !important;
  padding: 10px 15px;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
.cnt-tour-detail table {
  margin-bottom: 20px;
}
.cnt-tour-detail table td {
  padding: 5px 0;
  padding-right: 15px;
  vertical-align: top;
}
.cnt-tour-detail table td:last-child {
  padding-right: 0;
}

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

.slogan {
  background: #f4fafe;
  border-bottom: 1px solid #b7c5ce;
}

#modalQuoteRequestForm .note {
  font-size: 0.8125rem;
  font-weight: normal;
  color: var(--text-note-color);
}
#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: var(--primary-color);
  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: var(--background-color);
  border-radius: var(--border-radius) !important;
}
#collapseNote > .card .card-body {
  padding: 1rem;
}
#collapseNote > .card .card-body p:last-child {
  margin-bottom: 0;
}

.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: var(--border-radius);
}

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

.author-info {
  border: 3px solid var(--primary-color);
  border-radius: var(--border-radius);
  padding: 1rem;
}
.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: bold;
}

@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: #b7c5ce;
  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: #FFA300;
}
.modal-article-destination-intro .title-collapse:focus {
  outline: none;
  box-shadow: none !important;
  background: none !important;
  border-color: #b7c5ce !important;
  color: var(--primary-color) !important;
}
.modal-article-destination-intro .title-collapse .note {
  font-size: 0.875rem;
  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: #b7c5ce;
}

.flexslider-TourDestinationIntro .img {
  margin-bottom: 0.5rem;
  display: block;
}
.flexslider-TourDestinationIntro .img img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.flexslider-TourDestinationIntro a {
  color: var(--text-color);
}
.flexslider-TourDestinationIntro a:hover {
  color: var(--primary-color);
}
.flexslider-TourDestinationIntro .title {
  font-weight: 500;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.flexslider-TourDestinationIntro .flex-control-paging {
  display: none;
}
.flexslider-TourDestinationIntro .flex-direction-nav {
  margin: 0;
}
.flexslider-TourDestinationIntro .flex-direction-nav .flex-next {
  right: 0;
}
.flexslider-TourDestinationIntro .flex-direction-nav .flex-prev {
  left: 0;
}

#collapseTourSchedule .card-body table {
  min-width: 100%;
  border-color: #b7c5ce;
  border-spacing: 0;
  border-collapse: collapse;
}
#collapseTourSchedule .card-body table td, #collapseTourSchedule .card-body table th {
  padding: 6px 10px;
  border-color: #b7c5ce;
}

.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: 1rem;
  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: #FFA300;
}
.list-more-tours .view-detail .title {
  color: var(--primary-color);
}
.list-more-tours .note {
  font-weight: normal;
  font-size: 85%;
  font-style: italic;
}

.tag-sale {
  width: 150px;
  height: 42px;
  position: absolute;
  z-index: 4;
  line-height: 38px;
  color: yellow;
  text-align: center;
}
.tag-sale.position-top-left {
  left: 0;
  top: 6px;
  padding-right: 12px;
}
.tag-sale.position-top-right {
  right: 0;
  top: 6px;
  padding-left: 12px;
  padding-top: 4px;
}
.tag-sale.position-top-right:before {
  transform: rotate(180deg);
}
.tag-sale.position-bottom-left {
  left: 0;
  bottom: 0;
  padding-right: 12px;
}
.tag-sale.position-bottom-right {
  right: 0;
  bottom: 6px;
  padding-left: 12px;
  padding-top: 4px;
}
.tag-sale.position-bottom-right:before {
  transform: rotate(180deg);
}
.tag-sale:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../images/sale-tag.svg) no-repeat center;
  background-size: contain;
}
.tag-sale > div {
  position: relative;
}
.tag-sale span {
  font-size: 12px;
  color: white;
  text-transform: uppercase;
}
.tag-sale strong {
  font-size: 24px;
}
.tag-sale small {
  font-size: 65%;
}

.tour-list .flex-viewport ul li > div {
  padding-left: 0;
  padding-right: 0;
}
.tour-list .flex-viewport ul li .tour-item .price {
  display: block;
}
.tour-list .flex-viewport ul li .tour-item .price .old-price, .tour-list .flex-viewport ul li .tour-item .price .price-sale {
  display: block;
  text-align: right;
}
.tour-list .flex-viewport ul li .tour-item .price .old-price {
  margin-bottom: 6px;
  font-size: 13px;
}

.block-list-tour {
  padding: var(--space-block);
}
.block-list-tour .block-banner img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  width: 100%;
  height: 100%;
}
.block-list-tour .block-banner > div {
  height: 100%;
}
.block-list-tour .block-banner > div > p {
  height: 100%;
  padding-bottom: 1.5rem;
}
.block-list-tour.block-list-tour-hot {
  padding: var(--space-block);
  background: #f2f3f9;
  background: radial-gradient(circle, #f2f3f9 0%, #fff 100%);
}

.page-article-articledetail ul, .page-article-articledetail ol,
.seo-onpage ul,
.seo-onpage ol,
.cnt-tour-detail ul,
.cnt-tour-detail ol, .link-SEO ul, .link-SEO ol {
  margin-bottom: 1rem;
  padding-left: 1.75rem;
}
.page-article-articledetail ul li, .page-article-articledetail ol li,
.seo-onpage ul li,
.seo-onpage ol li,
.cnt-tour-detail ul li,
.cnt-tour-detail ol li, .link-SEO ul li, .link-SEO ol li {
  margin-bottom: 0.75rem;
}
.page-article-articledetail img,
.seo-onpage img,
.cnt-tour-detail img, .link-SEO img {
  border-radius: var(--border-radius);
}

/* Voucher Gợi ý */
.voucher-suggest-container {
  border: 1px dashed #cccccc;
  padding: 10px 12px;
  border-radius: 4px;
  background-color: #fafafa;
  margin-bottom: 12px;
}

.voucher-suggest-title {
  font-weight: bold;
  color: #333333;
  margin-bottom: 8px;
  font-size: 14px;
}

.list-suggested-vouchers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.suggested-voucher-item {
  display: inline-flex;
  align-items: center;
  border: 1px solid #b8d5fb;
  border-radius: 4px;
  padding: 3px 8px;
  background-color: #ffffff;
  font-size: 13px;
}

.suggested-voucher-code {
  color: #0056b3;
  font-weight: bold;
  margin-right: 4px;
}

.suggested-voucher-discount {
  color: #6c757d;
  margin-right: 6px;
}

.btn-use-suggested-voucher {
  background-color: #007bff;
  color: #ffffff;
  border: none;
  border-radius: 3px;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
}
.btn-use-suggested-voucher:hover {
  background-color: #0056b3;
}