@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@font-face {
  font-family: "ro-l";
  src: url("../fonts/Roboto-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-family: "ro-m";
  src: url("../fonts/Roboto-Medium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-family: "ro-r";
  src: url("../fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
:root {
  --color-main: #35af02;
  --color-sub: #fc7504;
  --color-font-light: #939393;
  --color-font: #5c5c5c;
  --size-title: 16px;
  --size-title-main: 25px;
  --primary-glow: #00d4ff;
  --secondary-glow: #ff006e;
  --accent-glow: #8338ec;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --dark-bg: #0a0a0a;
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --clr-1: #00c2ff;
  --clr-2: #33ff8c;
  --clr-3: #ffc640;
  --clr-4: #e54cff;
  --bg: #000000;
  --blur: 1rem;
}

.btn-primary {
  background: var(--color-main);
  border: 1px solid var(--color-main);
}

.btn-sub {
  background: var(--color-sub);
  border: 1px solid var(--color-sub);
  color: #fff;
}

.btn-yellow {
  background: yellow;
}

.btn.btn-primary:hover {
  background: #fff;
  border: 1px solid var(--color-main);
  color: var(--color-main);
}

.rounded-99 {
  border-radius: 99px;
}

.size-title-main {
  font-size: var(--size-title-main);
}

.color-light {
  color: var(--color-font-light);
}

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

.color-sub {
  color: var(--color-sub);
}

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

.background-sub {
  background-color: var(--color-sub);
}

.background-main-bold {
  background-color: #007b29;
}

.background-gradiant {
  background: linear-gradient(90deg, #d52e12 0, #ffffff 100%); /* W3C */
}

.background-gray {
  background-color: #f9f9f9;
}

.background-fixed {
  background-attachment: fixed;
  background-position: center;
  background-size: contain;
}

.absolute-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(16, 86, 137, 0.4196078431);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 15px;
  text-align: center;
  transition: all ease 0.5s;
}

.absolute-center-hover {
  opacity: 1;
  visibility: visible;
  top: 50%;
  transform: translate(-50%, -50%);
}

.size-title {
  font-size: var(--size-title);
}

.transition {
  transition: all ease 0.5s;
}

body {
  font-family: "Roboto";
  font-size: 14px;
  font-weight: 400;
}

tbody,
td,
tfoot,
th,
thead,
tr,
.table > :not(:last-child) > :last-child > * {
  border: 1px solid #e9ecef;
}

.container {
  max-width: 1200px;
}

.container-fluid {
  overflow: hidden;
}

a {
  color: #000;
}
a.hotline strong {
  color: #000;
  font-size: 18px;
}
a.hotline p {
  font: 16px "ro-l";
  text-transform: uppercase;
  color: var(--color-main);
  margin-bottom: 0px;
}
a.video__item img {
  width: 100%;
}

b {
  font-size: inherit;
}

.wrapper-home strong {
  font-size: inherit;
}

ul.box-cap3 li a {
  padding-left: 70px;
}

input:focus-visible {
  outline: 0px;
}
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input.coupon {
  height: 47px;
  border: 1px solid #ececec;
  border-radius: 10px;
  height: 64px;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-left: 20px;
  font-size: 16px;
  width: 100%;
}

.wrapper-detail {
  padding: 0px;
}

.wrapper-main {
  padding: 45px 0;
  overflow: hidden;
}

.content-detail img {
  max-width: 100%;
  height: auto !important;
}

.animate1 {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

#toTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: #c01627;
  color: #fff;
  border-radius: 3px;
  cursor: pointer;
}

/* Scroll Web */
.progress-wrap {
  position: fixed;
  bottom: 10px;
  right: 20px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 1001010;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.progress-wrap:after {
  content: "\f102";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  text-align: center;
  line-height: 50px;
  font-size: 25px;
  font-weight: 900;
  color: red;
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: red;
  stroke-width: 4;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}

.swiper {
  width: 100%;
  height: 100%;
}
.swiper .swiper-slide-active .slideSwiper__title {
  animation: slidedown 2s linear;
}
.swiper .swiper-slide-active .slideSwiper__desc {
  animation: slidedown 2s linear forwards;
  animation-delay: 0.5s;
}
@keyframes slidedown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.slideSwiper .swiper-wrapper {
  height: 465px;
}
.slideSwiper__content {
  position: absolute;
  width: 70%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  color: #fff;
  text-align: center;
}
.slideSwiper__title {
  font-size: var(--size-title-main);
  font-weight: 700;
}
.slideSwiper__desc {
  opacity: 0;
}
.slideSwiper__inner {
  height: 100%;
}
.slideSwiper .swiper-button-next:after,
.slideSwiper .swiper-rtl .swiper-button-next:after,
.slideSwiper .swiper-button-prev:after,
.slideSwiper .swiper-rtl .swiper-button-prev:after {
  font-size: 12px;
  color: #fff;
}
.slideSwiper .swiper-button-prev,
.slideSwiper .swiper-button-next {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #ccc;
}

.owl-arrow {
  margin-top: 10px;
}
.owl-arrow .owl-nav {
  display: none;
}
.owl-arrow.owl-carousel:hover .owl-nav {
  display: block;
}
.owl-arrow.owl-theme .owl-nav {
  margin-top: 0px;
}
.owl-arrow.owl-theme .owl-nav button {
  background: transparent;
  color: #869791;
  font-size: 40px;
  line-height: 300px;
  margin: 0;
  padding: 0 60px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.owl-arrow.owl-theme .owl-nav .owl-prev {
  left: -20px;
  padding-left: 20px;
}
.owl-arrow.owl-theme .owl-nav .owl-prev i {
  font-size: 12px;
  color: #fff;
  width: 25px;
  height: 25px;
  background: #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.owl-arrow.owl-theme .owl-nav .owl-next {
  right: -20px;
  padding-right: 20px;
}
.owl-arrow.owl-theme .owl-nav .owl-next i {
  font-size: 12px;
  color: #fff;
  width: 25px;
  height: 25px;
  background: #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.owl-arrow.owl-theme .owl-nav [class*="owl-"]:hover {
  background: initial;
  color: initial;
}

.img-container {
  padding-bottom: 66%;
  overflow: hidden;
  height: auto;
  display: block;
  position: relative;
}
.img-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scale-img {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.scale-img img {
  transition: 0.5s all ease-in-out;
  width: 100%;
  height: 100%;
}
.scale-img:hover img {
  transform: scale(1.2);
}

.catchuoi2 {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.catchuoi3 {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.catchuoi4 {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.catchuoi5 {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.xoay_hinh:hover img {
  transform: rotate(360deg);
}
.xoay_hinh img {
  transition: ease all 0.5s;
}

.pagination {
  justify-content: center;
  margin-top: 2rem;
}

.offcanvas-body ul {
  position: initial !important;
  top: 0 !important;
  transform: initial !important;
  border: none;
}
.offcanvas-body ul li a {
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  font-size: 14px;
  font-family: "Roboto";
  padding-top: 10px;
  padding-bottom: 10px;
}
.offcanvas-body ul li a:after {
  float: right;
  margin-top: 0px;
}
.offcanvas-body ul li ul {
  padding-left: 18px;
}
.offcanvas-body ul li ul li a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  font-weight: 300;
  color: #fff;
  font-family: "Roboto";
}

.dropdown-menu {
  min-width: 210px;
}

.nav-sub {
  position: relative;
}
.nav-sub ul {
  position: absolute;
  right: 0;
  top: 0;
  left: 100%;
  min-width: 100%;
  background-color: #fff;
  padding: 0;
  list-style: none;
  border: 1px solid #eee;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2509803922);
  border-radius: 3px;
  display: none;
}
.nav-sub ul li a {
  display: block;
  padding: 10px 15px;
  color: #000;
  text-decoration: none;
  font-size: 15px;
}
.nav-sub ul li a:hover {
  background-color: #006847;
  color: #fff;
}
.nav-sub:hover ul {
  display: block;
}
.nav-sub:hover > a {
  background-color: #006847;
  color: #fff;
}

.nav-link:focus {
  color: #410000;
}
.nav-link:hover {
  color: #410000;
}

.nav-sub-mobile > a:after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  margin-top: 8px;
}
.nav-sub-mobile ul {
  list-style: none;
}
.nav-sub-mobile ul li a {
  text-transform: capitalize;
}

.nav-top {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.nav-top li:last-child a {
  padding-right: 0;
}
.nav-top li:last-child a:after {
  content: "";
  display: none;
}
.nav-top li:nth-child(1) a {
  padding-left: 0;
}
.nav-top a {
  color: #1b1718;
  display: block;
  padding-right: 10px;
  padding-left: 10px;
  position: relative;
  font-size: 14px;
}
.nav-top a:after {
  content: "";
  height: 15px;
  position: absolute;
  border-left: 1px solid #000;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.top {
  background-color: var(--color-main);
  padding: 8px 0;
  border-bottom: 1px solid #fff;
  color: #fff;
}

.slogan {
  font-weight: 700;
  text-transform: uppercase;
}
.slogan .text {
  position: relative;
  height: 35px;
  line-height: 35px;
  background-color: #fea500;
  padding-left: 30px;
  padding-right: 30px;
  color: #510000;
  text-transform: uppercase;
  font-family: "Roboto";
  font-size: 16px;
  font-weight: 700;
}
.slogan .text:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 37px;
  background: url(../images/br-left.png) no-repeat bottom right;
  background-size: contain;
  left: -37px;
}
.slogan .text:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 37px;
  background: url(../images/br-right.png) no-repeat bottom left;
  background-size: contain;
  right: -37px;
}

.table-dathang-tc img {
  max-height: 100px;
}

.header__box p {
  font-size: 13px;
  color: #707070;
  font-weight: 500;
  margin-bottom: 0px;
}
.header__box strong {
  font-size: 16px;
  color: #ff1212;
}
.header__box i {
  font-size: 38px;
  color: var(--color-main);
}
.header__box:last-child {
  border-right: none;
}

.hotline__box {
  position: relative;
}
.hotline__box a {
  display: block;
  transform: skewX(-30deg);
  color: #fff;
  background-color: var(--color-main);
}
.hotline__box span {
  display: block;
  transform: skewX(30deg);
  padding: 10px 20px 2px 30px;
}
.hotline__box p {
  background: url(../img/bghotline.png);
  position: absolute;
  left: 50%;
  top: -5px;
  transform: translateX(-50%);
  margin-bottom: 0;
  width: 66px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 999;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: bold;
}

.hotline__pic {
  margin-right: -15px;
  z-index: 99;
  filter: drop-shadow(4px 1px 0px #fff);
}
.hotline__pic img {
  width: 43px;
}

.hotline__box .hotline__box .header-lang a {
  display: inline-block;
  border: 1px solid var(--color-main);
  border-radius: 50%;
  padding: 3px;
  margin-left: 8px;
}
.hotline__box .hotline__box .header-lang .disable {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
}

.ten__cty {
  font-size: 18px;
  font-weight: 600;
}

.giohoatdong {
  background: url(../images/clock.png) left center no-repeat;
}

.box-lang button {
  background: none;
  border: 1px solid #fff;
}
.box-lang .btn-check:focus + .btn-secondary {
  background: none;
  border: 1px solid #fff;
}
.box-lang .dropdown-menu {
  background: var(--color-main);
}

.btn-secondary:focus {
  background: none;
  border: 1px solid #fff;
}

.search {
  height: 43px;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 2px;
}
.search input {
  border: none;
  height: 100%;
  flex: 1;
  text-indent: 10px;
  background: none;
  color: #000;
  border-radius: 99px;
  width: 100%;
}
.search input::-webkit-input-placeholder {
  color: #8a8a8a;
}
.search input:-ms-input-placeholder {
  color: #8a8a8a;
}
.search input::placeholder {
  color: #8a8a8a;
}
.search textarea::-webkit-input-placeholder {
  color: #8a8a8a;
}
.search textarea:-ms-input-placeholder {
  font: 13px "ro-l";
  color: #8a8a8a;
}
.search textarea::placeholder {
  font: 13px "ro-l";
  color: #8a8a8a;
}
.search button {
  border: none;
  width: 55px;
  height: 37px;
  font-size: 20px;
  border-radius: 5px;
  margin-right: 0px;
  color: #fff;
  background: var(--color-main);
  display: block;
  flex: none;
}
.search form {
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  border-radius: 3px;
  overflow: hidden;
  border: none;
}
.search form .form-select {
  width: 180px;
  background: #ededed;
  padding: 0px 10px;
  height: 100%;
  border: none;
  border-radius: 0px;
  cursor: pointer;
}
.search select option {
  margin: 40px;
  background: #fff;
  color: #000;
}
.search__list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 280px;
  z-index: 99;
  background: #fff;
  overflow-y: scroll;
  opacity: 0;
  visibility: hidden;
}
.search__list li {
  padding: 8px;
  border-bottom: 1px solid rgba(204, 204, 204, 0.4431372549);
  list-style: none;
}
.search__list a {
  display: block;
  padding: 5px 10px;
}
.search__list.open {
  opacity: 1;
  visibility: visible;
  transition: all ease 0.5s;
}
.search__list::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  background-color: #f5f5f5;
}
.search__list::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
}
.search__list::-webkit-scrollbar-thumb {
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #555;
}

.btn-search {
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
}

.hotline {
  background: url("../images/hotline.png") left center no-repeat;
}

.navbar-form {
  position: relative;
  margin-top: 30px;
  margin-bottom: 30px;
  width: 45%;
}
.navbar-form input {
  font-size: 14px;
  background-color: #f2f2f2;
  border: 1px solid #fff;
  border-radius: 30px;
  height: 45px;
  padding: 7px 15px 10px;
  color: #000;
}
.navbar-form input::-webkit-input-placeholder {
  color: #000;
}
.navbar-form input:-ms-input-placeholder {
  color: #000;
}
.navbar-form input::placeholder {
  color: #000;
}
.navbar-form button {
  position: absolute;
  color: var(--color-main);
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 0 30px 30px 0;
}
.navbar-form i {
  margin-top: -3px;
}

.logo {
  display: inline-block;
  position: relative;
}
.logo img {
  max-width: 125px;
  z-index: 99;
  position: relative;
}

.right-head_hotline {
  height: 60px;
  padding: 4px;
  border-radius: 30px;
  background: url("../images/hotline.png") left 15px center no-repeat;
  padding-left: 72px;
}

.icon-phone {
  width: 31px;
  height: 31px;
  background-color: #ec1c24;
  color: #fff;
  display: inline-block;
  text-align: center;
  line-height: 31px;
  border-radius: 50%;
  margin-right: 30px;
}
.icon-phone i {
  margin-top: -4px;
}

.form-cart {
  background-color: #f7f7f7;
}

.right-head_cart {
  position: relative;
}
.right-head_cart span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--color-sub);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
  position: absolute;
  right: -7px;
  top: 0px;
}

.cart__mb {
  display: none;
}
.cart__mb span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  right: 0;
  top: -5px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 5px -1px #000;
}
.cart__mb .cart-img {
  height: 37px;
  width: 37px;
  border-radius: 50%;
  background: red;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart__mb .cart-img i {
  color: #fff;
  font-size: 18px;
}

.mxh li {
  display: inline-block;
}

.mxhft li {
  margin-left: 3px;
}

.mxh-top {
  color: #fff;
}

.map {
  line-height: 0;
  margin-bottom: -90px;
}
.map iframe {
  height: 175px;
  width: 100%;
  border-radius: 20px;
}

.logo-f {
  margin-top: 50px;
}

.title-f {
  text-transform: uppercase;
  position: relative;
  font-size: var(--size-title);
  font-weight: 500;
  margin-bottom: 1rem;
  color: #fff;
}
.title-f:after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background-color: #fff;
  margin-top: 4px;
}

.content-f {
  font-size: 13px;
  justify-content: center;
  color: #fff;
}
.content-f iframe {
  height: 210px;
}
.content-f ul {
  padding: 0 15px;
}
.content-f ul li {
  margin-bottom: 8px;
}
.content-f ul li a {
  color: white;
  background: url(../images/icon-right.png) no-repeat center left;
  padding-left: 10px;
  background-size: 6px;
}

.map-f iframe {
  height: 160px;
}

.mxh-f {
  margin-top: 15px;
  margin-bottom: 15px;
}
.mxh-f a {
  display: inline-block;
}
.mxh-f a.facebook {
  color: #4551c5;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 15px;
}
.mxh-f a.facebook i {
  width: 40px;
  height: 40px;
}
.mxh-f a.youtube {
  color: #fff;
  width: 40px;
  height: 40px;
  background-color: #fd0600;
  border-radius: 50%;
  line-height: 41px;
}
.mxh-f a.youtube i {
  width: 40px;
  height: 30px;
}

.content-pttt a {
  display: inline-block;
  margin-bottom: 5px;
  border-radius: 5px;
  overflow: hidden;
}

#contact-form .form-group input {
  width: 100%;
  height: 42px;
  border: 1px solid #ced4da;
}

.title-lienhe {
  font-size: clamp(1.5rem, 0.531rem + 7.57vw, 2rem);
  font-weight: 500;
  color: var(--color-font);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.doitac__pic {
  margin: 8px;
}
.doitac__pic img {
  object-fit: contain;
}

#slider1_container {
  margin: auto;
}

.navbar-brand.active {
  background-color: #e99820;
}

.navbar-light .navbar-nav .nav-link.active {
  background-color: #e99820;
}
.navbar-light .navbar-toggler i {
  width: 40px;
  height: 40px;
}

.why_title {
  color: #fff;
  font-size: 28px;
  text-transform: uppercase;
  font-family: "Roboto";
  font-weight: 700;
}

.why_item {
  background-color: #fff;
  position: relative;
  padding: 16px;
  padding-left: 110px;
}

.why_item_img {
  max-width: 80px;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.why_item_content {
  font-size: 15px;
}

.why_item_content_title {
  font-family: "AvoB";
  text-transform: uppercase;
  font-size: 18px;
  color: #545454;
  margin-bottom: 5px;
}

.danhmuc_home-body {
  padding-left: 30px;
  padding-right: 30px;
  margin-top: 50px;
}

.danhmuc_home_title {
  color: #e99820;
  text-transform: uppercase;
  font-size: 28px;
  padding-bottom: 30px;
  background: url(../images/br-title-danhmuc.png) no-repeat center bottom;
  font-family: "Roboto";
  font-weight: 700;
}

.danhmuc_home_item_img {
  height: 350px;
  width: 100%;
  object-fit: cover;
}
.danhmuc_home_item_img img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0px auto;
  display: block;
}

.danhmuc_home_item_title {
  display: block;
  text-align: center;
  color: #e99820;
  font-size: 16px;
  margin-top: 20px;
  font-weight: 300;
}

.danhmuc_Swiper-next {
  background-color: #4b2222;
  width: 30px !important;
  height: 30px !important;
  border-radius: 50%;
}
.danhmuc_Swiper-next:after {
  font-size: 16px !important;
  color: #fff;
}

.danhmuc_Swiper-prev {
  background-color: #4b2222;
  width: 30px !important;
  height: 30px !important;
  border-radius: 50%;
}
.danhmuc_Swiper-prev:after {
  font-size: 16px !important;
  color: #fff;
}

.sanpham_home {
  background-color: #410000;
  color: #e99820;
}

.product_title-home_text {
  background: url(../images/icon-title.png) no-repeat center left;
  padding-left: 45px;
  font-size: 14px;
  text-transform: uppercase;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: "Roboto";
}

.nav_sub_pro {
  list-style: none;
  padding: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav_sub_pro_item {
  color: #e99820;
  display: block;
  padding: 5px 10px;
  border: 1px solid;
  margin-right: 10px;
  border-radius: 30px;
  text-transform: uppercase;
}
.nav_sub_pro_item:hover {
  background-color: #ffb322;
  color: #410000;
}
.nav_sub_pro_item:focus {
  background-color: #ffb322;
  color: #410000;
}

.title_home_pro_all {
  color: #e99820;
  display: block;
  padding: 5px 20px;
  border: 1px solid;
  margin-right: 10px;
  border-radius: 30px;
  text-transform: uppercase;
}

.br-xam {
  padding-top: 20px !important;
  padding-bottom: 30px !important;
}

.video_home_title {
  font-family: "Roboto";
  background: url(../images/icon-title2.png) no-repeat center left;
  padding-left: 50px;
  font-size: 22px;
  text-transform: uppercase;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: "Roboto";
  font-weight: 700;
  margin-bottom: 10px !important;
}

.video_item {
  margin-bottom: 20px;
}
.video_item a {
  display: block;
}

.video_item_img {
  border-radius: 5px;
  width: 100%;
  object-fit: cover;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}

.video_item_big .video_item_img {
  height: 640px;
  width: 100%;
}

.video_item_play {
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.video_item_play i {
  font-size: 50px;
  color: #fff;
}

.video_item_title {
  position: absolute;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6784313725);
  z-index: 1;
  left: 0;
  width: 100%;
  padding: 10px 15px;
  color: #fff;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 500;
}

.item-truyenthong .video_item_img {
  height: 310px;
}

.danhmuc_home {
  background-size: cover;
  background-position: center;
  padding-top: 30px !important;
  padding-bottom: 30px !important;
  border-bottom: 1px solid #75360b;
}

.danhgia_home {
  background-size: cover;
  background-position: center;
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.danhgia_home_title {
  color: #e99820;
  text-transform: uppercase;
  font-size: 28px;
  padding-bottom: 30px;
  background: url(../images/br-title-danhmuc.png) no-repeat center bottom;
  font-family: "Roboto";
  font-weight: 700;
}

.tintuc_home_item_title a {
  font-size: var(--size-title);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-font);
}

.news__item {
  position: relative;
  display: block;
}
.news__item .img-container {
  padding-bottom: 100.65%;
}

.news2__item {
  position: relative;
  margin-bottom: 22px;
  display: block;
}
.news2__item .img-container {
  padding-bottom: 67.92%;
}

.news2__title {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: var(--size-title);
}

.news__date {
  color: #ccc;
  font-style: italic;
  display: block;
  border-bottom: 1px solid;
  padding: 7px 0;
  margin-bottom: 14px;
}

.news__day {
  font-size: 26px;
  font-weight: 500;
}

.news__box {
  position: absolute;
  bottom: 0;
  background: rgba(245, 133, 33, 0.6117647059);
  padding: 20px;
}

.news__img {
  overflow: hidden;
  position: relative;
}

.news__title {
  color: #fff;
  font-size: 18px;
}

h3.news__title:after {
  content: "";
  display: block;
  width: 250px;
  height: 1px;
  border-top: 1px dashed;
  margin-top: 10px;
}

.news__desc {
  color: #fff;
}

.news-relate fieldset {
  background-color: #eeeeee;
}
.news-relate legend {
  background-color: gray;
  color: white;
  padding: 5px 10px;
  display: inline-block;
  width: auto;
  font-size: 18px;
}
.news-relate ul {
  padding-left: 15px;
  padding-bottom: 20px;
  list-style: none;
}
.news-relate ul i {
  margin-right: 0.5rem;
  font-size: 10px;
  color: #bbb3b3;
}

.item_product {
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.item_product > a {
  position: relative;
  display: block;
  overflow: hidden;
}
.item_product > a .sale {
  position: absolute;
  right: 10px;
  top: 10px;
  border-radius: 5px;
  color: #fff;
  font-weight: 700;
}
.item_product > a .sale span {
  position: relative;
  z-index: 100;
  font-size: 16px;
}
.item_product > a .sale:before {
  content: "";
  position: absolute;
  width: 143px;
  height: 62px;
  background-color: #c70100;
  transform: rotate(-143deg);
  top: -22px;
  left: -54px;
}

.item_product_img {
  height: 290px;
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
}

.item_product_title {
  font-size: 14px;
  font-family: "Roboto";
  margin-top: 10px;
  line-height: 19px;
  padding-left: 5px;
  padding-right: 5px;
  font-weight: 400;
  margin-bottom: 2px;
  height: 38px;
}
.item_product_title a {
  color: #e1e1e1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.item_product_title a:hover {
  color: #e99820;
}

.item_product_price {
  font-size: 16px;
  margin-bottom: 5px;
  padding-left: 5px;
  padding-right: 5px;
  color: #e99820;
}
.item_product_price del {
  color: #ccc;
  font-size: 14px;
  margin-left: 10px;
}

.item_product_f {
  padding-left: 5px;
  padding-right: 5px;
}
.item_product_f ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  margin-left: 10px;
  margin-right: 10px;
}
.item_product_f ul i {
  color: #e99820;
}
.item_product_f span {
  display: block;
  color: #e1e1e1;
  margin-top: 3px;
}

.sodotrang {
  padding: 10px;
  background: rgba(86, 86, 86, 0.6196078431);
}

.breadcrumb a {
  color: #fff;
  font-size: 15px;
}
.breadcrumb li.active a {
  color: #fff;
}

.breadcrumb__title {
  font-size: 30px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}

.chitiet_sp_hot {
  padding-top: 20px;
  padding-bottom: 15px;
  background-size: cover;
  background-position: center;
}

.Swiper_sp_hot_img {
  width: 100%;
  height: 399px;
  object-fit: cover;
  border-radius: 15px;
}

.chitiet_sp_hot_title {
  font-family: "Roboto";
  color: #000;
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.chitiet_sp_hot_gia {
  margin-bottom: 8px;
  color: var(--color-main);
  font-family: "Roboto";
  font-size: 28px;
  font-weight: 700;
}
.chitiet_sp_hot_gia del {
  font-family: "Roboto";
  color: #3d3d3d;
  font-size: 16px;
  display: inline-block;
}
.chitiet_sp_hot_gia span {
  font-family: "Roboto";
  color: #3d3d3d;
  font-size: 16px;
  display: inline-block;
}
.chitiet_sp_hot_gia span.sale {
  color: #fff;
  font-family: "Roboto";
  font-size: 13px;
  background-color: var(--color-main);
  padding: 1px 7px 3px;
  border-radius: 30px;
  display: inline-block;
  position: relative;
  top: -5px;
}

.chitiet_sp_hot_mota {
  font-size: 14px;
  margin-bottom: 15px;
}
.chitiet_sp_hot_mota ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  border: 1px solid #fe0002;
  padding: 8px 10px;
  border-radius: 5px;
  padding-left: 60px;
  background-image: url(../images/uu-dai.png);
  background-position: 10px center;
  background-repeat: no-repeat;
}
.chitiet_sp_hot_mota ul li {
  font-weight: 100;
  color: #e09601;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chitiet_sp_hot_mota ul li strong {
  color: #fe0002;
}

.chitiet_sp_hot_tuvan_form input {
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 30px 0 0 30px;
  font-size: 14px;
  padding: 6px 20px 6px;
  color: #fff;
}
.chitiet_sp_hot_tuvan_form .btn {
  background-color: white;
  width: 100px;
  border-radius: 0 30px 30px 0;
  font-family: "Roboto";
  font-weight: 700;
}

.cart-plus-minus {
  position: relative;
  display: flex;
}
.cart-plus-minus input {
  height: 50px;
  font-size: 1em;
  margin: 0;
  width: 60px;
  padding: 0 2px;
  text-align: center;
  border: solid 1px #ebebeb;
  border-left: none;
  border-right: none;
}
.cart-plus-minus .qtybutton {
  font-size: 20px;
  line-height: 0px;
  border: solid 1px #ebebeb;
  display: inline-block;
  width: 40px;
  height: 50px;
  background: #fff;
  color: #333;
  text-align: center;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.5s;
}
.cart-plus-minus .qtybutton:hover {
  background: rgba(156, 156, 156, 0.3294117647);
  color: #fff;
}
.cart-plus-minus .dec {
  left: 0px;
}
.cart-plus-minus .inc {
  right: 0px;
}

.product-thumbnail {
  min-width: 85px;
}

.cart-btn {
  border-radius: 3px;
  border: 1px solid var(--color-main);
  margin-right: 10px;
  padding: 12px 30px;
  background-color: transparent;
  color: var(--color-main);
  font-size: 15px;
  text-transform: uppercase;
}
.cart-btn:hover {
  background-color: var(--color-main);
  color: #fff;
}

.cart-btn2 {
  padding-left: 30px;
  padding-right: 30px;
  text-transform: uppercase;
}

.magiamgia .accordion-body {
  padding: 1rem 0 0;
}
.magiamgia input {
  height: 48px;
  border-radius: 99px;
  box-shadow: 0px 0px 14px -5px rgba(0, 0, 0, 0.6117647059);
}
.magiamgia button {
  color: #fff;
  text-transform: uppercase;
  width: 100%;
}

.Swiper_quangcao_img {
  height: 415px;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.body-sanpham {
  background-color: #fff;
  color: #fff;
  padding: 20px 0;
  margin-bottom: 30px;
}

.title_product_page {
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
  font-size: 22px;
  color: #e99820;
  position: relative;
  font-weight: 700;
}
.title_product_page:before {
  content: "";
  position: absolute;
  width: 115px;
  height: 3px;
  background-color: #e99820;
  bottom: -2px;
}

.mota_danhmuc {
  margin-bottom: 30px;
}

.br-xemthem {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgb(255, 255, 255),
    rgb(255, 255, 255)
  );
  height: 105px;
  left: 0;
  position: absolute;
  width: 100%;
  bottom: 0;
  padding-top: 51px;
}

.chitiet_danhmuc {
  transition: all 0.4s linear;
  margin-bottom: 30px;
}

.list-tt {
  margin-bottom: 15px;
}

.item-thuoctinh {
  position: relative;
  margin-right: 4px;
}
.item-thuoctinh input {
  display: none;
}
.item-thuoctinh input:checked + span {
  color: #ffffff;
  border: 1px solid #ec1c24;
}
.item-thuoctinh span {
  display: block;
  font-size: 13px;
  padding: 0px 13px;
  border: 1px solid #efefef;
  color: #ffffff;
  min-width: 37px;
  text-align: center;
  border-radius: 33px;
  cursor: pointer;
  height: 27px;
  line-height: 24px;
}
.item-thuoctinh span.lab_img {
  font-size: 0;
  background-size: contain;
}
.item-thuoctinh span.lab_color {
  font-size: 0;
  background-size: contain;
}

.thuoctinh-sp .title {
  padding-right: 10px;
  color: #fff;
  line-height: 26px;
}

.Swiper_spct {
  margin-top: 10px;
}
.Swiper_spct img {
  height: 120px;
  width: 100%;
  object-fit: cover;
  border-radius: 7px;
}

.box_right_sp {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0;
}

.box_right_sp_title {
  background-color: #e99820;
  padding: 8px 6px;
  text-transform: uppercase;
  font-size: 14px;
  border-radius: 10px 10px 0 0;
}

.box_right_sp_ct {
  color: #000;
  position: relative;
}

.box_right_sp_item {
  padding: 5px 10px;
  padding-bottom: 0px;
  position: relative;
  padding-right: 13px;
  font-size: 13px;
}
.box_right_sp_item i {
  position: absolute;
  top: 10px;
  right: 8px;
  color: red;
}

.box_right_sp_item_title {
  color: #000;
  font-family: "Roboto";
  margin-bottom: 1px;
  font-size: 13px;
  font-weight: 600;
}
.box_right_sp_item_title a {
  color: #000;
  color: red;
  text-decoration: revert;
  font-weight: 600;
}

.Swiper_spct2 .Swiper_sp_hot_img {
  height: 400px;
}

.box_tang_kem {
  padding: 10px;
  border: 1px solid #fff;
  border-radius: 15px;
  margin-top: 30px;
  position: relative;
  padding-top: 29px;
}
.box_tang_kem span {
  position: absolute;
  background-color: #2a0304;
  display: inline-block;
  padding: 2px 10px 5px;
  top: -15px;
  left: 27px;
  color: #e99820;
  font-family: "Roboto";
}

.item_tangkem {
  margin-bottom: 10px;
}
.item_tangkem img {
  border-radius: 13px;
  height: 96px;
}

.item_tangkem_title {
  margin-top: 10px;
  margin-bottom: 7px;
  font-family: "Roboto";
  font-size: 13px;
}

.item_tangkem_mota {
  font-size: 13px;
}

.list_kh {
  padding: 2px 15px;
  margin-bottom: 0;
  height: 89px;
  overflow: hidden;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}
.list_kh i {
  margin-top: 4px;
  margin-right: 6px;
}
.list_kh li {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: nowrap;
}
.list_kh p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 13px;
  margin-bottom: 0;
}

.tab_sanpham li {
  padding: 0 4px;
}
.tab_sanpham li button {
  background-color: #717171;
  color: #fff;
  text-transform: uppercase;
  border-radius: 3px 3px 0 0;
  padding: 10px 20px;
  border: none;
}
.tab_sanpham li button.box1.active,
.tab_sanpham li button.box2.active,
.tab_sanpham li button.box3.active,
.tab_sanpham li button.box4.active {
  background-color: var(--color-main);
  color: #fff;
}
.tab_sanpham .show > li {
  background-color: var(--color-main);
  color: #fff;
  padding: 12px 23px;
}

.item_product-right .item_product_title a {
  color: #000;
  font-family: "Roboto";
}
.item_product-right .item_product_price {
  color: #e99820;
}
.item_product-right .item_product_price del {
  font-size: 14px;
}
.item_product-right .item_product_f span {
  color: #605d5d;
}

.quangcao_sp {
  background: url(../images/br-quangcao.png) no-repeat center;
  background-size: cover;
  background-position: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
.quangcao_sp .img_sp_sale {
  margin-bottom: 20px;
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
}

.form_dk_khuyenmai {
  border: 1px solid #ff9109;
  padding: 6px;
  border-radius: 10px;
}

.form_dk_khuyenmai_body {
  background-color: white;
  padding: 15px;
  border-radius: 5px;
}
.form_dk_khuyenmai_body .form-control {
  border: 1px solid #eee;
  font-size: 14px;
  border-radius: 0;
  padding: 10px 15px;
}

.form_dk_khuyenmai_title {
  background-color: #ff9109;
  margin-top: -15px;
  margin-left: -15px;
  margin-right: -15px;
  padding: 15px;
  text-align: center;
  margin-bottom: 30px;
}

.form_dk_khuyenmai_title_head {
  font-family: "Roboto";
  text-transform: uppercase;
  color: #fff;
  font-size: 28px;
}

.btn-dk-tuvan {
  width: 100%;
  background-color: #b3000c;
  font-family: "Roboto";
  color: #fff;
  padding: 10px;
}
.btn-dk-tuvan i {
  color: #ff9109;
}

.form-group {
  margin-bottom: 17px;
  margin-bottom: 1rem;
}
.form-group input {
  border: none;
  height: 45px;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 16px;
  width: 100%;
  border-radius: 0px;
  font-weight: 300;
}

.flash-sale {
  background-color: #717171;
  text-align: center;
  padding: 4px;
  margin-top: 12px;
  border-radius: 10px;
}

.single-smblog {
  position: relative;
}
.single-smblog .blog-image-2 img {
  border-radius: 20px;
}

.smblog-content {
  padding: 15px;
  background: #fff;
}
.smblog-content h6 {
  font-size: 15px;
  line-height: 1.34;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.smblog-content h6:hover {
  color: #f8b133;
}
.smblog-content span {
  font-size: 12px;
  text-transform: uppercase;
  color: #999;
  display: inline-block;
  margin-bottom: 10px;
}
.smblog-content span a {
  color: #e99820;
}
.smblog-content p {
  line-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.smblog-content .smblog-foot {
  border-top: 1px solid #e5e5e5;
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
}
.smblog-content .smblog-foot .post-readmore a {
  font-size: 14px;
  line-height: 20px;
  display: inline-block;
  color: #222;
}
.smblog-content .smblog-foot .post-readmore a:hover {
  color: #f8b133;
}
.smblog-content .smblog-foot .post-date a {
  color: #999;
  font-size: 14px;
  line-height: 1.2;
  display: inline-block;
}
.smblog-content .smblog-foot .post-date a:hover {
  color: #f8b133;
}

.blog-tag {
  position: absolute;
  top: 15px;
  left: 15px;
}
.blog-tag a {
  padding: 4px 12px;
  display: inline-block;
  background: #e99820;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  color: #fff;
  border-radius: 2px;
}

.blog-tag-2 a {
  background: #fcbe00;
  color: #222;
}

.blog-area {
  background-color: #fff;
  padding: 20px 0;
}

.widget {
  padding: 30px 30px;
  border: 2px solid #f3f3f3;
  margin-bottom: 40px;
  background-color: #fff;
}

.chitiet_sale {
  position: relative;
  width: 120%;
  margin-left: -27%;
}

.quangcao_sp_img {
  width: 100%;
  max-width: initial;
}

.quangcao_sp_sale {
  position: absolute;
  font-size: 30px;
  color: #fff;
  left: 11%;
  font-weight: 700;
  top: 7px;
}

.quangcao_sp_giaban {
  position: absolute;
  bottom: 13%;
  right: 0;
  left: 0;
  text-align: center;
}
.quangcao_sp_giaban span {
  display: block;
  line-height: 40px;
  font-style: italic;
  font-size: 16px;
}
.quangcao_sp_giaban span b {
  font-size: 34px;
  display: inline-block;
  position: relative;
  top: 6px;
  font-style: initial;
}
.quangcao_sp_giaban i {
  font-size: 15px;
  font-weight: 600;
}

.quangcao_sp_title {
  position: absolute;
  color: #fff;
  right: 10%;
  font-style: italic;
  font-size: 17px;
  top: 8%;
}

.content_sale ul {
  color: #c1c1c1;
  padding-top: 20px;
  line-height: 30px;
}
.content_sale ul li:before {
  content: "";
  content: "";
}

.head-mobile {
  padding: 10px;
}

.menu-mobi button {
  color: #fff;
  font-size: 16px;
  border: 1px solid;
  border-radius: 0;
  padding: 6px 10px 5px;
  margin-top: 6px;
  outline: none !important;
  box-shadow: none !important;
}
.menu-mobi button i {
  color: #fff;
  width: 23px;
  height: 23px;
  position: relative;
  top: -1px;
}

.giohang-mobile {
  margin-top: 4px;
}

.form-search-nav-mobile {
  margin-bottom: 0 !important;
}
.form-search-nav-mobile input {
  margin-right: 0 !important;
  height: 37px;
  border-radius: 5px !important;
  background-color: #410000;
  color: #fff !important;
}

.dropdown-menu-search-mobile {
  padding: 3px;
  background-color: #fff;
  border-radius: 8px;
}

.btn-search-mobile {
  margin-left: 14px;
  padding: 3px;
  background-color: transparent !important;
  border: none !important;
  margin-top: 10px;
  box-shadow: none !important;
}
.btn-search-mobile i {
  width: 25px;
  height: 25px;
}
.btn-search-mobile:after {
  display: none;
}

.menu__block {
  background: var(--color-main);
}
.menu__block .menu-mobi {
  display: none !important;
}

.menu__mobi {
  display: none;
}

.list-menu {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}
.list-menu li {
  position: relative;
}
.list-menu li:hover,
.list-menu li.active {
  background-color: var(--color-main);
}
.list-menu li:hover > a,
.list-menu li.active > a {
  color: var(--color-sub);
}
.list-menu li a {
  font-size: 15px;
  font-weight: 500;
  padding: 5px 5px;
  display: block;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
}
.list-menu li ul li {
  border-bottom: 1px solid #fff;
}
.list-menu li ul li a {
  text-transform: capitalize;
  padding: 10px;
  color: #000;
  font-size: 13px;
  display: flex;
  align-items: center;
}
.list-menu li ul li.sub-nav:hover ul {
  display: block;
}
.list-menu li:hover .box-menu {
  -webkit-transform: rotate3d(0, 0, 0, 0deg);
  -moz-transform: rotate3d(0, 0, 0, 0deg);
  -o-transform: rotate3d(0, 0, 0, 0deg);
  -ms-transform: rotate3d(0, 0, 0, 0deg);
  transform: rotate3d(0, 0, 0, 0deg);
}
.list-menu .box-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 99;
  -webkit-box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.1);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -o-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -o-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  min-width: 200px;
  background: #fff;
}

.list-menu .box-menu i {
  font-size: 9px;
  margin-right: 8px;
}

.list-menu li:hover .boxmn-cap1,
.list-menu li ul li:hover .boxmn-cap2,
.list-menu li ul li ul li:hover .boxmn-cap3,
.list-menu li ul li ul li ul li:hover .boxmn-cap4,
.list-menu li ul li ul li ul li ul li:hover .boxmn-cap5 {
  display: block;
}

.boxmn-cap1 {
  top: 100%;
  left: 0;
  padding-top: 1px;
}

.box-menu.boxmn-cap2,
.box-menu.boxmn-cap3,
.box-menu.boxmn-cap4,
.box-menu.boxmn-cap5 {
  top: 0px;
  left: 100%;
  border-left: 1px solid #fff;
  display: none;
}

.sub-nav {
  position: relative;
}
.sub-nav ul {
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 200px;
  background: #410000;
  display: none;
}

.menu__hotline p {
  font-weight: 700;
  margin-bottom: 0px;
}
.menu__hotline i {
  color: var(--color-main);
  margin-right: 8px;
  font-size: 30px;
}
.menu__hotline a {
  color: #ff1616;
  font-size: 16px;
  display: block;
  font-weight: 700;
}

.menu__dmsp {
  width: 230px;
  color: #fff;
  height: 45px;
  line-height: 45px;
  text-transform: uppercase;
  background: red;
  font-size: 14px;
  padding-left: 10px;
}
.menu__dmsp i {
  font-size: 17px;
  vertical-align: sub;
}

.danhmuc_left {
  overflow: hidden;
  padding-bottom: 15px;
}

.left {
}
.left .box-left {
  margin-bottom: 30px;
  background-color: #f9fcf9;
  padding: 0px 10px;
}

.title-home2 {
  font-size: clamp(0.5rem, 0.531rem + 7.57vw, 1.25rem);
  font-weight: 700;
  color: var(--color-sub);
  text-transform: uppercase;
  text-align: center;
  position: relative;
  padding: 16px 10px;
  z-index: 1;
  margin-bottom: 0px;
  border-bottom: 1px solid #ccc;
}
.title-home2 h3 {
  margin-bottom: 0px;
}

.box-cap2 {
  display: none;
  position: relative;
  margin-bottom: 0px;
}
.box-cap2 li a {
  padding-left: 50px;
  background: url(../images/arrow_right.png) left 30px center no-repeat;
  padding-left: 35px;
}

.left__box {
  position: relative;
  margin-bottom: 0px;
}
.left__box li {
  margin-top: 1px;
}
.left__box li a {
  font-size: clamp(0.5rem, 0.531rem + 7.57vw, var(--size-title));
  color: #000;
  padding: 8px 0px;
  display: flex;
  position: relative;
  align-items: center;
}
.left__box li i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-main);
}

.footer {
  background-color: #000;
  line-height: 22px;
}
.footer .visited p {
  margin-bottom: 0px;
}
.footer .visited p + p {
  margin-left: 10px;
}

.copy-right {
  color: #fff;
  border-top: 1px solid #fff;
}
.copy-right a {
  color: #fff;
}

.hotr__box {
  display: flex;
  border: 1px solid #da251d;
  align-items: center;
  margin-bottom: 15px;
}

.hotr__left {
  width: 125px;
  border-radius: 0 85px 85px 0;
  overflow: hidden;
  border-right: 2px solid #da251d;
  position: relative;
  z-index: 9;
}
.hotr__left .img-container {
  padding-bottom: 116%;
}

.hotr__right {
  margin-left: 20px;
  flex-grow: 1;
  font: 14px "ro-l";
}

.hotr__ten {
  margin-bottom: 15px;
  background: #da251d;
  display: inline-block;
  color: #fff;
  padding: 4px 35px;
  padding-left: 50px;
  margin-left: -50px;
  position: relative;
}
.hotr__ten:after {
  content: "";
  display: inline-block;
  width: 23px;
  height: 25px;
  position: absolute;
  right: -23px;
  background: #da251d;
  top: 0;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
}

.hotr__dienthoai {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.hotr__dienthoai i {
  margin-right: 6px;
}

.hotr__email {
  display: flex;
  align-items: center;
}
.hotr__email i {
  margin-right: 6px;
}

.hotr__mxh {
  margin-top: 10px;
}
.hotr__mxh li {
  margin-right: 7px;
}

.title-main {
  position: relative;
  margin: auto;
  margin-bottom: 2rem;
  display: table;
}
.title-main h2 {
  font-size: var(--size-title-main);
  text-transform: uppercase;
  margin-bottom: 0;
  font-weight: 700;
  text-align: center;
}
.title-main h2:after {
  content: "";
  display: table;
  width: 395px;
  height: 6px;
  background: url(../img/line.svg) no-repeat;
  margin: 1rem auto 0;
}
.title-main a {
  font-style: italic;
  color: #484848;
}
.title-main span {
  display: block;
}
.title-main-line {
  text-align: center;
}
.title-main img:nth-child(1) {
  left: -100px;
}
.title-main img:nth-child(2) {
  right: -100px;
}

.title-main1 {
  margin-bottom: 2rem;
}
.title-main1 h3 {
  font-size: clamp(0.5rem, 0.531rem + 7.57vw, 1.25rem);
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  background: url(../images/icon.png) left center no-repeat;
  padding-left: 45px;
  margin-bottom: 0px;
}

.title-main2 {
  position: relative;
  margin-bottom: 2rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
}
.title-main2 h2 {
  color: var(--color-sub);
  margin-bottom: 0px;
  font-size: var(--size-title-main);
  text-transform: uppercase;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-sub);
}

.title-main3 {
  display: inline-block;
  margin-bottom: 1rem;
}
.title-main3 h2 {
  color: var(--color-main);
  position: relative;
  margin-bottom: 0px;
}
.title-main3 span {
  display: block;
  font-size: var(--size-title-main);
  background: url("../img/fire.png") left center no-repeat;
  padding-left: 40px;
}

.box-arr {
  margin-right: 15px;
  display: flex;
}
.box-arr span {
  width: 42px;
  height: 42px;
  background: var(--color-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-main);
  font-size: 20px;
  cursor: pointer;
}
.box-arr span + span {
  margin-left: 10px;
}

.sanpham__item {
  display: block;
  transition: 0.5s;
  margin: 8px;
  position: relative;
  border: 1px solid rgba(221, 221, 221, 0.8666666667);
  background-color: #fff;
  margin: 0px;
  height: 100%;
}
.sanpham__item h3 {
  font-size: var(--size-title);
  color: #070707;
}

.btn-more {
  background: var(--color-main);
  color: #fff;
  padding: 5px 18px;
  border-radius: 26px;
  text-transform: uppercase;
  font-family: "Be Vietnam Pro";
  font-weight: 300;
  font-size: 13px;
  margin-top: 10px;
}

.slick-dv2 .dv2__item {
  margin: 0 10px;
}

.sanpham__img {
  position: relative;
}
.sanpham__img .img-container {
  padding-bottom: 92%;
}
.sanpham__img img {
  object-fit: contain;
}

.sanpham__box {
  padding: 10px;
}

.gia-ban {
  font-size: 16px;
  color: #e93514;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.giamoi {
  color: red;
}

.giacu {
  font-size: 13px;
  color: #ccc;
  text-decoration: line-through;
  margin-right: 1rem;
  font-weight: 400;
}

.ft__title {
  font: 18px "Be Vietnam Pro";
  color: #fff;
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.sidebar-title {
  font-size: 20px;
  margin-bottom: 30px;
  border-bottom: 2px solid #f3f3f3;
  padding-bottom: 16px;
  line-height: 1;
  font-family: "Roboto";
}

.featured-author p {
  padding: 0 20px;
}
.featured-author h6 {
  font-size: 18px;
  line-height: 46px;
  margin-bottom: 0;
}

.featured-author-social li {
  display: inline-block;
}
.featured-author-social li a {
  font-size: 14px;
  color: #222;
  display: inline-block;
  margin: 0 10px;
}
.featured-author-social li a:hover {
  color: #fcbe00;
}

.n-sidebar-search {
  position: relative;
}
.n-sidebar-search input {
  padding-left: 30px;
  padding-right: 80px;
  background: #f5f5f5;
  height: 60px;
  width: 100%;
  border: 0;
  outline: none;
}
.n-sidebar-search input::placeholder {
  color: #999;
}
.n-sidebar-search button {
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  background: #e99820;
  color: #fff;
  font-size: 14px;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  border: none;
}

.feed-content h6 {
  font-size: 15px;
  line-height: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.feed-content h6:hover {
  color: #fcbe00;
}
.feed-content a {
  color: #000;
}

.feed-number img {
  margin-right: 20px;
  width: 80px;
  height: 80px;
  object-fit: cover;
  display: block;
}

.n-sidebar-feed ul {
  padding: 0;
}
.n-sidebar-feed ul li:first-child {
  padding-top: 0;
}
.n-sidebar-feed ul li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.title-news_ct {
  font-size: 20px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-main);
  padding-bottom: 10px;
  position: relative;
}
.title-news_ct:after {
  content: "";
  position: absolute;
  bottom: -3px;
  height: 5px;
  background-color: var(--color-main);
  left: 0;
  width: 155px;
}

.box_tacgia {
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 10px;
  margin-top: 30px;
}

.box_tacgia_avata img {
  height: 150px;
  border-radius: 10px;
  object-fit: cover;
}

.box_tacgia_tt {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
}

.swal-title {
  margin-bottom: 20px;
}

.cart__price {
  padding-right: 10px;
}

.invoice-1
  .invoice-info-buttom
  .table
  .invoice-1
  .invoice-info-buttom
  .table
  tr {
  border: 1px solid #e9ecef;
}

.table tr {
  border: 1px solid #e9ecef;
}

.detail-qty {
  max-width: 80px;
  padding: 9px 20px;
  position: relative;
  width: 100%;
  border-radius: 5px;
}
.detail-qty span {
  position: absolute;
  right: 0;
  color: #2a2a28;
  width: 20px;
  line-height: 35px;
  cursor: pointer;
  font-size: 10px;
}
.detail-qty > span.qty-down {
  left: 0;
  right: auto;
}
.detail-qty > span.qty-up {
  top: auto;
}

.detail-extralink > div {
  display: inline-block;
  vertical-align: top;
}
.detail-extralink .detail-qty {
  margin: 0 6px 15px 0;
  background: #fff;
  border: 1px solid #cccccc !important;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  font-variant: JIS04;
  padding: 0px 20px 0px 20px;
  max-width: 90px;
  margin-bottom: 0;
}

.p-40 {
  padding: 40px !important;
}

.heading-2 {
  font-size: 24px;
  text-transform: uppercase;
}

.num_sl {
  width: 45px;
  text-align: center;
  border: none;
  box-shadow: none;
  width: 45px;
  text-align: center;
  border: none;
  outline: none;
  box-shadow: none;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
  height: 35px;
}

.cart-action {
  margin-bottom: 30px;
}
.cart-action .btn {
  background-color: #e99820;
  font-family: "Roboto";
  font-size: 14px;
  padding: 10px 20px;
}

.form-dathang {
  margin-bottom: 30px;
}
.form-dathang .form-group label {
  margin-bottom: 5px;
  color: #000;
  display: none;
}
.form-dathang .form-control,
.form-dathang .form-select {
  font-size: 14px;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
  text-indent: 10px;
  font-weight: 300;
}

.btn-dathang {
  background-color: #e99820;
  font-family: "Roboto";
  font-size: 14px;
  padding: 10px 20px;
  width: 100%;
  text-transform: uppercase;
  font-size: 18px;
  color: #fff;
}

.nav-mobile {
  list-style: none;
  padding: 0;
}
.nav-mobile .dropdown-menu {
  position: inherit !important;
  transform: none !important;
  border: none;
  padding-left: 15px;
}
.nav-mobile > li > a:after {
  float: right;
  position: relative;
  top: 8px;
}

.form-search-nav {
  position: relative;
  margin-left: 0;
  margin-bottom: 20px;
}
.form-search-nav input {
  font-size: 13px;
  border-radius: 30px;
  border: 1px solid #000000;
  color: #000000;
  font-size: 13px;
  padding: 10px 10px;
}

.chitiet_sp img {
  max-width: 100%;
  height: auto !important;
}
.chitiet_sp h2 {
  border-bottom: 1px solid #b78f5b;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 20px;
  font-size: 18px;
  position: relative;
}
.chitiet_sp h2 strong {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}
.chitiet_sp h2 strong:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  background-color: #b6915d;
  bottom: -7px;
}
.chitiet_sp h2 strong:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 7px solid #b6915d;
  border-right: 10px solid transparent;
  position: absolute;
  right: -10px;
  bottom: -7px;
}

