@charset "utf-8";

/* CSS Document */

/* set up */
:root {
  --primarycolor: #2552a1;
  --secondarycolor: #ff1414;
  --textPrimary: #111;
  --darkColor: #000;
  --lightColor: #fff;
  --linkColor: var(--darkColor);
  --linkHoverColor: var(--primarycolor);
}
body {
  position: relative;
  font-family: var(--primaryFont);
  font-size: 14px;
  color: var(--textPrimary);
}
a {
  color: var(--linkColor);
  text-decoration: none;
  transition: all 0.3s;
}
a:hover {
  color: var(--linkHoverColor);
}
section {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
/* header */
header {
  position: relative;
  z-index: 2;
}
header .navbar {
  position: relative;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: var(--lightColor);
}
header .navbar > .search-container {
  position: absolute;
  left: 0;
  width: 0;
  width: 100%;
  height: 100%;
  background-color: var(--lightColor);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  z-index: 1;
}
header .navbar > .search-container.active {
  opacity: 1;
  visibility: visible;
  transform: none;
}
header .navbar .btn.btn-close {
  position: absolute;
  right: 10px;
  top: 10px;
  box-shadow: none;
}
header .navbar > .search-container form {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .navbar > .search-container .form-control {
  width: 80%;
  flex: 0 0 auto;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  border-bottom: 2px solid var(--primarycolor);
  padding: 0;
  font-size: 20px;
  padding-bottom: 5px;
}
header .navbar > .search-container .btn.btn-search {
}
header .navbar-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  color: inherit;
  box-shadow: none;
}
header .navbar .navbar-nav > .nav-item {
  padding: 5px 0;
}
header .navbar .navbar-nav > .nav-item > .nav-link {
  padding-top: 0;
  padding-bottom: 0;
  border-right: 1px solid;
  line-height: 1;
  color: inherit;
  text-transform: uppercase;
  font-size: 16px;
}
header .navbar .navbar-nav > .nav-item:last-child > .nav-link {
  border-right: 0;
}
header .navbar .navbar-nav > .nav-item > .nav-link:hover {
  color: var(--primarycolor);
}
header .navbar .navbar-nav .nav-item.has-menu {
  position: relative;
}
header .navbar .navbar-nav .nav-item.has-menu > .nav.sub-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--lightColor);
  min-width: 250px;
  flex-direction: column;
  box-shadow: 0 0 5px #44444433;
  padding: 5px 0;
  z-index: 99;
}
header .navbar .navbar-nav .nav-item.has-menu:hover > .nav.sub-nav {
  display: block;
}
header
  .navbar
  .navbar-nav
  .nav-item.has-menu
  > .nav.sub-nav
  > .nav-item
  > .nav-link {
  color: inherit;
  font-size: 15px;
  padding: 7px 14px;
}
header
  .navbar
  .navbar-nav
  .nav-item.has-menu
  > .nav.sub-nav
  > .nav-item
  > .nav-link:hover {
  background-color: var(--primarycolor);
  color: var(--lightColor);
}
header .search-form {
  margin: 0 10px;
}
header .search-form img {
  height: 35px;
}
header .shopping-cart .icon {
  text-align: center;
}
header .shopping-cart .icon img {
  display: block;
  margin-bottom: -10px;
  height: 26px;
}
header .shopping-cart .icon .numcart {
  display: inline-block;
  width: 18px;
  height: 18px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid var(--primarycolor);
  color: var(--secondarycolor);
  line-height: 15px;
  font-size: 11px;
  background-color: var(--lightColor);
  font-weight: bold;
}
header .shopping-cart .text {
  display: inline-block;
  color: var(--primarycolor);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
}
header .shopping-cart .sub-text {
  font-size: 13px;
  color: #6b6b6b;
}
header .top-header {
  background-color: var(--primarycolor);
  color: var(--lightColor);
  font-size: 13px;
  padding: 7px 0;
}
header .top-header a {
  color: inherit;
}
header .top-header a:hover {
  color: var(--secondarycolor);
}
header .top-header .nav.nav-has-border > .nav-item > a {
  display: block;
  padding: 0 7px;
  line-height: 1;
  border-right: 1px solid var(--lightColor);
}
header .top-header .nav.nav-has-border > .nav-item:last-child > a {
  border-right: 0;
  padding-right: 0;
}
header .top-header .nav.nav-has-border > .nav-item:first-child > a {
  padding-left: 0;
}
header .top-header .nav.nav-has-border > .nav-item {
  padding: 5px 0;
}
header .top-header .nav.nav-has-border > .nav-item.has-sub {
  position: relative;
  z-index: 1;
}
header .top-header .nav.nav-has-border > .nav-item.has-sub > .nav-sub {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--lightColor);
  color: var(--darkColor);
  padding: 5px 0;
  z-index: 1;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  width: 12rem;
}
header .top-header .nav.nav-has-border > .nav-item.has-sub:hover > .nav-sub {
  display: block;
}
header
  .top-header
  .nav.nav-has-border
  > .nav-item.has-sub
  > .nav-sub
  > .nav-item
  > a {
  display: block;
  color: inherit;
  padding: 5px 10px;
}
header
  .top-header
  .nav.nav-has-border
  > .nav-item.has-sub
  > .nav-sub
  > .nav-item
  > a:hover {
  background-color: var(--primarycolor);
  color: var(--lightColor);
}
header .navbar-toggler {
  border-radius: 0;
  box-shadow: none !important;
  border-color: var(--primarycolor) !important;
  color: var(--primarycolor) !important;
  font-size: 20px;
}
header .menu-mobile {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 9999;
  visibility: hidden;
  transition: all 0.3s ease;
}
header .menu-mobile.active {
  visibility: visible;
}
header .menu-mobile .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: inherit;
}
header .menu-mobile.active .overlay {
  opacity: 1;
}
header .menu-mobile .bg-menu-mobile {
  position: relative;
  z-index: 1;
  box-shadow: 1px 0 5px #44444487;
  width: 260px;
  background-color: rgba(255, 255, 255, 0.95);
  height: 100%;
  overflow: auto;
  transform: translateX(-100%);
  opacity: 0;
  transition: inherit;
}
header .menu-mobile.active .bg-menu-mobile {
  opacity: 1;
  transform: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
header .menu-mobile .nav {
  flex-direction: column;
  color: var(--textPrimary);
}
header .menu-mobile .nav .nav-link {
  color: inherit;
  font-size: 15px;
  border-bottom: 1px solid #dedede;
}
header .menu-mobile .nav > .nav-item.has-sub-nav .nav-link {
  position: relative;
}
header .menu-mobile .nav > .nav-item.has-sub-nav > .nav-link::before {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 10px;
  content: "\f0de";
  font-family: "FAS";
}
header .menu-mobile .nav > .nav-item.has-sub-nav > .nav-link.collapsed::before {
  content: "\f0dd";
}
/* End header */

/* footer */
footer {
}
footer a {
  color: inherit;
}
footer a:hover {
  color: var(--secondarycolor);
}
footer .bg-footer {
  background-color: var(--primarycolor);
  color: var(--lightColor);
  padding: 2rem 0;
  font-weight: 300;
}
footer .title-f {
  font-weight: normal;
  font-size: 20px;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: var(--thirdFont);
}
footer .content-f > p {
  margin-bottom: 0.5rem;
}
footer .content-f .nav {
  row-gap: 0.5rem;
}
footer .nav.nav-mxh {
  column-gap: 10px;
  margin-top: 10px;
}
footer .nav.nav-mxh > .nav-item > a {
  display: block;
  width: 34px;
  height: 34px;
  line-height: 32px;
  font-size: 15px;
  border-radius: 50%;
  border: 2px solid;
  text-align: center;
}
footer .coppyright {
  padding: 7px 0;
  color: var(--lightColor);
  background-color: #0a245d;
  line-height: 1;
}
/* End footer */

/* Slider */
.swiper-san-pham .swiper-button-prev {
  left: 18px;
}
.swiper-san-pham .swiper-button-next {
  right: 18px;
}
.slider .swiper-button-prev {
  left: 1px;
}
.slider .swiper-button-next {
  right: 1px;
}
.swiper-san-pham .swiper-button-prev,
.swiper-san-pham .swiper-button-next,
.slider .swiper-button-prev,
.slider .swiper-button-next {
  border-radius: 2px;
  font-size: 20px;
  width: 30px;
  height: 50px;
  background-color: #09286dcc;
  color: var(--lightColor);
  text-align: center;
  line-height: 50px;
}

.swiper-san-pham .swiper-button-prev::after,
.swiper-san-pham .swiper-button-next::after,
.slider .swiper-button-prev::after,
.slider .swiper-button-next::after {
  font-size: inherit;
}
.slider {
}
/* End Slider */

/* news-card */
.news-card {
  font-family: var(--secondaryFont);
}
.news-card .tieu-de {
  display: block;
  color: #141414;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 10px;
  margin-bottom: 5px;
}
.news-card .mo-ta {
  color: #545454;
}
.news-card .img-container {
  overflow: hidden;
}
.news-card .img-container img {
  transition: all 0.3s ease;
}
.news-card:hover .img-container img {
  transform: scale(1.1);
}

.news-card-2 {
  font-family: var(--secondaryFont);
}
.news-card-2 .info {
  color: #111;
  background-color: var(--lightColor);
  width: 90%;
  margin: 0 auto;
  padding: 2rem;
  transform: translateY(-30%);
}
.news-card-2 .info:hover {
  color: var(--lightColor);
  background-color: var(--primarycolor);
}
.news-card-2 .info .tieu-de {
  display: block;
  color: inherit;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
  transition: none;
}
.news-card-2 .info .info-box {
  margin-bottom: 13px;
  line-height: 1;
}
.news-card-2 .info .info-box .row > *:first-child {
  border-right: 1px solid;
}
.news-card-2 .info .mo-ta {
  margin-bottom: 20px;
}
.news-card-2 .info .btn.btn-readmore {
  color: inherit;
  border-radius: 0;
  border: 0;
  background-color: transparent;
  border-bottom: 1px solid;
  padding: 0;
  height: 30px;
  line-height: 30px;
  text-transform: uppercase;
  padding-right: 5px;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1.5px;
  transition: none;
}
.news-card-2 .info .btn.btn-readmore:hover {
  color: var(--primarycolor);
}
.news-card-2 .info:hover .btn.btn-readmore:hover {
  color: var(--darkColor);
}
.news-card-2.style-2 {
}
.news-card-2.style-2 .info {
  padding: 1.5rem;
  background-color: var(--primarycolor);
  color: var(--lightColor);
  transform: translateY(-40%);
}
.news-card-2.style-2 .info:hover {
  background-color: var(--lightColor);
  color: var(--darkColor);
}
.news-card-2.style-2 .info .info-box {
  font-size: 16px;
}
.news-card-2.style-2 .info .tieu-de {
  font-weight: bold;
}
/* End news-card */

/* product-card */
.product-card {
  position: relative;
  transition: all 0.3s;
  font-family: var(--secondaryFont);
}
.product-card:hover {
  box-shadow: 0 0 5px #44444429;
  transform: scale(1.1);
}
.product-card .info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px;
  background-color: hwb(194 90% 0% / 0.8);
  transition: all 0.3s ease;
}
.product-card:hover .info {
  opacity: 0;
  visibility: hidden;
}

