:root {
  --color-main: #515154;
  --color-subr: #ffb121;
  --font-main: "SN Samsung Sharp Sans";
  --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

body {
  font-family: var(--font-main);
  font-size: 14px;
  color: #333;
  top: 0 !important;
  max-width: 1920px;
  min-width: 320px;
  position: relative;
  margin: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: normal;
}

::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 10%);
}

::-webkit-scrollbar-thumb {
  background: var(--color-main);
  border-radius: 4px;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  display: inline-block;
}

img.lazy {
  opacity: 0;
}

img:not(.initial) {
  -webkit-transition: opacity 0.1s;
  transition: opacity 0.1s;
}

img.error,
img.initial,
img.loaded {
  opacity: 1;
}

img:not([src]) {
  visibility: hidden;
}

button,
input,
select {
  appearance: none;
  box-shadow: none !important;
}

input,
textarea {
  outline: 0;
  padding: 0;
}

a {
  text-decoration: none !important;
  cursor: pointer;
}

a:hover {
  color: var(--color-main);
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.w-100 {
  width: 100%;
}

.w-clear:after {
  display: block;
  content: "";
  clear: both;
}

.clear {
  clear: both;
}

.none {
  display: none;
}

.hidden-seoh {
  visibility: hidden;
  height: 0;
  margin: 0;
  overflow: hidden;
}

.wrap-content,
.wrap-main {
  max-width: 1230px;
  margin: 40px auto;
  padding: 0 15px;
}

.wrap-main.static {
  max-width: 1030px;
}

.wrap-main.max {
  max-width: 1366px;
}

.wrap-home {
  max-width: 100%;
  padding: 0;
  margin: 0;
}

.wrap-content {
  margin: auto;
}

.social-plugin {
  display: flex;
  margin: 15px 0;
}

.scale-img {
  position: relative;
  display: block;
  overflow: hidden;
}

.scale-img img {
  transform: scale(1, 1);
  transition: 0.2s;
}

.scale-img:hover img {
  transform: scale(1.1, 1.1);
}

.hover-img {
  position: relative;
  overflow: hidden;
  display: block;
}

.hover-img:before {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.8s cubic-bezier(0.94, 0.85, 0.1, 0.62) 0s;
  -o-transition: all 0.8s cubic-bezier(0.94, 0.85, 0.1, 0.62) 0s;
  transition: all 0.8s cubic-bezier(0.94, 0.85, 0.1, 0.62) 0s;
  z-index: 1;
  border: 100px double transparent;
  opacity: 1;
  visibility: visible;
  box-sizing: border-box;
}

.hover-img:hover:before {
  opacity: 0;
  border: 0 double rgba(255, 255, 255, 0.7);
  visibility: hidden;
}

.text-split {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
}
.text-split-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
}
.text-split-5 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 5;
}

.transition {
  transition: 0.3s all;
}

.share {
  padding: 17px 10px 10px 10px;
  line-height: normal;
  background: rgba(128, 128, 128, 0.15);
  margin-top: 15px;
  border-radius: 5px;
}

.share b {
  display: block;
  margin-bottom: 5px;
}

.othernews b {
  margin-bottom: 10px;
}

.meta-toc-clone.fiedx {
  position: fixed;
  left: 5px;
  top: 200px;
  z-index: 111;
}

.meta-toc-clone:not(.fiedx) .box-readmore {
  display: block !important;
}

.box-readmore {
  padding: 10px;
  background-color: #f5f5f5;
  width: 100%;
  margin-top: 2px;
  border: 1px solid #ddd;
  font-size: 13px;
  margin-bottom: 10px;
}

.meta-toc-clone .box-readmore {
  width: 350px;
  display: none;
  max-height: 50vh;
  overflow-y: auto;
  overflow-x: hidden;
  margin-bottom: 0;
}

.box-readmore {
  padding: 8px 15px;
  border: 1px solid #dedede;
  margin-bottom: 2rem;
  border-radius: 5px;
  background-color: #eee;
}

.box-readmore li ul > li {
  margin: 0;
  margin-bottom: 8px;
}

.box-readmore li ul > li:before {
  content: counters(item, ".") " ";
}

.box-readmore ul {
  list-style-type: none;
  counter-reset: item;
  margin-bottom: 0;
  padding-left: 0 !important;
  margin-top: 8px;
}

.box-readmore ul li {
  display: table;
  counter-increment: item;
  margin-bottom: 5px;
}

.box-readmore ul li:before {
  content: counters(item, ".") ". ";
  display: table-cell;
  padding-right: 5px;
}

.box-readmore ul li a {
  color: #333;
  cursor: pointer;
  font-weight: 600;
}

.box-readmore ul li a:hover {
  color: #767676 !important;
}

.sort-select {
  display: flex;
  justify-content: end;
  margin: 20px 0;
  position: relative;
}

.sort-select .click-sort {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  padding: 6px 10px 6px 8px;
  margin: 0;
}

.sort-select-main {
  display: grid;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgb(0 0 0 / 20%);
  position: absolute;
  padding: 0 7px;
  top: 30px;
  right: 0;
  width: 160px;
  z-index: 2;
}

.sort-select-main p {
  border-bottom: 1px solid #f1f1f1;
  margin: 0;
  order: 2;
}

.sort-select-main p:has(.check) {
  order: 1;
}

.sort a {
  color: #000;
  font-size: 14px;
  line-height: 17px;
  padding: 11px 3px;
  display: block;
  cursor: pointer;
}

.sort a.check i {
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  transform: scale(var(--ggs, 1));
  width: 22px;
  height: 16px;
  border: 2px solid transparent;
  border-radius: 100px;
  vertical-align: middle;
}

.sort a.check i::after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  left: 3px;
  top: -4px;
  width: 6px;
  height: 10px;
  border-width: 0 2px 2px 0;
  border-style: solid;
  transform-origin: bottom left;
  transform: rotate(45deg);
}

.sort-select .sort-show {
  padding-right: 12px;
  position: relative;
}

.sort-select .sort-show::before {
  content: "";
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #333;
  content: "";
  height: 0;
  position: absolute;
  top: 6px;
  right: 0;
  width: 0;
}

.filter {
  position: absolute;
  right: 0;
  top: 0;
  padding: 5px 10px;
  background: #f1f1f1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  text-transform: uppercase;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid #ddd;
  display: none;
}

.wrap-product-sale {
  background-color: #ffa09e;
  border-radius: 10px;
  overflow: hidden;
}

.wr-search p {
  font-weight: 700;
  text-transform: uppercase;
}

.box-cat {
  text-align: center;
}

.box-cat h3 {
  font-size: 14px;
  color: #333;
  margin-top: 10px;
}

.box-cat:hover h3 {
  color: red;
}

.cart-product {
  margin: 5px 0 0 0;
}

.cart-product span {
  cursor: pointer;
  color: #fff;
  text-align: center;
  padding: 0 5px;
  border-radius: 5px;
  display: inline-block;
  line-height: 34px;
  font-size: 13px;
  font-weight: 700;
}

.cart-add {
  margin-left: 10px;
  background-color: #00a5d9;
  width: 155px;
}

.cart-add:hover {
  background-color: #fed402;
}

.cart-buy {
  background-color: #ff2e00;
  width: 93px;
  height: 33px;
}

.cart-buy:hover {
  background-color: #fed402;
}