.news-detalis img {
  max-width: 100%;
  height: auto !important;
}

.gia_sale {
  float: right;
  font-weight: 300;
}

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

.tintuc_home {
  padding-top: 15px !important;
  padding-bottom: 30px !important;
}

.tt__item {
  background: #fff;
  display: block;
  text-align: center;
}
.tt__item h3 {
  font-size: 13px;
  font-family: "Be Vietnam Pro";
  font-weight: 400;
  font: 16px "mon-l";
  color: #070707;
}

.tt__desc {
  color: #636363;
  font: 13px "Be Vietnam Pro";
}

.tt__date {
  color: var(--color-main);
  font-family: "Be Vietnam Pro";
  font-weight: 700;
  font: 13px "mon-l";
  color: #070707;
}
.tt__date i {
  color: var(--color-main);
}

.col-left-ctsp {
  width: 81%;
}

.col-right-ctsp {
  width: 19%;
}

.box_right_sp_title2 {
  padding-top: 5px;
  padding-bottom: 5px;
  font-weight: 700;
}

.danhgia_ct {
  display: flex;
  margin-bottom: 10px;
}
.danhgia_ct .rating-d {
  list-style: none;
  padding: 0;
  color: #e99820;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 0;
}
.danhgia_ct span {
  color: rgba(199, 197, 197, 0.8);
}
.danhgia_ct span b {
  color: #fff;
}

