@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0px, 50px, 0px);
    -moz-transform: translate3d(0px, 50px, 0px);
    transform: translate3d(0px, 50px, 0px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0px, 0px, 0px);
    -moz-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
  }
}
@keyframes snakeItem {
  50% {
    -webkit-transform: translate(0, -8px);
    -moz-transform: translate(0, -8px);
    -o-transform: translate(0, -8px);
    transform: translate(0, -8px);
  }
}
@-webkit-keyframes animationDuoi {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);
  }
}
.section-index {
  padding: 30px 0;
}
.section-index .section-title {
  text-align: center;
  position: relative;
  margin-bottom: 10px;
}
.section-index .section-title h2 {
  display: inline-block;
  font-weight: 700;
  font-size: 2.6rem;
  margin-bottom: 0px;
  font-family: "Lora", serif;
  color: var(--mainColor);
}
.section-index .section-title h2 a {
  color: var(--mainColor);
}
.section-index .section-title h2 a:hover,
.section-index .section-title h2 a:focus {
  color: var(--subColor);
}
.section-index .section-title h2 span {
  color: var(--subColor);
}
.section-index .section-title .icon-title {
  display: block;
  text-align: center;
}
.section-index .section-title .icon-title img {
  display: inline-block;
  margin: 0 auto;
  max-width: 196px;
}
@media (max-width: 767px) {
  .section-index {
    padding: 25px 0;
  }
  .section-index .section-title h2 {
    font-size: 2rem;
  }
}
.section_slider .swiper-container {
  position: relative;
}
.section_slider .swiper-container .swiper-pagination-bullets {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.section_slider
  .swiper-container
  .swiper-pagination-bullets
  .swiper-pagination-bullet {
  box-shadow: none;
  outline: 0;
  width: 10px;
  height: 10px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  padding: 0;
  font-size: 0;
  opacity: 1;
}
.section_slider
  .swiper-container
  .swiper-pagination-bullets
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  transition: all 0.2s;
  background: var(--mainColor);
}
.section_slider .swiper-container .swiper-button-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  cursor: pointer;
  color: var(--mainColor);
  outline: none;
  border: 0px;
  background: transparent;
  text-align: center;
  z-index: 2;
  right: 8px;
  opacity: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-transform: translate(32px, -50%);
  -ms-transform: translate(32px, -50%);
  transform: translate(32px, -50%);
  margin-top: 0px;
  background-color: #f1f1f1;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.section_slider .swiper-container .swiper-button-next svg {
  width: 100%;
  height: 100%;
}
.section_slider .swiper-container .swiper-button-next svg path {
  stroke: var(--mainColor);
}
.section_slider .swiper-container .swiper-button-next:after {
  display: none;
}
.section_slider .swiper-container .swiper-button-next:hover {
  background-color: var(--mainColor);
}
.section_slider .swiper-container .swiper-button-next:hover svg path {
  stroke: #fff;
}
@media (max-width: 767px) {
  .section_slider .swiper-container .swiper-button-next {
    display: none;
  }
}
.section_slider .swiper-container .swiper-button-prev {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  cursor: pointer;
  color: var(--mainColor);
  outline: none;
  border: 0px;
  background: transparent;
  text-align: center;
  z-index: 2;
  left: 8px;
  opacity: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-transform: translate(-32px, -50%) rotate(180deg);
  -ms-transform: translate(-32px, -50%) rotate(180deg);
  transform: translate(-32px, -50%) rotate(180deg);
  margin-top: 0px;
  background-color: #f1f1f1;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.section_slider .swiper-container .swiper-button-prev svg {
  width: 100%;
  height: 100%;
}
.section_slider .swiper-container .swiper-button-prev svg path {
  stroke: var(--mainColor);
}
.section_slider .swiper-container .swiper-button-prev:after {
  display: none;
}
.section_slider .swiper-container .swiper-button-prev:hover {
  background-color: var(--mainColor);
}
.section_slider .swiper-container .swiper-button-prev:hover svg path {
  stroke: #fff;
}
@media (max-width: 767px) {
  .section_slider .swiper-container .swiper-button-prev {
    display: none;
  }
}
@media (max-width: 767px) {
  .section_slider .swiper-container .swiper-button-next,
  .section_slider .swiper-container .swiper-button-prev {
    width: 25px;
    height: 25px;
    line-height: 25px;
  }
  .section_slider .swiper-container .swiper-button-next:after,
  .section_slider .swiper-container .swiper-button-prev:after {
    font-size: 1.2rem;
  }
}
.section_slider .swiper-container .swiper-button-lock {
  display: none !important;
}
.section_slider .swiper-container .swiper-button-disabled {
  opacity: 0.35;
}
.section_slider .swiper-container:hover .swiper-button-next {
  right: 8px;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.section_slider
  .swiper-container:hover
  .swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
}
.section_slider .swiper-container:hover .swiper-button-prev {
  left: 8px;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.section_slider
  .swiper-container:hover
  .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
}
.section_slider .swiper-container:hover .swiper-button-prev.swiper-button-lock {
  display: none;
}
.section_slider
  .swiper-container
  .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
  bottom: 20px;
  min-height: 20px;
}
.section_slider .swiper-container .swiper-slide {
  background: #fff;
  overflow: hidden;
  aspect-ratio: 1920/700;
}
.section_slider .swiper-container .swiper-slide img {
  width: 100%;
}
@media (max-width: 767px) {
  .section_slider {
    margin-bottom: 20px !important;
  }
}
.section_search {
  position: relative;
  margin-bottom: 25px;
}
@media (min-width: 992px) {
  .section_search .col-lg-3 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}
.section_search .widget_search_box {
  background: var(--mainColor);
  padding: 15px 0px 5px;
}
.section_search .widget_search_box select {
  height: 40px;
  background-color: #fff;
  box-shadow: none;
  outline: none;
  display: block;
  width: 100%;
  padding: 6px 10px;
  font-size: 14px;
  color: #555;
  border-color: #fff;
  margin-bottom: 10px;
  -webkit-transition: border-color ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.section_search .widget_search_box .widget_search_btn {
  color: #000;
  line-height: 40px;
  font-weight: 500;
  height: 40px;
  font-size: 16px;
  text-align: center;
  background-color: var(--subColor);
  z-index: 1;
  overflow: hidden;
  position: relative;
  box-shadow: none;
  outline: none;
  display: block;
  width: 100%;
  margin-bottom: 10px;
  transition: 0s all;
}
.section_search .widget_search_box .widget_search_btn:hover,
.section_search .widget_search_box .widget_search_btn:focus {
  opacity: 0.8;
}
@media (min-width: 768px) and (max-width: 992px) {
  .section_search .widget_search_box .widget_search_btn {
    -ms-flex: 0 0 calc(50% - 30px);
    flex: 0 0 calc(50% - 30px);
    max-width: calc(50% - 30px);
    margin: 0 auto 10px;
  }
}
.section_coupons {
  position: relative;
}
.section_coupons .swiper_coupons .swiper-pagination-bullets {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.section_coupons
  .swiper_coupons
  .swiper-pagination-bullets
  .swiper-pagination-bullet {
  box-shadow: none;
  outline: 0;
  width: 10px;
  height: 10px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  padding: 0;
  font-size: 0;
  opacity: 1;
}
.section_coupons
  .swiper_coupons
  .swiper-pagination-bullets
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  transition: all 0.2s;
  background: var(--mainColor);
}
.section_coupons .swiper_coupons .swiper-button-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  cursor: pointer;
  color: var(--mainColor);
  outline: none;
  border: 0px;
  background: transparent;
  text-align: center;
  z-index: 2;
  right: 8px;
  opacity: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-transform: translate(32px, -50%);
  -ms-transform: translate(32px, -50%);
  transform: translate(32px, -50%);
  margin-top: 0px;
  background-color: #f1f1f1;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.section_coupons .swiper_coupons .swiper-button-next svg {
  width: 100%;
  height: 100%;
}
.section_coupons .swiper_coupons .swiper-button-next svg path {
  stroke: var(--mainColor);
}
.section_coupons .swiper_coupons .swiper-button-next:after {
  display: none;
}
.section_coupons .swiper_coupons .swiper-button-next:hover {
  background-color: var(--mainColor);
}
.section_coupons .swiper_coupons .swiper-button-next:hover svg path {
  stroke: #fff;
}
@media (max-width: 767px) {
  .section_coupons .swiper_coupons .swiper-button-next {
    display: none;
  }
}
.section_coupons .swiper_coupons .swiper-button-prev {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  cursor: pointer;
  color: var(--mainColor);
  outline: none;
  border: 0px;
  background: transparent;
  text-align: center;
  z-index: 2;
  left: 8px;
  opacity: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-transform: translate(-32px, -50%) rotate(180deg);
  -ms-transform: translate(-32px, -50%) rotate(180deg);
  transform: translate(-32px, -50%) rotate(180deg);
  margin-top: 0px;
  background-color: #f1f1f1;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.section_coupons .swiper_coupons .swiper-button-prev svg {
  width: 100%;
  height: 100%;
}
.section_coupons .swiper_coupons .swiper-button-prev svg path {
  stroke: var(--mainColor);
}
.section_coupons .swiper_coupons .swiper-button-prev:after {
  display: none;
}
.section_coupons .swiper_coupons .swiper-button-prev:hover {
  background-color: var(--mainColor);
}
.section_coupons .swiper_coupons .swiper-button-prev:hover svg path {
  stroke: #fff;
}
@media (max-width: 767px) {
  .section_coupons .swiper_coupons .swiper-button-prev {
    display: none;
  }
}
@media (max-width: 767px) {
  .section_coupons .swiper_coupons .swiper-button-next,
  .section_coupons .swiper_coupons .swiper-button-prev {
    width: 25px;
    height: 25px;
    line-height: 25px;
  }
  .section_coupons .swiper_coupons .swiper-button-next:after,
  .section_coupons .swiper_coupons .swiper-button-prev:after {
    font-size: 1.2rem;
  }
}
.section_coupons .swiper_coupons .swiper-button-lock {
  display: none !important;
}
.section_coupons .swiper_coupons .swiper-button-disabled {
  opacity: 0.35;
}
.section_coupons .swiper_coupons:hover .swiper-button-next {
  right: 8px;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.section_coupons
  .swiper_coupons:hover
  .swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
}
.section_coupons .swiper_coupons:hover .swiper-button-prev {
  left: 8px;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.section_coupons
  .swiper_coupons:hover
  .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
}
.section_coupons .swiper_coupons:hover .swiper-button-prev.swiper-button-lock {
  display: none;
}
.section_coupons .swiper_coupons .swiper-slide {
  height: auto;
}
.section_coupons .swiper_coupons .swiper-slide .box-coupon {
  display: flex;
  align-items: center;
  padding: 0px;
  position: relative;
  height: 100%;
  max-width: 100%;
  aspect-ratio: 303/85;
  background-color: #f1f1f1;
}
@media (max-width: 767px) {
  .section_coupons .swiper_coupons .swiper-slide .box-coupon {
    aspect-ratio: 303/95;
  }
}
@media (max-width: 322px) {
  .section_coupons .swiper_coupons .swiper-slide .box-coupon {
    aspect-ratio: 303/105;
  }
}
.section_coupons .swiper_coupons .swiper-slide .box-coupon:before,
.section_coupons .swiper_coupons .swiper-slide .box-coupon:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10px;
  height: 100%;
}
.section_coupons .swiper_coupons .swiper-slide .box-coupon:before {
  left: 0;
  background: repeating-linear-gradient(
        #f1f1f1,
        #f1f1f1 4px,
        #fff 0,
        #fff 12px,
        #f1f1f1 0,
        #f1f1f1 16px
      )
      0px/1px 100% no-repeat,
    radial-gradient(
        circle at 0px 8px,
        #fff,
        #fff 4px,
        #f1f1f1 0,
        #f1f1f1 5px,
        #f1f1f1 0
      )
      1px 0/100% 16px repeat-y;
}
.section_coupons .swiper_coupons .swiper-slide .box-coupon:after {
  right: 0;
  background: repeating-linear-gradient(
        #f1f1f1,
        #f1f1f1 4px,
        #fff 0,
        #fff 12px,
        #f1f1f1 0,
        #f1f1f1 16px
      )
      9px/1px 100% no-repeat,
    radial-gradient(
        circle at 8px 8px,
        #fff,
        #fff 4px,
        #f1f1f1 0,
        #f1f1f1 5px,
        #f1f1f1 0
      )
      1px 0/100% 16px repeat-y;
}
.section_coupons .swiper_coupons .swiper-slide .box-coupon .image {
  display: flex;
  position: relative;
  flex: none;
  flex-grow: 0;
  padding: 7px;
  justify-content: center;
  align-items: center;
}
.section_coupons .swiper_coupons .swiper-slide .box-coupon .image img {
  height: 50px;
  width: 50px;
}
.section_coupons .swiper_coupons .swiper-slide .box-coupon .content_wrap {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding-left: 12px;
  position: relative;
  width: 100%;
  height: 85px;
  justify-content: space-between;
  padding: 7px;
}
.section_coupons
  .swiper_coupons
  .swiper-slide
  .box-coupon
  .content_wrap
  .content-top {
  font-size: 1.6rem;
  font-weight: 700;
}
.section_coupons
  .swiper_coupons
  .swiper-slide
  .box-coupon
  .content_wrap
  .content-top
  span {
  font-size: 1.2rem;
  color: #444;
  font-weight: 500;
}
@media (max-width: 350px) {
  .section_coupons
    .swiper_coupons
    .swiper-slide
    .box-coupon
    .content_wrap
    .content-top {
    font-size: 1.4rem;
  }
  .section_coupons
    .swiper_coupons
    .swiper-slide
    .box-coupon
    .content_wrap
    .content-top
    span {
    font-size: 10px;
  }
}
.section_coupons
  .swiper_coupons
  .swiper-slide
  .box-coupon
  .content_wrap
  .content-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}