.gridProduct {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.grid-pro-detail {
  display: flex;
  justify-content: space-between;
  align-items: start;
  border-bottom: 1px solid #ececec;
}

.detail-product {
  display: flex;
  justify-content: space-between;
}

.detail-product .left-pro-detail {
  width: 40%;
  border: 1px solid #ddd;
}

.detail-product .right-pro-detail {
  width: 57%;
}

.detail-product .right-pro-detail ul {
  list-style: none;
  padding: 0;
}

.detail-product .right-pro-detail ul li {
  margin-bottom: 20px;
}

.detail-product .right-pro-detail ul li .title-pro-detail {
  font-size: 18px;
}

.detail-product .right-pro-detail ul li .attr-content-pro-detail {
  display: inline-block;
  margin-bottom: 0;
}

.detail-product
  .right-pro-detail
  ul
  li
  .attr-content-pro-detail
  .price-new-pro-detail {
  font-weight: 700;
  font-size: 20px;
  color: red;
}

.desc-pro-detail {
  /* max-height: 650px; */
  max-height: 870px;
  overflow: hidden;
  position: relative;
  transition: 0.3s;
  mask: linear-gradient(to bottom, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
  padding: 10px;
  padding-bottom: 50px;
  border: 1px solid #ccc;
  border-radius: 0 5px 5px 5px;
}

.desc-pro-detail.active {
  max-height: unset;
  transition: 0.3s;
  mask: unset;
}

.btn_viewmore-box-khuyenmai.active {
  background: #515154;
  color: #fff;
}

.info-prodetail_label_khuyenmai {
  max-height: 190px;
  overflow: hidden;
  position: relative;
  transition: 0.3s;
  mask: linear-gradient(to bottom, rgba(0, 0, 0, 1) 35%, rgba(0, 0, 0, 0) 80%);
  padding: 10px;
  padding-bottom: 50px;
}

.info-prodetail_label_khuyenmai.active {
  max-height: unset;
  transition: 0.3s;
  mask: unset;
}

.ul-actions {
  display: flex;
  justify-content: center;
  margin: 20px;
  gap: 15px;
  align-items: flex-start;
}

.ul-actions li,
.ul-actions > div {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 80px;
  text-align: center;
}

.ul-actions .active .box__tabr,
.ul-actions .box__tabr:hover {
  border-color: #fd6e1d;
}

.ul-actions .box__tabr {
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  min-height: 55px;
  padding: 4px;
  height: 60px;
  width: 80px;
}

.icon-action {
  background-image: url(../images/icon_chitiet@2x-min.png);
  background-repeat: no-repeat;
  display: inline-block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  vertical-align: middle;
  background-size: 300px 180px;
}

.icon-dnb {
  background-position: 0 0;
  height: 28px;
  width: 28px;
}

.icon-tskt {
  background-position: -105px 0;
  height: 30px;
  width: 30px;
}

.icon-ttsp {
  background-position: -140px 0;
  height: 19px;
  width: 23px;
}

.ul-actions p {
  font-size: 14px;
  line-height: 1.3;
  margin-top: 5px;
  white-space: normal;
  color: #000;
}

.modal-detail::-webkit-scrollbar {
  width: 10px;
}

.modal-detail::-webkit-scrollbar-thumb {
  width: 10px;
  background: #4d90e0;
  border-radius: 10px;
  height: 50px;
}

.modal-detail {
  position: fixed;
  z-index: 999;
  background: #000000c4;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}

.content-modal-detail {
  background: #fff;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 100vh;
}

.content-modal-detail .tabs {
  display: flex;
  cursor: pointer;
  padding: 0;
  list-style: none;
  justify-content: center;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 99;
}

.content-modal-detail .tabs li {
  padding: 20px 20px;
  margin-right: 5px;
  font-weight: 700;
  position: relative;
  border-bottom: 4px solid #fff;
}

.content-modal-detail .tabs li.active {
  color: #2d9cdb;
  border-bottom: 4px solid #2d9cdb;
}

.content-modal-detail .tab-content {
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.content-modal-detail .tab-content.active {
  display: block;
}

.close-tab {
  position: fixed;
  top: 15px;
  right: 20px;
  z-index: 10;
}

.btn-closemenu {
  position: fixed;
  top: 10px;
  right: 20px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  color: #333;
  cursor: pointer;
  line-height: 21px;
  padding: 7px;
  text-align: right;
  width: 72px;
}

.btn-closemenu::before {
  transform: rotate(45deg);
}

.btn-closemenu::after {
  transform: rotate(-45deg);
}

.btn-closemenu::after,
.btn-closemenu::before {
  background-color: #333;
  content: "";
  left: 13px;
  height: 14px;
  position: absolute;
  top: 10px;
  width: 1px;
}

.cursor-pointer {
  cursor: pointer;
}

.pr-content .pr-item p {
  margin: 0;
}

.contact-input {
  position: relative;
  margin-bottom: 15px;
}

.input-group {
  display: flex;
}

.input-group-append {
  display: flex;
  align-items: center;
}

.input-group-text {
  display: flex;
  align-items: center;
  font-weight: 400;
  height: 34px;
  color: #323840;
  padding: 0 5px 0 20px;
  font-size: 12px;
  text-align: center;
  white-space: nowrap;
  border: 1px solid #3d85d8;
  border-radius: 4px 0 0 4px;
  border-right: none;
}

.contact-input .custom-file-label::after {
  content: attr(title);
}

.contact-map {
  position: relative;
  height: 500px;
  margin-top: 30px;
}

.contact-map iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.breadCrumbs {
  padding: 10px 0;
  background: #eee;
}

.breadCrumbs ol {
  margin: 0;
}

.breadCrumbs ol li a {
  color: #333;
}

.breadCrumbs ol li a:hover {
  color: var(--color-main);
}

.pagination {
  margin: 30px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.pagination li a,
.pagination li span {
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid #cacaca;
  background: #ffff;
  min-width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4d4d4d;
  font-size: 14px;
}

.pagination li a:hover {
  color: var(--color-main);
  border-color: var(--color-main);
}

.pagination .page-item.active .page-link {
  background: var(--color-main);
  border-color: var(--color-main);
  color: #fff;
}

.progress-wrap {
  background-color: #fff;
  position: fixed;
  bottom: 20px;
  right: 20px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.progress-wrap i {
  position: absolute;
  text-align: center;
  line-height: 50px;
  font-size: 16px;
  font-weight: 900;
  color: var(--color-main);
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--color-main);
  stroke-width: 4;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.grecaptcha-badge {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  visibility: hidden !important;
  overflow: hidden;
}

.social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0 10px;
}

.social li {
  display: inline-block;
}

.social li:hover img {
  transform: rotateY(360deg);
  transition: all 0.5s linear;
}

.socialf {
  gap: 20px;
  margin-bottom: 20px;
}

.socialf li a {
  max-width: 35px;
}

.bank {
  gap: 5px;
  margin-bottom: 20px;
}

.bank li a {
  max-width: 35px;
}

/* fix logo header */

.header__info {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #111;
  font-size: 15px;
}

.info__email {
  color: #111;
  font-size: 15px;
}

.info__hotline {
  color: #c60002;
  font-size: 15px;
  font-weight: 700;
}

.header__sline {
  background: #cacaca;
  width: 1px;
  height: 26px;
  margin: 0 30px;
}

.icon-frame-h .pulsation {
  width: 70px;
  height: 70px;
  background-color: #51515487;
  border-radius: 50px;
  position: absolute;
  left: calc(50% - 70px / 2);
  top: calc(50% - 70px / 2);
  z-index: -1;
  transform: scale(0);
  animation: arcontactus-pulse 2s infinite;
}

.icon-frame-h .pulsation:nth-of-type(2n) {
  animation-delay: 0.5s;
}

@keyframes arcontactus-pulse {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

.search {
  background: #f5f5f5;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 4px;
}

.search p {
  width: 45px;
  height: 45px;
  cursor: pointer;
  text-align: center;
  margin: 0;
  color: var(--color-main);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 4px 4px 0;
}

.search input {
  width: calc(100% - 45px);
  height: 45px;
  outline: 0;
  padding: 0;
  border: 0;
  background: 0 0;
  text-indent: 15px;
  font-size: 16px;
  letter-spacing: 0.8px;
  color: #8f8f8f;
  font-size: clamp(8px, calc(12 / 1230 * 100vw), 12px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.search input::-webkit-input-placeholder {
  color: #313131;
}

.search input:-moz-placeholder {
  color: #313131;
}

.search input::-moz-placeholder {
  color: #313131;
}

.search input:-ms-input-placeholder {
  color: #313131;
}

.box-search {
  padding: 10px;
  border-bottom: 1px solid #f1f1f1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ds-item-search {
  width: calc(100% - 60px);
  padding-left: 5px;
}

.ds-item-search h3 {
  margin-bottom: 5px;
}
.ds-item-search a {
  font-size: 13px;
  color: #333;
}

.ds-item-search a:hover {
  color: #ff0000;
}
.show-search {
  position: absolute;
  z-index: 9999;
  top: calc(100% + 5px);
  left: 0;
  background: #fff;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  max-height: 60vh;
}
.box-search .price-product {
  width: 100%;
  margin: 0px;
  height: auto;
  justify-content: start;
}

.box-search .price-product .price-old {
  margin-left: 5px;
}
.box-search .price-product .price-new {
  color: #f00;
  font-size: 13px;
  font-weight: bold;
  line-height: 15px;
}
.box-search .price-product .price-old {
  color: #999;
  text-decoration-line: line-through;
  font-size: 12px;
  line-height: 15px;
}

.menu-res {
  display: none;
}

.mobile-criteria {
  display: none;
}

.menu {
  background-color: var(--color-main);
  position: sticky;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
}

.menu ul {
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}

.menu ul.menu-main {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.menu ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 40px;
  padding: 0 clamp(2px, calc(10 / 1230 * 100vw), 10px);
  position: relative;
  color: #fff;
  font-size: clamp(12px, calc(14 / 1230 * 100vw), 14px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.menu ul li a.active,
.menu ul li:hover > a {
  background: var(--color-main);
}

.menu_search {
  margin-left: auto;
}

.menu ul.menu-main li a.active:after,
.menu ul.menu-main li:hover > a:after {
  opacity: 1;
}

.menu ul li a.has-child {
  padding-right: 16px;
  margin-right: 8px;
}

.menu ul li a.has-child:after {
  content: "";
  position: absolute;
  bottom: calc(50% - 4px / 2);
  right: 5px;
  width: 5px;
  height: 5px;
  border: 1px solid #fafafa;
  border-top: 0;
  border-left: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu_dmsp .menu_lvl {
  position: absolute;
  width: 280px;
  -webkit-transform: perspective(600px) rotateX(-90deg);
  transform: perspective(600px) rotateX(-90deg);
  -webkit-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.menu_dmsp .menu_lvl3,
.menu_dmsp .menu_lvl4 {
  left: calc(100% + 1px);
}

.menu_dmsp .menu_lvl2 .menu_lvl3 ul li:hover .menu_lvl4,
.menu_dmsp .menu_lvl2 ul li:hover .menu_lvl3,
.menu_dmsp:not(.block_hover):hover .menu_lvl2 {
  -webkit-transform: perspective(600px) rotateX(0);
  transform: perspective(600px) rotateX(0);
  transform-origin: 0 0 0;
  -webkit-transform-origin: 0 0 0;
  opacity: 1;
  visibility: visible;
}

.slideshow_left .menu_lvl2 {
  -webkit-transform: perspective(600px) rotateX(0);
  transform: perspective(600px) rotateX(0);
  transform-origin: 0 0 0;
  -webkit-transform-origin: 0 0 0;
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.menu_vlist_pic {
  max-width: 24px;
}

.menu_dmsp .menu_lvl ul li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  text-align: left;
  padding: 8px 10px;
  border-left: 2px solid transparent !important;
  background: #fff;
  margin: 0;
  height: auto;
  color: #222;
  font-size: clamp(12px, calc(14 / 1230 * 100vw), 14px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  /* 285.714% */
}

.menu_dmsp .menu_lvl ul li:hover > a {
  border-color: var(--color-main) !important;
  color: var(--color-main);
  background: #51515414;
  border-radius: 5px;
}

.menu ul li ul li a {
  padding: 12px !important;
  border: none !important;
}

.menu ul li ul li a:after {
  display: none !important;
}

.menu_dmsp .menu_lvl ul {
  max-height: 410px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  margin: 0;
}

.slideshow_item {
  display: block;
  position: relative;
}

.swiper_slideshow {
  height: calc(100vw * 530 / 1366);
  position: relative;
}

.control_slide {
  position: absolute;
  width: 100%;
  z-index: 2;
  left: 0;
  top: calc(50% - 40px / 2);
}

.control_slide button {
  opacity: 0.5;
  top: 0;
  position: absolute;
  outline: 0;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: #000;
  width: 40px;
  border-radius: 50px;
  height: 40px;
  background: #fff;
  text-align: center;
  font-size: 18px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.control_slide button:hover {
  opacity: 1;
}

.control_slide button.slide_prev {
  left: 20px;
}

.control_slide button.slide_next {
  right: 20px;
}

.swiper_slideshow .swiper-slide {
  overflow: hidden;
}

.swiper_slideshow .slide-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.spacer {
  margin: clamp(30px, calc(40 / 1230 * 100vw), 40px) 0;
}

.title-main {
  text-align: center;
  position: relative;
  /* margin-bottom: 30px; */
}

.title-main.title-nomb {
  margin-bottom: 0;
  text-align: left;
  white-space: nowrap;
}

.title-detail {
  position: relative;
  margin-bottom: 30px;
}

.title-detail h1 {
  color: var(--color-main);
  font-size: clamp(1.75rem, 1.65rem + 0.5vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 0;
}
.title-detail h2 {
  color: var(--color-main);
  font-size: clamp(1.75rem, 1.65rem + 0.5vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 0;
}

.title-main h1,
.title-main h2,
.title-main .title {
  color: #3c3c3f;
  font-size: clamp(18px, calc(26 / 1230 * 100vw), 26px);
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 0;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.title-main h1 {
  font-size: clamp(23px, calc(26 / 1230 * 100vw), 26px);
}

.album__name.text-split {
  -webkit-line-clamp: 1;
  color: #111;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  transition: 0.3s;
  margin: 15px 0 0;
  text-align: center;
}

.album__name.text-split:hover {
  color: var(--color-main);
}

.list_monnb {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  padding-bottom: 5px;
  overflow-x: scroll;
  max-width: 70%;
}

.list_monnb button {
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #f3f4f6;
  color: #222;
  text-align: center;
  font-size: clamp(12px, calc(14 / 1230 * 100vw), 14px);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 10px 12px 8px;
  transition: all 0.3s linear;
  text-transform: capitalize;
  white-space: nowrap;
  display: inline-block;
}

.list_monnb button.active,
.list_monnb button:hover {
  color: #fff;
  border-color: var(--color-main);
  background: var(--color-main);
  transition: all 0.3s linear;
}

.videoThumb {
  display: block;
  position: relative;
  cursor: pointer;
}

.validation-input {
  position: relative;
}

.invalid_feedback {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  font-size: 14px;
  color: #fff;
  background: #000;
  padding: 0.375rem 0.75rem;
  transition: all 0.3s ease-out;
}

.invalid_feedback:before {
  content: "";
  position: absolute;
  top: 100%;
  border-top: 10px solid #000;
  border-right: 0.5rem solid transparent;
  border-left: 0.5rem solid transparent;
}

.invalid_feedback.validated {
  opacity: 1;
  visibility: visible;
}

.btn_newsletter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 3px 3px 0;
  background: #ffb121;
  border: 1px solid #ffb121;
  transition: 0.3s;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: 100%;
  aspect-ratio: 1/1;
}

.btn_newsletter:hover {
  color: var(--color-main);
  background: #fff;
}

.btn_newsletter:hover svg {
  color: #ffb121;
}

.footer_title {
  position: relative;
  color: #fff;
  text-align: justify;
  font-size: clamp(14px, calc(16 / 1230 * 100vw), 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
  padding-left: 8px;
  border-left: 2px solid #fff;
}

.footer_info {
  color: #fff;
  font-size: clamp(13px, calc(14 / 1230 * 100vw), 14px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
}

.footer_ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer_ul li a {
  color: #fff;
  font-size: clamp(12px, calc(14 / 1230 * 100vw), 14px);
  font-style: normal;
  font-weight: 500;
  line-height: 38px;
}

.footer_ul li {
  list-style: disc;
  color: #fff;
  margin-left: 15px;
}

.footer_ul li a:hover {
  color: #fff;
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

div#footer-map {
  overflow: hidden;
}

div#footer-map iframe {
  display: block;
  width: 100%;
  height: 400px;
}

.footer_powered {
  background: var(--color-main);
  padding: 15px 0;
}

.copyright {
  text-align: center;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.42px;
}
.copyright p {
  display: inline-block;
  margin-bottom: 0;
}

.chinhanh_flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.chinhanh_left {
  width: 30%;
}

.chinhanh_right {
  width: 70%;
}

.chinhanh_item {
  display: block;
  padding: 10px;
  background: #fff;
  cursor: pointer;
}

.chinhanh_item:nth-child(odd) {
  background: #e6e6e6;
}

.chinhanh__pic {
  width: 100px;
}

.chinhanh__name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
}

.chinhanh__desc {
  font-size: 14px;
  color: #212529;
}

.chinhanh__desc p {
  margin: 0;
}

.chinhanh__desc a {
  color: #a5a5a5;
}

.chinhanh__next {
  display: inline-block;
  font-size: 13px;
  font-style: italic;
  color: #ed1c24;
}

.chinhanh_right {
  overflow: hidden;
}

.chinhanh_right iframe {
  display: block;
  width: 100%;
  height: 600px;
}

.chinhanh_scroll {
  max-height: 600px;
  overflow-y: auto;
  padding-right: 5px;
}

.flex_pro_detail {
  display: grid;
  grid-template-columns: 40% calc(60% - 30px);
  justify-content: space-between;
}

.title_pro_detail {
  text-transform: capitalize;
  font-size: 22px;
  display: block;
  font-weight: 700;
  padding: 0 0 5px;
  border-bottom: 1px dotted #dfe0e1;
  margin-bottom: 10px;
}

.attr-pro-detail {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.attr-pro-detail li {
  margin-bottom: 15px;
}

.attr-content-pro-detail {
  display: inline-flex !important;
  margin-bottom: 0;
  gap: 10px;
  align-items: flex-end;
  font-size: 15px;
}

.price-new-pro-detail {
}

.price-old-pro-detail {
}

.price-discount-pro-detail {
  font-size: 12px;
  color: #da291c;
  margin-bottom: 3px;
}

.attr-label-pro-detail {
  margin: 0 5px 0 0;
  font-weight: 700;
  font-size: 15px;
}

.album_product {
  margin-top: 15px;
}

.product_familiar,
.tabs_pro_detail {
  margin-top: 30px;
}

@media (max-width: 991.98px) {
.tabs_pro_detail {
  margin-top: 5px;
}
}

.tabs_holder {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tabs_holder li {
  text-align: center;
  border-radius: 0;
  font-size: 14px;
  line-height: 20px;
  padding: 11px 15px 10px;
  font-weight: 700;
  border: solid 1px #e6e6e6;
  margin-bottom: -1px;
  cursor: pointer;
}

.tabs_holder li.active {
  background-color: var(--color-main);
  color: #fff;
  border: solid 1px var(--color-main);
  transition: 0.3s ease-in-out;
  border-radius: 5px 5px 0 0;
}

.tab-content.active {
}

.swiper-slide {
  height: auto !important;
}

.swiper-slide img {
  display: inline-block;
}

.swiper-thumbs .swiper-slide {
  opacity: 0.6;
  transition: 0.3s;
}

.swiper-thumbs .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

.product_thumb_placeholder {
  display: block;
  background-color: #eee;
}

.product_nav_placeholder {
  cursor: pointer;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.splide__track--nav
  > .splide__list
  > .splide__slide.is-active
  .product_nav_placeholder {
  border-color: #9d9d9d;
}

.list-news-other {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-news-other li {
  padding: 10px 0;
  border-bottom: 1px dashed #e8e8e8;
}

.list-news-other li a {
  font-size: 15px;
  text-transform: none;
  color: #333;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}

.list-news-other li a i {
  margin-right: 5px;
}

.list-news-other li a:hover {
  color: red;
}

.row_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.col_left {
  width: 23%;
}

.col_right {
  width: 75%;
}

.group-sidebox {
  position: sticky;
  top: 60px;
}

.title-menu-bar {
  display: flex;
  font-size: clamp(12px, calc(16 / 1024 * 100vw), 16px);
  font-weight: 700;
  text-transform: uppercase;
  color: #fff !important;
  height: 50px;
  line-height: 50px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(0deg, var(--color-main), var(--color-main));
  border-radius: 8px 8px 0 0;
}

.title-menu-bar i {
  margin-right: 15px;
  font-size: 22px;
}

.submenu-links {
  margin: 0;
  padding: 0;
}

.menuList-links {
  margin: 0;
  border: 1px solid #ccc;
  padding: 0;
}

.menuList-links li {
  position: relative;
  list-style: none;
}

.menuList-links > li {
  border-bottom: 1px solid #e7e7e7;
}

.menuList-links li a {
  color: #252a2b;
  position: relative;
  font-size: 14px;
  display: block;
  text-transform: capitalize;
  transition: 0.3s;
}

.menuList-links li a:hover {
  color: #d41313;
}

ul.submenu-links li a {
  padding: 8px 0 8px 0;
}

.menuList-links > li > a {
  display: block;
  padding: 12px 0;
  font-weight: 500;
  font-size: clamp(12px, calc(15 / 1024 * 100vw), 15px);
}

.menuList-links > li.has-submenu > a {
  padding-right: 30px;
  padding-left: 10px;
}

.menuList-links > li.has-submenu span.icon-plus-submenu {
  width: 25px;
  height: 25px;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 1px solid transparent;
  display: none;
}

.icon-plus-submenu:after,
.icon-plus-submenu:before {
  background: rgba(9, 9, 9, 0.6);
  content: "";
  display: block;
  position: absolute;
  margin-right: 7px;
  top: 50%;
  right: 0;
  -moz-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
}

.icon-plus-submenu:before {
  width: 9px;
  height: 1px;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.icon-plus-submenu:after {
  width: 1px;
  height: 9px;
  right: 4px;
  transform-origin: center;
  -moz-transform: translateY(-50%) scale(1, 1);
  -ms-transform: translateY(-50%) scale(1, 1);
  -webkit-transform: translateY(-50%) scale(1, 1);
  transform: translateY(-50%) scale(1, 1);
}

li.has-submenu.opened > a .icon-plus-submenu:after {
  -moz-transform: translateY(-50%) scale(1, 0);
  -ms-transform: translateY(-50%) scale(1, 0);
  -webkit-transform: translateY(-50%) scale(1, 0);
  transform: translateY(-50%) scale(1, 0);
}

.menuList-links > li.has-submenu .icon-plus-submenu:hover {
  border: 1px solid #e7e7e7;
}

.submenu-links {
  display: none;
}

li.has-submenu.level1 > ul.submenu-links li a {
  padding-left: 25px;
}

.content-main {
  line-height: 26px;
}

.content-main h1 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 30px;
}

.content-main h2 {
  margin: 20px 0;
  font-size: 18px;
}

.content-main h3 {
  margin: 15px 0 20px;
  font-size: 16px;
}

.content-main table {
  width: 100%;
  margin: 10px 0 20px;
  font-size: 13px;
}

.content-main table th {
  background: #444;
  color: #fff;
  text-align: center;
  padding: 12px 7px;
}

.content-main table tr td {
  padding: 10px 7px;
}

.content-main tr:nth-child(even) {
  background: #f4f4f4;
}

.content-main tr:nth-child(odd) {
}

.content-main ol,
.content-main ul {
  list-style-type: disc;
  margin: 10px 0;
}

.content-main ol li,
.content-main ul li {
  margin-bottom: 10px;
}

.content-main a {
  color: #05f;
  font-weight: 700;
  display: contents;
}

.content-main iframe {
  width: 100% !important;
  display: block;
  margin: 10px auto 20px;
}

.content-main tr:nth-child(even) {
  background-color: #f2f2f2;
}

.content-main tr:hover {
  background-color: #ddd;
}

.content-main th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: var(--color-main);
  color: #fff;
}

.content-main td,
.content-main th {
  border: 1px solid #ddd;
  padding: 8px;
}

.content-main figcaption {
  text-align: center;
}

.grid_rowdetail_album {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
}

#loader-wrapper #wrap {
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: block;
  text-align: center;
  width: 100%;
  height: 100%;
  z-index: 99999;
}

#loader-wrapper.show1 #wrap {
  background: 0 0;
}

#loader-wrapper:after {
  -webkit-mask: url(../images/mask-01.png);
  mask: url(../images/mask-01.png);
  -webkit-mask-size: 2300% 100%;
  mask-size: 2300% 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 1);
  z-index: 10000;
}

#loader-wrapper.show1::after {
  -webkit-animation: MaskPlay 1s steps(22) forwards;
  animation: MaskPlay 1s steps(22) forwards;
}

#loader-wrapper.show1 #wrap {
  opacity: 0;
}

@keyframes MaskPlay {
  from {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }

  to {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
}

.splide__track--nav > .splide__list > .splide__slide {
  border: none !important;
  opacity: 1;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  opacity: 1;
}

.box_changelang {
  position: relative;
  cursor: pointer;
}

#google_translate_element {
  clear: both;
  width: auto !important;
  text-align: right;
  display: none;
}

.skiptranslate {
  display: none !important;
}

.list_pic {
  border-radius: 12px;
  border: 1.5px solid #eaf1ff;
  background: #fff;
}

.list_name.text-split {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 0;
  color: #555;
  text-align: center;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  font-weight: 500;
  text-transform: capitalize;
}

.list_item:hover .list_pic {
  border-color: var(--color-main);
}

.list_item:hover .list_name.text-split {
  color: var(--color-main);
}

.splide__arrow {
  background: var(--color-main);
}

.splide__arrow svg {
  fill: #fff;
}

.newsnb_wrap {
  background: #f6f6f6;
  padding: clamp(30px, calc(40 / 1230 * 100vw), 40px) 0;
}

.doitac_item {
  border-radius: 10px;
  border: 1.5px solid #e0e1e1;
  background: #fff;
  overflow: hidden;
  display: block;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}

.doitac_item:hover {
  border-color: var(--color-main);
}

.pro_detail_chinhanh {
  position: sticky;
  top: 60px;
}

.pro_detail_chinhanh .title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(0.9375rem, 0.9125rem + 0.125vw, 1.0625rem);
  margin-bottom: 0;
  text-align: center;
  margin-bottom: 15px;
}

.box_detail_chinhanh {
  border: dashed 1px var(--color-main);
  padding: 10px 10px 20px 10px;
  box-shadow: inset 0 0 3px var(--color-main);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.detail_chinhanh_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.detail_chinhanh_top svg {
  color: #333;
  margin-right: 10px;
}

.detail_chinhanh_top b {
  font-size: 14px;
  color: var(--color-main);
  flex: 1 1 0%;
}

.detail_chinhanh_info {
  font-size: 13px;
  color: #111;
}

.detail_chinhanh_info p {
  margin-bottom: 0;
}

.hotline-pro-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  color: #fff !important;
  font-weight: 500;
  background: var(--color-main);
  padding: 8px 15px;
  border-radius: 5px;
  transition: 0.3s;
}

.hotline-pro-detail:hover {
  opacity: 0.8;
}

.news_detail_flex {
  display: grid;
  grid-template-columns: calc(70% - 30px) 30%;
  justify-content: space-between;
}

[x-cloak] {
  display: none !important;
}

.product-box {
  border-radius: 6px;
  border: 1px solid #e1e1e1;
  background: #fff;
  position: relative;
  transition: 0.2s;
  display: block;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 0 20px 0 #eaeaea;
}

.product-box:hover {
  border-color: var(--color-main);
  transform: translateY(-5px);
  box-shadow: 0 0 20px 0 #5151548a;
}

.product-name {
  transition: 0.2s;
  color: #181818;
  font-size: clamp(12px, calc(14 / 1230 * 100vw), 14px);
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 3px;
}

.product-box:hover .product-name {
  color: var(--color-main);
}

.product-price--news {
  color: #d70018;
  font-size: clamp(14px, calc(18 / 1230 * 100vw), 18px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  /* 222.222% */
}

.product-price--old {
  text-decoration: line-through;
  color: #a1a1aa;
  font-size: clamp(12px, calc(14 / 1230 * 100vw), 14px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  /* 285.714% */
}

.product-price--per {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: absolute;
  top: clamp(5px, calc(10 / 1230 * 100vw), 10px);
  left: clamp(5px, calc(10 / 1230 * 100vw), 10px);
  border-radius: 3px;
  background: #d70018;
  padding: 3px 3px 2px 2px;
  z-index: 1;
}

.title-tragop {
  color: #d70018;
  font-size: clamp(9px, calc(11 / 1024 * 100vw), 11px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 5px 8px;
  border-radius: 3px;
  border: 1px solid #d70018;
  position: absolute;
  top: clamp(5px, calc(10 / 1230 * 100vw), 10px);
  right: clamp(5px, calc(10 / 1230 * 100vw), 10px);
  z-index: 1;
}

.product-cart {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 10px;
}

.product-cart span {
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px var(--color-main);
  color: var(--color-main);
  transition: 0.2s;
  border-radius: 4px;
  padding: 3px;
}

.product-cart span:hover {
  background: var(--color-main);
  color: #fff;
}

.prodetail-cart {
  background-color: var(--color-main);
  display: flex;
  height: 45px;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 5px;
  color: #fff !important;
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease;
}

.btn-tragop {
  grid-column: span 3;
}

.prodetail-cart-buynow {
  background-color: #d70018;
  transition: all 0.3s ease;
}

.prodetail-cart-addnow {
  background-color: var(--color-subr);
  transition: all 0.3s ease;
}

.prodetail-cart:hover {
  background-color: var(--color-main);
  opacity: 0.8;
}

.modal {
  backdrop-filter: blur(4px);
}

.modal-content {
  border: 1px solid #d1d5db;
  color: #4b5563;
}

.modal-header {
  border-bottom: 1px solid #d1d5db;
  background: rgba(249, 250, 251, 0.6);
}

.modal-title {
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #111827;
}

.modal-footer {
  border-top: 1px solid #d1d5db;
  background: rgba(249, 250, 251, 0.6);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  background: #fff;
  border-radius: 3px;
  padding: 10px;
  font-size: clamp(0.875rem, 0.8625rem + 0.0625vw, 0.9375rem);
  min-height: 35px;
  border: 1px solid var(--gray-gray-300, #ccc);
  font-size: 14px;
}

.required-field::after {
  content: " *";
  color: red;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: #4299e1;
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.15);
}

.form-group textarea {
  resize: vertical;
  height: 100px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}

.form-row .form-group {
  flex: 1;
  margin-right: 20px;
  margin-bottom: 0;
  box-sizing: border-box;
}

.form-row .form-group:last-child {
  margin-right: 0;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin: 0;
  overflow: hidden;
  opacity: 0;
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  overflow: hidden;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.custom-file-label::after {
  content: attr(title);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.5em + 0.75rem);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 0.25rem 0.25rem 0;
}

.modal-btn--close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: black;
  background: red;
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 1;
  overflow: hidden;
  border-radius: 50%;
}

.slide_left .menu_dmsp .menu_lvl.menu_lvl2 {
  -webkit-transform: perspective(600px) rotateX(0);
  transform: perspective(600px) rotateX(0);
  transform-origin: 0 0 0;
  -webkit-transform-origin: 0 0 0;
  opacity: 1;
  visibility: visible;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  width: clamp(145px, calc(230 / 1290 * 100vw), 230px);
}

.slide_left .menu_dmsp .menu_lvl.menu_lvl2 ul {
  max-height: clamp(200px, calc(425 / 1250 * 100vw), 425px);
  overflow-y: auto;
  padding: 8px 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 20px 0 #e9e9e9;
  overflow-x: hidden;
  height: 100dvh;
}

/* .slide_left .menu_dmsp .menu_lvl.menu_lvl2 ul li .slider_menu_lvl3 ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
} */

.slide_left .menu_dmsp .menu_lvl.menu_lvl2 ul li .slider_menu_lvl3 {
  /* --clamp: clamp(145px, calc(230 / 1230 * 100vw), 240px); */
  width: 245px;
  top: 0 !important;
  left: calc(100% + 10px);
}

.menu_dmsp .menu_lvl.menu_lvl2-desktop {
  background: #fff;
  width: 100%;
  max-width: 1200px;
  left: 50%;
  -webkit-transform: perspective(600px) rotateX(0) translateX(-50%) !important;
  transform: perspective(600px) rotateX(0) translateX(-50%) !important;
  top: 90%;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 20px 0 #e9e9e9;
}

.menu_dmsp .menu_lvl.menu_lvl2-desktop ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 10px;
}

.menu_dmsp .menu_lvl.menu_lvl2-desktop ul li {
  padding: clamp(5px, calc(15 / 1230 * 100vw), 15px) 10px 5px
    clamp(5px, calc(15 / 1230 * 100vw), 15px);
  position: relative;
}

.menu_dmsp .menu_lvl.menu_lvl2-new ul li a {
  padding: 5px !important;
  font-weight: 700;
  font-size: clamp(13.5px, calc(17 / 1230 * 100vw), 17px);
}

/* .menu_dmsp .menu_lvl.menu_lvl3-desktop {} */
.menu_lvl3-desktop {
  position: relative;
  left: 0;
  width: 100%;
  -webkit-transform: perspective(600px) rotateX(0) !important;
  transform: perspective(600px) rotateX(0) !important;
  opacity: 1;
  visibility: unset;
  max-height: 190px;
  overflow-y: auto;
}

.menu_dmsp .menu_lvl3-desktop ul {
  display: grid;
  grid-template-columns: 1fr !important;
}

.menu_dmsp .menu_lvl3-desktop ul li {
  padding: 5px 5px 5px 10px !important;
}

.menu_dmsp .menu_lvl3-desktop ul li a {
  font-weight: 400 !important;
  font-size: clamp(12px, calc(14 / 1330 * 100vw), 14px) !important;
  padding: 5px 5px 5px 10px !important;
}

/* feedback */
.title-feedback {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
}

.title-feedback h2 {
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(20px, calc(26 / 1230 * 100vw), 26px);
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
}

/* pro hot */
.prohot-title {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
}

.prohot-title h2 {
  display: inline-block;
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(25px, calc(36 / 1230 * 100vw), 36px);
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  padding: 40px 50px 20px 60px;
  background: url(../images/bg-titleh2.png) no-repeat center bottom / 100%;
}

.proHot_bg {
  border-radius: 10px;
  padding: 5px 10px 25px;
  background: url(../images/bg-proHot.png) no-repeat center top / 100% 100%;
}

.viewmore-proList-Cat {
  color: #000;
  font-size: clamp(13px, calc(14 / 1230 * 100vw), 14px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 40px;
  border: 1px solid #515154;
  display: inline-block;
  padding: 12px 35px;
  transition: all 0.3s ease-in-out;
}

.viewmore-proList-Cat:hover {
  background: #515154;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 2px;
  background: #ffb121;
}

.date .day {
  color: #fff;
  text-align: justify;
  font-size: clamp(15px, calc(26 / 1230 * 100vw), 26px);
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
}

.date .month {
  color: #fff;
  text-align: justify;
  font-size: clamp(11px, calc(12 / 1230 * 100vw), 12px);
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  text-transform: capitalize;
}

.CN-pro > li {
  border: none;
  padding: 0.5rem 0.5rem 0.5rem 22px;
  font-size: 13px;
}

.CN-pro > li:nth-child(2n) {
  background: #f4f4f4;
}

.CN-pro > li::before {
  left: 0.15rem;
  top: 0.65rem;
  content: "\f3c5";
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-weight: 900;
  border: none;
  font-size: 13px;
  line-height: 1;
  color: #d70018;
  border-radius: 50%;
  overflow: hidden;
  text-align: center;
  width: 20px;
  height: 20px;
  position: absolute;
}

.CN-pro > li span {
  flex: 0 0 auto;
  width: calc(100% - 70px);
  padding-right: 0.5rem;
}

.prodetail__liststore-item-viewmap {
  text-align: right;
  flex: 0 0 auto;
  width: 70px;
  padding: 0;
  border: none;
  background: none;
  color: #0a58ca !important;
  font-size: 10px;
  line-height: 20px;
  font-weight: 300 !important;
  font-style: italic;
}

.prodetail__liststore-item-viewmap:hover {
  text-decoration: underline !important;
}

.product-detail-quote-wrapper table tr td {
  padding: 1px 7px;
  align-content: flex-start;
}

.prodetail_label_khuyenmai {
  box-shadow: var(--bs-box-shadow-sm);
}

.content-thongsokythuat table {
  font-size: 12px;
  border-collapse: collapse !important;
  border: none;
  width: 100% !important;
  line-height: 22px;
}

.content-thongsokythuat {
  max-height: 490px;
  overflow: hidden;
  position: relative;
  transition: 0.3s;
  mask: linear-gradient(to bottom, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 95%);
  padding-bottom: 50px;
}

.title-thongsokythuatPopup {
  padding: 10px;
}

div#exampleModalThongTin .modal-content .modal-header .btn-close {
  color: #fff;
  position: absolute;
  right: 15px;
  top: 60%;
  transform: translateY(-50%);
  background-color: #fff;
  opacity: 1;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  z-index: 22;
}

div#exampleModalThongTin {
  .modal-dialog {
    max-width: 700px;
  }

  .modal-content {
    border: 0;
    border-radius: 10px;
  }
}

.content-thongsokythuatPopup table {
  font-size: 12px;
  border-collapse: collapse !important;
  border: none;
  width: 100% !important;
  line-height: 22px;
}

a.proprice_action {
  display: grid;
  text-align: center;
  gap: 3px;
  border: 1px solid #ccc;
  color: #333;
  font-weight: 400;
  padding: 2px 5px;
}

a.proprice_action strong {
  color: #d70018;
}

a.proprice_action.active,
a.proprice_action:hover {
  color: #d70018;
  box-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.25);
  border-color: #d70018;
}

.properties_info {
  font-weight: normal;
  color: #333;
  cursor: pointer;
}

.properties_grid {
  display: grid;
  text-align: center;
  gap: 3px;
  border: 1px solid #ccc;
  color: #333;
  font-weight: 400;
  padding: 2px 5px;
  align-items: center;
}

.properties_grid.active {
  color: #d70018;
  box-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.25);
  border-color: #d70018;
}

blockquote.tiktok-embed {
  max-width: 275px !important;
  min-width: 120px !important;
  max-height: 570px !important;
  border-radius: 10px !important;
}

.header_left {
  width: calc(245 / 1200 * 100%);
}

.header_right {
  width: calc(950 / 1200 * 100%);
}

.header_right-left {
  width: calc(660 / 950 * 100%);
}

.header_right-right {
  width: calc(280 / 950 * 100%);
}

/* .logo img, .logo-mb img{
  max-width: 210px;
  max-height: 90px;
} */

.control-owl {
  position: absolute;
  width: 100%;
  z-index: 2;
  left: 0px;
  top: 43%;
}

.control-owl button {
  opacity: 0.5;
  top: 0px;
  position: absolute;
  outline: none;
  border: 2px solid #fff;
  padding: 0px;
  margin: 0px;
  display: block;
  cursor: pointer;
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  text-align: center;
  font-size: 25px;
  margin: 0px;
  background-color: var(--color-main);
  display: flex;
  align-items: center;
  justify-content: center;
}

.control-owl button:hover {
  opacity: 1;
}

.control-owl button.owl-prev {
  left: 20px;
}

.control-owl button.owl-next {
  right: 20px;
}

/* == ĐƠN HÀNG ẢO == */
.items_mh {
  width: 100%;
  max-width: 375px;
  padding: 10px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 0 4px 0 rgb(0 0 0 / 50%);
  position: fixed;
  left: 10px;
  bottom: -200px;
  z-index: 9999;
  transition: all 2s;
  display: flex;
  align-items: flex-start;
}
.items_mh .close {
  position: absolute;
  top: 3px;
  right: 10px;
  cursor: pointer;
}
.items_mh .close i {
  font-size: 20px;
  color: #333;
}
.items_mh.active {
  bottom: 10px;
}
.items_mh .img_mh {
  width: 60px;
}
.items_mh .des_mh {
  width: calc(100% - 60px);
  padding-left: 5px;
}
.items_mh .des_mh p {
  font-size: 15px;
  margin-bottom: 2px;
  padding-right: 25px;
  font-weight: 500;
}

.items_mh .des_mh h3 {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}
.items_mh .des_mh span {
  font-size: 14px;
  display: block;
  font-weight: 500;
}

/* == TRA GOP == */
.box-payment {
  font-family: "Roboto", sans-serif;
  width: 70%;
  margin: 0px auto;
}

.title-payment {
  font-size: 22px;
  font-weight: 700;
}

.left-payment {
  width: 55%;
}

.left-payment .box-input {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.left-payment .box-input.box-bank .input-payment:nth-child(1) {
  width: 65%;
}

.left-payment .box-input.box-bank .input-payment:nth-child(2) {
  width: 33%;
}

.left-payment .box-input.box-bank .input-payment:nth-child(2) span.unit {
  top: 7px;
}

.left-payment .box-input .input-payment {
  width: 49%;
}

.re__input-lable {
  font-size: 14px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}

.input-payment span.unit {
  display: block;
  position: absolute;
  margin: 0;
  top: 36px;
  right: 10px;
  font-size: 14px;
}

.input-payment {
  position: relative;
  margin-bottom: 15px;
}

.input-payment input,
.input-payment select {
  font-size: 13px;
}

.right-payment {
  width: 41%;
  box-shadow: 0 0 5px -1px #00000052;
  padding: 20px;
}

.re__label-title {
  font-size: 14px;
  line-height: 20px;
  width: 100%;
  color: #2c2c2c;
}

.re__label-total {
  display: block;
  font-size: 23px;
  width: 100%;
  color: #2c2c2c;
  transition: all 0.25s;
  margin: 5px 0px;
  margin-bottom: 10px;
  font-weight: 700;
}

.re__payment-result-detail {
  padding: 0;
  margin: 0;
  list-style: none;
}

.re__row-desc {
  font-size: 14px;
  line-height: 20px;
  font-weight: normal !important;
  margin-top: 12px;
  display: flex;
  color: #2c2c2c;
  justify-content: space-between;
  align-items: center;
}

.re__desc {
  position: relative;
  padding-left: 17px;
}

.re__desc:before {
  position: absolute;
  content: "";
  background: #009ba1;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  left: 0;
  top: 7px;
}

.re__purple .re__desc:before {
  background: purple;
}

.re__yellow .re__desc:before {
  background: #cfcf27;
}

.re__row-desc.re__row-sum {
  margin-top: 24px;
  padding: 9px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.js__pay-first-month {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  transition: all 0.25s;
}

.js__pay-progress-bar {
  display: flex;
}

.js__pay-progress-bar .re__progress-bar-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

.re__crossbar {
  height: 4px;
}

.re__progress-bar-item.re__cyan .re__crossbar {
  background: #009ba1;
}

.re__progress-bar-item.re__purple .re__crossbar {
  background: #845d9c;
}

.re__progress-bar-item.re__yellow .re__crossbar {
  background: #ffc107;
}

.re__progress-bar-item.re__cyan {
  color: #009ba1;
}

.re__progress-bar-item.re__purple {
  color: #845d9c;
}

.re__progress-bar-item.re__yellow {
  color: #ffc107;
}

.read-popup-payment {
  margin: 20px 0 0 0;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 15px;
  border: 1px solid #f00;
  text-align: center;
  padding: 9px;
  color: #f00;
  border-radius: 5px;
  cursor: pointer;
}

.read-popup-payment:hover {
  background: #f00;
  color: #fff;
  transition: 0.3s all;
}

.result-payment .payment-box {
  width: 20%;
  font-family: "Roboto", sans-serif;
}

.title-payment__box {
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  font-size: 13px;
  background: #0e912c;
  color: #fff;
  border-right: 1px solid #097f24;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-height: 40px;
}

.result-payment .list-item {
  text-align: center;
  border: 1px solid #000;
  margin: -1px -1px 0px 0px;
}

.result-payment .list-item > div {
  border-bottom: 1px solid #000;
  padding: 5px;
  font-size: 13px;
  font-weight: 500;
  color: #000;
  min-height: 30px;
}

.result-payment .list-item > div:last-child {
  border: 0;
}
.grid-payment {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr 2fr 2fr;
  border: 1px solid #ddd;
  margin-top: 30px;
}
.grid-payment .item-line {
  padding: 5px;
  border-bottom: 1px solid #ddd;
}
.grid-payment .item-line:last-child {
  border-bottom: none;
}
.payment-box {
  text-align: center;
  border-right: 1px solid #ddd;
}
.payment-box:last-child {
  border-right: none;
}

.itemProduct {
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 4px 0 #0000007d;
  border-radius: 15px;
  margin-bottom: 20px;
}

.itemProduct-img {
  padding: 0px;
  border: 1px solid #51515445;
  border-radius: 15px;
  overflow: hidden;
  width: 120px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.itemProduct-name {
  font-size: 20px;
  width: calc(100% - 300px);
  padding: 0 12px 0 20px;
  font-weight: 600;
  line-height: 1.2;
}

.itemProduct-price {
  width: 180px;
  text-align: end;
}

.itemProduct-price span {
  display: block;
}

.itemProduct-price--new {
  font-size: 16px;
  font-weight: 700;
  color: #dc2634;
}

.itemProduct-price--old {
  font-size: 14px;
  font-weight: 400;
  text-decoration: line-through;
  color: #33333394;
}

@keyframes nFadeIn {
  0% {
    opacity: 0;
    transform: translate3d(0px, 100%, 0px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
#someone-purchased.fade-in {
  opacity: 0;
  animation-name: nFadeIn;
  animation-duration: 1s;
  animation-fill-mode: both;
}
@keyframes nFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(0px, 100%, 0px);
    bottom: 0px;
  }
}
#someone-purchased.fade-out {
  opacity: 0;
  animation-name: nFadeOut;
  animation-duration: 1s;
  animation-fill-mode: both;
}
div#someone-purchased .grid {
  display: grid;
  grid-template-columns: 85px 1fr;
  gap: 10px;
  align-items: center;
}
div#someone-purchased .grid p {
  margin: 0;
  padding: 0;
  min-width: 100%;
  width: 100%;
  padding-right: 15px;
  text-align: left;
}
div#someone-purchased .grid img {
  min-width: 100%;
  width: 100%;
}
#someone-purchased {
  border: 0px;
  opacity: 0;
  border-radius: 0px;
  bottom: 20px;
  left: 20px;
  padding: 5px;
  position: fixed;
  text-align: left;
  width: auto;
  z-index: 99999;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 4px 0px;
  top: auto !important;
  right: auto !important;
  max-width: 350px;
  background: #fff;
  border-radius: 10px;
}
#someone-purchased div img {
  cursor: pointer;
  float: left;
  max-height: 85px;
  max-width: 120px;
  width: auto;
  padding: 3px;
  display: block;
}
#someone-purchased div p {
  color: rgb(55, 55, 55);
  float: left;
  font-size: 13px;
  margin: 0px 0px 0px 13px;
  width: auto;
  padding: 10px 10px 0px 0px;
  line-height: 20px;
}
#someone-purchased div p a {
  padding-right: 51px;
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: rgb(55, 55, 55) !important;
  margin-bottom: 0px;
}
#someone-purchased div p a:hover {
  color: rgb(0, 0, 0);
}
#someone-purchased div p small {
  text-align: left;
  display: inline-block;
  font-size: 13px;
  vertical-align: middle;
}
#someone-purchased .someone__product-desc {
  height: auto;
  overflow: hidden;
  display: block;
}

/* ============header============ */
/* ====tiêu chí===== */
/* hiệu ứng */
.image-rotate {
  overflow: hidden;
  perspective: 1000px; /* Tạo hiệu ứng 3D cho trục Y */
}

.image-rotate img {
  transition: transform 0.5s ease;
  transform-style: preserve-3d; /* Để duy trì hiệu ứng 3D khi xoay */
}

/* Keyframes for continuous Y-axis rotation */
@keyframes continuousRotateY {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

/* Apply continuous Y-axis rotation on hover */
.tieuchi-item:hover img,
.image-rotate:hover img {
  animation: continuousRotateY 2s linear infinite;
}

/* ============trang giới thiệu============== */
#aboutUs {
  background: url(../images/nen-tang.png) no-repeat center;
  background-size: cover;
  min-height: 400px;
  color: #fff;
}
.title_about {
  font-size: 1.6rem !important;
  position: relative;
  margin-bottom: 30px;
  text-transform: uppercase !important;
}
.title_about:before {
  content: "";
  width: 50px;
  position: absolute;
  left: calc(50% - 25px);
  bottom: 0px;
  height: 3px;
  background: #fff;
}
/* thông số */
.thongso {
  background-color: var(--color-main);
  color: #ffffff;
}
.counter-item {
  position: relative;
  font-size: 16px;
  text-align: center;
}
.counter-item .number {
  font-size: clamp(30px, 4vw, 46px);
  color: #ffffff;
  font-weight: 600;
  line-height: 65px;
}
.counter-item sup {
  position: absolute;
  top: 0;
  font-size: 2.5rem;
}
.counter-item p {
  margin-bottom: 0;
}
.counter-item .name {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

/* nền tảng khinh doanh*/
#business {
  background-color: #000000;
}
/* giá trị cốt lõi */
.core_value {
  position: relative;
  margin-top: -12%;
}
.core_value .title {
  color: #fff;
  /* text-transform: uppercase; */
  font-weight: 700;
  font-size: clamp(18px, calc(18 / 1230 * 100vw), 20px);
  text-align: center;
  margin-bottom: 3rem;
}
.core_value .item {
  text-align: center;
  margin-bottom: 30px;
}

.core_value .item:hover .name {
  color: var(--color-subr);
}

.core_value .name {
  color: #fff;
  font-weight: bold;
  font-size: clamp(16px, calc(18 / 1230 * 100vw), 18px);
  margin-top: 20px;
  margin-bottom: 10px;
}
.color-index {
  color: #c7c6c6 !important;
}
/* tầm nhìn và sứ mệnh*/
.item_mission {
  margin-top: 10px;
  position: relative;
}
.item_mission:hover .info .name h3 {
  color: var(--color-subr);
}
.item_mission:hover .info .name::before {
  background-color: var(--color-subr);
}
.item_mission .info {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  transform: translateY(-59%);
  padding: 40px;
}
.item_mission .info .name {
  position: relative;
}
.item_mission .info .name h3 {
  color: #ffffff;
  font-weight: 700;
  line-height: 40px;
  position: relative;
  text-transform: uppercase;
  font-size: clamp(18px, calc(18 / 1230 * 100vw), 20px);
  margin-bottom: 20px;
}
.item_mission .info .name:before {
  content: "";
  width: 50px;
  position: absolute;
  left: 0px;
  bottom: 0px;
  height: 2px;
  background: #fff;
}
.item_mission:nth-child(2n + 1) .info {
  left: 0px;
}

@media only screen and (max-width: 992px) {
  .item_mission .info {
    position: relative;
    left: 0px;
    transform: translateY(0px);
  }
}

/* lịch sử hình thành */
#history {
  background: url(../images/bg_field.jpg) no-repeat center;
  background-size: cover;
  color: #fff;
  padding-top: 2rem;
}

.history--hover:hover .name h3 {
  color: var(--color-subr);
}

.item_history .name {
  font-size: 3rem;
  position: relative;
}
.item_history .name:before {
  content: "";
  width: 60px;
  height: 1px;
  background: #939393;
  position: absolute;
  left: -80px;
  top: 50%;
}

#history .slider-nav {
  margin-top: 50px;
  border-bottom: solid 4px #252525;
}
.item_year {
  font-size: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}
.item_year:hover {
  color: var(--color-subr);
  cursor: pointer;
}

.item_year.slick-current {
  color: var(--color-subr);
}

.item_year.slick-current:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  bottom: 0px;
  /* left: calc(50% - 15px); */
  left: 50%;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #fff;

  transform: translateX(-50%);
  z-index: 2;
}