.nav_sub {
  width: 70%;
  overflow: hidden;
  white-space: nowrap;
}

.nav-item.dropdown:hover ul {
  display: block;
}

.lienhhe-fix {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background-color: #b10015;
  z-index: 100;
  color: #fff;
  padding: 10px 30px;
  text-transform: uppercase;
  border-radius: 3px;
}

.box_lienhe {
  padding: 25px !important;
  width: 400px;
}

.tuvan_title {
  background-color: #b10015;
  margin-top: -25px;
  margin-left: -25px;
  margin-right: -25px;
  padding: 10px 25px;
  color: #fff;
  text-align: center;
  font-family: "Roboto";
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 30px;
}

.form_input_icon {
  position: relative;
}
.form_input_icon span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #706d6d;
}
.form_input_icon input {
  padding-left: 35px;
  height: 38px;
}

.phuongthuc_thanhtoan {
  margin-top: 30px;
}

.btn-tuvan {
  background-color: #b10015;
  color: #fff;
  padding: 7px 30px;
  text-transform: uppercase;
}

.btn-thanhtoan {
  font-size: 14px;
  display: block;
  width: 100%;
  border: 1px solid #ececec;
  background-color: #ececec;
  padding: 10px;
}
.btn-thanhtoan.active {
  display: block;
  width: 100%;
  border: 1px solid #e99820;
  background-color: #e99820;
  color: #000;
  font-weight: 500;
}

