@charset "UTF-8";
/**
 * _base.scss
 * 
 * 1/ biến màu săc
 * 2/ biến kích thước font chữ
 * 3/ Cấu hình border
 * 4/ Mixin
 * 5/ Responsive
*/
.pri-color {
  color: var(--fs-color-primary);
}
.pri-color * {
  color: var(--fs-color-primary);
}

.sec-color {
  color: var(--fs-color-secondary);
}
.sec-color * {
  color: var(--fs-color-secondary);
}

.justify {
  text-align: justify;
}
.justify * {
  text-align: justify;
}

.hyg_mb-0 {
  margin-bottom: 0 !important;
}
.hyg_mb-0 * {
  margin-bottom: 0 !important;
}

.hyg_mt-0 {
  margin-top: 0 !important;
}
.hyg_mt-0 * {
  margin-top: 0 !important;
}

.hyg_pb-0 {
  padding-bottom: 0 !important;
}
.hyg_pb-0 * {
  padding-bottom: 0 !important;
}

.header-main {
  background-color: #242b35 !important;
}

.header-nav-main .search-field {
  background-color: #fff !important;
  height: 40px !important;
}

.header-bottom {
  min-height: 50px !important;
}
.header-bottom .container {
  padding: 0 !important;
  background-color: #d4af37 !important;
}
.header-bottom .container .flex-col {
  margin: 0 !important;
  background-color: transparent !important;
}

#header .header-nav > li {
  margin: 0 !important;
  padding: 0 6px !important;
  position: relative;
  flex-wrap: nowrap !important;
  background-color: transparent !important;
}
@media (max-width: 1000px) and (min-width: 950px) {
  #header .header-nav > li {
    padding: 0 8px !important;
  }
}
@media (max-width: 1024px) and (min-width: 1000px) {
  #header .header-nav > li {
    padding: 0 5px !important;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  #header .header-nav > li {
    padding: 0 8px !important;
  }
}
@media (max-width: 1115px) and (min-width: 850px) {
  #header .header-nav > li {
    padding: 0 5px !important;
  }
}
#header .header-nav > li:hover > ul.nav-dropdown {
  display: flex !important;
}
#header .header-nav > li a {
  font-size: 15px !important;
}
@media (max-width: 1115px) and (min-width: 850px) {
  #header .header-nav > li a {
    font-size: 10px !important;
  }
}
@media (max-width: 1115px) and (min-width: 1000px) {
  #header .header-nav > li a {
    font-size: 10px !important;
  }
}
@media (max-width: 1000px) and (min-width: 950px) {
  #header .header-nav > li a {
    font-size: 11px !important;
  }
}
#header .header-nav > li a:hover {
  color: #000 !important;
}
#header .header-nav > li ul.nav-dropdown {
  display: none !important;
  flex-direction: column !important;
  padding: 0 !important;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #d4af37;
  z-index: 1000;
}
#header .header-nav > li ul.nav-dropdown > li.menu-item:nth-of-type(even) {
  background-color: rgba(204, 204, 204, 0.2274509804);
}
#header .header-nav > li ul.nav-dropdown li.menu-item {
  position: relative;
  padding: 10px 15px;
  white-space: nowrap;
  width: 100%;
  display: block;
}
#header .header-nav > li ul.nav-dropdown li.menu-item:hover {
  background-color: #d4af37;
}
#header .header-nav > li ul.nav-dropdown li.menu-item.menu-item-has-children:hover > ul.sub-menu {
  display: block;
}
#header .header-nav > li ul.nav-dropdown li.menu-item.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23666' viewBox='0 0 320 512'%3E%3Cpath d='M310.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 256 73.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#header .header-nav > li ul.nav-dropdown li.menu-item a {
  color: black !important;
  font-weight: 400 !important;
  font-size: 13px !important;
  text-transform: none !important;
  padding: 0 !important;
}
#header .header-nav > li ul.nav-dropdown li.menu-item a:hover {
  color: #fff !important;
}
#header .header-nav > li ul.nav-dropdown li.menu-item ul.sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  display: none;
  background-color: #fff;
  border-left: 1px solid #ccc;
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
#header .header-nav > li ul.nav-dropdown li.menu-item ul.sub-menu::-webkit-scrollbar {
  width: 6px;
}
#header .header-nav > li ul.nav-dropdown li.menu-item ul.sub-menu::-webkit-scrollbar-thumb {
  background-color: #aaa;
  border-radius: 3px;
}
#header .header-nav > li ul.nav-dropdown li.menu-item ul.sub-menu::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}
#header .header-nav > li ul.nav-dropdown li.menu-item ul.sub-menu li:nth-child(odd) {
  background-color: rgba(204, 204, 204, 0.2274509804);
}
#header .header-nav > li ul.nav-dropdown li.menu-item ul.sub-menu li:nth-child(odd):hover {
  background-color: #d4af37;
}