/* Tam giác lan tỏa */
.item_year.slick-current::after {
  content: "";
  position: absolute;
  bottom: 0;
  /* left: calc(50% - 15px); */
  left: 50%;

  width: 0;
  height: 0;

  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid var(--color-subr);

  transform: translateX(-50%) scale(1);
  transform-origin: center bottom;

  opacity: 0;
  pointer-events: none;
  z-index: 1;

  animation: triangle-ripple 1.6s ease-out infinite;
}

@keyframes triangle-ripple {
  0% {
    transform: translateX(-50%) scale(1);
    opacity: 0.9;
    filter: drop-shadow(0 0 4px var(--color-main));
  }

  50% {
    opacity: 0.55;
    filter: drop-shadow(0 0 10px var(--color-main));
  }

  100% {
    transform: translateX(-50%) scale(2.5);
    opacity: 0;
    filter: drop-shadow(0 0 16px var(--color-main));
  }
}

/* dịch vụ */
#field {
  background: #060300;
}
.item_service h3 {
  font-size: clamp(18px, 2vw, 20px) !important;
  font-weight: 600;
  color: #ffffff;
}
.item_service h3:hover {
  
  color: var(--color-subr);
}

.item_service p {
  line-height: 24px;
}
.color-index {
  color: #c7c6c6 !important;
}