.thanhtoan_content {
  margin-top: 10px;
  border: 1px solid #ececec;
  padding: 20px;
  margin-bottom: 30px;
}

.swiper-button-next {
  color: #e99820 !important;
}

.swiper-button-prev {
  color: #e99820 !important;
}

.box_right_sp_kh {
  margin-top: 0px !important;
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
}

.sanpham__percent {
  position: absolute;
  top: -7px;
  right: 8px;
  background: url("../img/khuyenmai.png");
  color: #fff;
  display: block;
  width: 32px;
  height: 36px;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thongsosp li {
  padding: 8px 0;
  border-bottom: 1px solid #ccc;
}

.tensp h2 {
  font-size: 26px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.discount {
  border-radius: 3px;
  background: red;
  color: #fff;
  vertical-align: top;
  margin-left: 1rem;
  font-size: 13px;
  padding: 3px;
}

.price-new {
  font-size: 26px;
  color: red;
  font-weight: 500;
}

.price-old {
  margin-right: 1rem;
  text-decoration: line-through;
  color: #ccc;
}

.thumb-item {
  border: 1px solid rgba(204, 204, 204, 0.3098039216);
  display: block;
  margin: 0 2px;
}

.slick-prev.pull-left {
  left: 0;
}

.slick-next.pull-right {
  right: 0;
}

.pull-right {
  width: 30px;
  height: 30px;
  z-index: 99;
}
.pull-right i {
  color: red;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.5s;
  transform: scale(1.5);
}
.pull-right:before {
  display: none;
}

.pull-left {
  width: 30px;
  height: 30px;
  z-index: 99;
}
.pull-left i {
  color: red;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.5s;
  transform: scale(1.5);
}
.pull-left:before {
  display: none;
}

.slide-sp-main:hover .pull-right i {
  opacity: 1;
}
.slide-sp-main:hover .pull-left i {
  opacity: 1;
}

.muangay {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--color-main);
  padding: 10px;
  border-radius: 3px 0 3px 0;
  width: 37px;
  height: 37px;
  color: #fff;
}

.muahangshopee a {
  color: #fff;
}

.heading_s1 h1 {
  font-size: 40px;
  font-weight: 600;
  color: var(--color-main);
}

.payment_option .custome-radio {
  margin-bottom: 10px;
}
.payment_option .custome-radio .form-check-label {
  color: #292b2c;
  font-weight: 600;
}

.custome-radio .form-check-label {
  position: relative;
  cursor: pointer;
}
.custome-radio .form-check-label::before {
  content: "";
  border: 1px solid #908f8f;
  height: 16px;
  width: 16px;
  display: inline-block;
  border-radius: 100%;
  vertical-align: middle;
  margin-right: 8px;
}
.custome-radio input[type="radio"] + .form-check-label::after {
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 100%;
  position: absolute;
  top: 6px;
  left: 3px;
  opacity: 0;
}
.custome-radio input[type="radio"]:checked + .form-check-label::after {
  opacity: 1;
  background-color: #f8b133;
}
.custome-radio .form-check-input {
  display: none;
}

.custome-checkbox .form-check-label {
  position: relative;
  cursor: pointer;
}
.custome-checkbox .form-check-label::before {
  content: "";
  border: 2px solid #ced4da;
  height: 17px;
  width: 17px;
  margin: 0 8px 0 0;
  display: inline-block;
  vertical-align: middle;
  border-radius: 2px;
}
.custome-checkbox .form-check-label span {
  vertical-align: middle;
}
.custome-checkbox .form-check-input {
  display: none;
}
.custome-checkbox input[type="checkbox"] + .form-check-label::after {
  content: "";
  width: 11px;
  position: absolute;
  top: 50%;
  left: 3px;
  opacity: 0;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: translateY(-65%) rotate(-45deg);
  transform: translateY(-65%) rotate(-45deg);
}
.custome-checkbox input[type="checkbox"]:checked + .form-check-label::before {
  background-color: #f8b133;
  border-color: #f8b133;
}
.custome-checkbox input[type="checkbox"]:checked + .form-check-label::after {
  opacity: 1;
}

.login_footer {
  margin-bottom: 30px;
  margin-top: 5px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  width: 100%;
}

label.error {
  color: red;
  font-style: italic;
  font-size: 14px;
}

.video__item {
  position: relative;
  width: 100%;
  display: block;
}

.video__play {
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85px;
  height: 85px;
  border: 3px solid #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
}
.video__play i {
  font-size: 35px;
}

.video__nd {
  color: #fff;
}

.booking .title-main h3 {
  color: #fff;
}

.dknt-button {
  color: #fff;
  padding: 8px 24px;
  border-radius: 0px;
  background: var(--color-main);
  border-radius: 99px;
  border: none;
  margin-top: 1rem;
}

.dknt {
  padding: 25px;
  border-radius: 0 45px 0 0;
  position: absolute;
  top: 0;
}
.dknt input.form-control {
  height: 43px;
  border: 1px solid transparent;
}
.dknt form {
  overflow: hidden;
}
.dknt .dknt-button {
  background-color: #000;
}
.dknt .dknt-button:hover {
  color: #fff;
}

.input-group-text {
  background: #6cadaa;
}

.dknt-form {
  background: url("../images/bgdknt.png");
  background-size: cover;
  padding: 30px;
  margin-top: -40px;
  position: relative;
  margin-left: 40px;
}
.dknt-form:before {
  content: "";
  width: 30px;
  height: 42px;
  background: var(--color-main);
  display: block;
  position: absolute;
  left: -29px;
  top: 0;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.dknt-form .dknt-title {
  color: #fff;
  font: 24px "dvn-eb";
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2rem;
}

.sanpham .title-home2 {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.xemthem {
  border-radius: 22px 0;
}

.gioithieu {
  margin-bottom: 7rem;
}

.gt__right {
  background: rgba(1, 63, 114, 0.6588235294);
  margin-bottom: -60px;
}
.gt__right h3 {
  color: #fff;
  font: 30px "mon-l";
  text-transform: uppercase;
}

.gt__desc {
  font: 14px "mon-l";
  color: #fff;
}

.btn-xemthem {
  color: var(--color-font-light);
}
.btn-xemthem:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-font-light);
  transition: width ease 0.5s;
}
.btn-xemthem:hover:after {
  width: 0%;
}

.gt__body {
  bottom: 0;
  right: 0;
  position: absolute;
}

.gt__img img {
  width: 100%;
}

.prod-list {
  display: flex;
  justify-content: center;
  margin-bottom: 55px;
  padding: 0;
}
.prod-list li {
  margin: 0 5px;
  font: 15px "mon-l";
  color: var(--default-color);
  border: 1px solid var(--default-color);
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 3px;
  transition: 0.5s;
  white-space: nowrap;
}
.prod-list li:hover {
  color: var(--color-main);
}
.prod-list li.active {
  color: var(--color-main);
}

.tt__body {
  border: 1px solid #898989;
  border-top: 0px;
  position: relative;
  padding-top: 35px !important;
}

.album__img {
  padding-bottom: 81.81%;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-slide-active .kh__desc {
  opacity: 1;
}

.blockdmsp1 {
  margin-bottom: 20px;
}
.blockdmsp1__banner {
  padding-bottom: 266%;
}
.blockdmsp1__inner {
  background-color: #f8f8f8;
}

.box__cap1 {
  padding: 6px 0;
  list-style: none;
  height: 340px;
  overflow-y: scroll;
  background: var(--color-main);
}
.box__cap1 li a {
  padding: 8px 12px;
  display: block;
  font-size: 14px;
  position: relative;
  color: #fff;
  text-transform: uppercase;
}
.box__cap1 li a:before {
  content: "\f105";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  display: inline-block;
  margin-right: 4px;
  font-size: 9px;
}
.box__cap1 li a i {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.box__cap1 li:hover .box__cap2 {
  opacity: 1;
  visibility: visible;
}
.box__cap1::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #fff;
}
.box__cap1::-webkit-scrollbar {
  width: 5px;
  background-color: #fff;
}
.box__cap1::-webkit-scrollbar-thumb {
  background-color: #d4d118;
}

.box__cap2 {
  list-style: none;
  padding: 0;
  position: absolute;
  left: 100%;
  width: 100%;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

.xemtatca {
  background: var(--color-main);
  border: 1px solid var(--color-main);
  padding: 0 20px;
  position: relative;
  height: 44px;
  line-height: 44px;
  transition: all ease 0.5s;
}
.xemtatca i {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #d4d118;
  font-size: 22px;
  position: absolute;
  top: 50%;
  left: -1px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all ease 0.5s;
}
.xemtatca span {
  padding-left: 41px;
  display: block;
  color: #fff;
  transition: all ease 1s;
}
.xemtatca:hover {
  background: #fff;
}
.xemtatca:hover i {
  left: calc(100% - 45px);
}
.xemtatca:hover span {
  padding-left: 0px;
  padding-right: 41px;
  color: var(--color-main);
}

.kh__img {
  width: 85px;
  height: 85px;
}
.kh__img .img-container {
  padding-bottom: 100%;
}
.kh__img .img-container img {
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid var(--color-main);
}

.kh__item {
  border: 1px solid #349027;
  padding: 20px;
  border-radius: 25px;
}

.kh__ten {
  color: #3eae2e;
  font-size: 16px;
  font-weight: 500;
}

.kh__chucvu {
  font-size: 16px;
}

.kh__desc {
  color: #070707;
}

.kh__block {
  position: relative;
}
.kh__block:after {
  content: "\f10e";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: -15px;
  right: 0;
  font-size: 45px;
  color: #c6e6c2;
}

.aboutus__pic {
  padding-bottom: 92%;
}
.aboutus__label {
  font-size: 4rem;
  text-transform: uppercase;
  color: rgba(226, 222, 2, 0.4705882353);
  font-weight: 700;
  margin-bottom: -54px;
}
.aboutus__title {
  font-size: var(--size-title-main);
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-main);
}
.aboutus__btn {
  border: 1px solid var(--color-main);
  border-radius: 99px;
  margin-top: 1rem;
  color: var(--color-main);
}
.aboutus__btn i {
  margin-left: 5px;
}
.aboutus .owl-about .owl-item {
  transition: all ease 0.5s;
}
.aboutus .owl-about .owl-item .img-container {
  padding-bottom: 110%;
}
.aboutus .owl-about .owl-item.center {
  transform: scale(1.4);
}
.aboutus .owl-about .owl-stage {
  padding: 55px 0;
}

.aboutus2__pic {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto -32px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  box-shadow: inset 0px -2px 2px -2px #000;
  z-index: 999;
  position: relative;
  background: #f4f4f4;
}
.aboutus2__inner {
  background-color: #f4f4f4;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4705882353);
  padding: 45px 20px 20px;
}
.aboutus2__desc {
  width: 96%;
  background: #f4f4f4;
  margin: auto;
  padding: 10px 0 30px;
  margin-bottom: -34px;
  box-shadow: 0px -2px 8px -1px #c9c9c9;
}

.whychooseus__title {
  float: left;
  display: flex;
  align-items: center;
  margin-right: 5px;
}
.whychooseus h3 {
  margin-bottom: 0px;
}
.whychooseus__item {
  clear: both;
  margin-bottom: 1rem;
}
.whychooseus i {
  margin-right: 5px;
  color: var(--color-main);
}

.tintuc__itembig {
  position: relative;
  margin-bottom: 10px;
}
.tintuc__innerbig {
  margin-bottom: 0px;
  padding: 10px;
  width: 95%;
  margin: -50px auto 0;
  background: #fff;
  z-index: 999;
  position: relative;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4705882353);
}
.tintuc__img .img-container {
  padding-bottom: 70%;
}

.visao {
  position: relative;
}
.visao__item {
  position: relative;
}
.visao__pic {
  width: 45px;
  height: 45px;
  z-index: 99;
  position: relative;
}
.visao__pic img {
  object-fit: contain;
}
.visao__left .img-container img {
  object-fit: contain;
}

.bannerqcbot .img-container {
  padding-bottom: 28%;
}

.project__pic .img-container {
  padding-bottom: 100%;
}

.videoindex__slick2 a {
  display: block;
  margin: 0 5px;
}
.videoindex__slick2 .video__play {
  width: 45px;
  height: 45px;
}
.videoindex__slick2 .video__play i {
  font-size: 20px;
}

.bvmoi-list h3 {
  font-size: 13px;
}
.bvmoi-list a.slick-slide {
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}
.bvmoi-list a.slick-slide .img-container {
  padding-bottom: 100%;
}

.product_promo {
  color: var(--color-main);
  font-weight: 700;
  font-size: 18px;
}
.product_price {
  text-decoration: line-through;
  font-size: 14px;
  margin-right: 18px;
}
.product__title a {
  color: var(--color-main);
  font-size: 20px;
  font-weight: 700;
}
.product__pic {
  padding-bottom: 75%;
}

.contact-info i {
  width: 55px;
  height: 55px;
  font-size: 20px;
  color: #fff;
  border-radius: 50%;
  background-color: rgba(35, 35, 227, 0.6705882353);
}

.danhmucsp .nav-pills .nav-link {
  color: #000;
  text-transform: uppercase;
  display: flex;
}
.danhmucsp .nav-pills .nav-link.active,
.danhmucsp .nav-pills .show > .nav-link {
  border-left: 2px solid var(--color-sub);
  background: none;
}

.owl-doitac .img-container img {
  object-fit: contain;
}

.producthot__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.producthot .title-main {
  margin-bottom: 2rem;
}

.producthot .title-main h2 {
  color: #fff;
}

.producthot .title-main h2:after {
  display: none;
}

.service .background-main {
  border-radius: 60px 0;
}
.service .title-main2 h2 {
  color: #fff;
  margin-bottom: 10px;
}
.service .title-main2 p {
  color: #fff;
}
.service__img {
  border-radius: 30px 0;
  padding-bottom: 100%;
}

#form-dangky .form-group label,
#form-dangnhap .form-group label {
  color: var(--color-sub);
  margin-bottom: 5px;
  font-weight: 500;
}
#form-dangky .form-control:focus,
#form-dangnhap .form-control:focus {
  border: 1px solid var(--color-main) !important;
}

