.title-primary {
  display: flex;
  border-bottom: 2px dashed #ffc313;
  font-weight: 500;
  padding-bottom: 15px;
  line-height: initial;
}
.title-primary i {
  font-size: 1.5rem;
  margin-right: 0.5rem;
  color: #0056b3;
}

.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: #b7c5ce;
  border-radius: 5px;
  font-weight: 500;
}
.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 .radio input[type=radio] ~ .radio-label:before {
  top: 3px;
}
.tour-search-box .vs--single.vs--open .vs__selected {
  top: 9px;
  font-weight: 500;
  margin-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: 10px;
  left: 10px;
  font-size: 20px;
  color: #0056b3;
}
.tour-search-box .text {
  font-size: 0.8rem;
  color: #999;
}
.tour-search-box .btn-primary {
  background: #ffc313;
  border-color: #ffc313;
  padding-top: 10px;
  padding-bottom: 9px;
}
.tour-search-box .btn-primary:hover {
  background: #0056b3;
  border-color: #0056b3;
}
.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: #0056b3;
}
.tour-item .type {
  top: 15px;
  left: 0;
  z-index: 1;
  background: white;
  color: #0056b3;
  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;
}
.tour-item .img img {
  width: 100%;
}
.tour-item .cnt {
  padding: 15px 10px;
  display: block;
  border: 1px solid #b7c5ce;
}
.tour-item .price {
  display: flex;
  margin-bottom: 0.755rem;
  /*font-size: 1.25rem;*/
  font-weight: bold;
  color: #0056b3;
}
.tour-item .price .old-price {
  font-weight: normal;
  font-size: 14px;
  color: #888;
  text-decoration: line-through;
  flex: 1;
  text-align: left;
}
.tour-item .price .price-sale {
  flex: 1;
  text-align: right;
}
.tour-item .title {
  display: block;
  color: #000;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  height: 60px;
  text-align: justify;
}
.tour-item .title:hover {
  color: #0056b3;
}

.see-more {
  font-weight: 500;
  color: #0056b3;
}
.see-more i {
  font-size: 24px;
  vertical-align: middle;
}
.see-more:hover {
  color: #ffc313;
}

.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: #ffc313;
}
.news-item .title {
  display: block;
  font-size: 14px;
  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: #ffc313;
}
.slider-partners .title {
  margin: 0 0 2rem 0;
  text-transform: uppercase;
  font-size: 1.25rem;
  font-weight: bold;
  color: #0056b3;
}
.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;
}
.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: #0056b3;
}

#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: 20px;
  border-radius: 6px;
  min-height: 100%;
  padding-bottom: 0;
}
.page-home-index .box-search-tour .search-tour h1 {
  font-size: 24px;
  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;
  }*/
  /*.control {
      padding-top: 24px;
  }*/
}
.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: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: 0.5rem;
}
.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: #f4f7fb;
}
.page-list-tour .btn-filter {
  border: 0;
  background: #fff;
  padding: 10px 15px;
  font-weight: bold;
  color: #0056b3;
  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: 5px;
  background: #edf0f4;
  color: #0056b3;
}
.page-list-tour .btn-box-search-tour {
  padding: 0;
  border: 0;
  background: none;
  color: #ffc313;
  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: #0056b3;
}
.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: #0056b3;
  color: #fff !important;
}
.page-list-tour .btn-choose-tour {
  background: #0056b3;
  color: white !important;
  border-color: #0056b3;
}
.page-list-tour .btn-choose-tour:hover, .page-list-tour .btn-choose-tour:focus {
  background: #ffc313;
  border-color: #ffc313;
  color: white !important;
}
.page-list-tour .title-page {
  box-shadow: none;
  padding: 15px;
}
.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;
}
.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: 10px 15px 5px;
  flex: 1;
}
.page-list-tour .list-tours .tour-item .price {
  margin-bottom: 0;
  display: block;
  color: #0056b3;
  font-size: 16px;
}
.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: #999;
}
.page-list-tour .list-tours .tour-item .count .value {
  color: #0056b3;
  font-weight: 500;
}
.page-list-tour .list-tours .tour-item .star {
  margin: 0 30px;
}
.page-list-tour .list-tours .tour-item .star span {
  color: #999;
  font-size: 0.875rem;
}
.page-list-tour .list-tours .tour-item .star i {
  font-size: 1rem;
  margin: 0;
  color: #ffc313;
}
.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: #0056b3;
}
.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: 10px;
  background: #0056b3;
  color: #fff;
  padding: 7px 15px;
}
.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: 8px;
  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: #0056b3;
}

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