/* logo thương hiệu */
.wrap-partner {
  background: linear-gradient(to right, #1c1c1c 35%, #ffffff 35%);
}
.wrap-partner .wrap-content {
  position: relative;
}
.wrap-partner p {
  /* max-width: 200px; */
  color: #c7c6c6;
}
.item_partner {
  padding: 5px;
}
.item_partner a {
  overflow: hidden;
  background: #fff;
  border-radius: 5px;
  display: block;
}
.item_partner img {
  border-radius: 20px;
}
@media only screen and (max-width: 767px) {
  .wrap-partner {
    background: #1c1c1c;
  }
}
@media (max-width: 1024px) {
  .padding-top-bottom {
    padding: 1rem 0;
  }
}

/* câu hỏi thường gặp */
.accordion-button:not(.collapsed) .faq-title {
  color: var(--color-subr) !important;
}
.accordion-button:not(.collapsed) .faq-number {
  color: var(--color-subr) !important;
}
.accordion-button:hover .faq-title {
  color: var(--color-subr);
}
.accordion-button:hover .faq-number {
  color: var(--color-subr);
}
.accordion-button {
  font-weight: 500;
  font-size: clamp(20px, 18.59px + 0.375vw, 24px);
  /* font-family: "Taviraj", sans-serif; */
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 20px 0 !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  transition: color 0.3s ease;
}
.accordion-item {
  background-color: transparent !important;
  border: none !important;
  margin-bottom: 0 !important;
  padding: 10px 0;
}
.accordion-item:not(:last-child) {
  border-bottom: 2px dashed #c6c6c6 !important;
}
.accordion-item {
  border-radius: 0;
}
.faq-number {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  color: #c6c6c6;
  min-width: 50px;
  transition: color 0.3s ease;
}
.faq-title {
  font-size: clamp(16px, calc(24 / 1230 * 100vw), 24px);
  font-weight: 500;
  color: #737373;
  transition: color 0.3s ease;
  padding-right: 30px;
}
.faq-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  display: block;
}
.accordion-body {
  padding: 0 0 20px 75px !important;
  font-size: clamp(14px, calc(18 / 1230 * 100vw), 18px);
  max-width: 996px;
}