.popupform .modal-content {
  background: url("../img/bglogin.png");
}

.customer__quote i {
  color: var(--color-sub);
}

.producttype {
  margin: 15px 0;
}

.product-options {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.option-item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border: 2px solid #ddd;
  border-radius: 2px;
  background: #fff;
  transition: all 0.3s ease;
  justify-content: center;
  position: relative;
  cursor: pointer;
  z-index: 9;
  position: relative;
  touch-action: manipulation;
}

.option-item.active {
  border: 2px solid red;
}

.option-item.active .checkmark {
  display: block;
}

.checkmark {
  position: absolute;
  bottom: -2px;
  right: -2px;
  display: none;
  font-size: 12px;
  color: #fff;
  border-top: 20px solid transparent;
  border-right: 20px solid red;
}
.checkmark::after {
  content: "✓";
  font-weight: bold;
  position: absolute;
  top: -16px;
  right: -19px;
}

/* .option-item input[type="radio"]:checked + .option-label .checkmark {
  display: flex;
} */

.option-text {
  font-weight: 500;
  font-size: 19px;
}

.modern-dashboard {
  min-height: 100vh;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, sans-serif;
}

.hero-section {
  background: linear-gradient(135deg, var(--color-main) 0%, #2d9602 100%);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(53, 175, 2, 0.2);
  padding: 2rem 1.5rem;
  text-align: center;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}
.hero-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.tab-pane {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.modern-input:focus {
  transform: translateY(-1px);
  box-shadow: 0 0 0 4px rgba(53, 175, 2, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1) !important;
}

.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0;
  font-weight: 300;
}

.hero-avatar {
  text-align: center;
  position: relative;
  z-index: 2;
}

.avatar-wrapper {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  backdrop-filter: blur(10px);
  border: 3px solid rgba(255, 255, 255, 0.3);
  width: 80px;
  height: 80px;
}
.avatar-wrapper img {
  border-radius: 50%;
}

.status-badge {
  background: var(--color-sub);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(252, 117, 4, 0.3);
}

.sidebar-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-header {
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 1px solid #e9ecef;
  padding: 1.25rem 1.5rem;
}
.sidebar-header h4 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-font);
  display: flex;
  align-items: center;
}
.sidebar-header i {
  color: var(--color-main);
}

