/* Fonts */
:root {
  --color-main: #982230;
  --color-hover: #982230;
  --color-text: #383838;
  --color-content: #5c5c5c;
  --color-background: #fff;
  --font-roboto: "Roboto", sans-serif;
  --font-oswald: "Oswald", sans-serif;
  --font-roboto-condensed: "Roboto Condensed", sans-serif;
}

html {
  scroll-behavior: smooth;
}
body {
  font-size: 14px;
  color: var(--color-text);
  font-weight: 400;
  line-height: 1.5;
  font-family: var(--font-roboto);
  background: var(--color-background);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-roboto);
}

.body-container {
  position: relative;
  overflow: hidden;
}

.wrap-content {
  max-width: 1200px;
  width: calc(100% - 20px);
  margin: 0px auto;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: inline-block;
}
img.lazy {
  display: block;
  opacity: 0;
}
img:not(.initial) {
  transition: opacity 1s;
}
img:not([src]) {
  visibility: hidden;
}
img:is(.loaded, .error) {
  opacity: 1;
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
}

ol,
ul {
  list-style: unset;
}

.content-text a {
  color: #0d6efd;
  text-decoration: underline;
}

.social-plugin {
  display: flex;
  gap: 2px;
  margin: 12px 0;
}

.scale-img {
  display: block;
  overflow: hidden;
}
.scale-img img {
  transform: scale(1, 1);
  transition: all 0.3s ease;
}
.scale-img:hover img {
  transform: scale(1.1, 1.1);
  transition: all 0.3s ease;
}

.text-split {
  --line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: var(--line-clamp, 3);
}

/* Transition All */
.transition,
.btn-frame .kenit-alo-circle-fill {
  transition: 0.3s all;
}

/* header */
.header-top {
  background: #f5f5f5;
  padding: 2px 0;
}
.header-top .header-cols:nth-child(1) {
  width: 36%;
}
.header-top .header-cols:nth-child(1) marquee {
  display: inline-flex;
  color: #2b2b2b;
  font-size: 13px;
  font-weight: 400;
}
.header-top .header-hotline {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #2b2b2b;
  font-size: 13px;
  font-weight: 400;
}
.header-top .header-hotline img {
  margin-right: 4px;
}
.header-top .header-hotline span {
  color: #0741a4;
  font-size: 13px;
  font-weight: 600;
}

.header-bottom .wrap-content {
  display: grid;
  grid-template-columns: 8.5% 33.847% 17% minmax(0, 1fr);
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.header-bottom .header-cols:nth-child(1) {
  text-align: right;
}
.header-bottom .header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-bottom .header-info p {
  color: #0741a4;
  font-size: 13px;
  font-weight: 500;
  line-height: 25px;
  margin-bottom: 0;
}
.header-bottom .header-info span {
  color: #3c434a;
  font-size: 13px;
  font-weight: 400;
  line-height: 25px;
}

/* Menu */
.fixed-menu {
  position: fixed !important;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}
.fixed-menu .menu {
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.4);
}

.menu {
  position: relative;
  z-index: 100;
  background: white;
}
.menu ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.menu ul li {
  position: relative;
  z-index: 99;
  text-align: center;
}
.menu ul li.menu-line {
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
}
.menu ul li a {
  position: relative;
  display: block;
  color: black;
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
  text-transform: uppercase;
  background: transparent;
  padding: 10px;
}
.menu ul li a.active {
  /* background: var(--color-hover); */
  /* color: #fff; */
}

.menu ul li a .menu-category-list-btn {
  position: absolute;
  right: -12px;
  top: calc(50% - 7px);
  font-size: 14px;
  line-height: 1;
  transition: all 0.2s ease-out;
}
.menu ul li:hover > a {
  /* background: var(--color-hover); */
  /* color: #fff; */
}
.menu ul li:hover > a .menu-category-list-btn {
  transform: rotate(90deg);
}
.menu ul li:hover > ul {
  transform: perspective(600px) rotateX(0);
  transform-origin: 0 0 0;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}
.menu ul li ul {
  position: absolute;
  min-width: 220px;
  background-color: #fafafa;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15);
  transform: perspective(600px) rotateX(-90deg);
  transform-origin: 0 0 0;
  opacity: 0;
  visibility: hidden;
}
.menu ul li ul li:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
.menu ul li ul li:hover > a {
  background: var(--color-main);
  color: #fff;
}
.menu ul li ul li:hover > a .menu-category-list-btn {
  transform: rotate(180deg);
}
.menu ul li ul li a {
  text-align: left;
  font-size: 14px;
  color: #333;
  text-transform: capitalize;
  padding: 6px 10px;
}
.menu ul li ul li a::before {
  display: none;
}
.menu ul li ul li a .menu-category-list-btn {
  right: 10px;
}
.menu ul li ul li ul {
  top: 0;
  left: 100%;
  margin-top: 0px;
}