.accordion-button:hover::after,
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffb121'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
/* ẩn nội dung */
.content-readmore {
  position: relative;
  padding-bottom: 67px;
  overflow: visible;
}

.content-main {
  /* max-height: 400px; */
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.content-main.active {
  max-height: none;
  overflow: visible;
}

.content-readmore:not(.active)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 72px;
  height: 120px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
  pointer-events: none;
  z-index: 1;
}

.content-readmore.active::after {
  display: none;
}
/* nav about giới thiệu */
.content-readmore .btn_viewmore-box {
  bottom: 14px !important;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 375px) {
  .content-readmore {
    padding-bottom: 92px;
  }
  .content-readmore:not(.active)::after {
    bottom: 78px;
    height: 96px;
  }
  .content-readmore .btn_viewmore-box {
    bottom: 16px !important;
    padding: 10px 22px !important;
    max-width: calc(100vw - 40px);
  }
}

.wrap-home .navAbout {
  background: #000000;
  border-bottom: solid 1px #ddd;
  position: sticky;
  top: 61px;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .wrap-home .navAbout {
    top: 80px;
  }
}
/* ul:not(.info-pro-detail ul):not(.content-detail ul):not(.toolbar ul) {
  list-style: none;
  margin: 0px;
  padding: 0px;
} */
.wrap-home .navAbout ul {
  margin: auto !important;
  display: flex;
  justify-content: space-around;
}
/* .wrap-content {
  max-width: 1250px;
  margin: auto;
  width: calc(100% - 30px);
} */
/* ul {
  padding-inline-start: 15px;
} */
.wrap-home .navAbout li {
  cursor: pointer;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
  padding: 9px 20px;
  transition: all 0.5s ease;
}
.wrap-home .navAbout li:hover {
  background-color: var(--color-subr);
}