.filter {
  background: #fff;
  padding: 20px 0;
}
.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: #0056b3;
  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: #ffc313;
  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: 8px;
  border: 2px solid #ffc313;
  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: #ffc313;
}

.page-tour-tourdetail, .page-otherproduct-otherproductdetail {
  background: #f4f7fb;
  padding-bottom: 40px;
}
.page-tour-tourdetail .card-slider, .page-otherproduct-otherproductdetail .card-slider {
  padding: 15px;
}
.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;
}
.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: 0.25rem !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 #0056b3;
}
.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: #0056b3;
}
.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: #0056b3;
  font-weight: bold;
}
.page-tour-tourdetail #accordionTourDetail, .page-otherproduct-otherproductdetail #accordionTourDetail {
  border-bottom: 1px solid #b7c5ce;
}
.page-tour-tourdetail #accordionTourDetail .card .card-header, .page-otherproduct-otherproductdetail #accordionTourDetail .card .card-header {
  border-top: 1px solid #b7c5ce;
}
.page-tour-tourdetail .title-collapse, .page-otherproduct-otherproductdetail .title-collapse {
  background: none;
  color: #0056b3;
  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;
}
.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: #ffc313;
}
.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: #0056b3 !important;
}
.page-tour-tourdetail .title-collapse .note, .page-otherproduct-otherproductdetail .title-collapse .note {
  font-size: 0.875rem;
  color: #888;
}
.page-tour-tourdetail .title-collapse .mdi, .page-otherproduct-otherproductdetail .title-collapse .mdi {
  font-size: 24px;
}
.page-tour-tourdetail .title-collapse[aria-expanded=false] .mdi-minus-circle-outline,
.page-tour-tourdetail .title-collapse[aria-expanded=false] .mdi-menu-down, .page-otherproduct-otherproductdetail .title-collapse[aria-expanded=false] .mdi-minus-circle-outline,
.page-otherproduct-otherproductdetail .title-collapse[aria-expanded=false] .mdi-menu-down {
  display: none;
}
.page-tour-tourdetail .title-collapse[aria-expanded=false] .mdi-plus-circle-outline,
.page-tour-tourdetail .title-collapse[aria-expanded=false] .mdi-menu-right, .page-otherproduct-otherproductdetail .title-collapse[aria-expanded=false] .mdi-plus-circle-outline,
.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-minus-circle-outline,
.page-tour-tourdetail .title-collapse[aria-expanded=true] .mdi-menu-down, .page-otherproduct-otherproductdetail .title-collapse[aria-expanded=true] .mdi-minus-circle-outline,
.page-otherproduct-otherproductdetail .title-collapse[aria-expanded=true] .mdi-menu-down {
  display: inline-block;
}
.page-tour-tourdetail .title-collapse[aria-expanded=true] .mdi-plus-circle-outline,
.page-tour-tourdetail .title-collapse[aria-expanded=true] .mdi-menu-right, .page-otherproduct-otherproductdetail .title-collapse[aria-expanded=true] .mdi-plus-circle-outline,
.page-otherproduct-otherproductdetail .title-collapse[aria-expanded=true] .mdi-menu-right {
  display: none;
}
.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: #0056b3;
  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: #ffc313;
  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: #0056b3;
}
.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: #0056b3;
}
.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: #0056b3;
}
.page-tour-tourdetail #customerComment .btn-reply:hover, .page-otherproduct-otherproductdetail #customerComment .btn-reply:hover {
  color: #ffc313;
}
.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;
}

