@charset "UTF-8";
:root {
  --color-main: #005EB2;
  --color-text-menu: #0958A8;
  --color-text-menu-2: #090D14;
  --color-gradient-main: linear-gradient(90deg, #0957A7 0%, #013C92 100%);
  --color-gradient-main-2: linear-gradient(90deg, #013C92 0%, #0957A7 100%);
  --color-gradient-main-3: linear-gradient(90deg, #0958A8 0%, #003B91 100%);
  --color-white: #fff;
  --color-black: #000;
  --color-border: #E2E2E2;
  --color-main-hotline: #DC2626;
  --color-price: #DC2626;
  --w-container: 1550px;
  --fs-text: 16px;
  --h-header-top: 40px;
  --fs-text-module: 22px;
  --h-header-mid: 110px;
  --h-header-bot: 50px;
  --mgb-30: 30px;
  --mgb-20: 20px;
  --fs-text-small: 16px;
}

@media (max-width: 1600px) {
  :root {
    --w-container: 1320px;
  }
}
@media (max-width: 1400px) {
  :root {
    --w-container: 1140px;
    --fs-text-small: 15px;
  }
}
@media (max-width: 1200px) {
  :root {
    --w-container: 960px;
  }
}
@media (max-width: 991px) {
  :root {
    --fs-text: 15px;
    --w-container: 720px;
    --h-header-mid: 60px;
  }
}
@media (max-width: 767px) {
  :root {
    --fs-text-module: 20px;
    --w-container: 540px;
    --mgb-30: 15px;
    --mgb-20: 15px;
    --fs-text-small: 13px;
  }
}
@media (max-width: 577px) {
  :root {
    --w-container: 100%;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

.container {
  width: var(--w-container);
  padding-left: 15px;
  padding-right: 15px;
  margin: auto;
}

body {
  top: 0 !important;
  padding-top: calc(var(--h-header-top) + var(--h-header-mid) + var(--h-header-bot));
}
@media (max-width: 991px) {
  body {
    padding-top: calc(var(--h-header-top) + var(--h-header-mid));
  }
}

html {
  font-family: "Inter", sans-serif;
  font-size: var(--fs-text);
}

img, svg {
  max-width: 100%;
  height: auto;
}

.dot-typeI .owl-carousel {
  position: relative;
}
.dot-typeI .owl-carousel .owl-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
}
.dot-typeI .owl-carousel .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--color-white);
  transition: background-color 0.3s;
}
.dot-typeI .owl-carousel .owl-dots .owl-dot.active {
  background-color: var(--color-white);
}

.dot-typeII .owl-carousel .owl-dots {
  display: flex;
  justify-content: center;
}
.dot-typeII .owl-carousel .owl-dots .owl-dot {
  width: 11px;
  height: 11px;
  margin: 0 5px;
  border-radius: 50%;
  background-color: #E5E5E5;
  transition: background-color 0.3s;
}
.dot-typeII .owl-carousel .owl-dots .owl-dot.active {
  background-color: var(--color-main);
}

.nav-typeI .owl-carousel {
  position: relative;
}
.nav-typeI .owl-carousel .owl-nav .owl-prev, .nav-typeI .owl-carousel .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-white);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}
SVG .nav-typeI .owl-carousel .owl-nav .owl-prev:hover svg path, SVG .nav-typeI .owl-carousel .owl-nav .owl-next:hover svg path {
  fill: var(--color-white);
}
SVG .nav-typeI .owl-carousel .owl-nav .owl-prev:hover, SVG .nav-typeI .owl-carousel .owl-nav .owl-next:hover {
  background: var(--color-gradient-main);
}
.nav-typeI .owl-carousel .owl-nav .owl-prev {
  left: 0;
}
.nav-typeI .owl-carousel .owl-nav .owl-prev span {
  margin-left: -2px;
  margin-top: 4px;
}
.nav-typeI .owl-carousel .owl-nav .owl-next {
  right: 0;
}
.nav-typeI .owl-carousel .owl-nav .owl-next span {
  margin-left: 4px;
  margin-top: 3px;
}
@media (max-width: 1400px) {
  .nav-typeI .owl-carousel .owl-nav .owl-prev, .nav-typeI .owl-carousel .owl-nav .owl-next {
    width: 30px;
    height: 30px;
  }
}

.link {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 5;
  display: block;
}

.popup-video {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateY(10px);
  pointer-events: none;
}
.popup-video.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.popup-video .wrapper {
  width: 50%;
  max-height: 70%;
  aspect-ratio: 16/9;
  background: #fff;
  margin: auto;
  position: relative;
  z-index: 1;
}
.popup-video .wrapper .video {
  width: 100%;
  height: 100%;
}
.popup-video .wrapper .video iframe,
.popup-video .wrapper .video video {
  display: block;
  width: 100%;
  height: 100%;
}
.popup-video .close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
  cursor: pointer;
  background: #fff;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .popup-video .wrapper {
    width: 100%;
  }
  .popup-video .close {
    top: unset;
    bottom: -50px;
    right: 50%;
    transform: translateX(50%);
  }
}

.btn-detail a {
  display: inline-block;
  color: var(--color-white);
  border-radius: 23.5px;
  background: var(--color-gradient-main-3);
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
}
.btn-detail a:hover {
  background: var(--color-white);
  border-color: var(--color-main);
  color: var(--color-main);
}