.section_coupons
  .swiper_coupons
  .swiper-slide
  .box-coupon
  .content_wrap
  .content-bottom
  span {
  color: var(--mainColor);
  font-size: 1rem;
  font-weight: 500;
  line-height: normal;
  color: #666;
}
.section_coupons
  .swiper_coupons
  .swiper-slide
  .box-coupon
  .content_wrap
  .content-bottom
  .coupon-code {
  position: relative;
  display: inline-block;
  color: #fff;
  background: var(--mainColor);
  padding: 2px 4px;
  margin-left: 0px;
  min-width: 55px;
  text-align: center;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 18px;
  margin-right: 4px;
}
.section_coupons
  .swiper_coupons
  .swiper-slide
  .box-coupon
  .content_wrap
  .content-bottom
  .coupon-code:hover {
  background: var(--hover);
  color: #000;
}
.section_coupons
  .swiper_coupons
  .swiper-slide
  .box-coupon
  .content_wrap
  .info-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  font-size: 1.4rem;
  border: 1px solid var(--mainColor);
  border-radius: 99px;
  position: absolute;
  right: 10px;
  top: 7px;
  cursor: pointer;
}
.section_coupons
  .swiper_coupons
  .swiper-slide
  .box-coupon
  .content_wrap
  .info-button
  svg {
  width: 10px;
  height: 10px;
  fill: var(--mainColor);
}
.section_coupons
  .swiper_coupons
  .swiper-slide
  .box-coupon
  .content_wrap
  .info-button:hover {
  border: 1px solid var(--hover);
}
.section_coupons
  .swiper_coupons
  .swiper-slide
  .box-coupon
  .content_wrap
  .info-button:hover
  svg {
  fill: var(--hover);
}
.section_coupons .swiper_coupons .swiper-button-next,
.section_coupons .swiper_coupons .swiper-button-prev {
  background-color: var(--subColor);
}
@media (max-width: 767px) {
  .section_coupons .swiper_coupons {
    overflow: initial;
    padding: 0px;
    margin: 0px;
  }
  .section_coupons .swiper_coupons .swiper-wrapper {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-right: -14px;
    margin-left: -14px;
    padding-left: 7px;
    padding-right: 7px;
    width: auto;
  }
  .section_coupons .swiper_coupons .swiper-wrapper .swiper-slide {
    padding-left: 7px;
    padding-right: 7px;
    -ms-flex: 0 0 85%;
    flex: 0 0 85%;
    max-width: 85%;
    min-width: 85%;
    height: auto;
  }
  .section_coupons
    .swiper_coupons
    .swiper-wrapper
    .swiper-slide
    .box-coupon
    .content_wrap
    .content-bottom
    .coupon-code {
    min-width: 60px;
    font-size: 1.1rem;
  }
  .section_coupons
    .swiper_coupons
    .swiper-wrapper
    .swiper-slide
    .box-coupon
    .content_wrap
    .content-bottom
    span {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: normal;
  }
}
.popup-coupon {
  padding: 0 8px;
  box-sizing: border-box;
  width: 450px;
  max-height: 505px;
  height: auto;
  background: transparent;
  margin: 0 auto;
  position: relative;
  position: fixed;
  left: 50%;
  top: 15%;
  transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1),
    visibility 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  box-shadow: none;
  touch-action: manipulation;
  opacity: 0;
  transform: translateX(-50%);
  z-index: -1;
  min-height: 200px;
}
@media (max-width: 767px) {
  .popup-coupon {
    width: 100%;
  }
}
.popup-coupon.active {
  opacity: 1;
  z-index: 99999;
}
.popup-coupon .content {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  margin: 0 auto;
  -webkit-box-shadow: 3px 3px 20px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 3px 3px 20px 0 rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}