.group-star i.mdi {
  color: #ffc313 !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: 0;
}
#page-content .card .card-title {
  font-weight: bold;
  color: #0056b3;
  margin: 0;
  padding: 12px 15px;
  background: #fff;
  border-bottom: 3px solid #f4f7fb;
}
#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: #ffc313;
}
.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: #0056b3;
  margin-right: 10px;
  font-size: 20px;
}
.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: #999;
  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: 20px 0 0 20px;
}
.page-tour-contactinfo .form-passenger-info .control .btn-plus {
  border-radius: 0 20px 20px 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: 60px;
  background-size: 40px;
}
.page-tour-contactinfo .card-voucher #btn-apply-voucher {
  background: #ffc313;
  border: 0;
  padding: 0 25px;
  font-weight: bold;
  text-transform: capitalize;
  color: #fff;
  height: 100%;
  border-radius: 0;
  font-size: 1rem;
}
.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: #0056b3;
  width: 160px;
  border-bottom: 5px solid #0056b3;
}
.tab-payment .tab-content {
  flex: 1;
  border: 5px solid #0056b3;
  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: #0056b3;
}
.tab-payment .nav-pills .show > .nav-link {
  background: #fff;
  color: #0056b3;
}
.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: #ffc313;
  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: #ffc313 !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-article-getarticlecategory #lst-older-post a {
  color: #000;
}
.page-article-getarticlecategory #lst-older-post a:hover {
  color: #0056b3;
}

.page-article-articledetail .title-detail {
  font-weight: bold;
}
.page-article-articledetail .date {
  font-size: 0.875rem;
  color: #666;
}
.page-article-articledetail #lst-older-post a {
  color: #000;
}
.page-article-articledetail #lst-older-post a:hover {
  color: #0056b3;
}
.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 img ~ em {
  margin-top: 0.5rem;
  display: block;
}
.page-article-articledetail .news-detail table {
  width: 100%;
  border-color: #b7c5ce;
  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: #b7c5ce;
  padding: 6px 15px;
}
.page-article-articledetail table {
  width: 100%;
  margin: 15px auto;
}
.page-article-articledetail table tr th, .page-article-articledetail table tr td {
  width: inherit !important;
}
.page-article-articledetail table tr:first-child th, .page-article-articledetail table tr:first-child td {
  background: #0056b3;
  text-align: center;
  font-weight: bold;
  color: white;
}

.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: #ffc313;
  border-color: #ffc313;
}
.page-account .btn-primary:hover {
  background: #0056b3;
  border-color: #0056b3;
}
.page-account .sidebar a {
  color: #333;
}
.page-account .sidebar a:hover {
  color: #ffc313;
  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 #0056b3;
  color: #0056b3;
  text-decoration: none;
}
.page-booking-operatorbooking .booking-item .view-detail:hover, .page-tour-tourreview .booking-item .view-detail:hover {
  background: #0056b3;
  color: #fff;
}

.cnt-tour-detail ul {
  margin-bottom: 25px;
}
.cnt-tour-detail ul li {
  margin-bottom: 10px;
}
.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;
}

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

#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: #0056b3;
  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 #0056b3;
  border-radius: 4px;
}
.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: #0056b3;
  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: #ffc313;
}
.modal-article-destination-intro .title-collapse:focus {
  outline: none;
  box-shadow: none !important;
  background: none !important;
  border-color: #b7c5ce !important;
  color: #0056b3 !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: #0056b3 !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 .flex-control-paging {
  display: none;
}
.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: #ffc313;
}
.list-more-tours .view-detail .title {
  color: #0056b3;
}
.list-more-tours .note {
  font-weight: normal;
  font-size: 85%;
  font-style: italic;
}

.recent-acticles .title {
  font-size: 1.125rem;
  color: #0056b3;
  margin: 0 0 15px;
  background: none;
  padding: 0;
  line-height: initial;
  position: relative;
}
.recent-acticles .title:before {
  position: absolute;
  bottom: 1px;
  left: 0;
  right: 0;
  content: "";
  height: 1px;
  background: #ddd;
  z-index: 0;
}
.recent-acticles .title span {
  border-bottom: 3px solid #0056b3;
  line-height: 36px;
  display: inline-block;
  position: relative;
  z-index: 1;
  font-weight: bold;
}
.recent-acticles #lst-older-post {
  list-style: square;
  padding-left: 16px;
}
.recent-acticles #lst-older-post li {
  padding: 4px 0;
  line-height: 18px;
}
.recent-acticles #lst-older-post li h3 {
  font-size: 1rem;
  font-weight: normal;
}

.tag-sale {
  width: 150px;
  height: 42px;
  position: absolute;
  left: 0;
  top: 6px;
  z-index: 3;
  background: url(../images/sale-tag.svg) no-repeat center center;
  background-size: contain;
  line-height: 38px;
  padding-right: 12px;
  color: yellow;
  text-align: center;
}
.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;
}