/* Search */
.search {
  width: 144px;
  border-bottom: 1px solid #dcdcdc;
  background: #fff;
  margin-left: 10px;
  position: relative;
  padding: 10px 0;
}
.search button {
  background: #0741a4;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 17px;
  margin: 4px;
}

/* Mmenu */
.menu-res {
  display: none;
  position: relative;
  z-index: 100;
}

#hamburger {
  width: 40px;
  height: 40px;
  position: relative;
  border: 2px solid var(--color-main);
  border-radius: 6px;
  display: grid;
  place-items: center;
}
#hamburger span {
  font-size: 23px;
  line-height: 1;
  color: var(--color-main);
  transition: all 0.3s ease;
}

.mm-wrapper_opening #hamburger span::before {
  content: "\f00d";
}

.mm-menu_opened {
  display: block !important;
}

.mm-slideout {
  z-index: unset;
}

/* Search */
.search-res {
  position: relative;
}
.search-res .icon-search {
  cursor: pointer;
  width: 40px;
  height: 40px;
  color: #363533;
  font-size: 16px;
  line-height: 1;
  margin: 0px;
  display: grid;
  place-items: center;
}
.search-res .icon-search.active {
  color: #fff;
  background: var(--color-main);
  border-radius: 50%;
}
.search-res .search-grid {
  position: absolute;
  top: 50px;
  right: 0px;
  width: 0px;
  height: 40px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--color-main);
  z-index: 2;
  opacity: 0;
  border-radius: 25px;
  line-height: normal;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px;
}
.search-res .search-grid button {
  cursor: pointer;
  width: 100%;
  height: 100%;
  outline: none;
  border: none;
  margin: 0px;
  font-size: 16px;
  display: grid;
  place-items: center;
}
.search-res .search-grid input {
  font-size: 13px;
  width: 100%;
  height: 38px;
  text-indent: 10px;
  outline: none;
  border: none;
  box-shadow: none;
}

/* Main */
.title-main {
  position: relative;
  margin-bottom: 1.5rem;
}

.title-main h2 {
  color: #565659;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 0;
  position: relative;
  padding-left: 30px;
}
.title-main h2::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 32px;
  background: #982230;
  left: 0;
}

.title-detail {
  text-align: center;
  margin-bottom: 1.5rem;
}
.title-detail h1 {
  color: var(--color-text);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 0;
}

.title-related {
  text-align: center;
  margin-bottom: 0.5rem;
}
.title-related h2 {
  color: var(--color-main);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 0;
}

/* Embla */
.embla__button {
  cursor: pointer;
  outline: none;
  border: 0px;
  color: #ffffff;
  width: 40px;
  height: 40px;
  font-size: 17px;
  background: var(--color-main);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
}
.embla__button:hover {
  background: var(--color-hover);
}
.embla__button.embla__button--prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}
.embla__button.embla__button--next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

/* breadCrumbs */
.breadCrumbs {
  padding: 10px 0px;
  background: #ddd;
}
.breadCrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadCrumbs ol li a {
  color: #333;
}
.breadCrumbs ol li.active a,
.breadCrumbs ol li:hover a {
  color: var(--color-main);
}

/* Embla */
.embla__dots {
  position: absolute;
  top: 240px;
  right: calc(50% - 600px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.embla__dots .embla__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  transition: all 0.3s ease;
}
.embla__dots .embla__dot.embla__dot--selected {
  position: relative;
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid #fff;
}
.embla__dots .embla__dot.embla__dot--selected::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: calc(50% - 3px);
  left: calc(50% - 3px);
  border-radius: 50%;
  background: #fff;
}

/* Slider */
.slideshow-slide {
  aspect-ratio: 412/171;
}

/* Album */
.album-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.album-item .scale-img {
  border-radius: 0;
}