.popup-coupon .content .title {
  display: block;
  width: 100%;
  padding: 10px;
  background: var(--mainColor);
  color: #fff;
}
.popup-coupon .content .close-popup-coupon {
  position: absolute;
  top: 8px;
  right: 10px;
  cursor: pointer;
}
.popup-coupon .content .close-popup-coupon svg {
  width: 15px;
  height: 15px;
  transition: transform 0.3s;
}
.popup-coupon .content .close-popup-coupon svg path {
  fill: #fff;
}
.popup-coupon .content .close-popup-coupon:hover svg {
  transform: rotate(90deg);
}
.popup-coupon .content ul {
  width: 100%;
}
.popup-coupon .content ul li {
  padding: 10px;
  display: flex;
}
.popup-coupon .content ul li:nth-child(2n + 1) {
  background-color: #f9f9f9;
}
.popup-coupon .content ul li span:first-child {
  min-width: 126px;
  display: inline-block;
  color: var(--mainColor);
}
.popup-coupon .item_thanh_note {
  font-size: 1.2rem;
  display: block !important;
}
.popup-coupon .item_thanh_note b {
  color: red;
}
.section_4_banner .item_null .item_product_main {
  aspect-ratio: 675/232;
}
.section_4_banner .three_banner {
  display: block;
  position: relative;
}
.section_4_banner .three_banner a {
  display: block;
  aspect-ratio: 675/232;
  position: relative;
  overflow: hidden;
}
.section_4_banner .three_banner a:hover img {
  transform: scale(1.03);
}
@media (max-width: 767px) {
  .section_4_banner .row {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .section_4_banner .row .col-xs-12 {
    -ms-flex: 0 0 85%;
    flex: 0 0 85%;
    max-width: 85%;
    min-width: 85%;
  }
  .section_4_banner .row .col-xs-12 .three_banner a {
    transform: translateY(0px);
  }
}
.section_banner .item_null .item_product_main {
  aspect-ratio: 1440/500;
}
.section_banner .three_banner {
  display: block;
  position: relative;
}
.section_banner .three_banner a {
  display: block;
  aspect-ratio: 1440/500;
  position: relative;
  overflow: hidden;
}
.section_banner .three_banner a:hover img {
  transform: scale(1.03);
}
.section_flash_sale {
  width: 100%;
  overflow: hidden;
  background-color: var(--mainColor);
  margin-bottom: 25px;
  background-image: url(/image/catalog/zwine/icon/bg_flash.webp);
}
@media (min-width: 1025px) {
  .section_flash_sale .col-xl-20 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}
.section_flash_sale .section-title {
  text-align: center;
  position: relative;
  margin-bottom: 10px;
}
.section_flash_sale .section-title h2 {
  color: var(--subColor);
}
.section_flash_sale .section-title h2 a {
  color: var(--subColor);
}
.section_flash_sale .section-title h2 a:hover,
.section_flash_sale .section-title h2 a:focus {
  color: #fff;
}
.section_flash_sale .count-down {
  display: block;
  padding: 0;
  background: transparent;
  margin-bottom: 15px;
  position: relative;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
  text-align: center;
}
.section_flash_sale .count-down .timer-view {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.section_flash_sale .count-down .timer-view span {
  font-size: 1.4rem;
  margin: 3px;
  color: #fff;
  font-weight: 500;
}
.section_flash_sale .count-down .timer-view .block-timer {
  width: 50px;
  height: 50px;
  background: var(--subColor);
  display: inline-block;
  padding: 7px 0px;
  text-align: center;
  margin-right: 10px;
}
.section_flash_sale .count-down .timer-view .block-timer:last-child {
  margin-right: 0px;
}
.section_flash_sale .count-down .timer-view .block-timer p {
  display: block;
  font-weight: 600;
  color: #000;
  font-size: 1.6rem;
  margin: 0;
  line-height: 1;
  margin-bottom: 0px;
}
.section_flash_sale .count-down .timer-view .block-timer span {
  display: block;
  color: #000;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: initial;
}
.section_flash_sale .text_flas_slide {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
}
.section_flash_sale .text_flas_slide .js-txtsale > li.txtsale-item {
  color: #fff;
  text-align: center;
}
.section_flash_sale
  .text_flas_slide
  .js-txtsale
  > li.txtsale-item.txtsale-none {
  display: none;
}
.section_flash_sale
  .text_flas_slide
  .js-txtsale
  > li.txtsale-item:not(:first-child) {
  display: none;
}
.section_flash_sale
  .text_flas_slide
  .js-txtsale
  > li.txtsale-item.txtsale-block {
  display: block;
}
.section_flash_sale .text_flas_slide .js-txtsale > li.txtsale-item p {
  margin-bottom: 0px;
}
.section_flash_sale .text_flas_slide .js-txtsale > li.txtsale-item a {
  color: #fff;
  font-size: 1.6rem;
}
.section_flash_sale .text_flas_slide .js-txtsale > li.txtsale-item span {
  color: #fff;
  font-size: 1.6rem;
}
.section_flash_sale .text_flas_slide .js-txtsale > li.txtsale-item a:hover {
  color: var(--hover);
}
.section_flash_sale h2 {
  display: inline-block;
  font-weight: 700;
  font-size: 2.6rem;
  margin-bottom: 0px;
  font-family: "Lora", serif;
  color: var(--mainColor);
}
@media (max-width: 322px) {
  .section_flash_sale h2 {
    font-size: 16px;
  }
}
.section_flash_sale h2 a {
  color: var(--mainColor);
}
.section_flash_sale h2 a:hover {
  color: var(--hover);
}
.section_flash_sale h2 a img {
  max-width: 26px;
  vertical-align: -6px;
  -webkit-animation: zoom-in-out 1500ms infinite;
  -moz-animation: zoom-in-out 1500ms infinite;
  -o-animation: zoom-in-out 1500ms infinite;
  animation: zoom-in-out 1500ms infinite;
}
@media (max-width: 322px) {
  .section_flash_sale h2 a img {
    max-width: 22px;
  }
}
@keyframes zoom-in-out {
  0% {
    transform: scale(0.8, 0.8);
  }
  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate(-8deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1, 1, 1) rotate(8deg);
  }
  40%,
  60%,
  80% {
    transform: scale3d(1, 1, 1) rotate(-8deg);
  }
  100% {
    transform: scale(0.9);
  }
}
.section_flash_sale .item_product_main {
  padding-bottom: 0px;
}
.section_flash_sale .item_null {
  margin-bottom: 0px;
}
.section_flash_sale .block-product-sale .swiper_sale {
  padding-bottom: 5px;
}
.section_flash_sale
  .block-product-sale
  .swiper_sale
  .swiper-pagination-bullets {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.section_flash_sale
  .block-product-sale
  .swiper_sale
  .swiper-pagination-bullets
  .swiper-pagination-bullet {
  box-shadow: none;
  outline: 0;
  width: 10px;
  height: 10px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  padding: 0;
  font-size: 0;
  opacity: 1;
}
.section_flash_sale
  .block-product-sale
  .swiper_sale
  .swiper-pagination-bullets
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  transition: all 0.2s;
  background: var(--mainColor);
}
.section_flash_sale .block-product-sale .swiper_sale .swiper-button-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  cursor: pointer;
  color: var(--mainColor);
  outline: none;
  border: 0px;
  background: transparent;
  text-align: center;
  z-index: 2;
  right: 8px;
  opacity: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-transform: translate(32px, -50%);
  -ms-transform: translate(32px, -50%);
  transform: translate(32px, -50%);
  margin-top: 0px;
  background-color: #f1f1f1;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.section_flash_sale .block-product-sale .swiper_sale .swiper-button-next svg {
  width: 100%;
  height: 100%;
}
.section_flash_sale
  .block-product-sale
  .swiper_sale
  .swiper-button-next
  svg
  path {
  stroke: var(--mainColor);
}
.section_flash_sale .block-product-sale .swiper_sale .swiper-button-next:after {
  display: none;
}
.section_flash_sale .block-product-sale .swiper_sale .swiper-button-next:hover {
  background-color: var(--mainColor);
}
.section_flash_sale
  .block-product-sale
  .swiper_sale
  .swiper-button-next:hover
  svg
  path {
  stroke: #fff;
}
@media (max-width: 767px) {
  .section_flash_sale .block-product-sale .swiper_sale .swiper-button-next {
    display: none;
  }
}
.section_flash_sale .block-product-sale .swiper_sale .swiper-button-prev {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  cursor: pointer;
  color: var(--mainColor);
  outline: none;
  border: 0px;
  background: transparent;
  text-align: center;
  z-index: 2;
  left: 8px;
  opacity: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-transform: translate(-32px, -50%) rotate(180deg);
  -ms-transform: translate(-32px, -50%) rotate(180deg);
  transform: translate(-32px, -50%) rotate(180deg);
  margin-top: 0px;
  background-color: #f1f1f1;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.section_flash_sale .block-product-sale .swiper_sale .swiper-button-prev svg {
  width: 100%;
  height: 100%;
}
.section_flash_sale
  .block-product-sale
  .swiper_sale
  .swiper-button-prev
  svg
  path {
  stroke: var(--mainColor);
}
.section_flash_sale .block-product-sale .swiper_sale .swiper-button-prev:after {
  display: none;
}
.section_flash_sale .block-product-sale .swiper_sale .swiper-button-prev:hover {
  background-color: var(--mainColor);
}
.section_flash_sale
  .block-product-sale
  .swiper_sale
  .swiper-button-prev:hover
  svg
  path {
  stroke: #fff;
}
@media (max-width: 767px) {
  .section_flash_sale .block-product-sale .swiper_sale .swiper-button-prev {
    display: none;
  }
}
@media (max-width: 767px) {
  .section_flash_sale .block-product-sale .swiper_sale .swiper-button-next,
  .section_flash_sale .block-product-sale .swiper_sale .swiper-button-prev {
    width: 25px;
    height: 25px;
    line-height: 25px;
  }
  .section_flash_sale
    .block-product-sale
    .swiper_sale
    .swiper-button-next:after,
  .section_flash_sale
    .block-product-sale
    .swiper_sale
    .swiper-button-prev:after {
    font-size: 1.2rem;
  }
}
.section_flash_sale .block-product-sale .swiper_sale .swiper-button-lock {
  display: none !important;
}
.section_flash_sale .block-product-sale .swiper_sale .swiper-button-disabled {
  opacity: 0.35;
}
.section_flash_sale .block-product-sale .swiper_sale:hover .swiper-button-next {
  right: 8px;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.section_flash_sale
  .block-product-sale
  .swiper_sale:hover
  .swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
}
.section_flash_sale .block-product-sale .swiper_sale:hover .swiper-button-prev {
  left: 8px;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.section_flash_sale
  .block-product-sale
  .swiper_sale:hover
  .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
}
.section_flash_sale
  .block-product-sale
  .swiper_sale:hover
  .swiper-button-prev.swiper-button-lock {
  display: none;
}
.section_flash_sale .block-product-sale .swiper_sale .swiper-slide {
  height: auto !important;
}
@media (min-width: 992px) {
  .section_flash_sale .block-product-sale .swiper_sale .swiper-slide {
    max-width: 25%;
  }
}
@media (max-width: 992px) {
  .section_flash_sale .block-product-sale .swiper_sale .swiper-slide {
    max-width: 33.333333%;
  }
}
.section_flash_sale
  .block-product-sale
  .swiper_sale
  .swiper-slide
  .product-flash-sale
  .box-product-sale {
  flex: 1 1 0%;
}
.section_flash_sale
  .block-product-sale
  .swiper_sale
  .swiper-slide
  .product-flash-sale
  .productcount {
  width: 100%;
  display: inline-block;
  margin-top: 10px;
}
.section_flash_sale
  .block-product-sale
  .swiper_sale
  .swiper-slide
  .product-flash-sale
  .productcount
  .countitem {
  width: 100%;
  height: 17px;
  border-radius: 10px;
  position: relative;
  background: #8d251c;
  z-index: 1;
}
.section_flash_sale
  .block-product-sale
  .swiper_sale
  .swiper-slide
  .product-flash-sale
  .productcount
  .countitem.visible {
  background: #ffdddf;
}
.section_flash_sale
  .block-product-sale
  .swiper_sale
  .swiper-slide
  .product-flash-sale
  .productcount
  .countitem.sold-out
  .countdown {
  background: linear-gradient(90deg, #4a4a4a, #8b8b8b) !important;
}
.section_flash_sale
  .block-product-sale
  .swiper_sale
  .swiper-slide
  .product-flash-sale
  .productcount
  .countitem
  .fire {
  position: absolute;
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  top: -6px;
  left: 0;
}
.section_flash_sale
  .block-product-sale
  .swiper_sale
  .swiper-slide
  .product-flash-sale
  .productcount
  .countitem
  .countdown {
  position: absolute;
  height: 17px;
  border-radius: 10px;
  background: linear-gradient(to right, #c8103d, #f4b631);
  z-index: 0;
  left: 0;
  top: 0;
}
.section_flash_sale
  .block-product-sale
  .swiper_sale
  .swiper-slide
  .product-flash-sale
  .productcount
  .countitem
  .countdown
  span {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 22px;
  z-index: 3;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  left: 100%;
  top: -10px;
}
.section_flash_sale
  .block-product-sale
  .swiper_sale
  .swiper-slide
  .product-flash-sale
  .productcount
  .countitem.sold-out
  .countdown {
  background: #ddd;
}
.section_flash_sale
  .block-product-sale
  .swiper_sale
  .swiper-slide
  .product-flash-sale
  .productcount
  span {
  font-size: 1.2rem;
  position: absolute;
  top: 0;
  z-index: 4;
  color: #fff;
  line-height: 17px;
  left: 50%;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -os-transform: translateX(-50%);
}
@media (max-width: 480px) {
  .section_flash_sale
    .block-product-sale
    .swiper_sale
    .swiper-slide
    .product-flash-sale
    .productcount
    span {
    font-size: 1.2rem;
  }
}
.section_flash_sale
  .block-product-sale
  .swiper_sale
  .swiper-slide
  .product-flash-sale
  .productcount
  span
  b {
  font-weight: 600;
}
.section_flash_sale .block-product-sale .view-more {
  text-align: center;
}
@media (max-width: 767px) {
  .section_flash_sale .block-product-sale {
    overflow: hidden;
  }
  .section_flash_sale .block-product-sale .swiper_sale {
    overflow: initial;
    margin: 0px;
    padding: 0px;
  }
  .section_flash_sale .block-product-sale .swiper_sale .swiper-wrapper {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    width: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .section_flash_sale
    .block-product-sale
    .swiper_sale
    .swiper-wrapper
    .swiper-slide {
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%;
    min-width: 60%;
    margin-right: 14px;
  }
  .section_flash_sale
    .block-product-sale
    .swiper_sale
    .swiper-wrapper
    .swiper-slide:last-child {
    margin-right: 0px;
  }
  .section_flash_sale .block-product-sale .alert.alert-warning {
    margin: 0 20px;
  }
}
.section_product_tab .tab_big {
  height: auto;
}
.section_product_tab .tab_big .tab_ul {
  padding: 0px 34px;
  position: relative;
  max-width: 100%;
  margin: 16px auto 0 auto;
  border-bottom: 1px solid var(--subColor);
}
.section_product_tab .tab_big .tab_ul ul {
  scrollbar-face-color: #367cd2;
  scrollbar-shadow-color: #ffffff;
  scrollbar-highlight-color: #ffffff;
  scrollbar-3dlight-color: #ffffff;
  scrollbar-darkshadow-color: #ffffff;
  scrollbar-track-color: #ffffff;
  scrollbar-arrow-color: #ffffff;
  scrollbar-width: none;
}
.section_product_tab .tab_big .tab_ul ul::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.section_product_tab .tab_big .tab_ul ul::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  -webkit-border-radius: 0;
  border-radius: 0;
  height: 0;
}
.section_product_tab .tab_big .tab_ul ul::-webkit-scrollbar-thumb {
  -webkit-border-radius: 0;
  border-radius: 0;
  background: rgba(255, 0, 0, 0.8);
  -webkit-box-shadow: none;
}
.section_product_tab .tab_big .tab_ul .grad-left {
  position: absolute;
  top: calc(50% - 22px);
  left: 10px;
  z-index: 3;
  width: 24px;
  display: flex;
  justify-content: start;
  align-items: center;
}
.section_product_tab .tab_big .tab_ul .grad-left svg {
  transform: rotate(180deg);
}
.section_product_tab .tab_big .tab_ul .grad-left svg path {
  stroke: var(--mainColor);
}
.section_product_tab .tab_big .tab_ul .grad-left svg rect {
  fill: var(--mainColor);
}
.section_product_tab .tab_big .tab_ul .grad-left:hover a,
.section_product_tab .tab_big .tab_ul .grad-left:focus a {
  background-color: var(--subColor);
}
.section_product_tab .tab_big .tab_ul .grad-right {
  position: absolute;
  top: calc(50% - 22px);
  z-index: 3;
  right: 5px;
  width: 24px;
  display: flex;
  justify-content: end;
  align-items: center;
}
.section_product_tab .tab_big .tab_ul .grad-right svg path {
  stroke: var(--mainColor);
}
.section_product_tab .tab_big .tab_ul .grad-right svg rect {
  fill: var(--mainColor);
}
.section_product_tab .tab_big .tab_ul .grad-right:hover a,
.section_product_tab .tab_big .tab_ul .grad-right:focus a {
  background-color: var(--subColor);
}
.section_product_tab .tab_big .tab_ul .button {
  cursor: pointer;
}
.section_product_tab .tab_big .tab_ul ul {
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  padding: 0;
  margin: 0;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: -10px;
  text-align: center;
  -webkit-mask: linear-gradient(
    90deg,
    transparent 0,
    #000 10px,
    #000 calc(100% - 10px),
    transparent 100%
  );
}
.section_product_tab .tab_big .tab_ul ul li {
  padding: 0px;
  position: relative;
  width: auto;
  line-height: 36px;
  height: auto;
  font-weight: 500;
  min-width: 100px;
  color: #62646d;
  transition: background-color 0.3s ease;
  margin-right: 45px;
  margin-bottom: 10px;
}
.section_product_tab .tab_big .tab_ul ul li .icon_tab {
  height: 70px;
  margin-bottom: 5px;
}
.section_product_tab .tab_big .tab_ul ul li .icon_tab img {
  max-height: 70px;
  max-width: 70px;
}
.section_product_tab .tab_big .tab_ul ul li span {
  position: relative;
  display: block;
  line-height: 1.3;
  font-size: 1.2rem;
}
.section_product_tab .tab_big .tab_ul ul li span.txt-title-tab {
  font-size: 1.6rem;
  font-weight: 600;
}
@media (max-width: 767px) {
  .section_product_tab .tab_big .tab_ul ul li {
    margin-right: 15px;
  }
  .section_product_tab .tab_big .tab_ul ul li .icon_tab {
    height: 50px;
    margin-bottom: 5px;
  }
  .section_product_tab .tab_big .tab_ul ul li .icon_tab img {
    max-height: 50px;
    max-width: 50px;
  }
  .section_product_tab .tab_big .tab_ul ul li span {
    font-size: 1rem;
  }
  .section_product_tab .tab_big .tab_ul ul li span.txt-title-tab {
    font-size: 1.2rem;
  }
}
.section_product_tab .tab_big .tab_ul ul li:last-child {
  margin-right: 0px;
}
.section_product_tab .tab_big .tab_ul ul li:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  width: 100%;
  margin: auto;
  transition-duration: 0.3s;
  border-bottom: 4px solid transparent;
}
.section_product_tab .tab_big .tab_ul ul li:hover {
  color: var(--mainColor);
}
.section_product_tab .tab_big .tab_ul ul li:hover:after {
  border-bottom: 4px solid var(--mainColor);
}
.section_product_tab .tab_big .tab_ul ul li.current {
  color: var(--mainColor);
}
.section_product_tab .tab_big .tab_ul ul li.current:after {
  border-bottom: 4px solid var(--mainColor);
}
.section_product_tab .tab_big .tab_ul .button {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: #f1f1f1;
  border-radius: 50%;
}
.section_product_tab .tab_big .tab_ul .button:hover svg {
  color: var(--supColor);
}
.section_product_tab .tab_big .tab_ul .button:hover svg path {
  fill: var(--supColor);
}
@media (min-width: 1025px) {
  .section_product_tab .col-xl-20 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (min-width: 767px) and (max-width: 1025px) {
  .section_product_tab .col-xl-20:nth-child(9) {
    display: none;
  }
  .section_product_tab .col-xl-20:nth-child(10) {
    display: none;
  }
}
.section_product_tab .tab-content {
  overflow: initial;
}
.section_product_tab .view-more {
  text-align: center;
}
@media (max-width: 767px) {
  .section_product_tab .tab_big {
    margin: 0 -10px;
  }
  .section_product_tab .tab_big .tab_ul {
    padding: 0px 30px;
  }
  .section_product_tab .tab-content.current {
    overflow: initial;
  }
  .section_product_tab .block-products .row {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-top: 5px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .section_product_tab .block-products .row .col-xs-12 {
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%;
    min-width: 60%;
  }
}

.product-tab-module .tab_big {
  height: auto;
}

.product-tab-module .tab_big .tab_ul {
  padding: 0px 0px;
  position: relative;
  max-width: 100%;
  margin: 0px auto 0 auto;
}
.product-tab-module .tab_big .tab_ul ul {
  scrollbar-face-color: #367cd2;
  scrollbar-shadow-color: #ffffff;
  scrollbar-highlight-color: #ffffff;
  scrollbar-3dlight-color: #ffffff;
  scrollbar-darkshadow-color: #ffffff;
  scrollbar-track-color: #ffffff;
  scrollbar-arrow-color: #ffffff;
  scrollbar-width: none;
}

.product-tab-module .tab_big .tab_ul ul::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.product-tab-module .tab_big .tab_ul ul::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  -webkit-border-radius: 0;
  border-radius: 0;
  height: 0;
}

.product-tab-module .tab_big .tab_ul ul::-webkit-scrollbar-thumb {
  -webkit-border-radius: 0;
  border-radius: 0;
  background: rgba(255, 0, 0, 0.8);
  -webkit-box-shadow: none;
}

.product-tab-module .tab_big .tab_ul .grad-left {
  position: absolute;
  top: calc(50% - 22px);
  left: 10px;
  z-index: 3;
  width: 24px;
  display: flex;
  justify-content: start;
  align-items: center;
}

.product-tab-module .tab_big .tab_ul .grad-left svg {
  transform: rotate(180deg);
}

.product-tab-module .tab_big .tab_ul .grad-left svg path {
  stroke: var(--mainColor);
}

.product-tab-module .tab_big .tab_ul .grad-left svg rect {
  fill: var(--mainColor);
}

.product-tab-module .tab_big .tab_ul .grad-left:hover a,
.product-tab-module .tab_big .tab_ul .grad-left:focus a {
  background-color: var(--subColor);
}

.product-tab-module .tab_big .tab_ul .grad-right {
  position: absolute;
  top: calc(50% - 22px);
  z-index: 3;
  right: 5px;
  width: 24px;
  display: flex;
  justify-content: end;
  align-items: center;
}

.product-tab-module .tab_big .tab_ul .grad-right svg path {
  stroke: var(--mainColor);
}

.product-tab-module .tab_big .tab_ul .grad-right svg rect {
  fill: var(--mainColor);
}

.product-tab-module .tab_big .tab_ul .grad-right:hover a,
.product-tab-module .tab_big .tab_ul .grad-right:focus a {
  background-color: var(--subColor);
}

.product-tab-module .tab_big .tab_ul .button {
  cursor: pointer;
}
@media (max-width: 992px) {
  .product-tab-module .tab_big .tab_ul {
    padding: 0px 34px;
  }
}

.product-tab-module .tab_big .tab_ul ul {
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  padding: 0;
  margin: 0;
  padding-bottom: 10px;
  margin-bottom: -10px;
  text-align: center;
}
@media (max-width: 992px) {
  .product-tab-module .tab_big .tab_ul ul {
    -webkit-mask: linear-gradient(
      90deg,
      transparent 0,
      #000 10px,
      #000 calc(100% - 10px),
      transparent 100%
    );
    padding-left: 10px;
    padding-right: 10px;
  }
}

.product-tab-module .tab_big .tab_ul ul li {
  padding: 7px 15px;
  position: relative;
  width: auto;
  line-height: 36px;
  height: auto;
  font-weight: 500;
  color: #737373;
  transition: background-color 0.3s ease;
  margin-right: 15px;
  margin-bottom: 10px;
  border: 1px solid #eae4e8;
}

.product-tab-module .tab_big .tab_ul ul li .icon_tab {
  height: 70px;
  margin-bottom: 5px;
}

.product-tab-module .tab_big .tab_ul ul li .icon_tab img {
  max-height: 70px;
  max-width: 70px;
}

.product-tab-module .tab_big .tab_ul ul li span {
  position: relative;
  display: block;
  line-height: 1.3;
  font-size: 1.4rem;
  font-weight: 500;
}
@media (max-width: 767px) {

  .product-tab-module .tab_big .tab_ul ul li {
    margin-right: 15px;
  }

  .product-tab-module .tab_big .tab_ul ul li .icon_tab {
    height: 50px;
    margin-bottom: 5px;
  }

  .product-tab-module .tab_big .tab_ul ul li .icon_tab img {
    max-height: 50px;
    max-width: 50px;
  }

  .product-tab-module .tab_big .tab_ul ul li span {
    font-size: 1rem;
  }

  .product-tab-module .tab_big .tab_ul ul li span.txt-title-tab {
    font-size: 1.2rem;
  }
}

.product-tab-module .tab_big .tab_ul ul li:last-child {
  margin-right: 0px;
}

.product-tab-module .tab_big .tab_ul ul li:hover {
  background-color: var(--mainColor);
  color: #fff;
}

.product-tab-module .tab_big .tab_ul ul li.current {
  background-color: var(--mainColor);
  color: #fff;
}

.product-tab-module .tab_big .tab_ul .button {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: #f1f1f1;
  border-radius: 50%;
}

.product-tab-module .tab_big .tab_ul .button:hover svg {
  color: var(--supColor);
}

.product-tab-module .tab_big .tab_ul .button:hover svg path {
  fill: var(--supColor);
}

.product-tab-module .tab-content {
  overflow: initial;
}
@media (min-width: 992px) {
  .product-tab-module .tab-content.current {
    min-height: 669px;
  }
}
@media (min-width: 1025px) {
  .product-tab-module .tab-content.current {
    min-height: 775px;
  }
}
.product-tab-module .view-more {
  text-align: center;
}
@media (max-width: 767px) {
  .product-tab-module .tab_big {
    margin: 0 -10px;
  }
  .product-tab-module .tab_big .tab_ul {
    padding: 0px 30px;
  }
  .product-tab-module .tab-content.current {
    overflow: initial;
  }
  .product-tab-module .block-products .row {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-top: 5px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .product-tab-module .block-products .row .col-xs-12 {
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%;
    min-width: 60%;
  }
}
.section_about {
  padding-bottom: 0px;
}
.section_about .bg-banner {
  overflow: hidden;
}
.section_about .col-left .product-content {
  position: relative;
  z-index: 1;
  padding: 110px 0px;
}
@media (max-width: 992px) {
  .section_about .col-left .product-content {
    padding: 0px 0px 0px;
  }
}
.section_about .col-left .section-title {
  text-align: left;
  padding-left: 40px;
}
@media (max-width: 768px) {
  .section_about .col-left .section-title {
    padding-left: 0px;
  }
}
.section_about .col-left .section-title .sub-title {
  display: block;
  width: 100%;
  font-weight: 500;
  font-size: 18px;
}
.section_about .col-left .section-title h2 {
  color: var(--mainColor);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 768px) and (max-width: 992px) {
  .section_about .col-left .section-title h2 {
    font-size: 2.2rem;
  }
}
@media (max-width: 767px) {
  .section_about .col-left .section-title h2 {
    font-size: 2.4rem;
  }
}
.section_about .col-left .desc {
  color: #5b5252;
  text-align: justify;
  padding-left: 40px;
}
@media (max-width: 768px) {
  .section_about .col-left .desc {
    padding-left: 0px;
  }
}
.section_about .col-left .desc p {
  margin-bottom: 5px;
}
.section_about .col-left a.show-more {
  margin-top: 15px;
  margin-left: 40px;
}
@media (max-width: 768px) {
  .section_about .col-left a.show-more {
    margin-left: 0px;
  }
}
@media (max-width: 767px) {
  .section_about .col-left {
    order: 1;
  }
}
.section_about .col-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .section_about .col-right {
    order: 2;
    margin-top: 25px;
  }
}
.section_about .col-right .banner-product {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 562px;
  max-width: 100%;
  aspect-ratio: 562/532;
}
@media (max-width: 992px) {
  .section_about .col-left {
    margin-bottom: 0px;
  }
}
.section_category {
  position: relative;
}
.section_category .swiper_category .swiper-pagination-bullets {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.section_category
  .swiper_category
  .swiper-pagination-bullets
  .swiper-pagination-bullet {
  box-shadow: none;
  outline: 0;
  width: 10px;
  height: 10px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  padding: 0;
  font-size: 0;
  opacity: 1;
}
.section_category
  .swiper_category
  .swiper-pagination-bullets
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  transition: all 0.2s;
  background: var(--mainColor);
}
.section_category .swiper_category .swiper-button-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  cursor: pointer;
  color: var(--mainColor);
  outline: none;
  border: 0px;
  background: transparent;
  text-align: center;
  z-index: 2;
  right: 8px;
  opacity: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-transform: translate(32px, -50%);
  -ms-transform: translate(32px, -50%);
  transform: translate(32px, -50%);
  margin-top: 0px;
  background-color: #f1f1f1;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.section_category .swiper_category .swiper-button-next svg {
  width: 100%;
  height: 100%;
}
.section_category .swiper_category .swiper-button-next svg path {
  stroke: var(--mainColor);
}
.section_category .swiper_category .swiper-button-next:after {
  display: none;
}
.section_category .swiper_category .swiper-button-next:hover {
  background-color: var(--mainColor);
}
.section_category .swiper_category .swiper-button-next:hover svg path {
  stroke: #fff;
}
@media (max-width: 767px) {
  .section_category .swiper_category .swiper-button-next {
    display: none;
  }
}
.section_category .swiper_category .swiper-button-prev {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  cursor: pointer;
  color: var(--mainColor);
  outline: none;
  border: 0px;
  background: transparent;
  text-align: center;
  z-index: 2;
  left: 8px;
  opacity: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-transform: translate(-32px, -50%) rotate(180deg);
  -ms-transform: translate(-32px, -50%) rotate(180deg);
  transform: translate(-32px, -50%) rotate(180deg);
  margin-top: 0px;
  background-color: #f1f1f1;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.section_category .swiper_category .swiper-button-prev svg {
  width: 100%;
  height: 100%;
}
.section_category .swiper_category .swiper-button-prev svg path {
  stroke: var(--mainColor);
}
.section_category .swiper_category .swiper-button-prev:after {
  display: none;
}
.section_category .swiper_category .swiper-button-prev:hover {
  background-color: var(--mainColor);
}
.section_category .swiper_category .swiper-button-prev:hover svg path {
  stroke: #fff;
}
@media (max-width: 767px) {
  .section_category .swiper_category .swiper-button-prev {
    display: none;
  }
}
@media (max-width: 767px) {
  .section_category .swiper_category .swiper-button-next,
  .section_category .swiper_category .swiper-button-prev {
    width: 25px;
    height: 25px;
    line-height: 25px;
  }
  .section_category .swiper_category .swiper-button-next:after,
  .section_category .swiper_category .swiper-button-prev:after {
    font-size: 1.2rem;
  }
}
.section_category .swiper_category .swiper-button-lock {
  display: none !important;
}
.section_category .swiper_category .swiper-button-disabled {
  opacity: 0.35;
}
.section_category .swiper_category:hover .swiper-button-next {
  right: 8px;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.section_category
  .swiper_category:hover
  .swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
}
.section_category .swiper_category:hover .swiper-button-prev {
  left: 8px;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.section_category
  .swiper_category:hover
  .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
}
.section_category
  .swiper_category:hover
  .swiper-button-prev.swiper-button-lock {
  display: none;
}
.section_category
  .swiper_category
  .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
  bottom: 0;
  left: 0;
  width: 100%;
  position: relative;
  margin-top: 15px;
}
.section_category .swiper_category .swiper-slide {
  max-width: 25%;
}
.section_category .swiper_category .box-cate {
  display: block;
  position: relative;
}
.section_category .swiper_category .box-cate a {
  display: block;
  position: relative;
  overflow: hidden;
}
.section_category .swiper_category .box-cate a.box-cate-null {
  background: #f1f1f1;
  aspect-ratio: 480/469;
}
.section_category .swiper_category .box-cate a picture {
  overflow: hidden;
  position: relative;
  display: block;
}
.section_category .swiper_category .box-cate a img {
  transition-duration: 0.5s;
  transform: scale(1);
}
.section_category .swiper_category .box-cate .name_cate_box {
  background-color: var(--subColor);
  padding: 10px !important;
}
.section_category .swiper_category .box-cate .cate-name {
  width: 100%;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--mainColor);
  text-align: center;
  text-transform: uppercase;
  margin: 0px;
}
.section_category .swiper_category .box-cate:hover img {
  transform: scale(1.2);
}
.section_category .swiper_category .box-cate:hover .name_cate_box {
  background-color: var(--mainColor);
}
.section_category .swiper_category .box-cate:hover .name_cate_box .cate-name {
  color: var(--subColor);
}
@media (max-width: 767px) {
  .section_category .swiper_category {
    overflow: initial;
  }
  .section_category .swiper_category .swiper-wrapper {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-right: -14px;
    margin-left: -14px;
    padding-left: 7px;
    padding-right: 7px;
    width: auto;
  }
  .section_category .swiper_category .swiper-wrapper .swiper-slide {
    padding-left: 7px;
    padding-right: 7px;
    -ms-flex: 0 0 160px;
    flex: 0 0 160px;
    max-width: 160px;
    min-width: 160px;
  }
  .section_category .swiper_category .swiper-wrapper .swiper-slide .cate-name {
    font-size: 1.4rem;
  }
}
.section_category .swiper-pagination-lock {
  display: none !important;
}
.section_blog .item_null .item_blog_index {
  aspect-ratio: 300/350;
  background: #f1f1f1;
  border-radius: 10px;
  height: auto;
  padding: 0px;
  margin-bottom: 28px;
}
.section_blog .swiper_blogs {
  padding: 2px;
}
.section_blog .swiper_blogs .swiper-pagination-bullets {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.section_blog
  .swiper_blogs
  .swiper-pagination-bullets
  .swiper-pagination-bullet {
  box-shadow: none;
  outline: 0;
  width: 10px;
  height: 10px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  padding: 0;
  font-size: 0;
  opacity: 1;
}
.section_blog
  .swiper_blogs
  .swiper-pagination-bullets
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  transition: all 0.2s;
  background: var(--mainColor);
}
.section_blog .swiper_blogs .swiper-button-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  cursor: pointer;
  color: var(--mainColor);
  outline: none;
  border: 0px;
  background: transparent;
  text-align: center;
  z-index: 2;
  right: 8px;
  opacity: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-transform: translate(32px, -50%);
  -ms-transform: translate(32px, -50%);
  transform: translate(32px, -50%);
  margin-top: 0px;
  background-color: #f1f1f1;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.section_blog .swiper_blogs .swiper-button-next svg {
  width: 100%;
  height: 100%;
}
.section_blog .swiper_blogs .swiper-button-next svg path {
  stroke: var(--mainColor);
}
.section_blog .swiper_blogs .swiper-button-next:after {
  display: none;
}
.section_blog .swiper_blogs .swiper-button-next:hover {
  background-color: var(--mainColor);
}
.section_blog .swiper_blogs .swiper-button-next:hover svg path {
  stroke: #fff;
}
@media (max-width: 767px) {
  .section_blog .swiper_blogs .swiper-button-next {
    display: none;
  }
}
.section_blog .swiper_blogs .swiper-button-prev {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  cursor: pointer;
  color: var(--mainColor);
  outline: none;
  border: 0px;
  background: transparent;
  text-align: center;
  z-index: 2;
  left: 8px;
  opacity: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-transform: translate(-32px, -50%) rotate(180deg);
  -ms-transform: translate(-32px, -50%) rotate(180deg);
  transform: translate(-32px, -50%) rotate(180deg);
  margin-top: 0px;
  background-color: #f1f1f1;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.section_blog .swiper_blogs .swiper-button-prev svg {
  width: 100%;
  height: 100%;
}
.section_blog .swiper_blogs .swiper-button-prev svg path {
  stroke: var(--mainColor);
}
.section_blog .swiper_blogs .swiper-button-prev:after {
  display: none;
}
.section_blog .swiper_blogs .swiper-button-prev:hover {
  background-color: var(--mainColor);
}
.section_blog .swiper_blogs .swiper-button-prev:hover svg path {
  stroke: #fff;
}
@media (max-width: 767px) {
  .section_blog .swiper_blogs .swiper-button-prev {
    display: none;
  }
}
@media (max-width: 767px) {
  .section_blog .swiper_blogs .swiper-button-next,
  .section_blog .swiper_blogs .swiper-button-prev {
    width: 25px;
    height: 25px;
    line-height: 25px;
  }
  .section_blog .swiper_blogs .swiper-button-next:after,
  .section_blog .swiper_blogs .swiper-button-prev:after {
    font-size: 1.2rem;
  }
}
.section_blog .swiper_blogs .swiper-button-lock {
  display: none !important;
}
.section_blog .swiper_blogs .swiper-button-disabled {
  opacity: 0.35;
}
.section_blog .swiper_blogs:hover .swiper-button-next {
  right: 8px;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.section_blog .swiper_blogs:hover .swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
}
.section_blog .swiper_blogs:hover .swiper-button-prev {
  left: 8px;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.section_blog .swiper_blogs:hover .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
}
.section_blog .swiper_blogs:hover .swiper-button-prev.swiper-button-lock {
  display: none;
}
@media (max-width: 767px) {
  .section_blog .swiper_blogs {
    overflow: initial;
  }
  .section_blog .swiper_blogs .swiper-wrapper {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-right: -7.5px;
    margin-left: -7.5px;
    width: auto;
  }
  .section_blog .swiper_blogs .swiper-wrapper .swiper-slide {
    padding-left: 7.5px;
    padding-right: 7.5px;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%;
    min-width: 80%;
    margin-bottom: 14px;
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .section_blog .swiper_blogs .swiper-button-prev,
  .section_blog .swiper_blogs .swiper-button-next {
    display: none;
  }
}
.section_blog .item_blog_index {
  display: block;
  position: relative;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.08);
}
.section_blog .item_blog_index .image-blog {
  padding-bottom: 63.5%;
  overflow: hidden;
  height: auto;
  display: block;
  position: relative;
}
.section_blog .item_blog_index .image-blog img {
  width: auto !important;
  max-height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.3s ease-in-out all;
  will-change: opacify;
}
.section_blog .item_blog_index .blog_content {
  position: relative;
  width: 100%;
  padding: 15px;
}
@media (max-width: 767px) {
  .section_blog .item_blog_index .blog_content {
    padding: 10px;
  }
}
@media (max-width: 322px) {
  .section_blog .item_blog_index .blog_content {
    padding: 5px;
  }
}
.section_blog .item_blog_index .blog_content h3 {
  margin-bottom: 7px;
  line-height: 22px;
}
.section_blog .item_blog_index .blog_content h3 a {
  color: var(--textColor);
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 44px;
}
.section_blog .item_blog_index .blog_content h3 a:hover {
  color: var(--subColor);
}
.section_blog .item_blog_index .blog_content .blog_description {
  color: var(--textColor);
  line-height: 20px;
  margin-bottom: 0px;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 40px;
  margin-bottom: 10px;
}
.section_blog .item_blog_index .update_date {
  display: flex;
  font-size: 12px;
  color: #737373;
  justify-content: space-between;
  margin-bottom: 0px;
  border-top: 1px solid #eee;
  margin-top: 10px;
  padding-top: 10px;
}
.section_blog .item_blog_index .update_date .user_name b {
  color: var(--mainColor);
  font-weight: 500;
}
.section_blog .item_blog_index .update_date .user_date {
  font-style: italic;
}
.section_blog .item_blog_index:hover .image-blog img {
  transform: scale(1.1);
}
.section_blog .view-more {
  display: block;
  text-align: center;
  margin-top: 15px;
}
@media (min-width: 1025px) {
  .section_ban_chay .col-xl-20 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}