.navAbout-mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 10px;
  background: #000000;
}
.navAbout-title-mobile {
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ic-menu-bar {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 24px;
}
.ic-menu-bar div {
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  margin-bottom: 5px;
  transition: 0.3s ease;
}
.ic-menu-bar div:last-child {
  margin-bottom: 0;
}
#navAboutMmenu .mm-panel {
  background-color: #000;
}
#navAboutMmenu .mm-navbar {
  background-color: #333;
}
#navAboutMmenu .mm-listitem:hover {
  background-color: var(--color-subr);
}
#navAboutMmenu .mm-listitem.active {
  background-color: var(--color-subr);
}

#navAboutMmenu.mm-menu_position-front.mm-menu_opened {
  z-index: 1002;
}

#navAboutMmenu.mm-menu_position-front.mm-menu_opened ~ .mm-slideout {
  transform: none !important;
}

#navAboutMmenu.mm-menu_position-front.mm-menu_opened ~ .mm-wrapper__blocker {
  z-index: 1001;
}

.navAboutMmenu-close {
  position: absolute;
  /* top: 0; */
  right: 12px;
  /* bottom: 0; */
  width: 44px;
  /* height: 100%; */
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

/* Close button inside Mmenu navbar */
.mm-navbar .mm-btn_close {
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  width: 44px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: bold;
  color: #ffffff !important;
  cursor: pointer;
  text-decoration: none;
}
.mm-navbar .mm-btn_close::before,
.mm-navbar .mm-btn_close::after {
  display: none !important;
}
.mm-navbar .mm-btn_close::after {
  content: "×" !important;
  display: block !important;
}

/* tráng chi tiết sản phẩm */
/* responsive */
.pro-detail-left-wrapper {
  display: contents;
}

@media (min-width: 1024px) {
  .pro-detail-left-wrapper {
    display: block;
    position: relative;
  }
}

/*   */
.fs-2rem {
  font-size: 1.6rem !important;
}
.fs--h3{
  font-size: 1.4rem !important;
}

/* button xem thêm dành cho seo */
/* * =====button hiển thị xem thêm nội dung====== */
*/
/* SEO content collapse */
.btn-main {
  position: relative;
  isolation: isolate;
  overflow: visible;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: #ffffff;
  background: var(--color-main);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.3s ease,
    box-shadow 0.3s ease;
}

#noidung {
  max-height: 130px;
  overflow: hidden;
  padding-bottom: 50px;
  position: relative;
}