.sidebar-nav {
  padding: 1rem 0;
}

.nav-item-modern {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1.25rem 2rem;
  border: none;
  background: transparent;
  color: var(--color-font);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
  padding: 1rem 1.5rem;
}
.nav-item-modern::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--color-main);
  transition: width 0.3s ease;
}
.nav-item-modern:hover {
  background: rgba(53, 175, 2, 0.05);
  color: var(--color-main);
  padding-left: 2.5rem;
}
.nav-item-modern:hover::before {
  width: 4px;
}
.nav-item-modern:hover .nav-arrow {
  opacity: 1;
  transform: translateX(5px);
}
.nav-item-modern.active {
  background: rgba(53, 175, 2, 0.1);
  color: var(--color-main);
  font-weight: 500;
}
.nav-item-modern.active::before {
  width: 4px;
}
.nav-item-modern.loading {
  pointer-events: none;
  opacity: 0.7;
}
.nav-item-modern.loading::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid var(--color-main);
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.nav-icon-wrapper {
  width: 40px;
  height: 40px;
  background: rgba(53, 175, 2, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  transition: all 0.3s ease;
}

.nav-item-modern:hover .nav-icon-wrapper,
.nav-item-modern.active .nav-icon-wrapper {
  background: var(--color-main);
  color: white;
  transform: scale(1.1);
}

.nav-content {
  flex: 1;
  text-align: left;
}

.nav-title {
  display: block;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.2;
}

.nav-desc {
  display: block;
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 0.2rem;
}

.nav-arrow {
  font-size: 0.8rem;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.nav-divider {
  height: 1px;
  background: #e9ecef;
  margin: 1rem 2rem;
}

.logout-nav {
  color: #dc3545 !important;
  margin-top: 0.5rem;
}
.logout-nav .nav-icon-wrapper {
  background: rgba(220, 53, 69, 0.1) !important;
}
.logout-nav:hover {
  background: rgba(220, 53, 69, 0.05) !important;
  color: #dc3545 !important;
}
.logout-nav:hover .nav-icon-wrapper {
  background: #dc3545 !important;
  color: white !important;
}

.content-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.content-header {
  padding: 2rem 2.5rem 1rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem 2rem 1rem;
}
.content-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-font);
  display: flex;
  align-items: center;
}
.content-header i {
  color: var(--color-main);
}