.section_ban_chay .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.section_ban_chay .title h2 {
  margin-bottom: 0px;
}
.section_ban_chay .title a {
  display: inline-block;
  font-weight: 700;
  font-size: 2.6rem;
  margin-bottom: 0px;
  font-family: "Lora", serif;
  color: var(--mainColor);
}
.section_ban_chay .title a:hover {
  color: var(--hover);
}
@media (max-width: 767px) {
  .section_ban_chay .title a {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .section_ban_chay .title {
    flex-direction: column;
    margin-bottom: 15px;
  }
}
.section_ban_chay .title .thump-flash {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .section_ban_chay .title .thump-flash {
    display: none;
  }
}
.section_ban_chay .title .thump-flash .button-control .section-1-prev {
  display: inline-block;
  width: 36px;
  height: 36px;
  text-align: center;
  padding: 5px;
  background-color: #f1f1f1;
  -webkit-transition: all 0.4s;
  cursor: pointer;
  -webkit-transform: translateY(0%) rotate(180deg);
  transform: translateY(0%) rotate(180deg);
}
.section_ban_chay .title .thump-flash .button-control .section-1-prev svg path {
  stroke: var(--mainColor);
}
.section_ban_chay .title .thump-flash .button-control .section-1-prev:hover {
  background-color: var(--mainColor);
}
.section_ban_chay
  .title
  .thump-flash
  .button-control
  .section-1-prev:hover
  svg
  path {
  stroke: #fff;
}
.section_ban_chay .title .thump-flash .button-control .section-1-next {
  display: inline-block;
  width: 36px;
  height: 36px;
  text-align: center;
  padding: 5px;
  background-color: #f1f1f1;
  -webkit-transition: all 0.4s;
  cursor: pointer;
}
.section_ban_chay .title .thump-flash .button-control .section-1-next svg path {
  stroke: var(--mainColor);
}
.section_ban_chay .title .thump-flash .button-control .section-1-next:hover {
  background-color: var(--mainColor);
}
.section_ban_chay
  .title
  .thump-flash
  .button-control
  .section-1-next:hover
  svg
  path {
  stroke: #fff;
}
.section_ban_chay .block-ban-chay .swiper_banchay {
  padding-left: 8px;
  margin-left: -8px;
  padding-bottom: 5px;
}
.section_ban_chay .block-ban-chay .swiper_banchay .swiper-slide {
  height: auto !important;
}
@media (min-width: 992px) {
  .section_ban_chay .block-ban-chay .swiper_banchay .swiper-slide {
    max-width: 25%;
  }
}
@media (max-width: 992px) {
  .section_ban_chay .block-ban-chay .swiper_banchay .swiper-slide {
    max-width: 33.333333%;
  }
}
.section_ban_chay .block-ban-chay .view-more {
  text-align: center;
}
@media (max-width: 767px) {
  .section_ban_chay .block-ban-chay {
    overflow: hidden;
  }
  .section_ban_chay .block-ban-chay .swiper_banchay {
    overflow: initial;
    margin: 0px;
    padding: 0px;
  }
  .section_ban_chay .block-ban-chay .swiper_banchay .swiper-wrapper {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    width: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .section_ban_chay
    .block-ban-chay
    .swiper_banchay
    .swiper-wrapper
    .swiper-slide {
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%;
    min-width: 60%;
    margin-right: 14px;
  }
  .section_ban_chay
    .block-ban-chay
    .swiper_banchay
    .swiper-wrapper
    .swiper-slide:last-child {
    margin-right: 0px;
  }
  .section_ban_chay .block-ban-chay .alert.alert-warning {
    margin: 0 20px;
  }
}
.section_choose {
  position: relative;
}
.section_choose .box_choose {
  padding: 15px;
  margin: 0;
  position: relative;
  background-color: #f1f1f1;
}
@media (max-width: 767px) {
  .section_choose .box_title_choose {
    text-align: center;
  }
}
.section_choose .box_title_choose .title_one {
  font-size: 1.6rem;
  color: var(--mainColor);
  margin-bottom: 5px;
}
@media (min-width: 992px) and (max-width: 1025px) {
  .section_choose .box_title_choose .title_one {
    font-size: 1.2rem;
  }
}
.section_choose .box_title_choose .title_module {
  display: inline-block;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0px;
  font-family: "Lora", serif;
  color: var(--mainColor);
}
@media (min-width: 992px) and (max-width: 1025px) {
  .section_choose .box_title_choose .title_module {
    font-size: 1.6rem;
  }
}
.section_choose .box_title_choose .content_module {
  font-size: 1.4rem;
  color: var(--textColor);
  margin-top: 5px;
  margin-bottom: 15px;
}
@media (min-width: 992px) and (max-width: 1025px) {
  .section_choose .box_title_choose .content_module {
    font-size: 1rem;
  }
}
.section_choose .swi_choose .swiper-pagination-bullets {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.section_choose
  .swi_choose
  .swiper-pagination-bullets
  .swiper-pagination-bullet {
  box-shadow: none;
  outline: 0;
  width: 10px;
  height: 10px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  padding: 0;
  font-size: 0;
  opacity: 1;
}
.section_choose
  .swi_choose
  .swiper-pagination-bullets
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  transition: all 0.2s;
  background: var(--mainColor);
}
.section_choose .swi_choose .swiper-button-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  cursor: pointer;
  color: var(--mainColor);
  outline: none;
  border: 0px;
  background: transparent;
  text-align: center;
  z-index: 2;
  right: 8px;
  opacity: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-transform: translate(32px, -50%);
  -ms-transform: translate(32px, -50%);
  transform: translate(32px, -50%);
  margin-top: 0px;
  background-color: #f1f1f1;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.section_choose .swi_choose .swiper-button-next svg {
  width: 100%;
  height: 100%;
}
.section_choose .swi_choose .swiper-button-next svg path {
  stroke: var(--mainColor);
}
.section_choose .swi_choose .swiper-button-next:after {
  display: none;
}
.section_choose .swi_choose .swiper-button-next:hover {
  background-color: var(--mainColor);
}
.section_choose .swi_choose .swiper-button-next:hover svg path {
  stroke: #fff;
}
@media (max-width: 767px) {
  .section_choose .swi_choose .swiper-button-next {
    display: none;
  }
}
.section_choose .swi_choose .swiper-button-prev {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  cursor: pointer;
  color: var(--mainColor);
  outline: none;
  border: 0px;
  background: transparent;
  text-align: center;
  z-index: 2;
  left: 8px;
  opacity: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-transform: translate(-32px, -50%) rotate(180deg);
  -ms-transform: translate(-32px, -50%) rotate(180deg);
  transform: translate(-32px, -50%) rotate(180deg);
  margin-top: 0px;
  background-color: #f1f1f1;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.section_choose .swi_choose .swiper-button-prev svg {
  width: 100%;
  height: 100%;
}
.section_choose .swi_choose .swiper-button-prev svg path {
  stroke: var(--mainColor);
}
.section_choose .swi_choose .swiper-button-prev:after {
  display: none;
}
.section_choose .swi_choose .swiper-button-prev:hover {
  background-color: var(--mainColor);
}
.section_choose .swi_choose .swiper-button-prev:hover svg path {
  stroke: #fff;
}
@media (max-width: 767px) {
  .section_choose .swi_choose .swiper-button-prev {
    display: none;
  }
}
@media (max-width: 767px) {
  .section_choose .swi_choose .swiper-button-next,
  .section_choose .swi_choose .swiper-button-prev {
    width: 25px;
    height: 25px;
    line-height: 25px;
  }
  .section_choose .swi_choose .swiper-button-next:after,
  .section_choose .swi_choose .swiper-button-prev:after {
    font-size: 1.2rem;
  }
}
.section_choose .swi_choose .swiper-button-lock {
  display: none !important;
}
.section_choose .swi_choose .swiper-button-disabled {
  opacity: 0.35;
}
.section_choose .swi_choose:hover .swiper-button-next {
  right: 8px;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.section_choose .swi_choose:hover .swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
}
.section_choose .swi_choose:hover .swiper-button-prev {
  left: 8px;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.section_choose .swi_choose:hover .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
}
.section_choose .swi_choose:hover .swiper-button-prev.swiper-button-lock {
  display: none;
}
.section_choose .swi_choose .swiper-slide {
  height: auto !important;
}
@media (min-width: 992px) {
  .section_choose .swi_choose .swiper-slide {
    max-width: 25%;
  }
}
@media (max-width: 992px) {
  .section_choose .swi_choose .swiper-slide {
    max-width: 33.333333%;
  }
}
@media (max-width: 767px) {
  .section_choose .swi_choose {
    overflow: initial;
  }
  .section_choose .swi_choose .swiper-wrapper {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-right: -14px;
    margin-left: -14px;
    padding-left: 7px;
    padding-right: 7px;
    width: auto;
  }
  .section_choose .swi_choose .swiper-wrapper .swiper-slide {
    padding-left: 7px;
    padding-right: 7px;
    -ms-flex: 0 0 230px;
    flex: 0 0 230px;
    max-width: 230px;
    min-width: 230px;
  }
}
.section_choose .item_choose {
  display: block;
  position: relative;
  overflow: hidden;
}
.section_choose .item_choose.box-choose-null {
  background: #f1f1f1;
  aspect-ratio: 240/194;
}
.section_choose .item_choose .opaci-choose {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 1;
}
.section_choose .item_choose .img_choose {
  display: block;
  aspect-ratio: 240 / 144;
  position: relative;
  overflow: hidden;
}
.section_choose .item_choose .img_choose img {
  transition-duration: 0.5s;
  transform: scale(1);
}
.section_choose .item_choose .name_choose {
  display: block;
  text-align: center;
  background-color: #fff;
  padding: 0px 10px;
  font-weight: 400;
  font-size: 1.4rem;
  height: 40px;
  line-height: 40px;
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.section_choose .item_choose:hover,
.section_choose .item_choose:focus {
  color: var(--mainColor);
}
.section_choose .item_choose:hover .img_choose img,
.section_choose .item_choose:focus .img_choose img {
  transform: scale(1.2);
}
.section_brands .swiper-pagination-bullets {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.section_brands .swiper-pagination-bullets .swiper-pagination-bullet {
  box-shadow: none;
  outline: 0;
  width: 10px;
  height: 10px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  padding: 0;
  font-size: 0;
  opacity: 1;
}
.section_brands
  .swiper-pagination-bullets
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  transition: all 0.2s;
  background: var(--mainColor);
}
.section_brands .swiper-button-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  cursor: pointer;
  color: var(--mainColor);
  outline: none;
  border: 0px;
  background: transparent;
  text-align: center;
  z-index: 2;
  right: 8px;
  opacity: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-transform: translate(32px, -50%);
  -ms-transform: translate(32px, -50%);
  transform: translate(32px, -50%);
  margin-top: 0px;
  background-color: #f1f1f1;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.section_brands .swiper-button-next svg {
  width: 100%;
  height: 100%;
}
.section_brands .swiper-button-next svg path {
  stroke: var(--mainColor);
}
.section_brands .swiper-button-next:after {
  display: none;
}
.section_brands .swiper-button-next:hover {
  background-color: var(--mainColor);
}
.section_brands .swiper-button-next:hover svg path {
  stroke: #fff;
}
@media (max-width: 767px) {
  .section_brands .swiper-button-next {
    display: none;
  }
}
.section_brands .swiper-button-prev {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  cursor: pointer;
  color: var(--mainColor);
  outline: none;
  border: 0px;
  background: transparent;
  text-align: center;
  z-index: 2;
  left: 8px;
  opacity: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-transform: translate(-32px, -50%) rotate(180deg);
  -ms-transform: translate(-32px, -50%) rotate(180deg);
  transform: translate(-32px, -50%) rotate(180deg);
  margin-top: 0px;
  background-color: #f1f1f1;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.section_brands .swiper-button-prev svg {
  width: 100%;
  height: 100%;
}
.section_brands .swiper-button-prev svg path {
  stroke: var(--mainColor);
}
.section_brands .swiper-button-prev:after {
  display: none;
}
.section_brands .swiper-button-prev:hover {
  background-color: var(--mainColor);
}
.section_brands .swiper-button-prev:hover svg path {
  stroke: #fff;
}
@media (max-width: 767px) {
  .section_brands .swiper-button-prev {
    display: none;
  }
}
@media (max-width: 767px) {
  .section_brands .swiper-button-next,
  .section_brands .swiper-button-prev {
    width: 25px;
    height: 25px;
    line-height: 25px;
  }
  .section_brands .swiper-button-next:after,
  .section_brands .swiper-button-prev:after {
    font-size: 1.2rem;
  }
}
.section_brands .swiper-button-lock {
  display: none !important;
}
.section_brands .swiper-button-disabled {
  opacity: 0.35;
}
.section_brands:hover .swiper-button-next {
  right: 8px;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.section_brands:hover .swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
}
.section_brands:hover .swiper-button-prev {
  left: 8px;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.section_brands:hover .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
}
.section_brands:hover .swiper-button-prev.swiper-button-lock {
  display: none;
}
.section_brands .swiper_brands {
  padding: 2px;
}
.section_brands .swiper_brands .brand-item {
  width: 100%;
  aspect-ratio: 161/119;
  position: relative;
  display: block;
  overflow: hidden;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
}
.section_brands .swiper_brands .brand-item.box-cate-null {
  background: #f1f1f1;
  aspect-ratio: 161/119;
}
@media (max-width: 767px) {
  .section_brands .swiper_brands {
    overflow: initial;
  }
  .section_brands .swiper_brands .swiper-wrapper {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-right: -14px;
    margin-left: -14px;
    padding-left: 7px;
    padding-right: 7px;
    width: auto;
  }
  .section_brands .swiper_brands .swiper-wrapper .swiper-slide {
    padding-left: 7px;
    padding-right: 7px;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%;
    min-width: 40%;
    padding-top: 2px;
    padding-bottom: 2px;
  }
}
.item_null .item_product_main {
  aspect-ratio: 236/315;
  background: #f1f1f1;
  border-radius: 0px;
  height: auto;
  padding: 0px;
  margin-bottom: 28px;
}
@media (max-width: 992px) {
  .sidebar-cont-pro {
    order: 1;
  }
}
@media (min-width: 992px) {
  .sidebar-img-pro {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 992px) {
  .sidebar-img-pro {
    order: 2;
    margin-top: 15px;
  }
}
.sidebar-img-pro .home-products-sidebar {
  position: relative;
  overflow: hidden;
}
@media (min-width: 992px) {
  .sidebar-img-pro .home-products-sidebar {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
}
.sidebar-img-pro .home-products-sidebar .contents-sidebar {
  padding: 32px 16px 16px;
  min-height: 300px;
  z-index: 3;
  text-align: center;
  flex-direction: column;
  position: relative;
  display: flex;
}
@media (min-width: 992px) {
  .sidebar-img-pro .home-products-sidebar .contents-sidebar {
    flex-grow: 1;
  }
}
@media (max-width: 992px) {
  .sidebar-img-pro .home-products-sidebar .contents-sidebar {
    padding: 25px;
  }
}
@media (max-width: 767px) {
  .sidebar-img-pro .home-products-sidebar .contents-sidebar {
    padding: 15px;
    min-height: 200px;
  }
}
.sidebar-img-pro .home-products-sidebar .contents-sidebar .home-products-title {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 600;
  padding: 0px 4rem;
}
@media (max-width: 1199px) {
  .sidebar-img-pro
    .home-products-sidebar
    .contents-sidebar
    .home-products-title {
    font-size: 2.2rem;
    padding: 0px 2rem;
  }
}
@media (max-width: 767px) {
  .sidebar-img-pro
    .home-products-sidebar
    .contents-sidebar
    .home-products-title {
    padding: 0px 5rem;
  }
}
@media (max-width: 321px) {
  .sidebar-img-pro
    .home-products-sidebar
    .contents-sidebar
    .home-products-title {
    padding: 0px 1rem;
  }
}
.sidebar-img-pro
  .home-products-sidebar
  .contents-sidebar
  .home-products-footer {
  margin-top: auto;
}
.sidebar-img-pro
  .home-products-sidebar
  .contents-sidebar
  .home-products-footer
  .home-products-button {
  background-color: var(--mainColor);
  display: block;
  text-align: center;
  color: #000;
  padding: 10px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.4),
    #fff,
    rgba(255, 255, 255, 0.4)
  );
}
.sidebar-img-pro
  .home-products-sidebar
  .contents-sidebar
  .home-products-footer
  .home-products-button:hover {
  background-color: var(--subColor);
}
.sidebar-img-pro
  .home-products-sidebar
  .contents-sidebar
  .home-products-footer
  .home-products-button
  .icon {
  vertical-align: 1px;
}
.sidebar-img-pro .home-products-sidebar .home-products-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.sidebar-img-pro .home-products-sidebar .home-products-image:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: radial-gradient(
    at center center,
    rgba(39, 39, 39, 0) 30%,
    var(--mainColor) 100%
  );
  z-index: 2;
}
.sidebar-img-pro .home-products-sidebar .home-products-image .sidebar-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sidebar-img-pro
  .home-products-sidebar
  .home-products-image
  .sidebar-image
  img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 100%;
}
@media (max-width: 1199px) {
  .sidebar-img-pro
    .home-products-sidebar
    .home-products-image
    .sidebar-image
    img {
    width: 100%;
  }
}
.section_product_other .item_null {
  margin-right: 0px !important;
}
.section_product_other .item_null .item_product_four {
  aspect-ratio: 406/152;
  background: #f7f7f7;
  height: auto;
  padding: 0px;
  border-radius: 3px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .section_product_other .item_null .item_product_four {
    margin-bottom: 14px;
  }
}
@media (max-width: 992px) {
  .section_product_other .row {
    display: grid;
    grid-template-rows: 1fr;
    overflow: auto;
    justify-content: start;
    grid-template-columns: repeat(3, 350px);
  }
  .section_product_other .row .col-md-4 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.section_product_other .item_product_four {
  display: flex;
  border-radius: 3px;
  position: relative;
  background-color: #fff;
  border: 1px solid #f0f1f2;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 5px;
}
@media (max-width: 767px) {
  .section_product_other .item_product_four {
    margin-bottom: 14px;
  }
}
.section_product_other .item_product_four .product-thumbnail {
  position: relative;
  background: #fff;
  width: 150px;
}
@media (max-width: 1025px) {
  .section_product_other .item_product_four .product-thumbnail {
    width: 120px;
  }
}
.section_product_other .item_product_four .product-thumbnail .image_thumb {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  -o-justify-content: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  -os-justify-content: center;
  -o-display: flex;
  -moz-display: flex;
  -webkit-display: flex;
  -os-display: flex;
  align-items: center;
  height: auto !important;
  padding-bottom: 100%;
}
.section_product_other
  .item_product_four
  .product-thumbnail
  .image_thumb:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  right: 0px;
  background-color: rgba(240, 241, 242, 0.5);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}