.product-card .info .tieu-de {
  display: block;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 3px;
}

.product-card-3 {
}
.product-card-3 .info .tieu-de {
  font-size: 15px;
  line-height: 1.2;
  color: #303030;
  margin-bottom: 5px;
  display: inline-block;
}

.product-card-4 {
}
.product-card-4 .info {
  padding-top: 0.5rem;
}
.product-card-4 .info .tieu-de {
  display: block;
  line-height: 1.2;
}
/* End product-card */

/* picture-card */
/* End picture-card */

/* side-menu */
/* End side-menu */

/* fixed-contact */
.fixed-contact {
  position: fixed;
  bottom: 10%;
  right: 10px;
  z-index: 99;
}

.fixed-contact .nav {
  gap: 15px;
}
.fixed-contact .nav .icon {
  display: block;
  width: 45px;
  height: 45px;
}

.fixed-contact .nav .icon > img {
  width: 100%;
  height: 100%;
}
/* end fixed-contact */

/* .swiper */
.swiper {
  padding: var(--bs-gutter-y, 0) var(--bs-gutter-x, 0);
  margin: calc(var(--bs-gutter-y, 0) * -1) calc(var(--bs-gutter-x, 0) * -1);
}
/* .swiper */

/* gioi-thieu */
.gioi-thieu {
  padding: 3rem 0;
}
.gioi-thieu .title {
  text-align: start;
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.gioi-thieu .row {
  --bs-gutter-x: 5rem;
  --bs-gutter-y: 0;
}
.gioi-thieu .thong-tin {
  margin-bottom: 1rem;
}
.gioi-thieu .img-decoration {
  margin-top: 10px;
  text-align: center;
}
.gioi-thieu .img-decoration {
  pointer-events: none;
  user-select: none;
}
/* End gioi-thieu */

/* banner */
.banner img {
  width: 100%;
}
/* End banner */

/* doi-tac */
.doi-tac {
  position: static;
  padding: 2rem 0;
  --swiper-navigation-color: var(--primarycolor);
  --swiper-navigation-size: 22px;
}
.doi-tac .swiper-button-prev {
  left: 30px;
  outline: none;
}
.doi-tac .swiper-button-next {
  right: 30px;
  outline: none;
}

.doi-tac .title {
  margin-bottom: 1rem;
}
/* End doi-tac */

/* tin-tuc */
.tin-tuc {
}
.tin-tuc > .bg-tin-tuc {
  padding-top: 2rem;
  background-color: var(--lightColor);
}
/* .tin-tuc > .bg-tin-tuc:nth-child(odd) {
  background-color: #fbfbfb;
} */
/* End tin-tuc */

/* san-pham */
.san-pham {
  font-family: var(--secondaryFont);
  padding-bottom: 3rem;
}
.san-pham .title {
  text-align: start;
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: bold;
  font-size: 32px;
  line-height: 1.2;
}
.san-pham > .bg-san-pham {
  --bs-gutter-x: 2rem;
  padding-top: 3rem;
}
.san-pham .nav.sub-cate-nav {
  position: relative;
  column-gap: 20px;
  color: #39393a;
  align-items: center;
  border-bottom: 1px solid #818181;
  margin-bottom: 2.2rem;
}
.san-pham .nav.sub-cate-nav.no-sub {
  margin-top: -20px;
}
.san-pham .nav.sub-cate-nav::before {
  position: absolute;
  content: "";
  width: 75px;
  height: 3px;
  background-color: var(--primarycolor);
  bottom: -2px;
  left: 0;
}
.san-pham .nav.sub-cate-nav > .nav-item > a {
  display: block;
  color: inherit;
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 5px;
  /* margin-bottom: -1px;
  border-bottom: 2px solid transparent; */
}
/* .san-pham .nav.sub-cate-nav > .nav-item > a:hover {
  color: var(--primarycolor);
} */
/* .san-pham .nav.sub-cate-nav:hover > .nav-item.active > a {
  border-color: transparent;
} */
/* .san-pham .nav.sub-cate-nav > .nav-item.active > a,
.san-pham .nav.sub-cate-nav > .nav-item > a.active,
.san-pham .nav.sub-cate-nav > .nav-item > a:hover,
.san-pham .nav.sub-cate-nav:hover > .nav-item > a:hover {
  border-color: var(--primarycolor);
} */
.san-pham .nav.sub-cate-nav > .nav-item.readmore {
  margin-left: auto;
}
.san-pham .nav.sub-cate-nav > .nav-item.readmore > a {
  margin-left: auto;
  font-size: inherit;
  border: 0;
  padding: 0;
}

/* End san-pham */

/* san-pham-tab */
.san-pham-tab {
  padding-bottom: 3rem;
  /* padding: 3rem 0; */
}
.san-pham-tab .title {
  margin-bottom: 1rem;
}
.san-pham-tab .title-description {
  font-size: inherit;
  color: #525252;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.nav-tabs-sanpham .nav.nav-tabs {
  border: 0;
  justify-content: center;
  column-gap: 25px;
  row-gap: 5px;
  margin-bottom: 1.5rem;
}
.nav-tabs-sanpham .nav.nav-tabs > .nav-item > .nav-link {
  padding: 9px 10px;
  border: 0;
  background-color: #e8e8e8;
  color: #505050;
  border-radius: 50px;
  font-weight: 500;
  min-width: 135px;
  margin-bottom: 0;
}
.nav-tabs-sanpham .nav.nav-tabs > .nav-item > .nav-link.active,
.nav-tabs-sanpham .nav.nav-tabs > .nav-item > .nav-link:hover {
  background-color: var(--secondarycolor);
  color: var(--lightColor);
}
.nav-tabs-sanpham .tab-content .tab-pane .img-container {
  cursor: pointer;
}
.san-pham-tab .nav-tabs-sanpham .tab-content .tab-pane .img-container.active,
.san-pham-tab .nav-tabs-sanpham .tab-content .tab-pane .img-container:hover {
  box-shadow: 0 0 12px hsla(213, 100%, 30%, 0.5);
}
.san-pham-tab .nav-tabs-sanpham .tab-content .tab-pane .img-container > .info {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px;
  font-size: 11px;
  font-family: var(--secondaryFont);
  background-color: hsla(0, 0%, 100%, 0.8);
}
.san-pham-tab
  .nav-tabs-sanpham
  .tab-content
  .tab-pane
  .img-container
  > .info
  .tieu-de {
  line-height: 1.2;
  font-weight: 600;
}
.san-pham-tab
  .nav-tabs-sanpham
  .tab-content
  .tab-pane
  .img-container
  > .info
  .gia {
  font-size: 10px;
}
.san-pham-tab .book-content-container {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  min-height: 500px;
}
.san-pham-tab .book-content-container .book-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-family: var(--secondaryFont);
  color: #1a1a1a;
  transition: all 0.5s ease;
  transform: translateY(40px);
  opacity: 0;
  visibility: hidden;
}
.san-pham-tab .book-content-container .book-content.active {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.san-pham-tab .book-content-container .book-content .tieu-de {
  display: block;
  font-size: 24px;
  font-weight: 600;
  color: inherit;
  line-height: 1.2;
}
.san-pham-tab .book-content-container .book-content .tac-gia {
  font-family: var(--primaryFont);
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 5px;
  margin: 7px 0;
  font-weight: 300;
}
.san-pham-tab .book-content-container .book-content .tac-gia::before {
  display: inline-block;
  content: "";
  width: 40px;
  height: 2px;
  background-color: var(--primarycolor);
}
.san-pham-tab .book-content-container .book-content .mo-ta {
  font-weight: 500;
  margin-bottom: 10px;
}
.san-pham-tab .book-content-container .book-content .gia {
  font-size: 22px;
  font-family: var(--primaryFont);
  margin: 10px 0;
  line-height: 1;
}
.san-pham-tab .book-content-container .book-content .gia .currency {
  margin-left: 2px;
}
.san-pham-tab .book-content-container .book-content .gia .old {
  color: #474747;
  font-style: italic;
  font-weight: 300;
  font-size: 85%;
}
.san-pham-tab .book-content-container .book-content .btn.btn-readmore {
  text-transform: uppercase;
  font-weight: 500;
}
/* End san-pham-tab */

/* chu-de */
.chu-de {
  padding: 3rem 0;
}
.chu-de .title {
  margin-bottom: 1rem;
}
.chu-de .title-description {
  font-size: inherit;
  color: #525252;
  font-weight: normal;
  margin-bottom: 3rem;
}
.chu-de .bg-chu-de {
  background-position: bottom left;
  background-size: auto;
}
.chu-de .controler-swiper {
  margin-top: 1rem;
  --swiper-navigation-size: 26px;
  --swiper-navigation-color: var(--darkColor);
  font-family: var(--secondaryFont);
}
.chu-de .controler-swiper .swiper-button-prev {
  left: -20px;
}
.chu-de .controler-swiper .swiper-button-next {
  right: -20px;
}
.chu-de .controler-swiper .tieu-de {
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 0.5rem;
}
.chu-de .controler-swiper .mo-ta {
  text-align: center;
}
/* End chu-de */

/* filter */
.filter {
  box-shadow: 0 1px 5px rgb(0 0 0 / 66%);
}
.filter .bg-filter {
  background-image: url("../images/bg-filter.png");
  padding: 1rem 0;
}
.filter .bg-radio {
  padding: 1rem 0;
}
.filter .btn.btn-submit {
  background-color: var(--primarycolor);
  color: var(--lightColor);
  border-radius: 50px;
  height: 30px;
  border: 0;
  line-height: 30px;
  padding: 0;
  font-weight: 500;
  text-transform: uppercase;
  width: 100%;
  font-size: 14px;
  height: 35px;
}
.filter .form-select {
  border-radius: 50px;
  box-shadow: 0 0 5px hsla(213, 100%, 30%, 0.42);
  height: 35px;
  font-weight: 300;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: inherit;
}
.filter .form-check-input {
  border-color: var(--primarycolor);
}
/* End filter */

/* page */
.page {
  font-family: var(--secondaryFont);
  padding: 1rem 0;
}
.page > .container-fluid {
  --bs-gutter-x: 3rem;
}
.page .breadcrumb-container {
  padding: 0.7rem 0;
  margin-bottom: 1.5rem;
  background-color: #ececec;
  font-weight: 500;
}
.page .breadcrumb-container .breadcrumb {
  margin-bottom: 0;
}
.page .pagination-page {
  margin-top: 1rem;
  font-weight: 500;
  display: flex;
  justify-content: end;
  gap: 10px;
}

.page .pagination-page > a,
.page .pagination-page > span {
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  background-color: var(--darkColor);
  color: var(--lightColor);
  border-radius: 0;
  line-height: 1.9;
  border: 2px solid;
  transition: all 0.3s ease;
}
.page .pagination-page > span,
.page .pagination-page > a:hover {
  background-color: var(--primarycolor);
  /* color: var(--primarycolor); */
}
.page .title-container {
  color: var(--lightColor);
  background-color: var(--primarycolor);
  padding: 1.5rem 3rem;
  margin-bottom: 3rem;
}
.page .title-container .title {
  color: inherit;
  text-align: center;
  font-family: inherit;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.page .title-container .title-description {
  color: inherit;
}
/* End page */

/* lien-he-page */
.lien-he-page {
}
.lien-he-page .title-description {
  margin-bottom: 1rem;
}
.lien-he-page .title-description p {
  margin-bottom: 0.5rem;
}
.lien-he-page form {
  background-color: #ededed;
  padding: 1rem;
}
.lien-he-page form .title {
  margin-bottom: 0.5rem;
  text-align: start;
  font-size: 20px;
}
.lien-he-page form .form-control {
  border-radius: 0;
  box-shadow: none;
}
.lien-he-page form .btn.btn-submit {
  border-radius: 0;
}
.lien-he-page form .form-control:focus {
  border-color: var(--darkColor);
}
/* End lien-he-page */

/* tin-tuc-detail-page */
/* End tin-tuc-detail-page */

/* san-pham-detail-page */
.san-pham-detail-page {
}
.san-pham-detail-page .san-pham-container {
  padding: 3rem 0;
  background-color: #fcfeff;
}
.san-pham-detail-page .san-pham-container .row-sanpham {
  --bs-gutter-x: 5rem;
  --bs-gutter-y: 1rem;
}
.san-pham-detail-page .info-box p {
  margin-bottom: 0.5rem;
}
.san-pham-detail-page .info-box .ten-sp {
  color: var(--secondarycolor);
}
.san-pham-detail-page .info-box .gia {
  font-size: 24px;
  color: inherit;
}
.san-pham-detail-page .info-box .book-infomation {
  margin: 1rem 0;
  border-top: 1px solid var(--primarycolor);
  border-bottom: 1px solid var(--primarycolor);
  padding: 1rem 0;
}
.san-pham-detail-page .info-box .book-infomation i {
  color: var(--primarycolor);
}

.san-pham-detail-page .info-box .mo-ta .title-mo-ta {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  line-height: 1;
  font-size: 15px;
}
.san-pham-detail-page .info-box .mo-ta {
  margin-bottom: 1.5rem;
  font-size: 13px;
  font-weight: 500;
}
.san-pham-detail-page .quantity-group {
  display: flex;
  align-items: center;
}
.san-pham-detail-page .quantity-group > button {
  background-color: var(--darkColor);
  color: var(--lightColor);
  border: 1px solid var(--darkColor);
  height: 30px;
  font-size: 16px;
}
.san-pham-detail-page .quantity-group > button:first-child {
  border-radius: 3px 0 0 3px;
}
.san-pham-detail-page .quantity-group > button:last-child {
  border-radius: 0 3px 3px 0;
}
.san-pham-detail-page .quantity-group > input.number {
  height: 30px;
  border: 2px solid var(--darkColor);
  text-align: center;
  width: 50px;
  font-size: 18px;
}
.san-pham-detail-page .btn.btn-mua {
  color: var(--lightColor);
  background-color: #ff0a0a;
  height: 55px;
  line-height: 55px;
  padding: 0 10px;
  width: 300px;
}
.san-pham-detail-page .mo-ta-chi-tiet {
  padding: 3rem 0;
}
.san-pham-detail-page .mo-ta-chi-tiet .title {
  font-family: inherit;
  font-weight: bold;
  text-align: start;
  border-bottom: 4px solid #f9f9f9;
  margin-bottom: 30px;
}
.san-pham-detail-page .mo-ta-chi-tiet .title > span {
  display: inline-block;
  padding-bottom: 0.3rem;
  border-bottom: 4px solid var(--primarycolor);
  color: var(--darkColor);
  margin-bottom: -4px;
}
.san-pham-detail-page .link-buy {
  background-color: #f5f7f8;
  padding: 10px 20px;
  margin-top: 2rem;
  border-radius: 4px;
}
.san-pham-detail-page .link-buy .img-container {
  background-color: var(--lightColor);
}
.san-pham-detail-page .swiper-hinh-anh-slide-nav .img-container {
  background-color: var(--darkColor);
  cursor: pointer;
}
.san-pham-detail-page
  .swiper-hinh-anh-slide-nav
  .swiper-slide-thumb-active
  .img-container {
  box-shadow: 0 0 5px hsla(213, 100%, 30%, 0.5);
}
.san-pham-detail-page .swiper-hinh-anh-slide-nav .img-container img {
  opacity: 0.53;
}
.san-pham-detail-page
  .swiper-hinh-anh-slide-nav
  .swiper-slide-thumb-active
  .img-container
  img {
  opacity: 1;
}
/* End san-pham-detail-page */

/* side-nav */
.side-nav {
  font-family: var(--secondaryFont);
  margin-bottom: 2rem;
}
.side-nav .side-nav-body {
  padding: 10px;
}
.side-nav .nav {
  color: #303030;
  box-shadow: 0 0 3px hsla(0, 0%, 12%, 0.53);
}
.side-nav .nav .nav-title {
  background-color: #ecf1f7;
}
.side-nav .nav .nav-title .nav-link {
  cursor: default;
  user-select: none;
  touch-action: none;
  font-size: 16px;
}
.side-nav .nav .nav-link {
  color: inherit;
}
.side-nav .nav :not(.nav-title) .nav-link:hover {
  background-color: var(--primarycolor);
  color: var(--lightColor);
}
/* End side-nav */

/* san-pham-page */
.san-pham-page {
  padding: 2rem 0;
}
/* End san-pham-page */

/* tin-tuc-page */
.tin-tuc-page {
}
/* End tin-tuc-page */

/* thanh-cong-page */
.thanh-cong-page {
  font-weight: 500;
}
.thanh-cong-page .title {
  font-family: inherit;
  font-weight: 600;
}
.thanh-cong-page .infomation-box {
  padding: 1rem;
  padding-top: 0;
  border: 2px solid var(--primarycolor);
  font-size: 13px;
  color: var(--darkColor);
}
.thanh-cong-page .infomation-box .title {
  font-size: 18px;
  margin-bottom: 0.8rem;
  margin-top: -12px;
  font-weight: bold;
  line-height: 1.2;
}
.thanh-cong-page .infomation-box .title > span {
  display: inline-block;
  background-color: var(--lightColor);
  padding: 0 7px;
}
.thanh-cong-page .infomation-box p {
  margin-bottom: 0.3rem;
}
/* End thanh-cong-page */

/* .search-page */
.search-page {
  padding: 3rem 0;
}
/* End .search-page */

/* cate-card-sp */
.cate-card-sp {
}
.cate-card-sp .tieu-de {
  display: block;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  color: #1c1c1c;
}
.cate-card-sp .info {
  padding-top: 10px;
}
/* End cate-card-sp */

/* Utility */
.title {
  font-family: var(--thirdFont);
  font-weight: normal;
  font-size: 28px;
  text-align: center;
  text-transform: uppercase;
  color: var(--primarycolor);
  margin-bottom: 2rem;
}
.thong-tin {
  font-weight: 500;
}
.thong-tin p:last-child {
  margin-bottom: 0;
}
.logo img {
  height: 90px;
  transition: all 0.3s;
}
.img-container {
  position: relative;
  display: block;
  padding-bottom: 100%;
}
.img-container > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ten-cong-ty {
  font-size: 22px;
  color: var(--primarycolor);
  font-family: var(--tenCongTyFont);
  font-weight: bold;
  text-transform: uppercase;
}
.iframe-container {
  position: relative;
  padding-bottom: 100%;
}
.iframe-container iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.webkit-box {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: var(--line-clamp, 3);
  overflow: hidden !important;
}
.btn.btn--primary {
  background-color: var(--primarycolor);
  color: var(--lightColor);
  box-shadow: none;
  font-weight: bold;
  font-size: inherit;
  border: 1px solid var(--primarycolor);
}
.btn.btn--primary:hover {
  background-color: var(--lightColor);
  color: var(--primarycolor);
}
/* Chrome, Safari, Edge, Opera */
input.number::-webkit-outer-spin-button,
input.number::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input.number {
  -moz-appearance: textfield;
}

.bg-default {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.btn.btn-readmore {
  background-color: var(--primarycolor);
  color: var(--lightColor);
  border-radius: 50px;
  height: 33px;
  padding: 0 14px;
  line-height: 32px;
  font-size: 14px;
  font-weight: 300;
  border: 1px solid var(--primarycolor);
}
.btn.btn-readmore:hover {
  background-color: var(--lightColor);
  color: var(--primarycolor);
}

.gia {
  font-size: 13px;
  color: #ff1f1f;
  font-weight: 500;
}
.gia .old {
  color: #a7a7a7;
  padding-left: 5px;
  text-decoration: line-through;
}
.gia .currency {
  padding-left: 2px;
}

.text--color--primary {
  color: var(--textPrimary) !important;
}
/* End Utility */