.album-viewmore {
  text-align: center;
  margin-top: 30px;
}
.album-viewmore a {
  position: relative;
  padding: 10px 70px 10px 40px;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: 50px;
  border: 1px solid #777;
  color: #252525;
  font-size: 13px;
  font-weight: 400;
  line-height: 30px;
  text-transform: capitalize;
  transition: all 0.3s ease;
}
.album-viewmore a span {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: #0741a4;
  border-radius: 50%;
}
.album-viewmore a:hover {
  box-shadow: 0 0 10px 0 var(--color-main);
  color: var(--color-main);
}

/* Product */
.product-item {
  position: relative;
  padding: 7px;
  text-align: center;
  border: 1px solid #dbdbdb;
  background: #fff;
}
.product-item .product-photo {
  margin-bottom: 1rem;
}
.product-item .product-photo .scale-img {
  /* border-radius: 10px; */
}
.product-item .product-name {
  text-transform: uppercase;
  margin-bottom: 4px;
  transition: all 0.3s ease;
  color: var(--nhn-2, #565659);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 350% */
  height: 60px;
}
.product-item .product-name:hover {
  color: var(--color-main);
}
.product-item .product-desc {
  color: #7c7c7c;
  font-size: 13px;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 10px;
}

/* News */
.section-news .wrap-content {
  max-width: 1190px;
}

.news-slide {
  padding: 1px;
  margin: -1px;
}

.news-item.news-item-first {
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0;
}
.news-item.news-item-first .news-info {
  padding: 22px 4px 8px 18px;
}

.news-item {
  position: relative;
  padding: 10px;
}
.news-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  border: 1px dashed #c0b9a3;
  z-index: 1;
  pointer-events: none;
}
.news-item .news-photo .scale-img {
  border-radius: 10px;
}
.news-item .news-name {
  color: #1e2a38;
  font-size: 15px;
  font-weight: 600;
  line-height: 25px;
  text-transform: uppercase;
  margin-bottom: 4px;
  transition: all 0.3s ease;
}
.news-item .news-name:hover {
  color: var(--color-main);
}
.news-item .news-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #818181;
  font-size: 13px;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 0;
}
.news-item .news-desc {
  color: #7c7c7c;
  font-size: 13px;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 10px;
}
.news-item .news-viewmore {
  text-align: right;
}
.news-item .news-viewmore a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2b2b2b;
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  line-height: 25px;
  transition: all 0.3s ease;
}
.news-item .news-viewmore a:hover {
  color: var(--color-main);
}
.news-item .news-viewmore a span {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--color-hover);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
}

/* About Detail */
.body-container.about {
  overflow: visible;
}

.album-detail-container {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.about-detail-cols:nth-child(1) {
  width: 280px;
}

.about-detail-cols:nth-child(2) {
  flex: 1 1 0%;
}

.about-detail-box {
  position: sticky;
  top: 70px;
}

.category-news .category-news-title {
  background: var(--color-hover);
  display: grid;
  place-items: center;
  padding: 10px 20px;
  border-radius: 10px 10px 0 0;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
}
.category-news .category-news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
  border-radius: 0 0 10px 10px;
  padding: 10px 20px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 0 10px 0 #e0e0e0;
}
.category-news .category-news-list li a {
  display: block;
  color: #2c2c2c;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 5px 0;
}
.category-news .category-news-list li a:hover,
.category-news .category-news-list li a.active {
  color: var(--color-main);
}

.about-detail-cols .title-detail-about {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  padding: 20px;
}
.about-detail-cols .title-detail-about h1 {
  color: var(--color-main);
  font-size: 36px;
  font-family: var(--font-oswald);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0;
}
.about-detail-cols .content-text {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 0 0 10px 10px;
  padding: 20px;
}

/* News Detail */
.share {
  padding: 17px 10px 10px 10px;
  line-height: normal;
  background: rgba(128, 128, 128, 0.15);
  margin-top: 15px;
  border-radius: 5px;
}

.othernews b {
  display: block;
  margin-bottom: 10px;
}

.list-news-other {
  padding-left: 17px;
  list-style: square;
}
.list-news-other li {
  margin-bottom: 2px;
}
.list-news-other li a {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #151515;
  transition: all 0.3s ease;
}
.list-news-other li a:hover {
  color: var(--color-main);
}

.box-news-detail {
  display: block;
  border: 1px solid var(--color-main);
  border-radius: 10px;
  padding: 10px 10px;
  margin-bottom: 20px;
  background: rgb(0 0 0 / 5%);
}
.box-news-detail .info-news-detail {
  font-weight: 400;
  font-size: 16px;
  padding: 5px 0;
  margin: 0;
}
.box-news-detail .info-news-detail i {
  color: var(--color-main);
}
.box-news-detail .contact-news-detail {
  display: block;
  background: var(--color-main);
  text-align: center;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 7px 10px;
  margin-top: 11px;
  transition: all 0.3s ease;
}
.box-news-detail .contact-news-detail:hover {
  background: var(--color-hover);
}
.box-news-detail .title-related h2 {
  font-size: 24px;
}