.title-typeI {
  position: relative;
  padding-left: 30px;
  font-size: 28px;
  font-weight: 600;
  color: var(--color-text-menu-2);
  text-decoration: none;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.title-typeI:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 26px;
  background: var(--color-main);
  border-radius: 3.5px;
}
@media (max-width: 991px) {
  .title-typeI {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .title-typeI {
    font-size: 18px;
  }
}

.title-typeII {
  color: var(--color-text-menu-2);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.3px;
}
@media (max-width: 767px) {
  .title-typeII {
    font-size: 20px;
  }
}

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

.mb-3 {
  margin-bottom: 30px;
}

.item-option {
  display: flex;
  align-items: center;
}
.item-option .icon {
  width: 50px;
  height: 50px;
  margin-right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.item-option .icon img {
  object-fit: contain;
}
.item-option .txt {
  font-size: 16px;
  flex: 1;
}
.item-option .txt > p {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 5px;
}
@media (max-width: 1200px) {
  .item-option .txt {
    font-size: 14px;
  }
  .item-option .txt > p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .item-option {
    width: calc((100% - 30px) / 3);
  }
  .item-option .icon {
    width: 35px;
    height: 35px;
    margin-right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .item-option .icon img {
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .item-option {
    width: 100%;
  }
}

.link-all {
  text-decoration: none;
  color: var(--color-text-menu);
  display: flex;
  align-items: center;
  gap: 10px;
}
.link-all .icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.link-all:hover {
  color: var(--color-main-hotline);
}
.link-all:hover .icon svg path {
  fill: var(--color-main-hotline);
}

.add-to-cart {
  border-radius: 23.5px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  gap: 15px;
  border: 1px solid var(--color-main);
  color: var(--color-main);
  font-style: normal;
  font-weight: 600;
  line-height: 48px; /* 342.857% */
  letter-spacing: -0.3px;
  cursor: pointer;
}
.add-to-cart .icon {
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.add-to-cart:hover {
  background: linear-gradient(90deg, #0957A7 0%, #013C92 100%);
  color: var(--color-white);
}
.add-to-cart:hover .icon svg path, .add-to-cart:hover .icon svg rect {
  fill: var(--color-white);
}
@media (max-width: 767px) {
  .add-to-cart {
    font-size: 12px;
    height: 35px;
  }
}

.item-trade-mark {
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 20px;
}
.item-trade-mark .img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 462/318;
  display: block;
}
.item-trade-mark .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.3s linear;
}
.item-trade-mark .img-logo {
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  height: 91px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.item-trade-mark .img-logo img {
  object-fit: contain;
  width: initial;
  height: 70%;
}
.item-trade-mark:hover .img img {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .item-trade-mark {
    margin-bottom: 0;
  }
}

.item-news-index .img {
  display: block;
  overflow: hidden;
  aspect-ratio: 717/416;
}
.item-news-index .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.item-news-index .info {
  padding: 20px;
  position: relative;
  padding-top: 40px;
}
.item-news-index .info .date {
  position: absolute;
  top: -16px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #003B91;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.3px;
  width: 132px;
  height: 39px;
  z-index: 1;
  background: var(--color-white);
  border-radius: 18.5px;
}
.item-news-index .info .date .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.item-news-index .info h3 {
  margin-bottom: 20px;
}
.item-news-index .info h3 a {
  color: var(--color-text-menu-2);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.3px;
  text-decoration: none;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.item-news-index .info h3 a:hover {
  color: var(--color-main);
}
.item-news-index .info .desc {
  margin-bottom: 20px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
@media (max-width: 1400px) {
  .item-news-index .info {
    font-size: 15px;
  }
  .item-news-index .info h3 a {
    font-size: 18px;
  }
}

.item-handbook {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--color-border);
}
.item-handbook:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.item-handbook .img {
  width: 44%;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 329/189;
}
.item-handbook .img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item-handbook .info {
  width: 56%;
  padding-right: 30px;
}
.item-handbook .info .date {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
  color: #003B91;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.3px;
}
.item-handbook .info .date .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.item-handbook .info h3 a {
  color: var(--color-text-menu-2);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.3px;
  text-decoration: none;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.item-handbook .info h3 a:hover {
  color: var(--color-main);
}
@media (max-width: 1400px) {
  .item-handbook .info h3 a {
    font-size: 16px;
  }
}

.img img {
  transition: all 0.3s linear;
}
.img:hover img {
  transform: scale(1.05);
}

.banner-module {
  width: 100%;
  aspect-ratio: 1920/514;
  overflow: hidden;
}
.banner-module img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mb-30 {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .mb-30 {
    margin-bottom: 15px;
  }
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding-top: 20px;
  align-items: center;
  padding-bottom: 20px;
  gap: 15px;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #4B5563;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.32px;
}
.breadcrumb li a {
  color: #4B5563;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.32px;
  text-decoration: none;
  display: flex;
  gap: 15px;
  align-items: center;
}
.breadcrumb li a:hover {
  color: var(--color-main);
}
.breadcrumb li .active {
  color: var(--color-main);
}

.hidden {
  display: none;
}

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

input, textarea {
  height: 44px;
  width: 100%;
  border-radius: 6px;
  border: 1px solid #DDD;
  background: #FFF;
  padding-left: 15px;
  font-size: 16px;
  font-weight: 400;
}
input::placeholder, textarea::placeholder {
  font-size: 16px;
  font-weight: 400;
}
input:focus, textarea:focus {
  outline: 1px solid var(--color-main);
}
input.error, textarea.error {
  border: 1px solid red;
  outline: 1px solid red;
}

label.error {
  display: none !important;
}

textarea {
  resize: none;
  height: 138px;
  padding-top: 15px;
}

button.submit {
  border-radius: 6px;
  border: 1px solid #0958A8;
  background: #0958A8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--color-white);
  padding: 7px 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}
button.submit:hover {
  color: var(--color-main);
  background: var(--color-white);
}
button.submit:hover svg path {
  stroke: var(--color-main);
}

/* HTML: <div class="loader"></div> */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s linear;
}
.loading.active {
  opacity: 1;
  pointer-events: all;
}

.loader {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
  border: 4px solid rgba(0, 0, 0, 0);
  border-radius: 50%;
  border-color: #fff rgba(0, 0, 0, 0);
  animation: l16 1s infinite linear;
  z-index: 12;
}

.loader::before,
.loader::after {
  content: "";
  grid-area: 1/1;
  margin: 2px;
  border: inherit;
  border-radius: 50%;
}

.loader::before {
  border-color: #f03355 rgba(0, 0, 0, 0);
  animation: inherit;
  animation-duration: 0.5s;
  animation-direction: reverse;
}

.loader::after {
  margin: 8px;
}

@keyframes l16 {
  100% {
    transform: rotate(1turn);
  }
}
.item-why-choose-gsx {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 12px;
  background: var(--color-white);
  box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 57px 40px;
}
.item-why-choose-gsx .icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}
.item-why-choose-gsx h3 {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 15px;
}
.item-why-choose-gsx .desc {
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.32px;
}
@media (max-width: 767px) {
  .item-why-choose-gsx {
    padding: 20px;
  }
  .item-why-choose-gsx h3 {
    font-size: 18px;
  }
  .item-why-choose-gsx .desc {
    font-size: 14px;
  }
}

.btn-apply {
  color: var(--color-main);
  font-weight: 400;
  border: 1px solid var(--color-main);
  background: var(--color-white);
  display: inline-block;
  padding: 5px 20px;
  border-radius: 8px;
}
.btn-apply:hover {
  background: var(--color-main);
  color: var(--color-white);
}

.btn-apply-2 {
  color: var(--color-white);
  border: 1px solid var(--color-main);
  background: var(--color-main);
  display: inline-block;
  padding: 10px 30px;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}
.btn-apply-2:hover {
  background: var(--color-white);
  color: var(--color-main);
}

.page {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 50px;
}
.page span,
.page a,
.page div {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-main);
  background: var(--color-white);
  position: relative;
  cursor: pointer;
  border-radius: 4px;
  text-decoration: none;
  color: var(--color-text-menu-2);
}
.page span:hover, .page span.active-page,
.page a:hover,
.page a.active-page,
.page div:hover,
.page div.active-page {
  background: var(--color-main);
  color: var(--color-white);
  border-color: var(--color-main);
}
.page span:hover svg path, .page span.active-page svg path,
.page a:hover svg path,
.page a.active-page svg path,
.page div:hover svg path,
.page div.active-page svg path {
  stroke: var(--color-white);
}
.page span.disabled,
.page a.disabled,
.page div.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.page .prev,
.page .next {
  width: 35px;
  height: 35px;
}

.fb-like {
  overflow: hidden;
  width: 130px;
  height: 20px;
  display: block !important;
}

.btn-apply-show {
  background: var(--color-text-menu);
  border-radius: 5px;
  padding: 10px 25px;
  color: var(--color-white);
  cursor: pointer;
}

.detail-content h2,
.detail-content h3,
.detail-content h4,
.detail-content h5,
.detail-content h6 {
  margin-bottom: 15px;
  line-height: 1.5;
  color: var(--color-text-menu-2);
}
.detail-content h2,
.detail-content h3,
.detail-content h4 {
  font-weight: 700;
}
.detail-content p {
  line-height: 1.5;
  margin-bottom: 15px;
}
.detail-content p:last-child {
  margin-bottom: 0;
}
.detail-content img {
  height: initial !important;
}
.detail-content figure {
  margin-bottom: 15px;
}
.detail-content figure img {
  display: block;
}
.detail-content figure figcaption {
  text-align: center;
  padding: 5px 15px;
  font-size: var(--fs-text-min);
  font-style: italic;
}
.detail-content ul,
.detail-content ol {
  margin-bottom: 15px;
  padding-left: 25px;
}
.detail-content ul li,
.detail-content ol li {
  padding-bottom: 5px;
  line-height: 1.5;
}
.detail-content ul li:last-child,
.detail-content ol li:last-child {
  padding-bottom: 0;
}
.detail-content ul li::marker,
.detail-content ol li::marker {
  color: var(--color-text-menu-2);
}
.detail-content ul {
  list-style-type: disc;
}
.detail-content ul li {
  list-style-type: disc;
  color: var(--color-text-menu-2);
}
.detail-content ol {
  list-style-type: decimal;
}
.detail-content ol li {
  list-style-type: decimal;
}
.detail-content .image-center {
  display: flex;
  justify-content: center;
  margin: 0 auto 15px;
}
.detail-content .image-center img {
  margin: auto;
}
.detail-content .image-left {
  float: left;
  margin-bottom: 15px;
  margin-right: 15px;
}
.detail-content .image-right {
  float: right;
  margin-bottom: 15px;
  margin-left: 15px;
}
.detail-content a {
  text-decoration: underline;
}
.detail-content a:hover {
  color: var(--color-main);
}
.detail-content .button {
  background: var(--color-main-2);
  font-size: var(--fs-text);
  color: #fff;
  text-decoration: none;
  display: table;
  vertical-align: middle;
  padding: 0 25px;
  border-radius: 5px;
  line-height: 35px;
}
.detail-content .button svg {
  margin-left: 10px;
}
.detail-content .button:hover {
  background: var(--color-main);
  color: #fff;
}
.detail-content table {
  margin-bottom: 15px;
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
}
.detail-content table tr th {
  line-height: 1;
  font-weight: 400;
  font-size: var(--fs-text);
  color: var(--color-text-menu-2);
  border: 1px solid var(--color-border);
  border-top-color: var(--color-main);
}
.detail-content table tr th:first-child {
  border-left-color: var(--color-main);
}
.detail-content table tr th:last-child {
  border-right-color: var(--color-main);
}
.detail-content table tr th,
.detail-content table tr td {
  font-size: var(--fs-text);
  line-height: 1.5;
  padding: 5px;
}
.detail-content iframe {
  max-width: 100%;
  aspect-ratio: 16/9;
}
.detail-content .iframe_video {
  margin-bottom: 15px;
  aspect-ratio: 16/9;
}
.detail-content .iframe_video iframe,
.detail-content .iframe_video video {
  width: 100%;
  display: block;
  height: 100%;
}

.grecaptcha-badge {
  display: none !important;
}

.flex-sidebar {
  display: flex;
}
.flex-sidebar .main-module {
  width: 70%;
  padding-right: 56px;
}
.flex-sidebar .right-side {
  width: 30%;
}
@media (max-width: 1400px) {
  .flex-sidebar .main-module {
    width: 65%;
    padding-right: 20px;
  }
  .flex-sidebar .right-side {
    width: 35%;
  }
}
@media (max-width: 991px) {
  .flex-sidebar {
    flex-wrap: wrap;
  }
  .flex-sidebar .main-module {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
  .flex-sidebar .right-side {
    width: 100%;
  }
}

.title-article .title {
  color: var(--color-text-menu-2);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 15px;
}

.date-article {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--color-main);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.3px;
  margin-bottom: 15px;
}

.clrindexknh {
  border-radius: 7px;
  border: 1px solid #E0E0E0;
  background: #F8F8F8;
  padding: 20px;
  margin-bottom: 30px;
}
.clrindexknh .indxtitle {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
}
.clrindexknh a {
  text-decoration: none;
  color: var(--color-text-menu-2);
  display: block;
  margin-bottom: 15px;
  font-size: 14px;
}
.clrindexknh a:hover {
  color: var(--color-main);
}

.pad-botmodule {
  padding-bottom: 50px;
}

.date-info {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--color-main);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 15px;
}
.date-info .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.border-bottom {
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 30px;
  padding-bottom: 30px;
}
@media (max-width: 991px) {
  .border-bottom {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}

.btn-main-2 {
  background: var(--color-main);
  color: var(--color-white);
  display: inline-block;
  text-decoration: none;
  padding: 7px 20px;
  border-radius: 30px;
  border: 1px solid var(--color-main);
}
.btn-main-2:hover {
  background: var(--color-white);
  color: var(--color-main);
}

.item-module-product {
  position: relative;
}
.item-module-product .img {
  display: block;
  aspect-ratio: 288/271;
  border-radius: 16px;
  overflow: hidden;
}
.item-module-product .block-img {
  position: relative;
  margin-bottom: 65px;
}
.item-module-product .block-img .icon {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 95px;
  height: 95px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #036DDE 0%, #0958A8 100%);
  border: 10px solid var(--color-white);
}
.item-module-product .block-img .icon img {
  filter: brightness(0) invert(1);
  width: 48px;
  height: auto;
  max-height: 60%;
  max-width: 60%;
  display: block;
  object-fit: contain;
}
.item-module-product h3 {
  text-align: center;
}
.item-module-product h3 a {
  text-decoration: none;
  color: var(--color-text-menu-2);
  font-size: 16px;
  font-weight: 600;
}
.item-module-product h3 a:hover {
  color: var(--color-main);
}

.py-block {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 1400px) {
  .py-block {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .py-block {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.jc-bs3-container {
  max-width: 430px;
}

.alrt-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
}
.alrt-popup.show {
  opacity: 1;
  pointer-events: all;
}
.alrt-popup .wapper {
  background: #fff;
  width: 320px;
  border-radius: 5px;
  overflow: hidden;
}
.alrt-popup .wapper .main {
  padding: 15px;
  text-align: center;
}
.alrt-popup .wapper .title {
  color: #fff;
  text-align: center;
  font-weight: 400;
  padding: 15px 10px;
  margin-bottom: 0;
  background: var(--color-main);
}
.alrt-popup .wapper .close-alrt {
  text-align: center;
  margin: 0 auto 10px auto;
  border: 2px solid #bf2929;
  padding: 5px 15px;
  cursor: pointer;
  width: 205px;
  height: 38px;
  border-radius: 5px;
  color: #bf2929;
  display: flex;
  align-items: center;
  justify-content: center;
}
.alrt-popup.success .wapper .title {
  background: #09e493;
}
.alrt-popup.success .wapper .close-alrt {
  display: none;
}

#AppHost {
  display: none;
}

a {
  text-decoration: none;
}

.title-module {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
@media (max-width: 700px) {
  .title-module {
    flex-direction: column;
    row-gap: 5px;
  }
}
.title-module h1 {
  font-size: var(--fs-text-module);
  color: var(--color-main);
  font-weight: 700;
  line-height: 1.4;
}
.title-module b {
  color: var(--color-main);
  font-weight: 700;
  font-size: var(--fs-text-module);
  padding-bottom: 5px;
  padding-left: 5px;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 20;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  opacity: 0;
  transition: all 0.5s ease;
}
.overlay.show {
  opacity: 1;
  pointer-events: all;
  display: flex !important;
}
.overlay.show1 {
  z-index: 999;
  opacity: 1;
  pointer-events: all;
  display: flex !important;
}

.skiptranslate {
  display: none;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--color-white);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
header .top {
  background: var(--color-gradient-main);
  transition: height 0.3s linear;
  height: var(--h-header-top);
}
header .top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--h-header-top);
  color: var(--color-white);
  font-weight: 500;
}
header .top .container .language-block {
  display: flex;
  align-items: center;
  gap: 10px;
  height: var(--h-header-top);
}
header .top .container .language-block .icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .top .container .language-block ul {
  list-style: none;
}
header .top .container .language-block .dropdown-lang {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  height: 100%;
}
header .top .container .language-block .dropdown-lang .list-lang {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 10;
  background: var(--color-white);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
header .top .container .language-block .dropdown-lang .list-lang li {
  color: var(--color-black);
  padding: 5px 10px;
  white-space: nowrap;
  border-bottom: 1px solid var(--color-border);
  cursor: pointer;
}
header .top .container .language-block .dropdown-lang .list-lang li:last-child {
  border-bottom: none;
}
header .top .container .language-block .dropdown-lang .list-lang li:hover {
  background: var(--color-gradient-main);
  color: var(--color-white);
}
header .top .container .language-block:hover .list-lang {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
@media (max-width: 767px) {
  header .top .container > p {
    font-size: 12px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
  }
}
header .mid {
  transition: height 0.3s linear;
  height: var(--h-header-mid);
}
header .mid .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--h-header-mid);
}
@media (max-width: 991px) {
  header .mid .container {
    gap: 15px;
  }
}
header .mid .container .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 103px;
  height: 84px;
}
header .mid .container .logo img {
  width: 100%;
  object-fit: contain;
}
@media (max-width: 991px) {
  header .mid .container .logo {
    width: 60px;
    height: 49px;
  }
}
header .mid .container .block-search {
  background: #F3F4F6;
  width: 50%;
  position: relative;
  border-radius: 8px;
  height: 46px;
  margin-right: auto;
  margin-left: 100px;
}
header .mid .container .block-search input {
  border: 0;
  background: transparent;
  width: 100%;
  height: 100%;
  font-size: 16px;
  padding-left: 15px;
}
header .mid .container .block-search input::placeholder {
  font-size: 16px;
}
header .mid .container .block-search .btn-search {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1400px) {
  header .mid .container .block-search {
    width: 35%;
  }
}
@media (max-width: 1200px) {
  header .mid .container .block-search {
    margin-left: 30px;
  }
}
@media (max-width: 991px) {
  header .mid .container .block-search {
    margin-left: 15px;
    flex: 1;
  }
}
@media (max-width: 767px) {
  header .mid .container .block-search {
    position: fixed;
    top: calc(var(--h-header-top) + var(--h-header-mid));
    left: 0;
    right: 0;
    width: 100%;
    margin-left: 0;
    border-radius: 0;
    background: var(--color-main);
    padding: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.3s linear;
  }
  header .mid .container .block-search.active {
    height: 46px;
    padding: 5px;
  }
  header .mid .container .block-search input {
    background: var(--color-white);
  }
}
header .mid .container .action {
  display: flex;
  gap: 60px;
}
header .mid .container .action .hotline,
header .mid .container .action .text {
  display: flex;
  align-items: center;
}
header .mid .container .action .hotline {
  font-size: 17px;
}
header .mid .container .action .hotline .icon {
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
header .mid .container .action .hotline a {
  color: var(--color-main-hotline);
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -0.3px;
  text-decoration: none;
  margin-left: 5px;
}
header .mid .container .action .hotline a:hover {
  color: var(--color-main);
}
@media (max-width: 991px) {
  header .mid .container .action .hotline {
    display: none;
  }
}
header .mid .container .action .hotline-mb {
  display: none;
}
header .mid .container .action .cart {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 17px;
  position: relative;
}
header .mid .container .action .cart .icon {
  width: 31px;
  height: 29px;
  position: relative;
}
header .mid .container .action .cart .icon .count-cart {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #F32428;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  font-size: 12px;
}
header .mid .container .action .cart:hover .tooltips-gh {
  pointer-events: all;
  opacity: 1;
  top: 100%;
}
@media (max-width: 991px) {
  header .mid .container .action {
    gap: 15px;
  }
  header .mid .container .action .hotline-mb {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 767px) {
  header .mid .container .action {
    margin-left: auto;
  }
  header .mid .container .action .btn-search-show-mb {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .mid .container .action .hotline-mb, header .mid .container .action .cart {
    display: none;
  }
}
header .bot {
  border-top: 1px solid var(--color-border);
}
header .bot ul {
  list-style: none;
}
header .bot .menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--h-header-bot);
}
header .bot .menu > li {
  height: 100%;
  position: relative;
}
header .bot .menu > li > a {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-menu-2);
  text-decoration: none;
}
@media (min-width: 992px) {
  header .bot .menu > li .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transform: translateY(10px);
    opacity: 0;
    z-index: 2;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  header .bot .menu > li .sub-menu li {
    position: relative;
  }
  header .bot .menu > li .sub-menu li:last-child {
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
  }
  header .bot .menu > li .sub-menu li:last-child > a {
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
  }
  header .bot .menu > li .sub-menu li a {
    padding: 7px 15px;
    display: block;
    width: 200px;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-white);
    text-decoration: none;
    color: var(--color-text-menu-2);
  }
  header .bot .menu > li .sub-menu li:last-child a {
    border-bottom: none;
  }
  header .bot .menu > li .sub-menu li .sub-menu-2 {
    position: absolute;
    top: 0;
    z-index: 2;
    left: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  header .bot .menu > li .sub-menu li:hover .sub-menu-2 {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}
@media (min-width: 992px) and (max-width: 1400px) {
  header .bot .menu > li .sub-menu li a {
    font-size: 14px;
    width: 180px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  header .bot .menu > li .sub-menu li a {
    font-size: 12px;
  }
}
@media (min-width: 992px) {
  header .bot .menu > li .sub-menu.product {
    position: fixed;
    top: calc(var(--h-header-top) + var(--h-header-mid) + var(--h-header-bot));
    left: calc((100vw - var(--w-container) + 15px) / 2);
    width: calc(var(--w-container) - 30px);
    background: var(--color-white);
    display: flex;
    flex-wrap: wrap;
    padding: 30px 50px;
  }
  header .bot .menu > li .sub-menu.product li {
    width: 20%;
    display: flex;
    align-items: center;
  }
  header .bot .menu > li .sub-menu.product li a {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 0;
  }
  header .bot .menu > li .sub-menu.product li a span:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
  }
}
@media (min-width: 992px) and (max-width: 1400px) {
  header .bot .menu > li .sub-menu.product {
    padding: 15px;
  }
  header .bot .menu > li .sub-menu.product li a {
    font-size: 14px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  header .bot .menu > li .sub-menu.product li a {
    font-size: 12px;
  }
}
@media (min-width: 992px) {
  header .bot .menu > li:hover .sub-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  header .bot .menu > li:nth-last-child(-n+3) .sub-menu li .sub-menu-2 {
    left: unset;
    right: 100%;
  }
}
header .bot .menu a.active,
header .bot .menu a:hover {
  color: var(--color-main) !important;
}
@media (max-width: 1400px) {
  header .bot .menu > li > a {
    font-size: 16px;
  }
}
@media (max-width: 1200px) {
  header .bot .menu > li > a {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  header .bot .menu {
    position: fixed;
    top: calc(var(--h-header-mid) + var(--h-header-top));
    left: 0;
    z-index: 99;
    background: var(--color-white);
    width: 40%;
    height: 100vh;
    display: block;
    overflow-y: auto;
    border-top: 1px solid var(--color-border);
    transform: translateX(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  header .bot .menu.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
  header .bot .menu > li {
    height: auto;
    position: relative;
  }
  header .bot .menu > li > a {
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    display: block;
    border-bottom: 1px solid var(--color-border);
  }
  header .bot .menu > li .collapsible-plus {
    position: absolute;
    top: 0;
    right: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
  }
  header .bot .menu > li .collapsible-plus svg {
    transition: transform 0.3s linear;
  }
  header .bot .menu > li .collapsible-plus.active svg {
    transform: rotate(180deg);
  }
  header .bot .menu > li .sub-menu, header .bot .menu > li .sub-menu-2 {
    display: none;
  }
  header .bot .menu > li .sub-menu li, header .bot .menu > li .sub-menu-2 li {
    height: 40px;
  }
  header .bot .menu > li .sub-menu li a, header .bot .menu > li .sub-menu-2 li a {
    height: 100%;
    display: block;
    line-height: 40px;
    padding-left: 30px;
    border-bottom: 1px solid var(--color-border);
    width: 100%;
    text-decoration: none;
    color: var(--color-text-menu-2);
  }
  header .bot .menu > li .sub-menu.product li a, header .bot .menu > li .sub-menu-2.product li a {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  header .bot .menu > li .sub-menu.product li a span:first-child, header .bot .menu > li .sub-menu-2.product li a span:first-child {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .bot .menu > li .sub-menu.product li a span:first-child img, header .bot .menu > li .sub-menu-2.product li a span:first-child img {
    max-height: 90%;
    max-width: 90%;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  header .bot .menu {
    width: 100%;
  }
}
@media (min-width: 992px) {
  header.mini .top, header.mini .mid {
    height: 0;
    overflow: hidden;
  }
  header.mini .bot .menu > li .sub-menu.product {
    top: var(--h-header-bot);
  }
}
@media (max-width: 991px) {
  header.mini .top {
    height: 0;
    overflow: hidden;
  }
  header.mini .bot .menu {
    top: var(--h-header-mid);
  }
}
@media (max-width: 767px) {
  header.mini .mid .container .block-search {
    top: var(--h-header-mid);
  }
}

.touch-menu {
  display: block;
  height: 36px;
  width: 36px;
  position: relative;
}
.touch-menu span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-main);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2px;
  transition: transform 0.5s linear;
}
.touch-menu span:before, .touch-menu span:after {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--color-main);
  position: absolute;
  top: 50%;
  content: "";
  transform: translateY(-50%);
  transition: transform 0.5s linear, opacity 0.5s linear;
}
.touch-menu span:after {
  top: initial;
  bottom: -9px;
}
.touch-menu span:before {
  top: -7px;
}
.touch-menu.active span {
  transform: rotate(-45deg);
  width: 32px;
}
.touch-menu.active span:before {
  opacity: 0;
}
.touch-menu.active span:after {
  transform: rotate(90deg);
  top: 0;
}

.overlay-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.overlay-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.action-cart {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
@media (max-width: 700px) {
  .action-cart {
    margin-bottom: 10px;
  }
}
.action-cart.sm .action-left .quantity-item {
  display: flex;
  border: 1px solid #CDCDCD;
  align-items: center;
  border-radius: 4px;
  overflow: hidden;
}
.action-cart.sm .action-left .quantity-item .minus, .action-cart.sm .action-left .quantity-item .plus {
  height: 28px;
  width: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 700px) {
  .action-cart.sm .action-left .quantity-item .minus, .action-cart.sm .action-left .quantity-item .plus {
    height: 30px;
    width: 30px;
  }
  .action-cart.sm .action-left .quantity-item .minus svg, .action-cart.sm .action-left .quantity-item .plus svg {
    width: 10px;
  }
}
.action-cart.sm .action-left .quantity-item .minus {
  border-right: 1px solid #CDCDCD;
}
.action-cart.sm .action-left .quantity-item input {
  width: 32px;
  height: 28px;
  border: none;
  text-align: center;
  font-size: var(--fs-text-tiny);
  font-weight: 700;
  background: #EFEFEF;
  border-radius: 0;
}
@media (max-width: 700px) {
  .action-cart.sm .action-left .quantity-item input {
    height: 30px;
    width: 30px;
  }
  .action-cart.sm .action-left .quantity-item input svg {
    width: 10px;
  }
}
.action-cart.sm .action-left .quantity-item input[readonly] {
  background: #EFEFEF;
}
.action-cart.sm .action-left .quantity-item .plus {
  border-left: 1px solid #CDCDCD;
}
.action-cart.sm .action-right {
  width: unset;
}
.action-cart .action-right {
  width: 49px;
}
@media (max-width: 700px) {
  .action-cart .action-right {
    width: 32px;
  }
}
.action-cart .action-right .add_to_cart {
  cursor: pointer;
  width: 49px;
  height: 49px;
  border-radius: 49px;
  background: var(--color-gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 700px) {
  .action-cart .action-right .add_to_cart {
    width: 32px;
    height: 32px;
  }
  .action-cart .action-right .add_to_cart svg {
    width: 20px;
  }
}

footer {
  background: #F3F7FF;
}
footer .top {
  border-top: 1px solid #DBE3F2;
}
footer .top .container {
  padding-top: 35px;
  padding-bottom: 35px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  footer .top .container {
    padding-top: 25px;
    padding-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
  }
  footer .top .container .item {
    width: calc((100% - 15px) / 2);
  }
}
@media (max-width: 767px) {
  footer .top .container {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  footer .top .container .item {
    width: 100%;
  }
}
footer .mid {
  border-top: 1px solid #DBE3F2;
  padding-top: 50px;
  padding-bottom: 50px;
}
footer .mid .container {
  display: flex;
  justify-content: space-between;
}
footer .mid .container .ft-col:nth-child(1) {
  width: 20%;
}
footer .mid .container .ft-col:nth-child(1) ul {
  list-style: none;
}
footer .mid .container .ft-col:nth-child(1) ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}
footer .mid .container .ft-col:nth-child(1) ul li .icon {
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0;
  top: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .mid .container .ft-col:nth-child(1) ul li a {
  color: var(--color-text-menu-2);
  text-decoration: none;
}
footer .mid .container .ft-col:nth-child(1) ul li a:hover {
  color: var(--color-main);
}
footer .mid .container .ft-col:nth-child(1) ul li:first-child {
  line-height: 30px;
}
footer .mid .container .ft-col .desc {
  margin-bottom: 30px;
}
footer .mid .container .ft-col .desc p {
  font-size: 14px;
  font-weight: 400;
}
footer .mid .container .ft-col form {
  position: relative;
}
footer .mid .container .ft-col form .icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .mid .container .ft-col form input {
  width: 100%;
  height: 48px;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #D1D5DB;
  background: #FFF;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  padding-left: 45px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.28px;
}
footer .mid .container .ft-col form input::placeholder {
  color: #9CA3AF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.28px;
}
footer .mid .container .ft-col form button {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 74px;
  height: 48px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 0 8px 8px 0;
  background: var(--color-gradient-main);
  color: var(--color-white);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.28px;
  text-transform: uppercase;
}
footer .mid .container .ft-col form button:hover {
  background: var(--color-gradient-main-2);
}
footer .mid .container .ft-col:nth-child(2), footer .mid .container .ft-col:nth-child(3) {
  width: 15%;
}
footer .mid .container .ft-col:nth-child(2) ul, footer .mid .container .ft-col:nth-child(3) ul {
  padding-left: 10px;
}
footer .mid .container .ft-col:nth-child(2) ul li, footer .mid .container .ft-col:nth-child(3) ul li {
  position: relative;
  list-style: none;
}
footer .mid .container .ft-col:nth-child(2) ul li:before, footer .mid .container .ft-col:nth-child(3) ul li:before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  background: var(--color-main);
  border-radius: 50%;
}
footer .mid .container .ft-col:nth-child(2) ul li a, footer .mid .container .ft-col:nth-child(3) ul li a {
  color: var(--color-text-menu-2);
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
}
footer .mid .container .ft-col:nth-child(2) ul li a:hover, footer .mid .container .ft-col:nth-child(3) ul li a:hover {
  color: var(--color-main);
}
footer .mid .container .ft-col:nth-child(3) {
  width: 20%;
}
footer .mid .container .ft-col:nth-child(4) {
  width: 21%;
}
footer .mid .container .ft-col .title {
  color: var(--color-text-menu-2);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 20px;
  display: block;
}
@media (max-width: 1400px) {
  footer .mid .container .ft-col:nth-child(1) {
    width: 25%;
  }
  footer .mid .container .ft-col:nth-child(2) {
    width: 20%;
  }
  footer .mid .container .ft-col:nth-child(3) {
    width: 25%;
  }
  footer .mid .container .ft-col:nth-child(4) {
    width: 25%;
  }
  footer .mid .container .ft-col .title {
    font-size: 15px;
    margin-bottom: 15px;
  }
}
@media (max-width: 1400px) {
  footer .mid {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 991px) {
  footer .mid {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  footer .mid .container {
    flex-wrap: wrap;
    gap: 20px;
  }
  footer .mid .container .ft-col:nth-child(1) {
    width: 100%;
  }
  footer .mid .container .ft-col:nth-child(2), footer .mid .container .ft-col:nth-child(3) {
    width: calc((100% - 20px) / 2);
  }
  footer .mid .container .ft-col:nth-child(4) {
    width: 100%;
  }
}
@media (max-width: 767px) {
  footer .mid {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  footer .mid .container {
    gap: 15px;
  }
  footer .mid .container .ft-col:nth-child(2), footer .mid .container .ft-col:nth-child(3) {
    width: 100%;
  }
}
footer .bot {
  border-top: 1px solid #DBE3F2;
  padding-top: 35px;
  padding-bottom: 35px;
}
footer .bot .container {
  display: flex;
  justify-content: space-between;
}
footer .bot .container .left {
  display: flex;
  align-items: center;
}
footer .bot .container .left .logo {
  width: 86px;
  display: block;
  margin-right: 40px;
}
footer .bot .container .left .copyright {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}
footer .bot .container .right {
  display: flex;
  align-items: center;
}
footer .bot .container .right .item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-white);
}
@media (max-width: 991px) {
  footer .bot {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  footer .bot .container {
    flex-wrap: wrap;
    gap: 15px;
  }
  footer .bot .container .left, footer .bot .container .right {
    width: 100%;
    justify-content: center;
  }
  footer .bot .container .left .logo {
    margin-right: 20px;
  }
  footer .bot .container .right .item {
    margin-left: 15px;
  }
}
@media (max-width: 767px) {
  footer .bot {
    padding-top: 15px;
    padding-bottom: 30px;
  }
  footer .bot .container .left {
    flex-direction: column;
  }
  footer .bot .container .left .logo {
    width: 86px;
    margin-right: 0;
    margin-bottom: 15px;
  }
  footer .bot .container .left .copyright {
    font-size: 14px;
    text-align: center;
    line-height: 1.5;
  }
  footer .bot .container .right {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  footer .bot .container .right .item {
    margin-left: 0;
  }
}

.social-fixed {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 20;
}
.social-fixed a,
.social-fixed div {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  margin: 15px 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
  cursor: pointer;
}
.social-fixed a img,
.social-fixed div img {
  max-width: 80%;
  object-fit: contain;
  max-height: 80%;
  width: initial;
}
.social-fixed a.tele img,
.social-fixed div.tele img {
  max-width: 70%;
  margin-right: 3px;
}
@media (min-width: 0) {
  .social-fixed .coccoc-alo-ph-circle {
    width: 60px;
    height: 60px;
    top: -21px;
    left: -6px;
    position: absolute;
    background-color: transparent;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid red;
    opacity: 0.1;
    -webkit-animation: coccoc-alo-circle-anim 1.2s infinite ease-in-out;
    -moz-animation: coccoc-alo-circle-anim 1.2s infinite ease-in-out;
    -ms-animation: coccoc-alo-circle-anim 1.2s infinite ease-in-out;
    -o-animation: coccoc-alo-circle-anim 1.2s infinite ease-in-out;
    animation: coccoc-alo-circle-anim 1.2s infinite ease-in-out;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
  .social-fixed .coccoc-alo-phone {
    background-color: transparent;
    cursor: pointer;
    z-index: 200000 !important;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -webkit-transition: visibility 0.5s;
    -moz-transition: visibility 0.5s;
    -o-transition: visibility 0.5s;
    transition: visibility 0.5s;
  }
  .social-fixed .coccoc-alo-ph-circle-fill {
    width: 38px;
    height: 38px;
    top: -10px;
    left: 6px;
    position: absolute;
    background-color: #fff;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-animation: coccoc-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -moz-animation: coccoc-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -ms-animation: coccoc-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -o-animation: coccoc-alo-circle-fill-anim 2.3s infinite ease-in-out;
    animation: coccoc-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
  .social-fixed .coccoc-alo-ph-img-circle {
    width: 30px;
    height: 30px;
    top: -8px;
    left: 8px;
    position: absolute;
    z-index: 10;
    background: url("/html/style/images/phone.svg") no-repeat center center;
    background-size: 100% 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    opacity: 1;
    -webkit-animation: coccoc-alo-circle-img-anim 1s infinite ease-in-out;
    -moz-animation: coccoc-alo-circle-img-anim 1s infinite ease-in-out;
    -ms-animation: coccoc-alo-circle-img-anim 1s infinite ease-in-out;
    -o-animation: coccoc-alo-circle-img-anim 1s infinite ease-in-out;
    animation: coccoc-alo-circle-img-anim 1s infinite ease-in-out;
  }
  @-moz-keyframes coccoc-alo-circle-anim {
    0% {
      transform: rotate(0) scale(0.5) skew(1deg);
      opacity: 0.1;
    }
    30% {
      transform: rotate(0) scale(0.7) skew(1deg);
      opacity: 0.5;
    }
    100% {
      transform: rotate(0) scale(1) skew(1deg);
      opacity: 0.1;
    }
  }
  @-webkit-keyframes coccoc-alo-circle-anim {
    0% {
      transform: rotate(0) scale(0.5) skew(1deg);
      opacity: 0.1;
    }
    30% {
      transform: rotate(0) scale(0.7) skew(1deg);
      opacity: 0.5;
    }
    100% {
      transform: rotate(0) scale(1) skew(1deg);
      opacity: 0.1;
    }
  }
  @-o-keyframes coccoc-alo-circle-anim {
    0% {
      transform: rotate(0) scale(0.5) skew(1deg);
      opacity: 0.1;
    }
    30% {
      transform: rotate(0) scale(0.7) skew(1deg);
      opacity: 0.5;
    }
    100% {
      transform: rotate(0) scale(1) skew(1deg);
      opacity: 0.1;
    }
  }
  @keyframes coccoc-alo-circle-anim {
    0% {
      transform: rotate(0) scale(0.5) skew(1deg);
      opacity: 0.1;
    }
    30% {
      transform: rotate(0) scale(0.7) skew(1deg);
      opacity: 0.5;
    }
    100% {
      transform: rotate(0) scale(1) skew(1deg);
      opacity: 0.1;
    }
  }
  @-moz-keyframes coccoc-alo-circle-fill-anim {
    0% {
      transform: rotate(0) scale(0.7) skew(1deg);
      opacity: 0.9;
    }
    50% {
      transform: rotate(0) scale(1) skew(1deg);
      opacity: 0.9;
    }
    100% {
      transform: rotate(0) scale(0.7) skew(1deg);
      opacity: 0.9;
    }
  }
  @-webkit-keyframes coccoc-alo-circle-fill-anim {
    0% {
      transform: rotate(0) scale(0.7) skew(1deg);
      opacity: 0.9;
    }
    50% {
      transform: rotate(0) scale(1) skew(1deg);
      opacity: 0.9;
    }
    100% {
      transform: rotate(0) scale(0.7) skew(1deg);
      opacity: 0.9;
    }
  }
  @-o-keyframes coccoc-alo-circle-fill-anim {
    0% {
      transform: rotate(0) scale(0.7) skew(1deg);
      opacity: 0.9;
    }
    50% {
      transform: rotate(0) scale(1) skew(1deg);
      opacity: 0.9;
    }
    100% {
      transform: rotate(0) scale(0.7) skew(1deg);
      opacity: 0.9;
    }
  }
  @keyframes coccoc-alo-circle-fill-anim {
    0% {
      transform: rotate(0) scale(0.7) skew(1deg);
      opacity: 0.9;
    }
    50% {
      transform: rotate(0) scale(1) skew(1deg);
      opacity: 0.9;
    }
    100% {
      transform: rotate(0) scale(0.7) skew(1deg);
      opacity: 0.9;
    }
  }
  @-moz-keyframes coccoc-alo-circle-img-anim {
    0% {
      transform: rotate(0) scale(1) skew(1deg);
    }
    10% {
      transform: rotate(-25deg) scale(1) skew(1deg);
    }
    20% {
      transform: rotate(25deg) scale(1) skew(1deg);
    }
    30% {
      transform: rotate(-25deg) scale(1) skew(1deg);
    }
    40% {
      transform: rotate(25deg) scale(1) skew(1deg);
    }
    50% {
      transform: rotate(0) scale(1) skew(1deg);
    }
    100% {
      transform: rotate(0) scale(1) skew(1deg);
    }
  }
  @-webkit-keyframes coccoc-alo-circle-img-anim {
    0% {
      transform: rotate(0) scale(1) skew(1deg);
    }
    10% {
      transform: rotate(-25deg) scale(1) skew(1deg);
    }
    20% {
      transform: rotate(25deg) scale(1) skew(1deg);
    }
    30% {
      transform: rotate(-25deg) scale(1) skew(1deg);
    }
    40% {
      transform: rotate(25deg) scale(1) skew(1deg);
    }
    50% {
      transform: rotate(0) scale(1) skew(1deg);
    }
    100% {
      transform: rotate(0) scale(1) skew(1deg);
    }
  }
  @-o-keyframes coccoc-alo-circle-img-anim {
    0% {
      transform: rotate(0) scale(1) skew(1deg);
    }
    10% {
      transform: rotate(-25deg) scale(1) skew(1deg);
    }
    20% {
      transform: rotate(25deg) scale(1) skew(1deg);
    }
    30% {
      transform: rotate(-25deg) scale(1) skew(1deg);
    }
    40% {
      transform: rotate(25deg) scale(1) skew(1deg);
    }
    50% {
      transform: rotate(0) scale(1) skew(1deg);
    }
    100% {
      transform: rotate(0) scale(1) skew(1deg);
    }
  }
  @keyframes coccoc-alo-circle-img-anim {
    0% {
      transform: rotate(0) scale(1) skew(1deg);
    }
    10% {
      transform: rotate(-25deg) scale(1) skew(1deg);
    }
    20% {
      transform: rotate(25deg) scale(1) skew(1deg);
    }
    30% {
      transform: rotate(-25deg) scale(1) skew(1deg);
    }
    40% {
      transform: rotate(25deg) scale(1) skew(1deg);
    }
    50% {
      transform: rotate(0) scale(1) skew(1deg);
    }
    100% {
      transform: rotate(0) scale(1) skew(1deg);
    }
  }
}
@media (min-width: 992px) {
  .social-fixed .coccoc-alo-ph-circle {
    width: 70px;
    height: 70px;
  }
  .social-fixed .coccoc-alo-ph-circle-fill {
    width: 50px;
    height: 50px;
  }
  .social-fixed .coccoc-alo-ph-img-circle {
    width: 45px;
    height: 45px;
    top: -7px;
    left: 8px;
  }
}
@media (max-width: 991px) {
  .social-fixed a,
  .social-fixed div {
    width: 38px;
    height: 38px;
  }
  .social-fixed a img,
  .social-fixed div img {
    max-width: 70%;
  }
}
@media (max-width: 767px) {
  .social-fixed {
    display: none;
  }
}

.menu-bottom-mb {
  display: none;
}
@media (max-width: 767px) {
  .menu-bottom-mb {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    z-index: 100;
    display: flex;
    align-items: center;
    padding: 0 15px;
    justify-content: space-between;
    background: var(--color-white);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
  .menu-bottom-mb .item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .menu-bottom-mb .item svg {
    width: 25px;
    height: 25px;
  }
  .menu-bottom-mb .item img {
    width: 25px;
    height: 25px;
  }
  .menu-bottom-mb .item.phone svg {
    fill: red;
  }
  .menu-bottom-mb .item.mess svg {
    fill: #0060e0;
  }
  .menu-bottom-mb .item.cart {
    position: relative;
    margin-bottom: 20px;
  }
  .menu-bottom-mb .item.cart:before {
    background: var(--color-white);
    content: "";
    top: -20px;
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    z-index: -1;
    box-shadow: 0px -6px 5px rgba(0, 0, 0, 0.2);
  }
  .menu-bottom-mb .item.cart .quantity {
    position: absolute;
    top: -10px;
    right: 15px;
    background: red;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    color: var(--color-white);
    text-align: center;
    font-size: 12px;
    line-height: 20px;
    border: 0;
  }
}

.store-block .detail-store {
  display: flex;
  align-items: center;
  gap: 64px;
  margin-bottom: 50px;
}
.store-block .detail-store .left,
.store-block .detail-store .right {
  width: calc((100% - 64px) / 2);
}
.store-block .detail-store .left {
  border-radius: 12px;
  overflow: hidden;
}
.store-block .detail-store .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1400px) {
  .store-block .detail-store {
    gap: 30px;
    margin-bottom: 30px;
  }
  .store-block .detail-store .left,
  .store-block .detail-store .right {
    width: calc((100% - 30px) / 2);
  }
}
@media (max-width: 991px) {
  .store-block .detail-store {
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .store-block .detail-store .left, .store-block .detail-store .right {
    width: 100%;
  }
}

.distribution-system .detail-content {
  margin-bottom: 20px;
}
@media (max-width: 700px) {
  .distribution-system .detail-content {
    margin-bottom: 15px;
  }
  .distribution-system .detail-content br {
    display: none;
  }
}
.distribution-system .detail-content p:last-child,
.distribution-system .detail-content ul:last-child,
.distribution-system .detail-content ol:last-child {
  margin-bottom: 0;
}

.filter-system {
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 6px;
  background: #F1F1F1;
}
@media (max-width: 700px) {
  .filter-system {
    margin-bottom: 15px;
  }
}
.filter-system form {
  display: flex;
  gap: 20px;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 700px) {
  .filter-system form {
    gap: 10px;
    flex-wrap: wrap;
  }
}
.filter-system.lookup-order {
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
  padding: 15px;
}
.filter-system.lookup-order form {
  gap: 15px;
}
.filter-system .input,
.filter-system .select {
  width: calc((100% - 220px) / 3);
  position: relative;
}
@media (max-width: 700px) {
  .filter-system .input,
  .filter-system .select {
    width: 100%;
  }
}
.filter-system .input svg,
.filter-system .select svg {
  position: absolute;
  top: 19px;
  right: 15px;
}
.filter-system .input input,
.filter-system .input select,
.filter-system .select input,
.filter-system .select select {
  width: 100%;
  border-radius: 8px;
  border: none;
  appearance: none;
  height: 46px;
  padding-left: 15px;
  border: 1px solid #D5D5D5;
  background: #FFF;
  color: #57585B;
  line-height: 1.5;
  font-size: var(--fs-text-small);
  font-weight: 400;
}
.filter-system .input input::placeholder,
.filter-system .input select::placeholder,
.filter-system .select input::placeholder,
.filter-system .select select::placeholder {
  color: #57585B;
  font-size: var(--fs-text-small);
  font-weight: 400;
}
@media (max-width: 700px) {
  .filter-system .input input,
  .filter-system .input select,
  .filter-system .select input,
  .filter-system .select select {
    height: 40px;
  }
}
.filter-system .input select,
.filter-system .select select {
  cursor: pointer;
}
@media (max-width: 700px) {
  .filter-system .select {
    width: calc((100% - 10px) / 2);
  }
}
.filter-system .button {
  width: 160px;
  height: 46px;
  overflow: hidden;
}
@media (max-width: 700px) {
  .filter-system .button {
    width: 100%;
    height: 40px;
  }
}
.filter-system .button button {
  border-radius: 6px;
  background: var(--color-main);
  transition: background 0.5s ease;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-main);
  overflow: hidden;
  font-size: var(--fs-text);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
}
.filter-system .button button:hover {
  background: var(--color-white);
  color: var(--color-main);
}

.flex-system {
  display: flex;
  padding: 25px;
  height: 645px;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
}
.flex-system .left {
  width: 40%;
  height: 100%;
  overflow: auto;
  padding-right: 50px;
}
.flex-system .right {
  width: 60%;
  height: 100%;
  border-radius: 8px;
  border: 1px solid #CDCDCD;
  overflow: hidden;
}
.flex-system .right .list-map,
.flex-system .right .imap {
  height: 100%;
}
.flex-system .right iframe {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 991px) {
  .flex-system {
    padding: 20px;
    height: auto;
    margin-bottom: 30px;
    flex-wrap: wrap;
  }
  .flex-system .left, .flex-system .right {
    width: 100%;
  }
  .flex-system .left {
    max-height: 600px;
  }
  .flex-system .right {
    aspect-ratio: 16/9;
  }
}

.item-system {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color-border);
}
.item-system:last-child {
  border-bottom: 0;
}
.item-system .infor h3 {
  color: var(--color-text-menu-2);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  cursor: pointer;
}
.item-system .infor ul li {
  display: flex;
  gap: 5px;
  margin-bottom: 15px;
}
.item-system .infor ul li .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
}
.item-system .infor a {
  color: var(--color-text-menu-2);
  text-decoration: none;
  cursor: pointer;
}
.item-system .infor a:hover {
  color: var(--color-main);
}
.item-system .infor .view-map {
  color: var(--color-main);
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.slide-home {
  aspect-ratio: 1920/590;
  position: relative;
}
.slide-home .item {
  aspect-ratio: 1920/590;
}
.slide-home .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .slide-home {
    aspect-ratio: 3/2;
  }
  .slide-home .item {
    aspect-ratio: 3/2;
  }
}

.slide-module-product-index {
  padding-top: 25px;
  padding-bottom: 25px;
  background: #f3f7ff;
  text-align: center;
}
.slide-module-product-index .item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.slide-module-product-index .item .icon {
  width: 89px;
  height: 89px;
  border-radius: 50%;
  background: linear-gradient(180deg, #036DDE 0%, #0958A8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.slide-module-product-index .item .icon img {
  object-fit: contain;
  width: initial;
  height: 60%;
  position: relative;
  z-index: 2;
  filter: brightness(0) invert(1);
}
.slide-module-product-index .item p {
  font-weight: 600;
  font-size: 16px;
}
@media (max-width: 1400px) {
  .slide-module-product-index .item .icon {
    width: 60px;
    height: 60px;
  }
  .slide-module-product-index .item p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .slide-module-product-index {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.about-index .container {
  display: flex;
  align-items: center;
  gap: 50px;
  padding-top: 34px;
  padding-bottom: 34px;
}
.about-index .container .left,
.about-index .container .right {
  width: calc((100% - 50px) / 2);
}
.about-index .container .left {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.about-index .container .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-index .container .left .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about-index .container .right .desc {
  line-height: 24px;
  text-align: justify;
  margin-bottom: 30px;
}
@media (max-width: 1400px) {
  .about-index .container {
    gap: 20px;
  }
  .about-index .container .left,
  .about-index .container .right {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 991px) {
  .about-index .container {
    flex-direction: column;
    gap: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .about-index .container .left,
  .about-index .container .right {
    width: 100%;
  }
  .about-index .container .left {
    margin-bottom: 20px;
  }
  .about-index .container .right {
    padding-bottom: 0;
  }
  .about-index .container .right .desc {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .about-index .container {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .about-index .container .right h2 {
    margin-bottom: 15px;
  }
  .about-index .container .right .desc {
    margin-bottom: 15px;
  }
}

.option-index {
  padding-top: 25px;
  padding-bottom: 25px;
}
.option-index .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  flex-wrap: wrap;
}
@media (max-width: 1400px) {
  .option-index .container {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .option-index .container {
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .option-index {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.banner-index,
.slide-home-2 {
  padding-bottom: 30px;
}
.banner-index .item,
.slide-home-2 .item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1518/348;
  position: relative;
}
.banner-index .item img,
.slide-home-2 .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .banner-index,
  .slide-home-2 {
    padding-bottom: 15px;
  }
}

.slide-home-2 {
  aspect-ratio: 1518/348;
}

.brand-product-index {
  padding-bottom: 30px;
}
.brand-product-index .top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .brand-product-index .top {
    margin-bottom: 15px;
  }
}

.item-product {
  border: 1px solid var(--color-border);
  padding: 30px;
  border-radius: 12px;
  background: var(--color-white);
  position: relative;
}
.item-product:hover {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.item-product .persen {
  position: absolute;
  top: 20px;
  left: 20px;
  border-radius: 40px;
  background: var(--color-price);
  padding: 10px;
  color: #FEF2F2;
  text-align: center;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.32px;
  text-transform: uppercase;
  text-align: center;
  z-index: 1;
}
.item-product .img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  overflow: hidden;
  aspect-ratio: 1;
}
.item-product .img img {
  object-fit: contain;
  display: block;
  max-height: 80%;
  max-width: 80%;
  transition: transform 0.3s ease;
  width: initial;
}
.item-product .img:hover img {
  transform: scale(1.05);
}
.item-product .info .module {
  color: var(--color-text-menu);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  /* 342.857% */
  letter-spacing: -0.3px;
  text-decoration: none;
}
.item-product .info .module:hover {
  color: var(--color-main-hotline);
}
.item-product .info h3 {
  margin-bottom: 15px;
}
.item-product .info h3 a {
  color: var(--color-text-menu-2);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  /* 150% */
  letter-spacing: -0.3px;
  text-decoration: none;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.item-product .info h3 a:hover {
  color: var(--color-main);
}
.item-product .info .price {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}
.item-product .info .price.mb {
  transition: all 0.3s linear;
}
.item-product .info .price .price-main {
  color: var(--color-price);
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  /* 122.222% */
  letter-spacing: -0.44px;
}
.item-product .info .price .price-old {
  color: #111827;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16.06px;
  /* 114.714% */
  letter-spacing: -0.44px;
  text-decoration-line: line-through;
}
.item-product .info .desc {
  height: 0;
  transition: all 0.3s linear;
  opacity: 0;
  pointer-events: none;
  overflow: auto;
}
.item-product .info .desc ul {
  padding-left: 20px;
}
.item-product:hover .info .price:not(.mb) {
  margin-bottom: 15px;
}
.item-product:hover .info .desc {
  height: 73px;
  opacity: 1;
  pointer-events: all;
  margin-bottom: 40px;
}
@media (max-width: 1400px) {
  .item-product {
    padding: 15px;
  }
  .item-product .info .price {
    margin-bottom: 25px;
  }
}
@media (max-width: 1200px) {
  .item-product .info .price {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .item-product .info .module {
    font-size: 12px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-height: 1.5;
  }
  .item-product .info h3 a {
    font-size: 15px;
  }
  .item-product .info .price {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}

.trade-mark-index {
  padding-bottom: 35px;
}
.trade-mark-index .top {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .trade-mark-index {
    padding-bottom: 15px;
  }
}

.news-handbook {
  padding-bottom: 35px;
}
.news-handbook .container {
  display: flex;
  gap: 50px;
}
.news-handbook .container .left,
.news-handbook .container .right {
  width: calc((100% - 50px) / 2);
}
.news-handbook .container .left h2,
.news-handbook .container .right h2 {
  margin-bottom: 25px;
}
@media (max-width: 1400px) {
  .news-handbook .container {
    gap: 20px;
  }
  .news-handbook .container .left,
  .news-handbook .container .right {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 767px) {
  .news-handbook {
    padding-bottom: 15px;
  }
  .news-handbook .container {
    gap: 15px;
    flex-wrap: wrap;
  }
  .news-handbook .container .left, .news-handbook .container .right {
    width: 100%;
  }
}

.slide-news-index {
  border: 1px solid var(--color-border);
  overflow: hidden;
  border-radius: 10px;
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  .slide-news-index {
    padding-bottom: 20px;
  }
}

.block-contact {
  display: flex;
  gap: 62px;
  margin-bottom: 80px;
}
.block-contact .left,
.block-contact .right {
  width: calc((100% - 62px) / 2);
}
.block-contact .left {
  border-radius: 6px;
  border: 1px solid #DDD;
}
.block-contact .left iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.block-contact .right h2 {
  color: #090D14;
  font-size: 24px;
  font-weight: 600;
  line-height: 48px;
  /* 200% */
  letter-spacing: -0.3px;
}
.block-contact .right ul li {
  list-style: none;
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}
.block-contact .right ul li .icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.block-contact .right ul li a {
  color: var(--color-text-menu-2);
  text-decoration: none;
}
.block-contact .right ul li a:hover {
  color: var(--color-main);
}
.block-contact .right .form-contact h3 {
  color: #090D14;
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
  /* 100% */
  letter-spacing: -0.3px;
  margin-bottom: 15px;
}
.block-contact .right .form-contact form {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.block-contact .right .form-contact form .form-input {
  width: calc((100% - 14px) / 2);
}
.block-contact .right .form-contact form .form-textarea {
  width: 100%;
}
@media (max-width: 1400px) {
  .block-contact {
    gap: 30px;
  }
  .block-contact .left,
  .block-contact .right {
    width: calc((100% - 30px) / 2);
  }
}
@media (max-width: 991px) {
  .block-contact {
    gap: 15px;
    flex-direction: column-reverse;
    margin-bottom: 40px;
  }
  .block-contact .left, .block-contact .right {
    width: 100%;
  }
  .block-contact .left {
    aspect-ratio: 16/9;
  }
}
@media (max-width: 767px) {
  .block-contact {
    margin-bottom: 20px;
  }
  .block-contact .right h2 {
    font-size: 20px;
  }
  .block-contact .right .form-contact h3 {
    font-size: 18px;
  }
  .block-contact .right .form-contact form .form-input {
    width: 100%;
  }
}

.block-why-gsx {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.block-why-gsx .item {
  width: calc((100% - 96px) / 3);
}
@media (max-width: 1400px) {
  .block-why-gsx {
    gap: 20px;
    margin-bottom: 30px;
  }
  .block-why-gsx .item {
    width: calc((100% - 40px) / 3);
  }
}
@media (max-width: 991px) {
  .block-why-gsx {
    justify-content: center;
  }
  .block-why-gsx .item {
    width: calc((100% - 30px) / 2);
  }
}
@media (max-width: 767px) {
  .block-why-gsx .item {
    width: 100%;
  }
}

.list-recuiment {
  margin-bottom: 50px;
}
.list-recuiment table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  margin-bottom: 30px;
}
.list-recuiment table thead {
  background: #686A70;
  color: var(--color-white);
  height: 60px;
  text-transform: uppercase;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}
.list-recuiment table thead tr th {
  padding: 0 10px;
}
.list-recuiment table thead tr th:nth-child(2) {
  text-align: left;
}
.list-recuiment table tbody tr td {
  height: 60px;
  border-bottom: 1px solid var(--color-border);
  padding: 0 10px;
}
.list-recuiment table tbody tr td a {
  text-decoration: none;
  font-size: 16px;
  letter-spacing: -0.3px;
}
.list-recuiment table tbody tr td:nth-child(2) {
  text-align: left;
  font-weight: 600;
}
.list-recuiment table tbody tr td:nth-child(2) a {
  color: var(--color-text-menu-2);
}
.list-recuiment table tbody tr td:nth-child(2) a:hover {
  color: var(--color-main);
}
@media (max-width: 767px) {
  .list-recuiment {
    overflow-x: auto;
    margin-bottom: 20px;
  }
  .list-recuiment table thead tr th {
    white-space: nowrap;
  }
}

.recuiment-detail .container {
  display: flex;
  gap: 48px;
}
.recuiment-detail .container .main-module {
  width: calc(70% - 48px);
}
.recuiment-detail .container .other-recuiment {
  width: 30%;
}
.recuiment-detail .container .other-recuiment .title-other {
  height: 50px;
  border-radius: 6px;
  background: #686A70;
  color: var(--color-white);
  text-align: center;
  line-height: 50px;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}
.recuiment-detail .container .other-recuiment .card-recuiment {
  border-radius: 6px;
  background: var(--color-white);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
  margin-bottom: 15px;
}
.recuiment-detail .container .other-recuiment .card-recuiment h3 a {
  font-size: 19px;
  color: var(--color-text-menu-2);
  font-style: normal;
  font-weight: 600;
  margin-bottom: 15px;
  text-decoration: none;
  display: block;
}
.recuiment-detail .container .other-recuiment .card-recuiment h3 a:hover {
  color: var(--color-main);
}
.recuiment-detail .container .other-recuiment .card-recuiment ul {
  list-style: none;
}
.recuiment-detail .container .other-recuiment .card-recuiment ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 5px;
}
.recuiment-detail .container .other-recuiment .card-recuiment ul li .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.recuiment-detail .container .other-recuiment .card-recuiment ul li p {
  font-size: 16px;
}
.recuiment-detail .option-recuiment {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color-border);
}
.recuiment-detail .option-recuiment .item {
  display: flex;
  gap: 17px;
}
.recuiment-detail .option-recuiment .item .icon {
  background: var(--color-main);
  width: 46px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.recuiment-detail .option-recuiment .item .text {
  flex: 1;
}
.recuiment-detail .option-recuiment .item .text p:first-child {
  font-weight: 700;
  margin-bottom: 5px;
}
@media (max-width: 1400px) {
  .recuiment-detail .option-recuiment {
    margin-bottom: 15px;
    padding-bottom: 15px;
    flex-wrap: wrap;
    gap: 15px;
  }
  .recuiment-detail .option-recuiment .item {
    flex: 1 1 calc((100% - 30px) / 2);
  }
}
@media (max-width: 767px) {
  .recuiment-detail .option-recuiment .item {
    flex: 1 1 100%;
  }
}
@media (max-width: 991px) {
  .recuiment-detail .container {
    flex-direction: column;
    gap: 20px;
  }
  .recuiment-detail .container .main-module,
  .recuiment-detail .container .other-recuiment {
    width: 100%;
  }
  .recuiment-detail .container .other-recuiment .title-other {
    font-size: 20px;
  }
}

.action-recuiment {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .action-recuiment {
    margin-bottom: 20px;
  }
}

.apply-block {
  display: none;
}

.apply-form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 10px;
  border-radius: 10px;
  background: var(--color-white);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  padding: 50px;
  margin-bottom: 50px;
}
.apply-form .title {
  color: var(--color-text-menu-2);
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.apply-form sup {
  color: red;
}
.apply-form p {
  color: var(--color-text-menu-2);
  font-weight: 400;
  margin-bottom: 10px;
}
.apply-form .btn-apply-2 {
  margin: auto;
  margin-top: 25px;
}
.apply-form .file {
  border-radius: 5px;
  border: 1px solid #D7DFE3;
  background: #FFF;
  height: 83px;
}
.apply-form .file label {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
  padding: 20px;
  gap: 15px;
}
.apply-form .file label #text {
  border-radius: 6px;
  border: 1px solid #D4D4D4;
  opacity: 0.9;
  background: #F0F0F0;
  width: 122px;
  height: 38px;
  text-align: center;
  line-height: 38px;
  display: block;
  font-size: 16px;
  font-weight: 400;
}
.apply-form .file label #note {
  color: #7D7D7D;
  font-size: 16px;
  font-weight: 400;
}
.apply-form .form-input {
  width: calc((100% - 30px) / 2);
}
.apply-form .form-content,
.apply-form .title {
  width: 100%;
}
.apply-form #upload {
  display: none;
}
@media (max-width: 991px) {
  .apply-form {
    padding: 30px;
  }
  .apply-form .form-input {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .apply-form {
    padding: 15px;
  }
  .apply-form .title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .apply-form .file label #note {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
  }
  .apply-form .file label #text {
    white-space: nowrap;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.item-news-2 .img {
  overflow: hidden;
  border-radius: 12px;
  display: block;
}
.item-news-2 .img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.item-news-2 .info .date {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #003B91;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.3px;
}
.item-news-2 .info .date .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
}
.item-news-2 h3 a {
  color: var(--color-text-menu-2);
  text-decoration: none;
  font-size: 20px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.item-news-2 h3 a:hover {
  color: var(--color-main);
}
.item-news-2 .desc {
  color: var(--color-text-menu-2);
  text-align: justify;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.32px;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
@media (max-width: 1400px) {
  .item-news-2 h3 a {
    font-size: 16px;
  }
}

.list-news-2-first {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 0px 33px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 30px;
}
.list-news-2-first .item:nth-child(1) {
  grid-area: 1/1/4/3;
}
.list-news-2-first .item:nth-child(1) .img {
  aspect-ratio: 744/435;
  margin-bottom: 15px;
  border-radius: 12px;
}
.list-news-2-first .item:nth-child(1) .info .date {
  margin-bottom: 15px;
}
.list-news-2-first .item:nth-child(1) .info h3 {
  margin-bottom: 15px;
}
.list-news-2-first .item:nth-child(1) .info h3 a {
  font-size: 22px;
}
@media (max-width: 1400px) {
  .list-news-2-first .item:nth-child(1) .info h3 a {
    font-size: 18px;
  }
}
.list-news-2-first .item:not(.list-news-2-first .item:nth-child(1)) {
  display: flex;
  align-items: center;
  margin-bottom: 23px;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--color-border);
}
.list-news-2-first .item:not(.list-news-2-first .item:nth-child(1)):last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.list-news-2-first .item:not(.list-news-2-first .item:nth-child(1)) .img {
  aspect-ratio: 308/180;
  width: 42%;
  border-radius: 10px;
}
.list-news-2-first .item:not(.list-news-2-first .item:nth-child(1)) .info {
  width: 58%;
  padding-left: 48px;
}
.list-news-2-first .item:not(.list-news-2-first .item:nth-child(1)) .info .date {
  margin-bottom: 15px;
}
.list-news-2-first .item:nth-child(2) {
  grid-area: 1/3/2/5;
}
.list-news-2-first .item:nth-child(3) {
  grid-area: 2/3/3/5;
}
.list-news-2-first .item:nth-child(4) {
  grid-area: 3/3/4/5;
}
@media (max-width: 991px) {
  .list-news-2-first {
    gap: 0px 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .list-news-2-first {
    display: block;
  }
  .list-news-2-first .item:first-child {
    margin-bottom: 20px;
  }
}

.news-block {
  margin-bottom: 50px;
}

.list-news-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-bottom: 50px;
}
.list-news-2 .item {
  width: calc((100% - 72px) / 3);
}
.list-news-2 .item .img {
  aspect-ratio: 483/282;
  display: block;
  border-radius: 10px;
  margin-bottom: 15px;
}
.list-news-2 .item .date {
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .list-news-2 {
    gap: 15px;
    margin-bottom: 20px;
  }
  .list-news-2 .item {
    width: calc((100% - 15px) / 2);
  }
}

.new2-block {
  padding-bottom: 50px;
}

.description {
  margin-bottom: 30px;
}

.news-new h2 {
  margin-bottom: 30px;
  color: var(--color-text-menu-2);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.3px;
}
@media (max-width: 991px) {
  .news-new h2 {
    margin-bottom: 15px;
  }
}

.item-news-other {
  display: flex;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color-border);
}
.item-news-other:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.item-news-other .img {
  width: 40%;
  aspect-ratio: 181/106;
  border-radius: 6px;
  overflow: hidden;
}
.item-news-other .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.item-news-other .info {
  width: 60%;
  padding-left: 25px;
}
.item-news-other .info .date {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--color-main);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.3px;
}
.item-news-other .info .date .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}
.item-news-other .info h3 a {
  font-weight: 600;
  color: var(--color-text-menu-2);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.3px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}

.other-news {
  padding-bottom: 50px;
}
.other-news h2 {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .other-news {
    padding-bottom: 20px;
  }
  .other-news h2 {
    margin-bottom: 15px;
  }
}

.card-news .img {
  aspect-ratio: 483/282;
  margin-bottom: 15px;
  display: block;
  overflow: hidden;
  border-radius: 12px;
}
.card-news .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-news h3 a {
  color: var(--color-text-menu-2);
  text-decoration: none;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.card-news h3 a:hover {
  color: var(--color-main);
}
.card-news.flex {
  display: flex;
  background: var(--color-white);
  height: 443px;
}
.card-news.flex .img {
  margin-bottom: 0;
  aspect-ratio: 758/443;
}
.card-news.flex .info {
  padding: 50px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.card-news.flex .info h3 {
  margin-bottom: 20px;
}
.card-news.flex .info h3 a {
  font-size: 22px;
}
.card-news.flex .info .desc {
  text-align: justify;
  margin-bottom: 30px;
}
.card-news.flex .info .btn-main-2 {
  margin-top: auto;
}

.slide-news {
  position: relative;
  margin-bottom: 50px;
  box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 17px;
  height: 443px;
}
.slide-news .owl-dots {
  position: absolute;
  bottom: 66px;
  right: 50px;
}

.about-1 {
  padding-top: 35px;
  padding-bottom: 35px;
}
.about-1 h2 {
  text-align: center;
  color: var(--color-text-menu-2);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 30px;
}
.about-1 .desc {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .about-1 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .about-1 h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .about-1 .desc {
    margin-bottom: 20px;
  }
}

.list-content-about-1 {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}
.list-content-about-1 .item {
  width: calc((100% - 240px) / 5);
}
.list-content-about-1 .item .img {
  margin-bottom: 15px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.list-content-about-1 .item .img img {
  object-fit: contain;
  display: block;
}
.list-content-about-1 .item h3 {
  margin-bottom: 15px;
  font-size: 22px;
}
.list-content-about-1 .item .desc-child {
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 1400px) {
  .list-content-about-1 {
    gap: 30px;
  }
  .list-content-about-1 .item {
    width: calc((100% - 120px) / 5);
  }
}
@media (max-width: 991px) {
  .list-content-about-1 {
    gap: 20px;
    justify-content: center;
  }
  .list-content-about-1 .item {
    width: calc((100% - 60px) / 3);
  }
}
@media (max-width: 767px) {
  .list-content-about-1 {
    gap: 15px;
  }
  .list-content-about-1 .item {
    width: 100%;
  }
}

.about-2 {
  margin-bottom: 50px;
}
.about-2 .container {
  display: flex;
  align-items: center;
  gap: 50px;
}
.about-2 .container .left,
.about-2 .container .right {
  width: calc((100% - 50px) / 2);
}
.about-2 .container .left .icon {
  width: 85px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.about-2 .container .left h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}
.about-2 .container .left .desc {
  text-align: justify;
}
.about-2 .container .right {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 737/383;
}
.about-2 .container .right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-2:nth-child(odd) .container {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .about-2 {
    margin-bottom: 20px;
  }
  .about-2 .container {
    gap: 20px;
    flex-direction: column;
  }
  .about-2 .container .left,
  .about-2 .container .right {
    width: 100%;
  }
  .about-2 .container .left h2 {
    font-size: 20px;
  }
  .about-2:nth-child(odd) .container {
    flex-direction: column-reverse;
  }
}

.item-trademark-module {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
.item-trademark-module .left {
  border-radius: 12px;
  overflow: hidden;
  width: 52%;
}
.item-trademark-module .left img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item-trademark-module .right {
  width: 48%;
  padding-left: 70px;
}
.item-trademark-module .right .logo-trade-mark {
  margin-bottom: 25px;
}
.item-trademark-module .right .desc {
  margin-bottom: 40px;
  text-align: justify;
}
.item-trademark-module:nth-child(even) {
  flex-direction: row-reverse;
}
.item-trademark-module:nth-child(even) .right {
  padding-left: 0;
  padding-right: 70px;
}
@media (max-width: 1400px) {
  .item-trademark-module {
    margin-bottom: 30px;
  }
  .item-trademark-module .right {
    padding-left: 30px;
  }
  .item-trademark-module:nth-child(even) .right {
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .item-trademark-module {
    margin-bottom: 15px;
    flex-direction: column;
    gap: 15px;
  }
  .item-trademark-module .left, .item-trademark-module .right {
    width: 100%;
  }
  .item-trademark-module .right {
    padding-left: 0;
  }
  .item-trademark-module .right .desc {
    margin-bottom: 20px;
  }
  .item-trademark-module:nth-child(even) {
    flex-direction: column;
  }
  .item-trademark-module:nth-child(even) .right {
    padding-right: 0;
  }
}

.block-fillter-product {
  padding: 10px 20px;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  background: #FFF;
  box-shadow: 5px 5px 15px 0 rgba(0, 0, 0, 0.05);
  margin-bottom: 17px;
}
.block-fillter-product .h-fillter {
  height: 38px;
  line-height: 38px;
  color: var(--color-text-menu-2);
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--color-border);
}
.block-fillter-product .checkbox {
  list-style: none;
}
.block-fillter-product .checkbox label {
  padding: 5px 0;
  cursor: pointer;
  color: var(--color-black);
  font-size: 16px;
  font-weight: 400;
  display: flex;
  gap: 15px;
  border-radius: 5px;
}
.block-fillter-product .checkbox label span {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  border-radius: 2px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  margin-top: 2px;
  position: relative;
}
.block-fillter-product .checkbox label span::before {
  content: "";
  display: block;
  height: 16px;
  width: 16px;
  border-radius: 2px;
  position: absolute;
  top: 0;
  left: 0;
}
.block-fillter-product .checkbox input[type=checkbox]:checked + label,
.block-fillter-product .checkbox input[type=radio]:checked + label {
  color: var(--color-main);
}
.block-fillter-product .checkbox input[type=checkbox]:checked + label span,
.block-fillter-product .checkbox input[type=radio]:checked + label span {
  background: var(--color-main);
}
.block-fillter-product .checkbox input[type=checkbox]:checked + label span::before,
.block-fillter-product .checkbox input[type=radio]:checked + label span::before {
  content: "✓";
  font-size: 12px;
  color: var(--color-white);
  text-align: center;
}
.block-fillter-product .checkbox input {
  display: none;
}
@media (max-width: 1600px) {
  .block-fillter-product .checkbox label {
    font-size: 14px;
  }
}
@media (max-width: 1400px) {
  .block-fillter-product .h-fillter {
    font-size: 16px;
  }
  .block-fillter-product ul {
    flex-direction: column;
  }
  .block-fillter-product .checkbox {
    width: 100%;
  }
}

.block-module-product {
  margin-bottom: 50px;
}
.block-module-product .container {
  display: flex;
}
.block-module-product .container .left {
  width: 20%;
}
.block-module-product .container .right {
  width: 80%;
  padding-left: 50px;
}
.block-module-product .container .right h1 {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color-border);
}
@media (max-width: 1400px) {
  .block-module-product {
    margin-bottom: 40px;
  }
  .block-module-product .container .left {
    width: 25%;
  }
  .block-module-product .container .right {
    width: 75%;
    padding-left: 20px;
  }
}
@media (max-width: 991px) {
  .block-module-product {
    margin-bottom: 20px;
  }
  .block-module-product .container .left {
    display: none;
  }
  .block-module-product .container .right {
    width: 100%;
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .block-module-product {
    margin-bottom: 15px;
  }
}

.list-module-product {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.list-module-product .item {
  width: calc((100% - 66px) / 4);
}
@media (max-width: 1400px) {
  .list-module-product {
    gap: 15px;
  }
  .list-module-product .item {
    width: calc((100% - 45px) / 4);
  }
  .list-module-product.product .item {
    width: calc((100% - 30px) / 3);
  }
}
@media (max-width: 767px) {
  .list-module-product .item {
    width: calc((100% - 20px) / 2);
  }
  .list-module-product.product .item {
    width: calc((100% - 15px) / 2);
  }
}

.detail-product-top {
  margin-bottom: 50px;
}
.detail-product-top .container {
  display: flex;
  gap: 50px;
}
.detail-product-top .container .right {
  flex: 1;
}
.detail-product-top .container .right h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}
.detail-product-top .container .right .price-block {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color-border);
}
.detail-product-top .container .right .price-block p:first-child {
  color: var(--color-price);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.44px;
}
.detail-product-top .container .right .price-block p:last-child {
  color: #111827;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.44px;
  text-decoration-line: line-through;
}
.detail-product-top .container .right .hotline {
  display: flex;
  gap: 15px;
}
.detail-product-top .container .right .hotline .icon {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.detail-product-top .container .right .hotline a {
  color: var(--color-main-hotline);
  text-decoration: none;
  display: inline-block;
  margin-right: 5px;
}
.detail-product-top .container .right .hotline a:hover {
  color: var(--color-main);
}
@media (max-width: 1400px) {
  .detail-product-top .container {
    gap: 20px;
  }
  .detail-product-top .container .right {
    flex: 1;
  }
  .detail-product-top .container .right h1 {
    font-size: 20px;
  }
  .detail-product-top .container .right .price-block p:first-child {
    font-size: 20px;
  }
  .detail-product-top .container .right .price-block p:last-child {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .detail-product-top .container {
    flex-direction: column;
  }
}

.block-slide-thumb {
  height: 635px;
  display: flex;
  flex-direction: row-reverse;
  gap: 18px;
}
.block-slide-thumb .swiper-slide img {
  display: block;
  width: initial;
  height: initial;
  max-height: 80%;
  object-fit: contain;
}
.block-slide-thumb .slide-product-thumb .swiper-slide {
  aspect-ratio: 1;
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: #FFF;
  overflow: hidden;
}
.block-slide-thumb .slide-product-thumb .swiper-slide.swiper-slide-thumb-active, .block-slide-thumb .slide-product-thumb .swiper-slide:hover {
  border-color: var(--color-main);
}
.block-slide-thumb .slide-product-main {
  flex: 1;
  aspect-ratio: 1;
}
.block-slide-thumb .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.block-slide-thumb .swiper {
  margin-left: auto;
  margin-right: auto;
}
.block-slide-thumb .swiper-slide {
  background-size: cover;
  background-position: center;
}
@media (max-width: 1600px) {
  .block-slide-thumb {
    height: 500px;
  }
}
@media (max-width: 1400px) {
  .block-slide-thumb {
    height: 400px;
  }
}

.trademark-text {
  margin-bottom: 15px;
}
.trademark-text span {
  color: var(--color-main);
}

.attr-origin-specifications {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--color-border);
  gap: 40px;
}
.attr-origin-specifications .item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.attr-origin-specifications .item .icon {
  width: 26px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.action-product {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.action-product .item {
  width: calc((100% - 30px) / 3);
}
.action-product .add-to-cart, .action-product .buy-now {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--color-white);
}
.action-product .add-to-cart {
  background: var(--color-main);
  border: 1px solid var(--color-main);
}
.action-product .add-to-cart:hover {
  color: var(--color-main);
  background: var(--color-white);
}
.action-product .add-to-cart:hover svg rect, .action-product .add-to-cart:hover svg path {
  fill: var(--color-main);
}
.action-product .buy-now {
  background: var(--color-price);
  border: 1px solid var(--color-price);
}
.action-product .buy-now:hover {
  color: var(--color-price);
  background: var(--color-white);
  cursor: pointer;
}
.action-product .buy-now:hover svg path {
  fill: var(--color-price);
}
@media (max-width: 1400px) {
  .action-product .item {
    width: calc((100% - 15px) / 2);
  }
  .action-product .add-to-cart {
    font-size: 14px;
  }
  .action-product .buy-now {
    width: 100%;
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .action-product .item {
    width: calc((100% - 30px) / 3);
  }
}
@media (max-width: 567px) {
  .action-product {
    flex-direction: column;
  }
  .action-product .item {
    width: 100%;
    height: 42px;
  }
}

.item-action-product {
  border: 1px solid var(--color-border);
  height: 50px;
  border-radius: 6px;
}

.quantity {
  position: relative;
  border: 1px solid var(--color-main);
  outline: none;
}
.quantity input {
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 0 50px;
}
.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity span {
  position: absolute;
  cursor: pointer;
  z-index: 10;
  color: var(--color-main);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -0.3px;
}
.quantity span.minus {
  top: 0;
  left: 0;
  bottom: 0;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quantity span.plus {
  top: 0;
  right: 0;
  bottom: 0;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1600px) {
  .quantity input {
    padding: 0 20px;
  }
}

.detail-produc-mid {
  margin-bottom: 50px;
}
.detail-produc-mid .container {
  display: flex;
}
.detail-produc-mid .container .left {
  width: 70%;
  padding-right: 50px;
}
.detail-produc-mid .container .left .head-title {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}
.detail-produc-mid .container .left .head-title .item {
  width: calc((100% - 30px) / 4);
  cursor: pointer;
  text-align: center;
  height: 56px;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
  background: #F9F9F9;
  line-height: 56px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.detail-produc-mid .container .left .head-title .item:hover, .detail-produc-mid .container .left .head-title .item.active {
  color: var(--color-white);
  background: var(--color-main);
  border-color: var(--color-main);
}
.detail-produc-mid .container .left .detail-content {
  display: none;
}
.detail-produc-mid .container .left .detail-content.active {
  display: block;
}
@media (max-width: 1400px) {
  .detail-produc-mid .container .left .head-title .item {
    flex: 1;
    white-space: nowrap;
    font-size: 14px;
  }
}
.detail-produc-mid .container .right {
  width: 30%;
  border: 1px solid var(--color-border);
  padding: 20px;
  border-radius: 12px;
}
.detail-produc-mid .container .right h2 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 15px;
}
@media (max-width: 1400px) {
  .detail-produc-mid .container .right h2 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .detail-produc-mid .container {
    flex-direction: column;
  }
  .detail-produc-mid .container .left, .detail-produc-mid .container .right {
    width: 100%;
  }
  .detail-produc-mid .container .left {
    margin-bottom: 30px;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .detail-produc-mid .container .left .head-title {
    overflow-x: auto;
    overflow-y: hidden;
  }
  .detail-produc-mid .container .left .head-title .item {
    width: auto;
    padding: 0 25px;
    font-size: 15px;
    white-space: nowrap;
  }
  .detail-produc-mid .container .left .head-title .item:hover {
    color: var(--color-text-menu-2);
    border: 1px solid #E5E7EB;
    background: #F9F9F9;
  }
}

.item-product-right {
  display: flex;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color-border);
}
.item-product-right:last-child {
  border-bottom: 0;
}
.item-product-right .img {
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.item-product-right .img img {
  display: block;
  width: initial;
  height: initial;
  max-height: 70%;
  object-fit: contain;
}
.item-product-right .info {
  flex: 1;
  padding-left: 15px;
}
.item-product-right .info .brands {
  color: var(--color-main);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 5px;
}
.item-product-right .info h3 a {
  color: var(--color-text-menu-2);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: block;
  margin-bottom: 15px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.item-product-right .info h3 a:hover {
  color: var(--color-main);
}
.item-product-right .info .price {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.item-product-right .info .price .price-main {
  color: var(--color-price);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.44px;
}
.item-product-right .info .price .price-old {
  color: #111827;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.44px;
  text-decoration-line: line-through;
}

.detail-product-bot {
  margin-bottom: 50px;
}
.detail-product-bot .border-top {
  border-top: 1px solid var(--color-border);
  padding-top: 30px;
}

.banner-landing {
  aspect-ratio: 1920/750;
}
.banner-landing img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trademark-1 .container {
  display: flex;
  align-items: center;
  gap: 106px;
}
.trademark-1 .container .left, .trademark-1 .container .right {
  width: calc((100% - 105px) / 2);
}
.trademark-1 .container .left {
  aspect-ratio: 738/498;
}
.trademark-1 .container .right h2 {
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
}
.trademark-1 .container .right h1 {
  font-size: 45px;
  font-weight: 600;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.trademark-1 .container .right .detail-content {
  text-align: justify;
}
@media (max-width: 1400px) {
  .trademark-1 .container {
    gap: 20px;
  }
  .trademark-1 .container .left, .trademark-1 .container .right {
    width: calc((100% - 20px) / 2);
  }
  .trademark-1 .container .right h2 {
    font-size: 26px;
  }
  .trademark-1 .container .right h1 {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .trademark-1 .container {
    gap: 15px;
    flex-direction: column;
  }
  .trademark-1 .container .left, .trademark-1 .container .right {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .trademark-1 .container .right h2 {
    font-size: 16px;
  }
  .trademark-1 .container .right h1 {
    font-size: 20px;
  }
}

.trademark-2 .container .list {
  display: flex;
  gap: 66px;
}
.trademark-2 .container .list .item {
  width: calc((100% - 198px) / 4);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.trademark-2 .container .list .item .icon {
  width: 145px;
  height: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  margin-bottom: 20px;
}
.trademark-2 .container .list .item h3 {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 15px;
}
.trademark-2 .container .list .item .detail-content {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.3px;
}
@media (max-width: 991px) {
  .trademark-2 .container .list {
    gap: 15px;
  }
  .trademark-2 .container .list .item {
    width: calc((100% - 45px) / 4);
  }
  .trademark-2 .container .list .item h3 {
    font-size: 16px;
  }
  .trademark-2 .container .list .item .detail-content {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .trademark-2 .container .list {
    flex-wrap: wrap;
  }
  .trademark-2 .container .list .item {
    width: calc((100% - 15px) / 2);
  }
}

.trademark-3 {
  background: url("../images/bg-trademark-3.png");
}
.trademark-3 .head {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}
.trademark-3 .head .item {
  width: calc((100% - 30px) / 4);
  background: var(--color-white);
  text-align: center;
  padding: 10px 30px;
  border-radius: 40px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  position: relative;
}
.trademark-3 .head .item p {
  position: relative;
  background: var(--color-white);
  width: 100%;
  height: 100%;
  z-index: 2;
}
.trademark-3 .head .item:after {
  content: "";
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translate(-50%, 50%) rotate(45deg);
  width: 40px;
  height: 40px;
  z-index: 1;
  background: var(--color-white);
  display: none;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.3px;
}
.trademark-3 .head .item.active, .trademark-3 .head .item:hover {
  background: var(--color-main);
  cursor: pointer;
}
.trademark-3 .head .item.active p, .trademark-3 .head .item:hover p {
  background: var(--color-main);
  color: var(--color-white);
}
.trademark-3 .head .item.active:after, .trademark-3 .head .item:hover:after {
  display: block;
  background: var(--color-main);
}
.trademark-3 .bot .content {
  display: none;
  align-items: center;
  background: var(--color-white);
  padding: 20px;
  border-radius: 12px;
  overflow: hidden;
}
.trademark-3 .bot .content.active {
  display: flex;
}
.trademark-3 .bot .content .left, .trademark-3 .bot .content .right {
  width: 50%;
}
.trademark-3 .bot .content .left {
  padding: 50px 70px;
}
.trademark-3 .bot .content .left h3 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
}
.trademark-3 .bot .content .left .detail-content {
  text-align: justify;
}
.trademark-3 .bot .content .right {
  aspect-ratio: 740/452;
}
.trademark-3 .bot .content .right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1600px) {
  .trademark-3 .head {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
  }
  .trademark-3 .head .item {
    padding: 10px 20px;
  }
  .trademark-3 .head .item p br {
    display: none;
  }
  .trademark-3 .bot .content .left {
    padding: 20px;
  }
  .trademark-3 .bot .content .left h3 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .trademark-3 .head {
    overflow-x: auto;
  }
  .trademark-3 .head .item {
    white-space: nowrap;
    width: auto;
  }
  .trademark-3 .head .item br {
    display: block;
  }
  .trademark-3 .head .item:after {
    width: 30px;
    height: 30px;
  }
  .trademark-3 .bot .content {
    flex-direction: column;
    gap: 15px;
  }
  .trademark-3 .bot .content .left, .trademark-3 .bot .content .right {
    width: 100%;
    padding: 0;
  }
}

.trademark-5 h2, .trademark-4 h2, .trademark-3 h2, .trademark-2 h2 {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
}
@media (max-width: 1400px) {
  .trademark-5 h2, .trademark-4 h2, .trademark-3 h2, .trademark-2 h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .trademark-5 h2, .trademark-4 h2, .trademark-3 h2, .trademark-2 h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }
}

.trademark-4 .list {
  display: flex;
  gap: 44px;
}
.trademark-4 .list .item {
  width: calc((100% - 176px) / 5);
}
.trademark-4 .list .item .img {
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  overflow: hidden;
  padding: 8px;
  margin-bottom: 15px;
}
.trademark-4 .list .item .img span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.trademark-4 .list .item .img img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trademark-4 .list .item h3 {
  text-align: center;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.3px;
}
@media (max-width: 1400px) {
  .trademark-4 .list {
    gap: 20px;
  }
  .trademark-4 .list .item {
    width: calc((100% - 80px) / 5);
  }
}
@media (max-width: 767px) {
  .trademark-4 .list {
    gap: 15px;
    flex-wrap: wrap;
  }
  .trademark-4 .list .item {
    width: calc((100% - 15px) / 2);
  }
}

.process-cart {
  display: flex;
  gap: 100px;
  justify-content: center;
  margin-bottom: var(--mgb-30);
}
@media (max-width: 700px) {
  .process-cart {
    gap: 30px;
    justify-content: center;
    overflow-x: auto;
  }
  .process-cart::-webkit-scrollbar {
    height: 0;
  }
}
.process-cart .step {
  display: flex;
  gap: 15px;
  align-items: center;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
}
@media (max-width: 700px) {
  .process-cart .step {
    display: none;
  }
}
.process-cart .step:before {
  content: "";
  width: 90px;
  height: 1px;
  border-bottom: 1px dotted #A3A3A3;
  position: absolute;
  top: 20px;
  right: -95px;
}
@media (max-width: 700px) {
  .process-cart .step:before {
    display: none;
  }
}
.process-cart .step .icon {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #DEDEDE;
}
@media (max-width: 700px) {
  .process-cart .step.active {
    display: flex;
  }
}
.process-cart .step.active .icon {
  background: var(--color-main);
}
.process-cart .step.active .icon svg path {
  fill: #fff;
}
.process-cart .step.active {
  color: var(--color-main);
}
.process-cart .step:last-child:before {
  display: none;
}

.flex-cart {
  display: flex;
  gap: var(--mgb-20);
  align-items: start;
  margin-bottom: var(--mgb-30);
}
@media (max-width: 700px) {
  .flex-cart {
    flex-direction: column;
  }
}
.flex-cart .title-module {
  justify-content: start;
  align-items: center;
  margin-bottom: 15px;
  gap: 5px;
}
@media (max-width: 700px) {
  .flex-cart .title-module {
    flex-direction: row;
    margin-bottom: 0;
  }
}
.flex-cart .title-module h1 {
  text-transform: uppercase;
}
.flex-cart .listing-cart {
  border-radius: 8px;
  width: calc(71% - 20px);
  padding: var(--mgb-20);
}
@media (max-width: 700px) {
  .flex-cart .listing-cart {
    width: 100%;
  }
}
.flex-cart .area-total {
  border-radius: 8px;
  width: 29%;
  padding: var(--mgb-20);
}
.flex-cart .area-total .rules {
  display: flex;
  gap: 10px;
  align-items: start;
  padding-top: 15px;
}
.flex-cart .area-total .rules input {
  margin-top: 5px;
  width: 13px;
  height: 13px;
}
@media (max-width: 700px) {
  .flex-cart .area-total {
    width: 100%;
  }
  .flex-cart .area-total .title-module {
    margin-bottom: 10px;
  }
}

.listing-cart .table-cart {
  display: table;
  width: 100%;
}
.listing-cart .table-cart .tr {
  display: table-row;
}
.listing-cart .table-cart .tr.thead {
  overflow: hidden;
}
.listing-cart .table-cart .tr.thead .image-cart {
  border-radius: 8px 0 0 8px;
  overflow: hidden;
}
.listing-cart .table-cart .tr.thead .delete-cart {
  border-radius: 0 8px 8px 0;
  overflow: hidden;
}
.listing-cart .table-cart .tr .td {
  display: table-cell;
  vertical-align: middle;
}
@media (max-width: 700px) {
  .listing-cart .table-cart .tr .td.imgsp {
    vertical-align: top;
  }
  .listing-cart .table-cart .tr .td.imgsp a {
    margin-bottom: 5px;
  }
}
.listing-cart .table-cart .tr .th {
  display: table-cell;
  font-weight: 700;
  height: 44px;
  vertical-align: middle;
  background: #EEE;
}
.listing-cart .table-cart .tr .image-cart {
  width: 100px;
}
@media (max-width: 700px) {
  .listing-cart .table-cart .tr .image-cart {
    width: 73px;
  }
}
.listing-cart .table-cart .tr .name-cart {
  width: calc(100% - 480px);
}
@media (max-width: 700px) {
  .listing-cart .table-cart .tr .name-cart {
    width: calc(100% - 73px);
    padding-left: 10px;
  }
}
.listing-cart .table-cart .tr .quantity-cart {
  width: 130px;
  text-align: center;
}
@media (max-width: 700px) {
  .listing-cart .table-cart .tr .quantity-cart {
    width: 100px;
  }
}
.listing-cart .table-cart .tr .total-cart {
  text-align: center;
}
.listing-cart .table-cart .tr .total-cart, .listing-cart .table-cart .tr .price-cart {
  width: 150px;
}
.listing-cart .table-cart .tr .delete-cart {
  width: 70px;
  cursor: pointer;
  text-align: center;
}
.listing-cart .table-cart-item {
  padding: 15px 0 0 0;
}
.listing-cart .table-cart-item .product-item .td {
  padding-bottom: 15px;
}
.listing-cart .table-cart-item .product-item:last-child .td {
  padding-bottom: 0;
}
.listing-cart .table-cart-item .imgsp a {
  margin: auto;
  width: 73px;
  height: 73px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.listing-cart .table-cart-item .imgsp img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  width: initial;
  height: initial;
  display: block;
}
.listing-cart .table-cart-item .price-cart {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
}
.listing-cart .table-cart-item .price-cart span {
  font-weight: 700;
  color: var(--color-price);
  width: 100%;
  display: block;
}
.listing-cart .table-cart-item .price-cart span.line {
  color: #8C8C8C;
  font-weight: 400;
  width: initial;
  display: inline;
  text-decoration: line-through;
}
.listing-cart .table-cart-item .price-cart span.percent {
  width: initial;
  display: inline;
  font-weight: 400;
}
.listing-cart .table-cart-item .total-cart {
  font-weight: 700;
  color: var(--color-price);
}
.listing-cart .product-item .infosp .gift-promotion {
  border: 1px solid var(--color-border);
  margin-bottom: 10px;
  border-radius: 8px;
  clear: both;
  padding: 10px;
}
.listing-cart .name-price {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding-bottom: 10px;
}
.listing-cart .name-price a {
  font-size: var(--fs-text-small);
  color: #333;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  text-decoration: none;
}
.listing-cart .name-price span {
  color: var(--color-main);
  font-size: var(--fs-text-small);
  text-align: right;
  margin-bottom: 0;
  clear: both;
  position: relative;
  font-weight: 700;
}
.listing-cart .name-price span.line {
  color: #8C8C8C;
  text-decoration: line-through;
  font-weight: 400;
}
.listing-cart .name-price span.strike {
  display: block;
  overflow: hidden;
  color: #666;
}
.listing-cart .name-price span.percent {
  width: initial;
  font-weight: 400;
}
.listing-cart .name-price span.vat {
  font-size: 13px;
  font-weight: 400;
}
.listing-cart .promo {
  display: block;
  overflow: hidden;
  width: 69%;
  margin-bottom: 5px;
}
.listing-cart .promo ol {
  padding-left: 25px;
  padding-top: 5px;
  margin-bottom: 5px;
}
.listing-cart .promo ol li {
  font-size: 13px;
}
.listing-cart .promo ol li a {
  font-size: 13px;
  color: #006abf;
}
.listing-cart .promo > a {
  display: block;
  padding-left: 10px;
  font-size: 13px;
  color: #006abf;
}
.listing-cart .promo small {
  overflow: hidden;
  font-size: 12px;
  color: #666;
  padding: 6px 0 0 10px;
}
.listing-cart .promo small a {
  color: #006abf;
}
.listing-cart .promo small:before {
  content: "•";
  color: #d8d8d8;
  display: inline-block;
  vertical-align: middle;
  margin: 0 3px 0 -7px;
}
.listing-cart .choose-color {
  justify-content: space-between;
  align-items: center;
  margin: 0;
  width: 100%;
}
@media (max-width: 700px) {
  .listing-cart .choose-color {
    margin-bottom: 5px;
  }
}
.listing-cart .choose-color .item-color {
  width: initial;
  border-radius: 5px;
  border: 1px solid var(--color-border);
  height: initial;
  padding: 2.5px 10px;
  font-size: 14px;
}
@media (max-width: 700px) {
  .listing-cart .choose-color .item-color {
    padding: 2.5px;
    min-width: initial;
    border-radius: 3px;
    font-size: 13px;
  }
}
@media (max-width: 700px) {
  .listing-cart .flex-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media (max-width: 700px) {
  .listing-cart .detail-content {
    padding-top: 10px;
  }
}
.listing-cart .gt-norn {
  display: flex;
  gap: var(--mgb-20);
  margin-bottom: var(--mgb-20);
  width: 100%;
  flex-direction: column;
}
@media (max-width: 700px) {
  .listing-cart .gt-norn {
    padding-top: 10px;
  }
}
.listing-cart .gt-norn label {
  margin-right: 0;
}
.listing-cart .gt-norn label span {
  top: 50%;
  transform: translateY(-50%);
}
.listing-cart .gt-norn label.radio-inline {
  font-weight: 400;
  width: initial;
  display: flex;
  align-items: center;
  gap: 10px;
}
.listing-cart .gt-norn label.radio-inline input {
  display: none;
}
.listing-cart .gt-norn input:checked ~ .checkmark {
  border: 1.1px solid var(--color-main);
}

.box-tab-sl {
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
  justify-content: center;
}
.box-tab-sl li {
  list-style: none;
}
.box-tab-sl li input {
  width: 37px;
  text-align: center;
  height: 32px;
  font-size: var(--fs-text-small);
  border-left: 0;
  border-right: 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  border-radius: 0;
}
@media (max-width: 700px) {
  .box-tab-sl li input {
    width: 30px;
    height: 30px;
  }
}
.box-tab-sl li input[readonly] {
  background: #EFEFEF;
}
.box-tab-sl li span {
  width: 37px;
  height: 32px;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  margin: 0;
  justify-content: center;
}
@media (max-width: 700px) {
  .box-tab-sl li span {
    width: 30px;
    height: 30px;
  }
}
.box-tab-sl li span:hover {
  cursor: pointer;
}
.box-tab-sl li:first-child {
  border-right: none;
}
.box-tab-sl li:first-child span {
  border-radius: 4px 0 0 4px;
}
.box-tab-sl li:last-child {
  border-left: none;
}
.box-tab-sl li:last-child span {
  border-radius: 0 4px 4px 0;
}

.conti {
  width: 250px;
  margin: auto;
  margin-bottom: var(--module-size);
  margin-top: 10px;
  height: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.conti a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--color-gradient-main);
  color: #fff;
  text-decoration: none;
  width: 100%;
  border-radius: 8px;
  gap: 10px;
  height: 100%;
}
.conti a:hover {
  background: var(--color-gradient-main-2);
}

.show-noti-cart {
  position: absolute;
  z-index: 10;
  width: 420px;
  right: 0;
  top: calc(100% - 15px);
  transition: top 0.5s ease, opacity 0.5s ease;
  padding-top: 28.5px;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 700px) {
  .show-noti-cart {
    position: fixed;
    width: 100vw;
    top: 56px;
    padding-top: 0;
  }
}
.show-noti-cart.active {
  top: 100%;
  opacity: 1;
  pointer-events: all;
}
.show-noti-cart .mini-cart-box {
  background: #FFF;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
}
.show-noti-cart .mini-cart-box .lst-itped {
  border-bottom: 1px dotted var(--color-border);
  padding: 15px 0;
  font-size: var(--fs-text-small);
}
.show-noti-cart .mini-cart-box .conti {
  margin: 0;
  width: 100%;
  padding: 15px;
  height: initial;
}
.show-noti-cart .mini-cart-box .conti a {
  height: 45px;
  background: var(--color-main);
}
.show-noti-cart p {
  font-size: var(--fs-text-small);
  margin-bottom: 11px;
  position: relative;
  color: #333;
  padding-left: 0;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 10px;
}
.show-noti-cart p svg {
  fill: var(--color-main);
}
.show-noti-cart .view-cart-h {
  background: var(--color-main);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0;
  line-height: 40px;
  text-align: center;
  color: #fff;
  text-transform: none;
  border-radius: 8px;
  border: 1px solid var(--color-main);
}

.mini-cart-box .list-cart-mini {
  max-height: 315px;
  overflow-y: auto;
  padding: 15px 15px 0 15px;
}
.mini-cart-box .cart-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  column-gap: 15px;
  padding-bottom: 15px;
}
.mini-cart-box .cart-item .cart-item-left {
  width: 73px;
  height: 73px;
  flex-shrink: 0;
  border-radius: 8px;
  border: 1px solid #D5D5D5;
  background: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
}
.mini-cart-box .cart-item .cart-item-left img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  width: initial;
  height: initial;
  display: block;
}
.mini-cart-box .cart-item .cart-item-right {
  width: calc(100% - 15px - 73px);
}
.mini-cart-box .cart-item .cart-item-right .flex-name {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 50px;
  align-items: flex-start;
}
.mini-cart-box .cart-item .cart-item-right .flex-name .cart-title {
  color: var(--color-text-menu-2);
  font-size: var(--fs-text-small);
  font-weight: 400;
  margin-bottom: 10px;
}
.mini-cart-box .cart-item .cart-item-right .flex-name .cart-title:hover {
  color: var(--color-main);
}
.mini-cart-box .cart-item .cart-item-right .flex-name .cart-title:hover a {
  color: var(--color-main);
}
.mini-cart-box .cart-item .cart-item-right .flex-name .cart-title a {
  color: var(--color-text-menu-2);
  font-size: var(--fs-text-small);
  font-weight: 400;
}
.mini-cart-box .cart-item .cart-item-right .flex-name .cart-title a font {
  color: var(--color-text-menu-2);
  font-size: var(--fs-text-small);
  font-weight: 400;
}
.mini-cart-box .cart-item .cart-item-right .cart-price-info {
  margin-bottom: 10px;
}
.mini-cart-box .cart-item .cart-item-right .cart-price-info .price-now {
  color: var(--color-price);
  font-size: var(--fs-text-small);
  font-weight: 700;
  line-height: 1;
}
.mini-cart-box .cart-item .cart-item-right .cart-price-info .price-now font {
  color: var(--color-main);
  font-size: var(--fs-text-small);
  font-weight: 700;
  line-height: 1.5;
}
.mini-cart-box .cart-item .cart-item-right .cart-price-info .price-old span {
  color: #8C8C8C;
  text-align: center;
  font-family: var(--color-main);
  font-size: var(--fs-text-tiny);
  font-weight: 400;
  line-height: 1.7;
  text-decoration-line: line-through;
}
.mini-cart-box .cart-item .cart-item-right .cart-price-info .price-old span font {
  color: #8C8C8C;
  text-align: center;
  font-family: var(--color-main);
  font-size: var(--fs-text-tiny);
  font-weight: 400;
  line-height: 1.7;
  text-decoration-line: line-through;
}
.mini-cart-box .cart-item .cart-item-right .cart-price-info .price-old .discount {
  color: var(--color-price);
  text-align: center;
  font-size: var(--fs-text-tiny);
  font-weight: 400;
  text-decoration-line: unset;
  line-height: 1.7;
  padding: 0;
}
.mini-cart-box .cart-item .cart-item-right .cart-price-info .price-old .discount font {
  text-decoration-line: unset;
  color: var(--color-price);
  text-align: center;
  font-size: var(--fs-text-tiny);
  font-weight: 400;
  line-height: 1.7;
}
.mini-cart-box .cart-item .cart-item-right .action-cart {
  margin-bottom: 0;
}
.mini-cart-box .cart-item .cart-item-right .total-price {
  cursor: default;
}
.mini-cart-box .order-summary {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 15px 15px 0 15px;
  border-top: 1px dotted var(--color-border);
}
.mini-cart-box .order-summary span {
  color: var(--color-text-menu-2);
  font-size: var(--fs-text-small);
  font-weight: 400;
}
.mini-cart-box .order-summary span font {
  color: var(--color-text-menu-2);
  font-size: var(--fs-text-small);
  font-weight: 400;
}
.mini-cart-box .order-summary .order-total {
  color: var(--color-price);
  text-align: right;
  font-size: var(--fs-text-small);
  font-weight: 700;
  line-height: 1.5;
}
.mini-cart-box .order-summary .order-total font {
  color: var(--color-main);
  text-align: right;
  font-size: var(--fs-text-small);
  font-weight: 700;
  line-height: 1.5;
}
.mini-cart-box .line {
  width: 100%;
  border: none;
  border-top: 1px dotted #A3A3A3;
  height: 1px;
}
.mini-cart-box .btn-checkout {
  display: flex;
  width: 100%;
  margin-top: 10px;
  padding: 0 15px 15px 15px;
}
.mini-cart-box .btn-checkout .detail {
  color: var(--color-white);
  width: 100%;
  height: 45px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--color-main);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
}
.mini-cart-box .btn-checkout .detail:hover {
  color: var(--color-main);
  background: transparent;
  border: 1px solid var(--color-main);
}
.mini-cart-box .btn-checkout .detail:hover svg path {
  stroke: var(--color-main);
}

.area-total .discountcode .usecode {
  display: block;
  overflow: hidden;
  padding-bottom: 10px;
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.area-total .discountcode .usecode span {
  overflow: hidden;
  color: #006abf;
  font-size: 14px;
}
.area-total .list_cart {
  border-bottom: 1px dotted var(--color-border);
  margin-bottom: 15px;
}
.area-total .list_cart .item {
  padding: 15px 0;
  border-top: 1px dotted var(--color-border);
  display: flex;
  align-items: center;
}
@media (max-width: 700px) {
  .area-total .list_cart .item {
    align-items: start;
  }
}
.area-total .list_cart .item .img {
  width: 73px;
  height: 73px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  padding: 5px;
}
.area-total .list_cart .item .img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  width: initial;
  height: initial;
  display: block;
}
.area-total .list_cart .item .infor {
  padding-left: 15px;
  width: calc(100% - 73px);
}
@media (max-width: 700px) {
  .area-total .list_cart .item .infor {
    padding-left: 10px;
  }
  .area-total .list_cart .item .infor .choose-qty {
    margin-bottom: 0;
    margin-top: 5px;
  }
  .area-total .list_cart .item .infor .choose-qty .item-color {
    border-radius: 3px;
    padding: 2.5px;
    height: inherit;
    min-width: initial;
    font-size: 13px;
  }
}
.area-total .list_cart .item .infor p {
  font-weight: 700;
  color: var(--color-main);
}
.area-total .list_cart .item .infor p span {
  font-weight: 400;
  color: var(--color-text-menu);
}
.area-total .list_cart .item .infor .name {
  margin-bottom: 5px;
}
.area-total .list_cart .item .infor .name a {
  font-weight: 400;
  color: var(--color-text-menu);
}
.area-total .total-provisional {
  display: flex;
  overflow: hidden;
  justify-content: space-between;
  border-bottom: 1px dotted var(--color-border);
  padding: var(--mgb-20) 0;
}
.area-total .total-provisional:first-child {
  padding-top: 0;
}
.area-total .total-provisional:last-child {
  border-bottom: none;
}
.area-total .total-provisional span {
  font-size: var(--fs-text-small);
}
.area-total .total-provisional strong:nth-child(2) {
  color: var(--color-price);
  font-weight: 700;
}
.area-total .go-to-payment {
  background: var(--color-main);
  display: flex;
  border: none;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  align-items: center;
  color: #fff;
  text-transform: uppercase;
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  height: 45px;
  transition: background 0.5s ease;
}
.area-total .go-to-payment:hover {
  background: var(--color-border);
  color: var(--color-text-menu);
}
.area-total .go-to-payment:hover svg path {
  stroke: var(--color-text-menu);
}

.infor-customer {
  width: 100%;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
@media (max-width: 700px) {
  .infor-customer {
    padding-top: 10px;
  }
}
.infor-customer .form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.infor-customer .form-group label.error {
  color: red;
  font-size: var(--fs-text-small);
}
.infor-customer .form-group select {
  border-radius: 6px;
  border: 1px solid #CFCFCF;
  background: url(../images/angle-down.svg) no-repeat;
  height: 50px;
  font-size: var(--fs-text-small);
  padding-left: 15px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  position: relative;
  background-position-x: calc(100% - 10px);
  background-position-y: 19px;
}
.infor-customer .form-group select:disabled {
  background: #CFCFCF;
  cursor: not-allowed;
}
.infor-customer .form-group input, .infor-customer .form-group textarea {
  border-radius: 6px;
  border: 1px solid #CFCFCF;
  background: #FFF;
  height: 50px;
  padding-left: 15px;
  font-size: var(--fs-text-small);
}
.infor-customer .form-group input::placeholder, .infor-customer .form-group textarea::placeholder {
  color: #979797;
  font-size: var(--fs-text-small);
}
.infor-customer .form-group textarea {
  aspect-ratio: 908/97;
  width: 100%;
  height: initial;
  resize: none;
  margin-bottom: 15px;
  padding-top: 10px;
}
.infor-customer .form-group label:not(.error) {
  font-weight: 700;
}
.infor-customer .form-group label:not(.error) span {
  color: red;
}
.infor-customer .form-group, .infor-customer .click-choose {
  width: 100%;
  margin: 0;
}
.infor-customer .group-3 {
  width: calc((100% - 30px) / 3);
}
@media (max-width: 700px) {
  .infor-customer .group-3 {
    width: 100%;
  }
}
.infor-customer .group-5 {
  width: calc((100% - 15px) / 2);
}
@media (max-width: 700px) {
  .infor-customer .group-5 {
    width: 100%;
  }
}
.infor-customer h4 {
  display: block;
  overflow: hidden;
  font-size: var(--fs-text-small);
  text-transform: uppercase;
}

.radio-inline {
  display: block;
  position: relative;
  padding-left: 24px;
  margin-right: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  float: left;
  text-transform: uppercase;
  font-size: 14px;
}
.radio-inline input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.radio-inline input:checked ~ .checkmark:after {
  display: block;
}

.checkmark {
  position: absolute;
  border: 1.1px solid #ccc;
  top: 7px;
  left: 5px;
  height: 15px;
  width: 15px;
  border-radius: 3px;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-c {
  padding-left: 33px;
  position: relative;
  padding-top: 4px;
}
.checkbox-c input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkbox-c .checkmark {
  width: 21px;
  height: 21px;
  border: 1px solid #dadada;
  top: 0;
  left: 0;
}
.checkbox-c input:checked ~ .checkmark:after {
  display: block;
  color: #da2032;
  border-radius: 0;
  content: "\f00c";
  font: normal normal normal 17px/1 FontAwesome;
  top: 1px;
  left: 1px;
}

.container input:checked ~ .checkmark {
  border: 1.1px solid #ed1b24;
}

.radio-inline .checkmark:after {
  color: #da2032;
  border-radius: 0;
  left: 1px;
  top: 1px;
  content: "\f00c";
  font: normal normal normal 14px/1 FontAwesome;
  background: #fff;
  font-size: 12px;
  width: 12px;
  height: 12px;
}
.radio-inline input:checked ~ .checkmark {
  border: 1px solid #ccc;
}

.inftimenh .radio-inline {
  margin-right: 30px;
  height: 36px;
  line-height: 36px;
  text-transform: initial;
}
.inftimenh .radio-inline input[type=text] {
  opacity: 1;
  cursor: initial;
  position: initial;
  height: 36px;
  padding-left: 20px;
  width: 150px;
  margin: 0 5px;
  border: 1px solid #dbdbdb;
  border-radius: 3px;
}

.gt-norn .checkmark {
  width: 22px;
  height: 22px;
  left: 0;
  border-radius: 15px;
}
.gt-norn .radio-inline {
  padding-left: 30px;
}
.gt-norn .radio-inline .checkmark:after {
  content: "";
  width: 9px !important;
  height: 9px !important;
  border-radius: 50% !important;
  top: 5.5px !important;
  left: 5.5px !important;
  background: var(--color-main);
}

#app > section {
  display: block;
  width: 100%;
  max-width: 600px;
  margin: auto;
  min-width: 0;
}
@media (max-width: 700px) {
  #app > section {
    padding: 0 15px;
  }
}

.middleCart {
  display: block;
  background: #fff;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  margin: 50px 0;
}

.alertsuccess {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  text-align: center;
  padding: 15px 0;
  text-transform: uppercase;
  color: #fff;
  gap: 10px;
  background: #34c772;
  border-radius: 8px 8px 0 0;
}

.cartnew-success {
  background-position: 0 -20px;
  width: 41px;
  height: 43px;
}

.alertsuccess i {
  margin-right: 5px;
}

.ordercontent {
  display: block;
  padding: 15px;
}
.ordercontent h3 {
  display: block;
  overflow: hidden;
  font-weight: 600;
  text-transform: uppercase;
  color: #333;
  padding: 10px 10px 0;
  font-size: 14px;
}
.ordercontent p {
  display: block;
  font-size: var(--fs-text-small);
  margin-bottom: 15px;
  line-height: 1.5;
}
.ordercontent p b, .ordercontent p strong {
  font-weight: 600;
}
.ordercontent .info-order {
  display: block;
  background-color: #F1F0F0;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
}
.ordercontent .info-order h4 {
  display: block;
  overflow: hidden;
  text-transform: uppercase;
  font-size: var(--fs-text);
  font-weight: 600;
  margin-bottom: 5px;
}
.ordercontent .info-order h4 b {
  color: var(--color-main);
}
.ordercontent .info-order h4 a {
  float: right;
  color: #006abf;
  text-transform: none;
}
.ordercontent .info-order label {
  display: block;
  margin: 0;
  font-size: var(--fs-text-small);
  margin-bottom: 5px;
  line-height: 1.5;
}
@media (max-width: 700px) {
  .ordercontent .info-order label {
    font-size: 14px;
  }
}
.ordercontent .info-order label:last-child {
  margin-bottom: 0;
  font-size: var(--fs-text-small);
}
.ordercontent .info-order label span {
  display: block;
  overflow: hidden;
}
.ordercontent .info-order label b {
  color: #f30c28;
  font-weight: 600;
}
.ordercontent .formality-pay {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px 0 0;
}
.ordercontent .formality-pay li {
  color: #fff;
  font-size: 15px;
}
.ordercontent .cancel-order .cancel-order__cancel-button {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 10px 0 10px 0;
  text-align: center;
  clear: right;
  color: #333;
  border-radius: 8px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  font-size: var(--fs-text-small);
  font-size: 15px;
  height: 45px;
}
@media (max-width: 700px) {
  .ordercontent .cancel-order .cancel-order__cancel-button {
    font-size: 14px;
  }
}

.formality-pay li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((100% - 10px) / 2);
  height: 50px;
  background-color: #006abf;
  border-radius: 8px;
  padding: 5px 0;
}
@media (max-width: 700px) {
  .formality-pay li {
    width: 100%;
  }
}
.formality-pay li .item-payment {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 5px;
}
.formality-pay li .item-payment span {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.formality-pay li .item-payment span .atm {
  background: #fff;
  border-radius: 4px;
  font-size: 11px;
  padding: 2.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #006abf;
}
.formality-pay li .item-payment .listcard {
  display: flex;
  gap: 5px;
  align-items: center;
}
.formality-pay li .item-payment .listcard svg {
  fill: #fff;
}
.formality-pay li.normal-payment {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #05b1f0 0%, #0e8dbb 100%);
  color: #fff;
  font-size: 15px;
}
.formality-pay li a {
  text-align: center;
  color: #fff;
  padding: 10px;
  display: block;
  overflow: hidden;
}
.formality-pay li a span {
  display: block;
  overflow: hidden;
}
.formality-pay li a i.cartnew-qrcode {
  margin-left: 10px;
}
.formality-pay li.qrcode a span {
  display: inline-block;
  vertical-align: middle;
}

.cartnew-atm {
  background-position: 0 -73px;
  width: 38px;
  height: 20px;
  margin-left: 10px;
}

.cartnew-mastercard {
  background-position: -70px -74px;
  width: 23px;
  height: 18px;
}

.cartnew-jbc {
  background-position: -98px -74px;
  width: 23px;
  height: 18px;
}

.cartnew-visa {
  background-position: -43px -74px;
  width: 23px;
  height: 18px;
}

.cartnew-qrcode {
  background-position: -95px -25px;
  width: 30px;
  height: 30px;
}

.timetakegoods h4 {
  display: block;
  overflow: hidden;
  text-transform: uppercase;
  padding-bottom: 10px;
  font-size: 14px;
}

.popup-hoantien {
  display: none;
}

.bg-hoantien {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #333;
  opacity: 0.8;
  z-index: 999;
}

.hoantienonline {
  position: fixed;
  background: #fff;
  border-radius: 4px;
  padding: 10px 20px 20px;
  width: 50%;
  max-width: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}
.hoantienonline .row-ht {
  display: block;
  overflow: hidden;
  padding: 10px 0;
}
.hoantienonline .row-ht strong {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  padding: 10px 0;
  width: 70%;
}
.hoantienonline .row-ht a {
  float: right;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 10px 10px 10px 24px;
  color: #006abf;
  position: relative;
}
.hoantienonline .row-ht a:after, .hoantienonline .row-ht a:before {
  content: "";
  width: 2px;
  height: 12px;
  background-color: #006abf;
  transform: rotate(45deg);
  display: block;
  position: absolute;
  top: 13px;
  left: 14px;
}
.hoantienonline p {
  display: block;
  overflow: hidden;
  padding: 5px 0;
  line-height: 22px;
}

.hoantienonline .row-ht a:before {
  transform: rotate(-45deg);
}

.refund-policy {
  text-align: center;
  color: #006adf;
  display: block;
  padding: 15px 0;
  font-size: var(--fs-text-small);
  color: var(--color-main);
}
.refund-policy p {
  margin-bottom: 0;
}
.refund-policy a {
  font-size: var(--fs-text-small);
  color: var(--color-main);
}

.buyanother {
  display: block;
  overflow: hidden;
  border: 1px solid var(--color-main);
  background-color: #fff;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  text-align: center;
  color: var(--color-main);
  font-size: var(--fs-text-small);
}
.buyanother:hover {
  background: var(--color-main);
  color: #fff;
}

.box-order {
  display: block;
  border: 1px solid var(--color-border);
  background: #fff;
  border-radius: 8px;
  margin-bottom: 10px;
  clear: both;
  padding: 15px;
}
.box-order .rowtime {
  float: left;
  width: 100%;
  box-sizing: border-box;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 15px;
}
.box-order .rowtime span {
  font-size: 15px;
}
@media (max-width: 700px) {
  .box-order .rowtime span {
    font-size: 14px;
  }
}
.box-order .rowtime span:nth-child(2) {
  float: right;
  color: #006abf;
  width: auto;
  text-align: right;
  cursor: pointer;
}
.box-order .ul-order {
  border-bottom: 1px solid #e9e9e9;
  display: block;
  overflow: hidden;
  margin: 0 10px;
  clear: both;
}
.box-order .img-order {
  width: 80px;
  height: 80px;
  border: 1px solid var(--color-border);
  padding: 5px;
  border-radius: 8px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
  font-size: 14px;
}
.box-order .img-order img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  width: initial;
  height: initial;
  display: block;
}
.box-order .text-order {
  display: block;
  width: calc(100% - 90px);
}
.box-order .text-order a {
  font-weight: 700;
  font-size: var(--fs-text-small);
  display: flex;
  justify-content: space-between;
  color: var(--color-text-menu-2);
  margin-bottom: 5px;
}
.box-order .text-order a span {
  font-weight: 400;
}
.box-order .gift-promotion {
  width: calc(100% - 90px);
  margin-top: 25px;
  margin-left: 90px;
  clear: both;
  border-radius: 10px;
  border: 1px solid #eee;
  position: relative;
  padding: 20px 15px 15px 15px;
  position: relative;
}
.box-order .gift-promotion .tool-tip.km {
  position: absolute;
  top: -12px;
  left: 15px;
  background: var(--color-main);
  color: #fff;
  font-size: 12px;
  padding: 3px 15px 3px 15px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 0;
  display: flex;
  gap: 5px;
  align-items: center;
}
.box-order .gift-promotion .tool-tip.km svg {
  fill: #fff;
}
.box-order .choose-time .timeline {
  margin: 0 10px;
  position: relative;
  display: table;
  width: calc(100% - 20px);
}
.box-order .choose-time .timeline button {
  display: block;
  background: #fff url(../images/ic-select-d.png) no-repeat;
  background-position: center right 10px;
  border: 1px solid #d1d1d1;
  color: #006abf;
  border-radius: 4px;
  padding: 10px;
  width: 100%;
  position: relative;
  text-align: left;
  cursor: pointer;
}
.box-order .choose-time .timeline .selecttime {
  position: absolute;
  right: 0;
  left: 0;
  top: 45px;
  border: 1px solid #cacaca;
  background: #fff;
  z-index: 0;
  border-radius: 4px;
  max-height: 116px;
  overflow-y: scroll;
}
.box-order .choose-time .timeline .selecttime span {
  display: block;
  padding: 10px;
  color: #006abf;
  cursor: pointer;
}
.box-order .choose-time .timeline .selecttime span.active {
  background: #006abf;
  color: #fff;
}
.box-order ul {
  list-style: none;
  display: block;
}
.box-order ul li {
  display: flex;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color-border);
  width: 100%;
  align-items: start;
  flex-wrap: wrap;
  column-gap: 10px;
}
.box-order ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.box-order .lastrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0 0 0;
  border-top: 1px solid var(--color-border);
  padding: 15px 0 0 0;
}
.box-order .lastrow small {
  font-size: var(--fs-text);
}
.box-order .lastrow small:nth-child(1) {
  font-weight: 700;
}
.box-order .lastrow small:nth-child(2) {
  color: #f30c28;
  font-size: 20px;
  font-weight: 700;
}
.box-order li .amount-color {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  justify-content: space-between;
}
.box-order li .amount-color .quanlity {
  font-size: var(--fs-text-small);
}
.box-order li .amount-color .price-infor {
  justify-content: end;
  display: flex;
  flex-wrap: wrap;
  column-gap: 4px;
}
.box-order li .amount-color .price-infor span.price {
  width: 100%;
  font-size: var(--fs-text-small);
  color: var(--color-price);
  font-weight: 700;
  margin-bottom: 0;
  text-align: right;
}
.box-order li .amount-color .price-infor span.oldprice {
  color: #333;
  text-decoration: line-through;
  background: transparent;
  font-weight: 400;
  display: block;
  font-size: var(--fs-text-small);
  text-align: right;
}
.box-order li .amount-color .price-infor span.percent {
  font-weight: 400;
  font-size: var(--fs-text-small);
  color: var(--color-price);
  padding: 0;
}
.box-order li .amount-color .vat {
  color: var(--color-main);
  float: initial;
  font-size: 13px;
  justify-content: end;
  width: 100%;
  display: flex;
}

.ui-widget.ui-widget-content {
  z-index: 10000;
  border: none;
  box-shadow: 0 0 5px -3px #333333;
}

.ui-menu .ui-menu-item {
  padding: 0;
}

.ui-menu .ui-menu-item .info {
  padding-left: 10px;
}

.ui-menu .ui-menu-item-wrapper {
  display: flex;
  transition: initial;
}

.ui-menu .ui-menu-item-wrapper.title-auto {
  background: #eeeeee;
  font-size: 12px;
  display: block;
  cursor: text;
}

.ui-menu .ui-menu-item-wrapper.title-keyword {
  font-size: 12px;
  display: block;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: none;
  background: transparent;
  color: red;
  margin: 0;
}

.title-auto.ui-state-active {
  color: #333333;
}

.search-type {
  display: flex;
  padding: var(--mgb-20) 0;
}

.search-type p {
  margin-bottom: 0;
}

.search-type .link {
  margin-left: 10px;
  margin-bottom: 0;
  position: relative;
  padding-left: 23px;
}

.search-type .link .checkmark {
  width: 16px;
  height: 16px;
  border-radius: 16px;
  border: 1px solid #333333 !important;
  position: absolute;
  left: 0;
  top: 2px;
}

.search-type .link .checkmark:before {
  content: "";
  width: 10px;
  height: 10px;
  background: #e51e21;
  display: block;
  border-radius: 14px;
  position: relative;
  top: 2px;
  left: 2px;
  opacity: 0;
}

.search-type .link.active .checkmark:before {
  opacity: 1;
  border: 1px solid #e51e21 !important;
}

.search-type p > span {
  font-weight: 600;
}

.product-search .grid-prd-5 {
  padding-top: 0;
}

.product-search .grid-load-product .load {
  grid-column: 1/6;
}

.grid-load-search .item-news {
  display: flex;
}

.grid-load-search .item-news .img {
  width: 150px;
}

.grid-load-search .item-news .img img {
  width: 100%;
}

.grid-load-search .item-news .info {
  width: calc(100% - 150px);
  padding-left: 15px;
}

.news-search {
  padding: 10px;
  background: #ffffff;
  margin-bottom: 10px;
}

.grid-search-news .item-news {
  padding: 10px 0;
  border-bottom: 1px solid #f1f1f1;
}

.grid-search-news .item-news .info h3,
.grid-search-news .item-news .info h3 a {
  font-size: 15px;
  color: #1c348d;
}

.grid-search-news .item-news .info h3 a:hover {
  color: #dc3545;
}

.grid-search-news .item-news .info h3 {
  margin: 0;
}

.grid-search-news .item-news .info p,
.grid-search-news .item-news .info h2 {
  font-size: 14px;
  margin-bottom: 0;
}

.grid-search-news .item-news .info > span {
  font-size: 13px;
  color: #d2d2d2;
}

.sort-news-search {
  display: flex;
  padding: 5px 10px 10px 10px;
  border-bottom: 1px solid #f1f1f1;
}

.sort-news-search p {
  margin-bottom: 0;
  font-size: 13px;
  color: #b9b9b9;
}

.sort-news-search label {
  margin-left: 10px;
  margin-bottom: 0;
  position: relative;
  padding-left: 23px;
  font-size: 13px;
  color: #b9b9b9;
  cursor: pointer;
}

.sort-news-search label input {
  display: none;
}

.sort-news-search label .checkmark {
  width: 14px;
  height: 14px;
  border-radius: 14px;
  border: 1px solid #333333 !important;
  position: absolute;
  left: 0;
  top: 2px;
  background: #ffffff;
}

.sort-news-search label .checkmark:before {
  content: "";
  width: 8px;
  height: 8px;
  background: #fba11a;
  display: block;
  border-radius: 14px;
  position: relative;
  top: 2px;
  left: 2px;
  opacity: 0;
}

.sort-news-search label input:checked ~ .checkmark {
  border: 1px solid #fba11a !important;
}

.sort-news-search label input:checked ~ .checkmark:before {
  opacity: 1;
}

.sort-news-search p > span {
  font-weight: 600;
}

/*# sourceMappingURL=main.css.map */