.header-contact-wrapper:hover {
  background-color: transparent !important;
}
.fm-bar .fm-item {
  margin-bottom: 0 !important;
}

.mobile-sidebar ul.nav > li.menu-item > a .arrow-toggle {
  display: none !important;
}
.mobile-sidebar ul > li.header-search-form {
  order: -1; /* Đặt thứ tự cao hơn để nó nằm trên đầu */
}
.mobile-sidebar ul > li.header-newsletter-item {
  display: none !important; /* Ẩn mục này */
}
.mobile-sidebar li.menu-item a {
  color: #000 !important;
}
.mobile-sidebar li.menu-item-has-children {
  position: relative;
}
.mobile-sidebar li.menu-item-has-children a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  color: #333;
  text-decoration: none;
  position: relative;
  padding-right: 35px;
}
.mobile-sidebar li.menu-item-has-children .arrow-toggle {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%23666' d='M143 352.3l-136-136c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L160 284.1l119-119.7c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-136 136c-9.4 9.4-24.6 9.4-34 0z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
  z-index: 10;
}
.mobile-sidebar li.menu-item-has-children.open > a .arrow-toggle {
  transform: translateY(-50%) rotate(180deg);
}
.mobile-sidebar li.menu-item-has-children.open > ul.sub-menu {
  display: block;
}
.mobile-sidebar li.menu-item-has-children ul.sub-menu {
  display: none;
  padding-left: 15px;
  background-color: #f9f9f9;
}
.mobile-sidebar li.menu-item-has-children ul.sub-menu li {
  border-top: 1px solid #ddd;
}
.mobile-sidebar li.menu-item-has-children ul.sub-menu li a {
  padding: 10px 15px;
  color: #555;
  font-weight: normal;
  display: block;
}
.mobile-sidebar li.menu-item-has-children ul.sub-menu li a:hover {
  background-color: #eee;
  color: #000;
}
.mobile-sidebar li.menu-item-has-children ul.sub-menu ul.sub-menu {
  padding-left: 15px;
}

.arrow-toggle {
  transition: transform 0.3s ease;
}

li.menu-item-has-children.open > a .arrow-toggle {
  transform: rotate(180deg);
}

.arrow-toggle {
  top: 40%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

li.menu-item-has-children.open > a .arrow-toggle {
  transform: translateY(-50%) rotate(180deg);
}

.buttonizer-group {
  right: 0 !important;
}

.fm-bar {
  display: none !important;
}

.section-footer {
  border-top: 1px solid #ccc;
}

.slider-footer {
  margin-bottom: 20px;
}
.slider-footer .row .box-kh {
  padding: 5px !important;
  border: 1px dashed #ccc;
}
.slider-footer .row .box-kh .col-inner .icon-box .icon-box-img {
  margin-bottom: 0 !important;
}
.slider-footer .row .box-kh .col-inner .icon-box .icon-box-text .text-description {
  min-height: 120px;
}

.text-color-blue {
  color: #0071bc !important;
}

.text-color-yellow {
  color: #f9e472 !important;
}

.row-thuexe-footer {
  padding-top: 15px;
  border-top: 1px solid #ccc;
}

.footer-thuexe ul {
  list-style-type: none;
}
.footer-thuexe ul li {
  margin-bottom: 5px;
  padding: 4px 6px;
  background-color: #515965;
}
.footer-thuexe ul li:hover {
  background-color: #f9e472;
}
.footer-thuexe ul li a {
  display: block;
  font-size: 16px;
  color: white;
}
.footer-thuexe ul li a:hover {
  color: #000;
}