.news-item-detail {
  position: relative;
  text-align: center;
}
.news-item-detail .news-photo {
  margin-bottom: 0.75rem;
}
.news-item-detail .news-photo .scale-img {
  border-radius: 10px;
}
.news-item-detail .news-info .news-name {
  color: #282828;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}
.news-item-detail .news-info .news-name:hover {
  color: var(--color-main);
}
.news-item-detail .news-info .news-desc {
  color: #4d4d4d;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0;
}

/* Sort */
.sort-select {
  display: flex;
  justify-content: end;
  margin: 20px 0px;
  position: relative;
}
.sort-select .click-sort {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  padding: 6px 10px 6px 8px;
  margin: 0px;
}
.sort-select .sort-select-main {
  display: grid;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  position: absolute;
  padding: 0 7px;
  top: 30px;
  right: 0;
  width: 160px;
  z-index: 2;
}
.sort-select .sort-select-main p {
  border-bottom: 1px solid #f1f1f1;
  margin: 0px;
  order: 2;
}
.sort-select .sort-select-main p:has(.check) {
  order: 1;
}
.sort-select .sort a {
  color: #000;
  font-size: 14px;
  line-height: 17px;
  padding: 11px 3px;
  display: block;
  cursor: pointer;
}
.sort-select .sort a.check i {
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  transform: scale(var(--ggs, 1));
  width: 22px;
  height: 16px;
  border: 2px solid transparent;
  border-radius: 100px;
  vertical-align: middle;
}
.sort-select .sort a.check i:after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  left: 3px;
  top: -4px;
  width: 6px;
  height: 10px;
  border-width: 0 2px 2px 0;
  border-style: solid;
  transform-origin: bottom left;
  transform: rotate(45deg);
}
.sort-select .sort-show {
  padding-right: 12px;
  position: relative;
}
.sort-select .sort-show:before {
  content: "";
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #333;
  content: "";
  height: 0;
  position: absolute;
  top: 6px;
  right: 0;
  width: 0;
}

/* Category list */
.left-product {
  position: sticky;
  top: 60px;
}

.category-title {
  background: var(--color-main);
  padding: 10px 15px;
  color: white;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0;
  display: grid;
  place-items: center;
}

.category-product-list {
  background: #fff;
  box-shadow: 0 0 10px 0 #e0e0e0;
  border: 1px solid #e0e0e0;
  border-top: 0;
  padding: 10px;
}
.category-product-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.category-product-list ul li {
  position: relative;
  padding: 10px 0;
}
.category-product-list ul li:not(:last-child) {
  border-bottom: 1px solid #e0e0e0;
}
.category-product-list ul li a {
  position: relative;
  display: block;
  color: #2c2c2c;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.category-product-list ul li a .btn-toggle {
  border: 0;
  outline: 0;
  box-shadow: none;
  position: absolute;
  width: 40px;
  height: 40px;
  top: calc(50% - 20px);
  right: 0;
  line-height: 1;
  display: grid;
  place-items: center;
  color: #333;
}
.category-product-list ul li a .btn-toggle:hover {
  color: var(--color-main);
}
.category-product-list ul li a:hover,
.category-product-list ul li a.active {
  color: var(--color-main);
}
.category-product-list ul li ul {
  display: none;
  padding: 0 20px !important;
}
.category-product-list ul li ul li a {
  color: #333;
  font-size: 14px;
  font-weight: 400;
}