#noidung.show-full-content {
  max-height: none !important;
  overflow: visible;
  padding-bottom: 0;
}

.hide-content {
  background: linear-gradient(transparent, #ffffff 100%);
  /* background: #f9f9f9; */
  bottom: 0;
  left: 0;
  padding: 50px 0 0;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 1;
}

.hide-content.removeBlur {
  background: transparent !important;
  padding-top: 10px;
}

#noidung .hide-content .buttons-common {
  display: flex;
  justify-content: center;
}

#noidung .btn-view-full-content {
  min-width: 135px;
  min-height: 42px;
  border-radius: 999px;
}

#noidung .btn-view-full-content .blob-txt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--color-main);
}

#noidung .btn-view-full-content:hover .blob-txt {
  color: #fff;
}

#noidung .btn-view-full-content.is-show .blob-txt {
  color: var(--color-main);
}
#noidung .btn-view-full-content.is-show:hover .blob-txt {
  color: #fff;
}

#noidung.show-full-content .hide-content {
  position: relative;
  padding-top: 15px;
}

/* Blob button effect */
.blob-txt {
  position: relative;
  z-index: 2;
  color: #000;
}

.blob-btn {
  z-index: 1;
  position: relative;
  transition: color 0.5s;
  box-shadow: none !important;
  overflow: hidden;
  border: 1px solid var(--color-main);
}