.section_product_other .item_product_four .product-thumbnail .image_thumb img {
  width: auto !important;
  max-height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  will-change: opacify;
  transform: scale(1);
  transition: all 0.5s ease;
  transition: opacity 0.5s ease,
    -webkit-transform 2s cubic-bezier(0, 0, 0.44, 1.18);
  transition: opacity 0.5s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18);
  transition: opacity 0.5s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18),
    -webkit-transform 2s cubic-bezier(0, 0, 0.44, 1.18);
}
.section_product_other .item_product_four .product-info {
  width: calc(100% - 165px);
  padding-left: 15px;
}
@media (max-width: 1025px) {
  .section_product_other .item_product_four .product-info {
    width: calc(100% - 135px);
    padding-left: 10px;
  }
}
.section_product_other .item_product_four .product-info .price-box {
  margin-bottom: 5px;
  position: relative;
  color: var(--price);
  font-weight: 700;
  font-size: 16px;
  text-align: left;
}
@media (max-width: 1025px) {
  .section_product_other .item_product_four .product-info .price-box {
    font-size: 14px;
  }
}
.section_product_other
  .item_product_four
  .product-info
  .price-box
  .compare-price {
  color: #666;
  text-decoration: line-through;
  display: inline-block;
  margin-left: 10px;
  font-weight: 400;
  font-size: 14px;
}
@media (max-width: 1025px) {
  .section_product_other
    .item_product_four
    .product-info
    .price-box
    .compare-price {
    font-size: 12px;
  }
}
.section_product_other .item_product_four .product-info .product-name {
  font-size: 16px;
  text-align: left;
}
.section_product_other .item_product_four .product-info .content_pro {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 5px;
}
.section_product_other .item_product_four .smart {
  position: absolute;
  top: 5px;
  left: 5px;
  text-align: center;
  font-size: 14px;
  color: white;
  z-index: 5;
  line-height: 22px;
  padding: 0 5px;
  background-color: #A00D0D;
}
.section_product_other .item_product_four .smart span {
  position: relative;
  font-size: 14px;
  font-weight: 500;
}
.section_product_other .view-more {
  display: block;
  text-align: center;
  margin-top: 15px;
}