/* Product Detail */
.grid-properties {
  display: flex;
  gap: 10px;
  margin: 10px 0px;
}
.grid-properties span {
  position: relative;
  border: 1px solid #ddd;
  padding: 5px 15px;
  cursor: pointer;
}
.grid-properties span:hover,
.grid-properties span.active {
  border: 1px solid #f00;
  color: #f00;
}
.grid-properties span:hover:after,
.grid-properties span.active:after {
  content: "";
  border: 0.9375rem solid transparent;
  border-bottom: 0.9375rem solid var(#d0011b, #ee4d2d);
  bottom: 0;
  position: absolute;
  right: -0.9375rem;
}
.grid-properties span.outstock {
  pointer-events: none;
  background-color: #fafafa;
  color: rgba(0, 0, 0, 0.26);
  cursor: not-allowed;
}

.filter {
  cursor: pointer;
  position: absolute;
  right: 0px;
  top: 0px;
  padding: 5px 10px;
  background: #f1f1f1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  text-transform: uppercase;
  border-radius: 5px;
  border: 1px solid #ddd;
  display: none;
}

.attr-pro-detail {
  list-style: none;
  padding: 0px;
}
.attr-pro-detail li {
  margin-bottom: 0.5rem;
}
.attr-pro-detail li .attr-label-pro-detail {
  font-weight: 700;
  margin-bottom: 0;
}
.attr-pro-detail li .attr-content-pro-detail {
  font-weight: 400;
}
.attr-pro-detail li .price-new-pro-detail {
  font-size: 20px;
  color: #e30613;
  font-weight: 700;
}
.attr-pro-detail li .price-old-pro-detail {
  font-size: 17px;
  color: #666666;
  font-weight: 400;
  text-decoration: line-through;
}

/* Detail */
.quantity-pro-detail {
  width: 100%;
  max-width: 110px;
  line-height: normal;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.quantity-pro-detail span {
  line-height: 25px;
  padding: 0px;
  width: 30px;
  height: 30px;
  color: #5f5f5f;
  cursor: pointer;
  font-size: 22px;
  border: 1px solid #cccccc;
}
.quantity-pro-detail span.quantity-plus-pro-detail {
  border-left: 0px;
}
.quantity-pro-detail span.quantity-minus-pro-detail {
  border-right: 0px;
}
.quantity-pro-detail input {
  height: 30px;
  border: 1px solid #cccccc;
  width: calc(100% - 60px);
  text-align: center;
  font-size: 14px;
  padding: 5px;
  padding-left: 20px;
}

.attr-pro-detail .cart-pro-detail a {
  cursor: pointer;
  width: auto;
  text-align: center;
  color: #fff;
  padding: 8px 15px;
  text-transform: uppercase;
  border-radius: 3px;
  display: flex;
  align-items: center;
  border: 1px solid transparent;
}
.attr-pro-detail .cart-pro-detail a:hover {
  background-color: var(--color-btn) !important;
  box-shadow: 0 2px 10px var(--color-btn);
}
.attr-pro-detail .cart-pro-detail a.addnow {
  background: var(--color-main);
  margin-right: 0 !important;
}
.attr-pro-detail .cart-pro-detail a.buynow {
  background: var(--color-hover);
}
.attr-pro-detail .cart-pro-detail a i {
  vertical-align: top;
  margin-top: 3px;
  margin-right: 8px;
}

.tabs-pro-detail .nav-tabs {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}
.tabs-pro-detail .nav-tabs .nav-link.active {
  border-top-color: #9d9d9d;
  color: #000;
}
.tabs-pro-detail .nav-tabs .nav-item.show .nav-link {
  border-top-color: #9d9d9d;
}

/* Pagination */
.pagination {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.pagination .page-item .page-link {
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  font-size: 14px !important;
  line-height: 1;
  font-weight: 600;
  border: 1px solid #ababab;
  border-radius: 50% !important;
  color: #333;
  background: rgb(255, 255, 255);
  transition: all 0.3s ease;
}
.pagination .page-item .page-link:hover {
  color: #333;
  background: #fbd93e;
  border-color: #fbd93e;
}
.pagination .page-item.active .page-link {
  color: #333;
  background: #fbd93e;
  border-color: #fbd93e;
}
.pagination .page-item.disabled .page-link {
  pointer-events: none;
}
.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
  font-size: 0 !important;
}
.pagination .page-item:first-child .page-link::before,
.pagination .page-item:last-child .page-link::before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 14px;
}
.pagination .page-item:first-child .page-link::before {
  content: "\f053";
}
.pagination .page-item:last-child .page-link::before {
  content: "\f054";
}

/* Footer */
.footer-container {
  position: relative;
  color: #fff;
  font-size: 13px;
  font-weight: 300;
}

.footer-article {
  position: relative;
  background: url(../images/main/bg_footer.png);
}
.footer-article::before {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  max-width: 1300px;
  width: 100%;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: -1;
  pointer-events: none;
}
.footer-article .footer-title {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 8px;
  position: relative;
}
.footer-article .footer-name {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}
.footer-article .footer-ul {
  list-style: disc;
  padding: 0;
  margin: 0;
  font-size: 8px;
  padding-left: 14px;
}
.footer-article .footer-ul li:not(:last-child) {
  margin-bottom: 1rem;
}
.footer-article .footer-ul h3 {
  color: #fff;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
  text-transform: capitalize;
  margin-bottom: 0;
  transition: all 0.3s ease;
}
.footer-article .footer-ul h3:hover {
  color: yellow;
}
.footer-article .footer-maps-iframe {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.footer-article .footer-maps-iframe iframe {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.footer-powered {
  text-align: center;
  padding: 14px 0;
  background: var(--ch-o, #982230);
}

/* Contact */
.contact-form .contact-input {
  color: #333;
}

.contact-map {
  position: relative;
  height: 100%;
}
.contact-map iframe {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}

/* Card fixed */
.cart-fixed {
  position: fixed;
  right: 20px;
  bottom: 400px;
  z-index: 10;
  display: none;
}

/* Btn Frame */
.btn-frame {
  display: block;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.btn-frame i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-frame i img {
  vertical-align: middle;
  width: 70%;
}
.btn-frame .animated.infinite {
  animation-iteration-count: infinite;
}
.btn-frame .kenit-alo-circle {
  width: 60px;
  height: 60px;
  top: -5px;
  right: -5px;
  position: absolute;
  background-color: transparent;
  border-radius: 100%;
  opacity: 0.5;
}
.btn-frame .zoomIn {
  animation-name: zoomIn;
}
.btn-frame .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.btn-frame .kenit-alo-circle-fill {
  width: 70px;
  height: 70px;
  top: -10px;
  right: -10px;
  position: absolute;
  border-radius: 100%;
  border: 2px solid transparent;
  background-color: rgba(7, 41, 103, 0.35);
  opacity: 0.4;
}
.btn-frame .pulse {
  animation-name: pulse;
}

/* scrollToTop */
.scrollToTop {
  cursor: pointer;
  width: 41px;
  height: 41px;
  text-align: center;
  font-weight: bold;
  color: #444;
  position: fixed;
  bottom: 65px;
  right: 25px;
  display: none;
  z-index: 10;
}

/* Hidden Google Captcha */
.grecaptcha-badge {
  display: none !important;
  width: 0px !important;
  height: 0px !important;
  visibility: hidden !important;
  overflow: hidden;
}

/* Hvr Float Shadow */
.hvr-float-shadow {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 0 0 1px transparent;
  transform: perspective(1px) translateZ(0);
  transition-duration: 0.3s;
  transition-property: transform;
}
.hvr-float-shadow:before {
  content: "";
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 5%;
  z-index: -1;
  width: 90%;
  height: 10px;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.35) 0,
    transparent 80%
  );
  transition-property: transform, opacity;
  transition-duration: 0.3s;
  pointer-events: none;
}
.hvr-float-shadow:active {
  transform: translateY(-5px);
}
.hvr-float-shadow:active:before {
  opacity: 1;
  transform: translateY(5px);
}
.hvr-float-shadow:focus {
  transform: translateY(-5px);
}
.hvr-float-shadow:focus:before {
  opacity: 1;
  transform: translateY(5px);
}
.hvr-float-shadow:hover {
  transform: translateY(-5px);
}
.hvr-float-shadow:hover:before {
  opacity: 1;
  transform: translateY(5px);
}

.duongcheosang3 {
  position: relative;
  overflow: hidden;
}
.duongcheosang3::before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  bottom: 0;
  left: 0;
  position: absolute;
  transform: rotate(90deg);
  opacity: 1;
  width: 0;
  height: 0;
  z-index: 1;
}
.duongcheosang3::after {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  top: 0;
  right: 0;
  position: absolute;
  transform: rotate(90deg);
  opacity: 1;
  width: 0;
  height: 0;
  z-index: 2;
}
.duongcheosang3:hover::before,
.duongcheosang3:hover::after {
  transform: rotateY(180deg);
  transition-duration: 1.3s;
  opacity: 0;
  height: 100%;
  width: 100%;
}

/* Toc */
.box-readmore {
  padding: 8px 15px;
  border: 1px solid #dedede;
  margin-bottom: 2rem;
  border-radius: 5px;
  background-color: #eeeeee;
}
.box-readmore ul {
  list-style-type: none;
  counter-reset: item;
  margin-bottom: 0;
  padding-left: 0 !important;
  margin-top: 8px;
}
.box-readmore ul li {
  display: table;
  counter-increment: item;
  margin-bottom: 5px;
}
.box-readmore ul li:before {
  content: counters(item, ".") ". ";
  display: table-cell;
  padding-right: 5px;
}
.box-readmore ul li a {
  color: #333333;
  cursor: pointer;
  font-weight: 600;
}
.box-readmore ul li a:hover {
  color: #767676;
}
.box-readmore li ul > li {
  margin: 0;
  margin-bottom: 8px;
}
.box-readmore li ul > li:before {
  content: counters(item, ".") " ";
}

/* Neon Blink */
@keyframes neon-blink {
  0% {
    text-shadow: 0 0 5px #2cffff, 0 0 10px #2cffff, 0 0 15px #2cffff,
      0 0 20px #2cffff, 0 0 25px #2cffff, 0 0 30px #2cffff;
  }
  100% {
    text-shadow: 0 0 20px #2cffff, 0 0 30px #2cffff, 0 0 40px #2cffff,
      0 0 50px #2cffff, 0 0 60px #2cffff, 0 0 70px #2cffff;
  }
}
@keyframes neon-blink-img {
  0% {
    filter: drop-shadow(0 0 5px #2cffff) drop-shadow(0 0 10px #2cffff);
  }
  100% {
    filter: drop-shadow(0 0 20px #2cffff) drop-shadow(0 0 30px #2cffff);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes shake-anim {
  0% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10%,
  30% {
    -moz-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    -moz-transform: rotate(25deg) scale(1) skew(1deg);
  }
  100%,
  50% {
    -moz-transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulse-animation {
  0% {
    transform: scale3d(1, 1, 1);
    opacity: 0;
  }
  10% {
    transform: scale3d(1.1, 1.1, 1.1);
    opacity: 1;
  }
  100% {
    transform: scale3d(1.6, 1.6, 1.6);
    opacity: 0;
  }
}
@keyframes border-animation {
  0% {
    transform: scale3d(0.6, 0.6, 0.6);
    opacity: 0;
  }
  20% {
    transform: scale3d(1.2, 1.2, 1.2);
    opacity: 1;
  }
  100% {
    transform: scale3d(1.4, 1.4, 1.4);
    opacity: 0;
  }
}
/*slider*/
.box-slide {
  position: absolute;
  top: 0;
  max-width: 1000px;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.box-slide div {
  background: #565659d1;
  padding: 40px 30px;
}

.search input {
  width: calc(100% - 20px);
  background: unset;
  border: 0;
  outline: 0;
  box-shadow: unset;
}

.bmenu-contact a {
  color: var(--trng, #fff);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  padding: 0 10px;
}

.bmenu-contact {
  height: 90px;
  background: #982230;
  display: flex;
  justify-content: center;
  align-items: center;
}
.search::after {
  content: "";
  height: 100%;
  width: 1px;
  background: #dcdcdc;
  left: -20px;
  top: 0;
  position: absolute;
}
.title-slide {
  color: #fff;
  font-size: 31px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: relative;
  padding-left: 30px;
}

.title-slide::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 31px;
  background: white;
  left: 0;
}

.desc-slide {
  color: #fff;
  text-align: justify;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
/**/
.facility-name a {
  color: var(--tiu, #565659);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.facility-name a:hover {
  color: var(--color-hover);
}
.facility-name {
  margin-bottom: 0;
  margin-top: 1rem;
}
/*animate menu*/
@-webkit-keyframes pulse_shadow_colored {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(32, 158, 46, 0.4);
  }

  70% {
    -webkit-box-shadow: 0 0 0 6px transparent;
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 transparent;
  }
}

@keyframes pulse_shadow_colored {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(32, 158, 46, 0.4);
    box-shadow: 0 0 0 0 rgba(32, 158, 46, 0.4);
  }

  70% {
    -moz-box-shadow: 0 0 0 6px transparent;
    box-shadow: 0 0 0 6px transparent;
  }

  100% {
    -moz-box-shadow: 0 0 0 0 transparent;
    box-shadow: 0 0 0 0 transparent;
  }
}

.menu-main > li > a.active::before,
.menu-main > li > a:hover:before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: calc(50% - 8px);
  width: 10px;
  height: 10px;
  border: 2px solid #c5e9ca;
  border-radius: 10px;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  background: #8acc92;
  background-repeat: no-repeat;
  background-position: center center;
  animation: pulse_shadow_colored 1s 5000;
}
.choose-item h3 {
  color: var(--tiu, #565659);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 0;
}
.choose-list {
  margin-bottom: 20px;
}
.choose-item {
  border-radius: 5px;
  border: 1px solid var(--nhn-2, #565659);
  padding: 15px 5px;
  text-align: center;
  cursor: pointer;
}
.menu-list-photo {
  display: inline-block;
}
.box-product span {
  width: 73px;
  height: 26px;
  border-radius: 100px;
  border: 1px solid var(--ch-o, #982230);
  display: inline-block;
  color: var(--ch-o, #982230);
  text-align: center;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 0.5rem;
}
.see-more-list a {
  width: 156px;
  height: 41px;
  border-radius: 5px;
  background: var(--ch-o, #982230);
  color: var(--trng, #fff);
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: inline-block;
  line-height: 41px;
  text-transform: uppercase;
}

.see-more-list {
  text-align: center;
  margin-top: 2rem;
}
.d-maps iframe {
  width: 100%;
  height: 200px;
}
.introduce-footer {
  width: 109px;
  height: 36px;
  border-radius: 5px;
  background: var(--nhn, #b70000);
  display: inline-block;
  color: var(--trng, #fff);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  margin-top: 1rem;
}

.footer-article .footer-title::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 3px;
  border-radius: 100px;
  background: var(--nhn, #b70000);
  bottom: 0;
  left: 0;
}
h3.category-name a {
  font-size: 16px;
  font-weight: 500;
}

h3.category-name a:hover {
  color: var(--color-hover);
}
.title-I h2 {
  font-size: 28px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
}
.l-I a {
  border: 1px solid silver;
  width: 100px;
  display: inline-block;
  margin-bottom: 2px;
  padding: 10px;
  border-radius: 4px;
  background: white;
  font-weight: 600;
}

.left-I {
  position: fixed;
  top: 30%;
  z-index: 1;
}
.left-DL {
  width: 290px;
}
.right-DL {
  width: calc(100% - 290px);
  padding-left: 20px;
}
/*menu dl*/
.menu-ac a {
  display: block;
  padding: 10px 26px 10px 10px;
}
.submenu {
  display: none;
}
.toggle-menu.active span {
  transform: rotate(45deg);
}

.toggle-menu.active i {
  transform: rotate(180deg);
}

.toggle-menu i {
  position: absolute;
  right: 8px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 14px;
}

.toggle-menu {
  position: relative;
  padding-right: 10px;
}
.menu-ac li {
  list-style: none;
}

.menu-ac ul {
  margin: 0;
  padding: 0;
}

.menu-ac {
  border: 1px solid silver;
}

.menu-ac > ul > li > a {
  color: #982230;
}

.menu-ac ul li ul li a {
  color: #767475;
}

.menu-ac .last-item {
  color: #9a9497;
  padding-left: 25px;
}

.menu-ac > ul > li > a:hover {
  background: #982230;
  color: white;
}

.menu-ac ul li ul li a:hover {
  background: #f5f5f5;
}

.menu-ac .last-item:hover {
  background: unset;
  text-decoration: underline;
}
/*=====*/

.album-item h3 {
  font-size: 17px;
  text-align: center;
  margin-top: 1rem;
}
.table-news {
  font-size: 16px;
}

#style-1::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.3);
  background-color: #F5F5F5;
}
#style-1::-webkit-scrollbar-thumb {
  background-color: #000000;
}
#style-1::-webkit-scrollbar {
  width: 3px;
  background-color: #F5F5F5;
} 
#style-1 {
  overflow-y: auto;
  height: 500px;
 }

 .content-text table, .content-text td, .content-text tr, .content-text th {
  border-width: 1px;
}
h3.category-name a {
  padding-left: 13px;
  position: relative;
}

h3.category-name a::after {content: '';position: absolute;width: 5px;height: 5px;background: black;border-radius: 50%;left: 0;top: 0;bottom: 0;margin: auto;}

/* Toolbar */
.toolbar {
  background: white;
  width: 100%;
  padding: 3vw;
  bottom: 0px;
  position: fixed;
  z-index: 500;
  height: auto;
  left: 0px;
}
.toolbar ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.toolbar ul li {
  text-align: center;
  width: calc(100% / 5);
}
.toolbar ul li a {
  display: block;
  width: 100%;
  cursor: pointer;
  text-align: center;
}
.toolbar ul li a img {
  height: 6vw;
  width: auto;
  display: inline-block;
}
.toolbar ul li a span {
  font-weight: 400;
  color: #ffffff;
  font-size: 3.5vw;
  display: none;
}