.blob-btn.btn-main {
  overflow: hidden;
  background: transparent;
  color: var(--color-main);
}

.blob-btn.btn-main:hover {
  color: #fff;
}

.blob-btn:before {
  content: "";
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 0 solid var(--color-main);
}

.blob-btn:after {
  content: "";
  z-index: -2;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 100%;
  height: 100%;
  transition: all 0.3s 0.2s;
}

.blob-btn.active .blob-txt,
.blob-btn:hover .blob-txt {
  color: #fff;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.blob-btn__inner {
  z-index: 0;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.blob-btn__blobs {
  position: relative;
  display: block;
  height: 100%;
  filter: url("#goo");
}

.blob-btn__blob {
  position: absolute;
  top: 2px;
  width: 25%;
  height: 100%;
  background: var(--color-main);
  border-radius: 100%;
  transform: translate3d(0, 150%, 0) scale(1.7);
  transition: transform 0.45s;
}

@supports (filter: url("#goo")) {
  .blob-btn__blob {
    transform: translate3d(0, 150%, 0) scale(1.7);
  }
}

.blob-btn__blob:nth-child(1) {
  left: 0%;
  transition-delay: 0s;
}

.blob-btn__blob:nth-child(2) {
  left: 30%;
  transition-delay: 0.08s;
}

.blob-btn__blob:nth-child(3) {
  left: 60%;
  transition-delay: 0.16s;
}

.blob-btn__blob:nth-child(4) {
  left: 90%;
  transition-delay: 0.24s;
}

.blob-btn.active .blob-btn__blob,
.blob-btn:hover .blob-btn__blob {
  transform: translateZ(0) scale(1.7);
}

.blob-filter-svg {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

/* fix */
.news_info_right:hover h3 {
  color: var(--color-subr);
}
/* fix phần sticky sidebar danh mục sản phẩm */
@media (min-width: 992px) {
  .col_left {
    position: sticky;
    top: 90px;
    z-index: 10;
    align-self: flex-start;
  }
}

/* fix banner giới thiệu */
/* .banner-qc {
    width: 100%;
    aspect-ratio: 1366 / 360;
    overflow: hidden;
}

.banner-qc img {
    width: 100%;
    height: 100%;
    object-fit: fit;
} */