.header-desc {
  margin: 0.5rem 0 0;
  color: var(--color-font-light);
  font-size: 0.95rem;
}

.btn-refresh {
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(53, 175, 2, 0.1);
  color: var(--color-main);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-refresh:hover {
  background: var(--color-main);
  color: white;
  transform: rotate(180deg);
}

.content-body {
  padding: 2.5rem;
  padding: 2rem;
  padding: 1.5rem;
}

.modern-form {
  max-width: none;
}

.form-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f0f0f0;
}
.form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 2rem;
}

.section-header {
  margin-bottom: 2rem;
  position: relative;
}
.section-header h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-font);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
}
.section-header i {
  color: var(--color-main);
}

.section-line {
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--color-main) 0%,
    var(--color-sub) 100%
  );
  border-radius: 2px;
  width: 60px;
}

.modern-input-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.modern-input {
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.modern-input:focus {
  border-color: var(--color-main);
  box-shadow: 0 0 0 4px rgba(53, 175, 2, 0.1), 0 4px 12px rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.form-floating > label {
  color: var(--color-font-light);
  font-weight: 500;
  padding: 0.5rem 1.25rem;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
  color: var(--color-main);
  font-weight: 600;
}

.security-toggle {
  background: rgba(53, 175, 2, 0.05);
  border: 1px solid rgba(53, 175, 2, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
}

.form-check-input:checked {
  background-color: var(--color-main);
  border-color: var(--color-main);
}
.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(53, 175, 2, 0.25);
}

.btn-modern-primary {
  background: linear-gradient(135deg, var(--color-main) 0%, #2d9602 100%);
  color: white;
  border: none;
  padding: 1rem 3rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(53, 175, 2, 0.3);
  width: 100%;
  justify-content: center;
}
.btn-modern-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(53, 175, 2, 0.4);
}
.btn-modern-primary:hover .btn-ripple {
  left: 100%;
}
.btn-modern-primary:active {
  transform: translateY(0);
}
.btn-modern-primary.loading {
  pointer-events: none;
  opacity: 0.8;
}
.btn-modern-primary.loading::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.btn-ripple {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.form-actions {
  text-align: center;
  padding-top: 2rem;
}

.required {
  color: var(--color-sub);
  font-weight: 700;
}

.orders-wrapper {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
  min-height: 200px;
}

.dataTables_wrapper {
  margin-top: 1rem;
}

table.dataTable {
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
table.dataTable thead th {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: var(--color-font);
  font-weight: 600;
  border-bottom: 2px solid #e9ecef;
  padding: 1.25rem 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
table.dataTable tbody td {
  padding: 1.25rem 1rem;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}
table.dataTable tbody tr:hover {
  background: rgba(53, 175, 2, 0.04);
}
table.dataTable tbody tr:last-child td {
  border-bottom: none;
}

.hero-title {
  font-size: 1.75rem;
}

.tab-pane.active {
  opacity: 1;
}

.disabled-input {
  background: #f8f9fa !important;
  color: #6c757d !important;
  opacity: 0.7;
}

.password-enabled {
  border-color: var(--color-main) !important;
  box-shadow: 0 0 0 2px rgba(53, 175, 2, 0.1) !important;
}
.password-enabled .form-check-label {
  color: var(--color-main) !important;
  font-weight: 600 !important;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--color-main), #2d9602);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #2d9602, var(--color-main));
}

.form-success {
  border-color: #28a745 !important;
  box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.1) !important;
}

.form-error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1) !important;
}

.notification {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: white;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--color-main);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.notification.show {
  transform: translateX(0);
}
.notification.success {
  border-left-color: #28a745;
}
.notification.error {
  border-left-color: #dc3545;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}
@keyframes spin {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}
.social-login-section {
  margin-top: 1.5rem;
}

.divider-with-text {
  position: relative;
  text-align: center;
  margin: 20px 0;
}
.divider-with-text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e0e0e0;
}
.divider-with-text span {
  background: #ffffff;
  padding: 0 15px;
  color: #939393;
  font-size: 14px;
  font-weight: 400;
}

.google-login-btn {
  border-color: #35af02 !important;
  color: #5c5c5c !important;
  font-weight: 500;
  padding: 12px 20px;
  transition: all 0.3s ease-in-out;
}
.google-login-btn:disabled {
  opacity: 0.6;
  transform: none;
  box-shadow: none;
}
.google-login-btn svg {
  vertical-align: middle;
}

/* Loading spinner */
.spinner-border-sm {
  width: 1rem;
  height: 1rem;
} /*# sourceMappingURL=style.css.map */

.addcart {
  background-color: var(--color-sub);
  color: #fff;
  margin-left: 10px;
  border: 1px solid var(--color-sub);
  cursor: pointer;
  touch-action: manipulation;
  display: block;
}


.hotlinesp {
  color: red;
  font-weight: 600;
  font-size: 19px;
  padding: 8px 0;
}

.productquycach {
  font-size: 19px;
}

.hotlinesp strong {
  color: #000;
}

.tab_sanpham li button.box1 {
  background-color: var(--color-sub);
}

.tab_sanpham li button.box2 {
  background-color: #fb7c0ae5;
}

.tab_sanpham li button.box3 {
  background-color: #fb7c0abf;
}

.tab_sanpham li button.box4 {
  background-color: #fb7c0a73;
}

.btn-tuvan2 small {
  font-size: 11px;
}

.header__title {
  margin: 0;
  font-weight: 800;
  display: inline-block;
  background: linear-gradient(
    90deg,
    #ff3d3d,
    #ff8c00,
    #ffee00,
    #2ecc71,
    #00c2ff,
    #3a40ff,
    #b831ff,
    #ff3d3d
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent; /* Safari/iOS */
  animation: rainbow-move 6s linear infinite;
}

@keyframes rainbow-move {
  to {
    background-position: 200% center;
  }
}

/* .aurora {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  mix-blend-mode: normal;
  pointer-events: none;
} */

/* .aurora__item {
  opacity: .55;
  overflow: hidden;
  position: absolute;
  width: 60vw;
  height: 60vw;
  background-color: var(--clr-1);
  border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
  filter: blur(var(--blur));
  mix-blend-mode: multiply;
}

.aurora__item:nth-of-type(1) {
  top: -50%;
  animation: aurora-border 6s ease-in-out infinite,
    aurora-1 12s ease-in-out infinite alternate;
}

.aurora__item:nth-of-type(2) {
  background-color: var(--clr-3);
  right: 0;
  top: 0;
  animation: aurora-border 6s ease-in-out infinite,
    aurora-2 12s ease-in-out infinite alternate;
}

.aurora__item:nth-of-type(3) {
  background-color: var(--clr-2);
  left: 0;
  bottom: 0;
  animation: aurora-border 6s ease-in-out infinite,
    aurora-3 8s ease-in-out infinite alternate;
}

.aurora__item:nth-of-type(4) {
  background-color: var(--clr-4);
  right: 0;
  bottom: -50%;
  animation: aurora-border 6s ease-in-out infinite,
    aurora-4 24s ease-in-out infinite alternate;
}

@keyframes aurora-1 {
  0% {
    top: 0;
    right: 0;
  }

  50% {
    top: 100%;
    right: 75%;
  }

  75% {
    top: 100%;
    right: 25%;
  }

  100% {
    top: 0;
    right: 0;
  }
}

@keyframes aurora-2 {
  0% {
    top: -50%;
    left: 0%;
  }

  60% {
    top: 100%;
    left: 75%;
  }

  85% {
    top: 100%;
    left: 25%;
  }

  100% {
    top: -50%;
    left: 0%;
  }
}

@keyframes aurora-3 {
  0% {
    bottom: 0;
    left: 0;
  }

  40% {
    bottom: 100%;
    left: 75%;
  }

  65% {
    bottom: 40%;
    left: 50%;
  }

  100% {
    bottom: 0;
    left: 0;
  }
}

@keyframes aurora-4 {
  0% {
    bottom: -50%;
    right: 0;
  }

  50% {
    bottom: 0%;
    right: 40%;
  }

  90% {
    bottom: 50%;
    right: 25%;
  }

  100% {
    bottom: -50%;
    right: 0;
  }
}

@keyframes aurora-border {
  0% {
    border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
  }

  25% {
    border-radius: 47% 29% 39% 49% / 61% 19% 66% 26%;
  }

  50% {
    border-radius: 57% 23% 47% 72% / 63% 17% 66% 33%;
  }

  75% {
    border-radius: 28% 49% 29% 100% / 93% 20% 64% 25%;
  }

  100% {
    border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
  }
} */

.motasp li {
  border-bottom: initial;
}

.motasp ul {
  list-style: disc;
}
.swal2-timer-progress-bar-container {
  display: flex;
  justify-content: end;
}

.cart-delete a {
  min-width: 20px;
  display: block;
}

.owl-producthot .owl-stage {
  display: flex;
}

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

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

@media (hover: none) and (pointer: coarse) {
  .cart-btn {
    transform: none; /* Vô hiệu hóa hiệu ứng phóng to/thu nhỏ nếu có */
    box-shadow: none; /* Vô hiệu hóa hiệu ứng đổ bóng nếu có */
  }
}

.priority {
  touch-action: manipulation;
  position: relative;
  z-index: 9;
}

.options-wrap { touch-action: manipulation; }