@import url("fonts/stylesheet.css");
:root {
  --font-family: "SVN-Poppins", sans-serif;
  --primary-color: #3D4196;
  --highlight-color: #FF9500;
  --bs-body-color: #202020;
  --text-note-color: #535252;
  --text-font-size: 16px;
  --background: #EEEFFF;
  --background-body: #F8F8F8;
  --padding: 16px;
  --height-form-control: 38px;
  --border-radius-card: 20px;
  --border-radius-input: 12px;
  --background-form-control: #F5F5F5;
  --box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
  --color-blur: #EBFDFF;
  --border-color: #E7E7E7;
  --linear-gradient-primary: linear-gradient(to right,#5b62ee,#383ec6);
  --linear-gradient-primary-hover: linear-gradient(to right,#383ec6,#383ec6);
  --linear-gradient-highlight: linear-gradient(to right, #FD4D4D, #FF6A34);
  --linear-gradient-highlight-hover: linear-gradient(to right, #FF6A34, #FF6A34);
  /*Reset bootstrap value*/
  --bs-primary-rgb: 0, 151, 206;
  --bs-link-color-rgb: 0, 151, 206;
  --bs-link-hover-color-rgb: 255, 149, 0;
  --bs-dark-bg-subtle: #BABABA;
  --bs-border-radius: var(--border-radius-input);
}

@media (max-width: 768px) {
  :root {
    --padding: 12px;
    --text-font-size: 14px;
    --border-radius-card: 12px;
    --border-radius-input: 8px;
  }
  .row {
    margin-right: -12px;
    margin-left: -12px;
  }
  .row > *[class*=col-] {
    padding-right: 12px;
    padding-left: 12px;
  }
  .container {
    padding-right: 12px;
    padding-left: 12px;
  }
}
::placeholder {
  color: #BABABA;
  opacity: 1;
}

/*Reset bootstrap value*/
.navbar {
  --bs-navbar-nav-link-padding-x: 1rem;
  --bs-navbar-active-color: var(--text-color);
}

.navbar-nav {
  --bs-nav-link-color: var(--bs-body-color);
  --bs-nav-link-hover-color: var(--primary-color);
  --bs-nav-link-font-weight: 500;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-primary:hover {
  background-color: var(--highlight-color);
  border-color: var(--highlight-color);
}

.pagination {
  --bs-pagination-active-bg: var(--primary-color);
  --bs-pagination-color: var(--primary-color);
  --bs-pagination-hover-color: var(--highlight-color);
  --bs-pagination-border-width: 0;
  --bs-pagination-disabled-bg: transparent;
  --bs-pagination-padding-x: 1rem;
  --bs-pagination-hover-bg: transparent;
  --bs-pagination-hover-border-color: transparent;
}

body {
  padding-top: calc(40px + 1rem + 1.5rem + 25px);
}
@media (max-width: 768px) {
  body {
    padding-top: calc(34px + 1rem);
  }
}

.header {
  background: #fff;
}
.header .navbar-brand {
  padding: 0;
}
.header .navbar-brand img {
  height: 40px;
  object-fit: contain;
  width: auto;
}
.header .navbar-toggler {
  border: 0;
  padding: 0;
  width: 32px;
  height: 32px;
  margin-right: var(--padding);
  display: none;
}
.header .navbar-toggler:focus {
  outline: none;
}
.header .navbar-toggler .navbar-toggler-icon {
  width: 22px;
  height: 16px;
  background: url(../images/icons/icon-menu.svg) no-repeat center;
}
.header .main-nav {
  padding: 0;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}
.header .navbar-nav .nav-link {
  color: var(---bs-body-color);
  font-weight: 600;
  padding: 0.75rem 0;
  margin-right: 2rem;
  border-bottom: 3px solid transparent;
  line-height: 22px;
}
.header .navbar-nav .nav-link:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.header .top-bar {
  background: var(--primary-color);
}
.header .top-bar a {
  color: #fff;
}
.header .drop-account .nav-link, .header #liLogin .nav-link {
  background: var(--background);
  border-radius: 2rem;
}
.header .drop-account .dropdown-toggle {
  padding: 4px 16px;
}
.header .drop-account .dropdown-menu {
  position: absolute;
  border: 0;
  padding: var(--padding) !important;
  border-radius: var(--border-radius-input);
  box-shadow: var(--box-shadow);
  min-width: 250px;
  top: calc(100% + 10px);
}
.header .drop-account .dropdown-menu li img {
  display: none;
}
.header .drop-account .dropdown-menu li > a {
  display: flex;
  align-items: center;
  gap: var(--padding);
  color: var(--bs-body-color);
}
.header .drop-account .dropdown-menu li > a:before {
  content: "";
  width: 24px;
  height: 24px;
}
.header .drop-account .dropdown-menu li > a:hover {
  color: var(--primary-color);
}
.header .drop-account .dropdown-menu li.member-admin > a:before {
  background: url(../images/svg/icon-user.svg) no-repeat center;
  background-size: contain;
}
.header .drop-account .dropdown-menu li.member-logout > a:before {
  background: url(../images/svg/icon-logout.svg) no-repeat center;
  background-size: contain;
}
@media (max-width: 768px) {
  .header .navbar-brand img {
    max-height: 34px;
  }
  .header .navbar-toggler {
    display: block;
  }
  .header .navbar-collapse {
    position: fixed;
    top: calc(34px + 1rem);
    left: 0px;
    right: 0px;
    z-index: 999;
    background: rgb(255, 255, 255);
    padding: var(--padding);
    box-shadow: 0px 3px 6px #d9d9d9;
  }
  .header .top-bar ul {
    display: none !important;
  }
  .header .drop-account .dropdown-toggle {
    position: fixed;
    top: 8px;
    right: 12px;
    margin-right: 0;
  }
  .header .drop-account .dropdown-menu {
    right: 12px;
    top: 100%;
  }
}

.box-subscribe {
  background: url(../images/bg-footer.jpg) no-repeat center;
  background-size: cover;
}
.box-subscribe .form {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.125rem;
}
.box-subscribe .form .text {
  font-size: 1.25rem;
  color: white;
  font-weight: 500;
}
.box-subscribe .form .form-control {
  border-radius: var(--border-radius-input) 0 0 var(--border-radius-input);
}
.box-subscribe .form .btn {
  border-radius: 0 var(--border-radius-input) var(--border-radius-input) 0;
  background-color: var(--primary-color);
  font-weight: 500;
}
.box-subscribe .form .btn:hover {
  background: var(--linear-gradient-primary);
}

.footer {
  background: var(--primary-color);
  color: #fff;
}
.footer strong {
  font-weight: 600;
}
.footer a {
  color: #fff;
  font-weight: 500;
}
.footer a:hover {
  color: var(--highlight-color);
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer ul li {
  margin-bottom: 1rem;
}
.footer .footer-bottom {
  background: var(--primary-color);
  color: #fff;
  padding: 12px;
  border-top: 1px solid #5154a1;
  font-size: 0.85rem;
  font-weight: normal;
}
.footer .logo-bo-cong-thuong img {
  max-height: 60px;
}
@media (max-width: 768px) {
  .footer .col-about-us {
    border-top: 1px solid rgba(221, 221, 221, 0.1098039216);
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-bottom: 1px solid rgba(221, 221, 221, 0.1098039216);
    margin-bottom: 1rem;
  }
  .footer .col-about-us ul {
    display: flex;
    flex-wrap: wrap;
  }
  .footer .col-about-us ul li {
    margin-bottom: 1rem;
    flex: 0 0 50%;
  }
  .footer .logo-bo-cong-thuong img {
    max-height: 48px;
    margin: 0 auto;
    display: block;
  }
  .footer .download-app {
    text-align: center;
  }
}

.pagination .page-item.active .page-link {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.pagination .page-item:first-child .page-link {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.pagination .page-item:last-child .page-link {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.progressbar .step-number {
  height: 30px;
  aspect-ratio: 1/1;
  border: 2px solid var(--bs-dark-bg-subtle);
  background: #fff;
  position: relative;
  z-index: 1;
}
.progressbar .step {
  color: var(--bs-dark-bg-subtle);
}
.progressbar .step:before, .progressbar .step:after {
  height: 1px;
  content: "";
  background: var(--bs-dark-bg-subtle);
  width: 2.5rem;
  display: block;
  position: absolute;
  top: 14px;
  z-index: 0;
}
.progressbar .step:before {
  left: 0;
}
.progressbar .step:after {
  right: 0;
}
.progressbar .step:first-child:before {
  display: none;
}
.progressbar .step:last-child:after {
  display: none;
}
.progressbar .step.complete, .progressbar .step.active {
  color: var(--primary-color);
}
.progressbar .step.complete .step-number, .progressbar .step.active .step-number {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: white;
}
.progressbar .step.complete:before, .progressbar .step.complete:after {
  background: var(--primary-color);
}
.progressbar .step.active:before {
  background: var(--primary-color);
}
@media (max-width: 768px) {
  .progressbar .step {
    font-size: 0.875rem;
  }
  .progressbar .step:before, .progressbar .step:after {
    width: 50%;
  }
  .progressbar .step .text {
    font-weight: normal;
  }
}

.box-search-tour .form-search {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.box-search-tour .form-search .form-search-rounded-top {
  flex: 1;
  background: #fff;
  padding: 1rem;
  border-radius: var(--border-radius-card);
}
.box-search-tour .form-search .container {
  min-height: 100%;
  display: flex;
  align-items: center;
}
.box-search-tour .form-search .tour-search-box .radio, .box-search-tour .form-search .tour-search-box .days {
  display: none;
}
.box-search-tour .form-search .tour-search-box .group-item {
  flex-wrap: wrap;
}
.box-search-tour .form-search .tour-search-box .group-item .origin-location, .box-search-tour .form-search .tour-search-box .group-item .destination-location, .box-search-tour .form-search .tour-search-box .group-item .start-date {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  margin-bottom: 1rem;
}
.box-search-tour .form-search .tour-search-box .group-item .origin-location label,
.box-search-tour .form-search .tour-search-box .group-item .origin-location .position-relative, .box-search-tour .form-search .tour-search-box .group-item .destination-location label,
.box-search-tour .form-search .tour-search-box .group-item .destination-location .position-relative, .box-search-tour .form-search .tour-search-box .group-item .start-date label,
.box-search-tour .form-search .tour-search-box .group-item .start-date .position-relative {
  display: block;
  margin: 0;
  background: #f5f5f5;
}
.box-search-tour .form-search .tour-search-box .group-item .origin-location label, .box-search-tour .form-search .tour-search-box .group-item .destination-location label, .box-search-tour .form-search .tour-search-box .group-item .start-date label {
  padding: 12px 16px 6px;
  border-radius: var(--border-radius-input) var(--border-radius-input) 0 0;
  color: #535252;
  font-size: 0.875rem;
}
.box-search-tour .form-search .tour-search-box .group-item .origin-location .position-relative, .box-search-tour .form-search .tour-search-box .group-item .destination-location .position-relative, .box-search-tour .form-search .tour-search-box .group-item .start-date .position-relative {
  border-radius: 0 0 var(--border-radius-input) var(--border-radius-input);
}
.box-search-tour .form-search .tour-search-box .group-item .origin-location .position-relative > svg, .box-search-tour .form-search .tour-search-box .group-item .destination-location .position-relative > svg, .box-search-tour .form-search .tour-search-box .group-item .start-date .position-relative > svg {
  position: absolute;
  left: 16px;
  top: 1px;
}
.box-search-tour .form-search .tour-search-box .group-item .origin-location .form-control, .box-search-tour .form-search .tour-search-box .group-item .destination-location .form-control, .box-search-tour .form-search .tour-search-box .group-item .start-date .form-control {
  border: 0;
  background: none !important;
  padding-top: 0;
  height: unset;
  padding-left: 48px;
  color: var(--bs-body-color);
  padding-right: 16px;
  padding-bottom: 16px;
  line-height: 24px;
  font-weight: 600;
}
.box-search-tour .form-search .tour-search-box .group-item .origin-location .form-control::placeholder, .box-search-tour .form-search .tour-search-box .group-item .destination-location .form-control::placeholder, .box-search-tour .form-search .tour-search-box .group-item .start-date .form-control::placeholder {
  color: var(--bs-body-color);
}
.box-search-tour .form-search .tour-search-box .group-item .origin-location .form-control:focus, .box-search-tour .form-search .tour-search-box .group-item .destination-location .form-control:focus, .box-search-tour .form-search .tour-search-box .group-item .start-date .form-control:focus {
  outline: none;
  box-shadow: none;
}
.box-search-tour .form-search .tour-search-box .group-item .origin-location {
  padding-right: 16px;
}
.box-search-tour .form-search .tour-search-box .group-item .destination-location {
  padding-right: 8px;
  padding-left: 8px;
}
.box-search-tour .form-search .tour-search-box .group-item .start-date {
  padding-left: 16px;
}
.box-search-tour .form-search .tour-search-box .group-item .clear-btn button {
  position: absolute;
}
.box-search-tour .form-search .tour-search-box .group-item .clear-btn button,
.box-search-tour .form-search .tour-search-box .group-item .btn-clear {
  width: 1.75rem;
  height: 1.75rem;
  right: 4px;
  border: 0;
  top: 0;
  padding: 0;
  background: url(../images/svg/icon-close.svg) no-repeat center;
  background-size: 20px;
}
.box-search-tour .form-search .tour-search-box .group-item .clear-btn button svg,
.box-search-tour .form-search .tour-search-box .group-item .btn-clear svg {
  display: none;
}
.box-search-tour .form-search .tour-search-box .group-item .clear-btn button:focus,
.box-search-tour .form-search .tour-search-box .group-item .btn-clear:focus {
  outline: none;
}
.box-search-tour .form-search .tour-search-box .group-item .empty-destination {
  padding: var(--padding);
}
.box-search-tour .form-search .tour-search-box .group-item .vs__dropdown-toggle {
  border: 0;
  padding: 0;
}
.box-search-tour .form-search .tour-search-box .group-item .vs__dropdown-toggle .vs__search {
  padding-left: 48px;
  font-weight: 600;
  padding-right: 16px;
  padding-bottom: 16px;
  line-height: 24px;
  margin: 0;
}
.box-search-tour .form-search .tour-search-box .group-item .vs__dropdown-toggle .vs__actions {
  display: none;
}
.box-search-tour .form-search .tour-search-box .group-item .vs__dropdown-toggle .vs__selected {
  padding: 0 0.25em;
  border: 0;
  background: none !important;
  padding-top: 0;
  height: unset;
  padding-left: 48px;
  color: var(--bs-body-color);
  padding-right: 16px;
  padding-bottom: 16px;
  line-height: 24px;
  font-weight: 600;
  margin: 0;
}
.box-search-tour .form-search .tour-search-box .group-item .vs__dropdown-menu {
  border: 0;
  padding: 0;
  border-radius: var(--border-radius-input);
}
.box-search-tour .form-search .tour-search-box .group-item .vs__dropdown-menu .vs__dropdown-option {
  padding: 6px 1rem;
}
.box-search-tour .form-search .tour-search-box .group-item .vs__dropdown-menu .vs__dropdown-option--highlight {
  background: var(--primary-color);
}
.box-search-tour .form-search .tour-search-box .group-item .mdi-record-circle-outline {
  background: url();
}
.box-search-tour .form-search .tour-search-box .group-item .control {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  text-align: center;
}
.box-search-tour .form-search .tour-search-box .group-item .control .btn-primary {
  width: 100%;
  max-width: 600px;
  font-size: 1.25rem;
  font-weight: 600;
  background: var(--primary-color);
  border: 0;
  border-radius: var(--border-radius-input);
  padding: 0.75rem 12px 1rem;
}
.box-search-tour .form-search .tour-search-box .group-item .control .btn-primary:hover {
  background: var(--highlight-color);
}
@media (max-width: 768px) {
  .box-search-tour .form-search .tour-search-box .group-item .origin-location, .box-search-tour .form-search .tour-search-box .group-item .destination-location, .box-search-tour .form-search .tour-search-box .group-item .start-date {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .box-search-tour .form-search .tour-search-box .group-item .vs__dropdown-toggle .vs__search {
    padding-bottom: 12px;
  }
  .box-search-tour .form-search .tour-search-box .group-item .start-date .form-control {
    padding-bottom: 12px;
  }
  .box-search-tour .form-search .tour-search-box .group-item .start-date .form-control:focus {
    outline: none;
  }
  .box-search-tour .form-search .tour-search-box .group-item .control .btn-primary {
    max-width: 100%;
  }
}

.modal.right .modal-dialog {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100%;
  margin: 0;
  transition: all 0.3s ease-in-out;
}
.modal.right .modal-content {
  height: 100%;
}
.modal.right.show .modal-dialog {
  right: 0;
}

.destination-location .location-autocomplete {
  position: absolute;
  top: calc(100% + 8px);
  left: 0px;
  z-index: 200;
  background: rgb(255, 255, 255);
  border-radius: var(--border-radius-input);
  border: 0;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  min-width: 100%;
  overflow: hidden;
}
.destination-location .location-autocomplete .locations {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.destination-location .location-autocomplete .locations .Destination-name {
  padding: 6px 1rem;
  cursor: pointer;
}
.destination-location .location-autocomplete .locations .Destination-name:hover {
  background: var(--primary-color);
  color: #fff;
}
.destination-location .location-autocomplete .hot-tour-location {
  padding: 1.25rem 1.25rem 0.25rem;
}
.destination-location .location-autocomplete .hot-tour-location .article-raw-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.destination-location .location-autocomplete .hot-tour-location .article-raw-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.destination-location .location-autocomplete .hot-tour-location .article-raw-content ul li {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding-right: 15px;
  padding-left: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}
.destination-location .location-autocomplete .hot-tour-location .article-raw-content ul li img {
  width: 80px;
  min-width: 80px;
  height: 53px;
  object-fit: cover;
  object-position: top center;
  border-radius: 6px;
  display: block;
}
.destination-location .location-autocomplete .hot-tour-location .article-raw-content ul li h3 {
  font-size: 1rem;
  font-weight: 500;
}
.destination-location .location-autocomplete .hot-tour-location .article-raw-content ul li a {
  color: var(--bs-body-color);
}
.destination-location .location-autocomplete .hot-tour-location .article-raw-content ul li a:hover {
  color: var(--highlight-color);
}
@media (min-width: 1200px) {
  .destination-location .location-autocomplete .hot-tour-location {
    width: 720px;
  }
}
@media (max-width: 1200px) {
  .destination-location .location-autocomplete .hot-tour-location {
    max-width: 100%;
  }
  .destination-location .location-autocomplete .hot-tour-location .article-raw-content ul li {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .destination-location .location-autocomplete .hot-tour-location .article-raw-content ul li:nth-of-type(2n) {
    padding-left: 6px;
  }
  .destination-location .location-autocomplete .hot-tour-location .article-raw-content ul li:nth-of-type(2n-1) {
    padding-right: 6px;
  }
  .destination-location .location-autocomplete .hot-tour-location .article-raw-content ul li img {
    width: 48px;
    min-width: 48px;
    height: 32px;
  }
  .destination-location .location-autocomplete .hot-tour-location .article-raw-content ul li h3 {
    font-size: 0.9125rem;
  }
}