/********** Template CSS **********/
:root {
  --primary: #68d52a;
  --secondary: #525368;
  --third: #051B31;
  --light: #FCF6CA;
  --light-1: #d0dfe7;
  --light-2: #C1C1C1;
  --dark: #2D2D2D;
  --dark-1: #6E6E6E;
  --white: #ffffff;
  --gray: #BCBCBC;
  --gray-1: #fbfbfa;
  --gray-2: #EBEBEB;
  --black: #231F20;
  --yellow: #FFB629;
  --red: #D45136;
  --orange: #EAA73A;
  --pink: #EAA999;
  --blue: #21BDDB;
  --bg-light: #D7DFB0;
}

/********** Custom CSS ************/

body {
    /* font-family: 'Montserrat', sans-serif; */
    font-family: SVNMont, sans-serif;
}
@media(max-width: 767px)
{
  body {
    padding-bottom: 85px;
  }
}

.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
    /* font-family: 'Montserrat', sans-serif; */
    font-family: SVNMont, sans-serif;
    font-weight: 600;
}
.mr-20{
  margin-right: 20px;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-gray {
    background: #E9EAE8;
}

.btn.btn-main {
  border-radius: 26px;
  padding: 10px 20px;
  background: var(--primary);
  color: var(--white);
}
.btn.btn-main:hover {
  background: #53583a;
}

#name-user{
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

 .main>div>p {
  display: none;
 }

p:last-of-type {
 
    margin-bottom: 0;
}

a {
    text-decoration: none;
    
    color: #000;
}

ul, ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

img {
    max-width: 100%;
/*    height: auto;*/
}

@media (min-width: 1200px) and (max-width: 1440px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        /* max-width: 1020px; */
        width: 1230px;
    }
}
@media (min-width: 1300px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
      max-width: 1280px;
  }
}

.block {
  display: block;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    background: var(--primary);
    color: var(--white);
}

.back-to-top:hover {
    background: var(--primary);
    color: var(--white);
}

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

.pb-30 {
  padding-bottom: 30px;
}

.p-30 {
  padding: 30px;
}

.checked {
  color: var(--yellow);
}

.dropdown-toggle::after {
  display: none;
}

/*.navbar-nav .dropdown-menu {
  float: none;
}

.dropright .dropdown-menu {
  width: max-content;
  top: 0;
  right: auto;
  left: 100%;
}*/

.nav-archive:hover {
  background: var(--gray-2);
}

.nav-mega-menu {
  left: 100%;
  background: var(--white);
  top: 0;
  width: 295%;
  z-index: 9;
  padding: 0;
  margin: 0;
  list-style-type: none;
  visibility: hidden;
  display: flex;
  opacity: 0;
  transition: all .3s;
  padding: 16px 20px;
  height: 100%;
  min-height: 380px;
}

.nav-archive:hover .nav-mega-menu {
  visibility: visible;
  opacity: 1;
}

.nav-mega-menu li.nav-item-sub-li:not(:last-child) {
  margin-bottom: 10px;
}

.nav-mega-menu > ul {
  width: 70%;
}

.nav-mega-menu a.link-bold {
  display: block;
  color: var(--black);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

.nav-mega-menu ul.nav-mega-sub-list {
  display: flex;
  flex-wrap: wrap;
}

.nav-mega-menu ul.nav-mega-sub-list .nav-item-sub-li {
  max-width: 50%;
  flex: 0 0 50%;
}

/*.nav-mega-menu ul > li {
  width: 50%;
  display: inline-block;
  float: inline-end;
}*/

.nav-mega-menu ul li ul li:not(:last-child) {
  margin-bottom: 6px;
}

.nav-mega-menu ul li ul li a {
  font-size: 14px;
  text-transform: capitalize;
}

/*.nav-mega-menu ul li:not(:last-child) {
  margin-bottom: 12px;
}*/

.img-banner {
  /*width: 30%;*/
  padding-left: 15px;
  overflow: hidden;
  flex: 1;
}

.nav-archive-mb {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}

.nav-mega-mb {
  display: none;
  padding: 0 0 0 55px;
  margin-top: 10px;
}

.nav-mega-mb li:not(:last-child) {
  margin-bottom: 5px;
}

.nav-mega-mb li a {
  color: var(--black);
  font-size: 13px;
  display: block;
}

.nav-mega-mb a.nav-item-product {
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 5px;
}

.nav-body-icon {
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0 10px;
}

.nav-archive-mb li .item-nav {
  display: flex;
  justify-content: space-between;
}

.nav-archive-mb img {
  width: 24px;
  margin-right: 15px;
}

.topbar {
  background: #000;
  /* background: #68d52a; */
  background-size: cover;
  color: var(--white);
}

.topbar .topbar-content p {
  font-size: 16px;
  line-height: 24px;
}

.main-header {
  border-bottom: 1px solid var(--primary);
}

.header-menu-category h6 {
  font-size: 15px;
  line-height: 25px;
  text-transform: uppercase;
}

.bottom-header {
  position: relative;
}

.bottom-header .navbar {
  position: initial;
}

.bottom-header .navbar-nav {
  width: 100%;
  /* justify-content: space-between; */
  justify-content: space-evenly;
}

.col-right a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--black);
  font-size: 14px;
  line-height: 28px;
  font-weight: 600;
}

.col-right a img {
  width: 24px;
}

.navbar-nav-main .nav-link {
    color: var(--black);
    font-size: 15px;
    line-height: 25px;
    font-weight: 500;
    text-transform: capitalize;
    outline: none;
    /*margin-right: 24px;*/
}

.navbar-nav-main .nav-sale {
  color: #EC0000;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}
.navbar-dark .navbar-nav .nav-sale img {
  margin-left: 5px;
}

.navbar-nav-main .nav-link.active {
  color: var(--black);
}

/*.header-menu-category {
  justify-content: center;
}*/
.header-menu-category img {
  margin-right: 5px;
}

@media(max-width: 1400px)
{
  .header-menu-category.vertical-title {
    padding: 12px 20px;
  }
  .header-menu-category h6 {
    font-size: 14px;
  }
  .header-menu-category img {
    width: 20px;
  }
}
@media(max-width: 1200px)
{
  .header-menu-category h6 {
    font-size: 12px;
  }
}
@media(max-width: 767px)
{
  .main-header {
    border-bottom: 0;
  }
  #name-user,
  .main-header .col-right a p{
    display: none;
  }
  .main-header .btn.btn-main {
    display: inline-block;
  }
  .main-header .btn.btn-main img{
    min-width: 27px;
  }

  .bottom-header {
    display: none;
  }
}

.nav-sale img {
  width: 18px;
}

.navbar-vertical {
  left: 0;
  right: 0;
  top: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
}

.menu-nav-archive:hover .navbar-vertical {
  visibility: visible;
  opacity: 1;
}

.navbar-vertical.navbar-light .navbar-nav .nav-link {
    padding: 14px 16px;
    border-bottom: 1px solid #F5F5F5;
    font-size: 15px;
    line-height: 24px;
}

.bottom-header .navbar-toggler {
  color: var(--black);
}

.bottom-menu-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.menu-nav-left {
  width: 25%;
}

.menu-list-right {
  width: 75%;
}

.item-brand-dropdown .thumb img {
  height: 95px;
  object-fit: cover;
}

.menu-list-right .main-menu-li {

  /* padding: 0 10px; */
  
  position: initial;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-menu-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  /*text-align: center;*/
  visibility: hidden;
  /*box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);*/
  transform: scaleY(0);
  transform-origin: top;
  transition: all 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
  background: var(--white);
  border-top: 1px solid #ededed;
  z-index: 999;
  padding-top: 10px;
  padding-bottom: 15px;
}

.menu-list-right .main-menu-li:hover .main-menu-dropdown {
  visibility: visible;
  transform: scaleY(1);
}

.main-menu-sub .menu-sub-child-li > a {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--black);
  display: block;
  margin-bottom: 14px;
}

.main-menu-sub .menu-sub-child-li {
  width: 33%;
  float: left;
  display: inline-block;
}

.main-menu-sub .menu-sub-child-li ul li {
  margin-bottom: 5px;
}

.main-menu-sub .menu-sub-child-li ul li a {
  font-weight: 400;
  text-transform: capitalize;
  color: var(--black);
  font-size: 14px;
}

.main-menu-sub .menu-sub-child-li ul li a:hover {
  font-weight: 600;
}

.vertical-title {
  background: rgb(108 116 73 / 6%);
  padding: 12px;
}

.bottom-header .navbar-toggler:focus,
.bottom-header .btn-close:focus {
  box-shadow: none;
}

.box-product-btn {
    display: flex;
    align-items: center;
}

.navbar-nav-main .box-product-btn.nav-link{
  background: var(--primary);
  color: var(--white);
  font-size: 15px;
  line-height: 24px;
  text-transform: capitalize;
  border-radius: 24px;
  display: flex;
  align-items: center;
  padding: 6px 24px;
  gap: 10px;
}

.carousel-caption {
  left: 0;
  bottom: 80px;
  text-align: left;
  width: 100%;
  padding: 0;
  z-index: 1;
}

.slider-btn {
  position: absolute;
  left: 10%;
  bottom: 10%;
  color: #0E79A1;
  text-transform: capitalize;
  font-weight: 500;
  border: #0E79A1 solid 1px;
  border-radius: 30px;
  padding: 18px 43px;
}

#header-carousel .carousel-indicators li {
  width: 20px;
  border-radius: 50%;
  background: var(--gray);
  box-sizing: border-box;
}

#header-carousel .carousel-indicators li.active {
  background: var(--primary);
}

.title-countdown {
    display: flex;
    align-items: center;
}

@media(max-width: 767px)
{
  .navbar-nav-main {
    display: none;
  }
  .offcanvas-body .navbar-nav-main {
    display: block;
  }

  .slider-btn {
    
    line-height: 24px;
    padding: 0px 4px;
    left: 15px;
    bottom: 15px;
    font-size: 13px;
  }

  #header-carousel .carousel-item {
    position: relative;
  }
  #header-carousel .carousel-item:before {
    content: "";
    display: block;
    padding-top: 40%;
  }
  #header-carousel .carousel-item a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  #header-carousel .carousel-item img {
    object-fit: cover;
    height: 100%;
  }
}
@media(max-width: 580px)
{
  .title-countdown img {
    max-height: 50px;
    /* max-height: 25px; */
  }
}

/*** Product Sale ***/

.title h3 {
  margin-bottom: 0;
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  text-transform: capitalize;
  display: flex;
  align-items: center;
}

/*.title img {
  width: 46px;
}*/

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 5px;
}

.countdown-timer-content {
  color: var(--primary);
  background: var(--white);
  border-radius: 20px;
  box-shadow: 3px 4px 5.8px 0px #6C744930 inset;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 58.5px;
  min-height: 36.66px;
}

.timer-number {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  display: block;
}

.sale-wrapper {
  background: #eef0ef;
  padding: 27px 31px;
  border-radius: 20px;
}



.badge-container {
  position: absolute;
  top: -6px;
  left: -5px;
}

.badge-circle {
  background: url('../img/streamline-flower.png') center no-repeat;
  background-size: cover;
  color: var(--white);
  font-size: 12px;
  line-height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -6.4px;
  width: 52px;
  height: 52px;
  
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-thumbs {
  max-width: 63px;
}

.item-product .product-thumb {
    position: relative;
/*    border: 1px solid #F2F3EB;*/
    margin-bottom: 7px;
}

.product-thumb:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.product-thumb a {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.item-product .product-thumb img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.product-title {
  font-size: 14px;
  line-height: 18px;
  color: var(--black);
  margin-bottom: 10px;
  font-weight: 500;
  display: block;

  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-title span {
  color: var(--dark-1);
}

.product-price-cart {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  min-height: 42px;
}

.product-price {
    display: flex;
    flex-direction: column;
}

.product-price ins,
.price-sale ins {
  text-decoration: none;
  color: #F21031;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

.product-price del,
.price-sale del {
  font-size: 13px;
  line-height: 15px;
  color: #353535;
  margin-bottom: 3px;
  font-weight: 400;
}

/*.product-cart a {
  display: block;
  padding: 8px;
  background: var(--primary);
  border-radius: 50%;
}*/

.coupons-wrapper,
.product-star-sell {
    display: flex;
    align-items: center;
    gap: 6px;
    
}

.coupons-wrapper {
  padding: 12px 0 8px;
}

.coupons-wrapper>div {
  border: 1px solid;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 16px;
}

.coupons-wrapper span {
  display: block;
}

.category {
  border-color: var(--primary);
  color: var(--white);
  background: var(--primary);
}

.coupon {
  border-color: var(--red);
  color: var(--red);
}

.ship {
  border-color: var(--yellow);
  color: var(--yellow);
}


.product-action .actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}

.wishlist-button {
  border: none;
  background: transparent;
  padding: 0;
}
.wishlist-button img {
  width: 15px;
}

.ic-heart,
.ic-heart-o {
  width: 15px;
  height: 18px;
  display: block;
  background: url('../img/heart.png') no-repeat center center;
  background-size: 100%;
}
.ic-heart-o {
  background: url('../img/ic-heart-o.png') no-repeat;
  background-size: 100%;
}

.product-bar {
  height: 3px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
}

.product-bar::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #C6CEA2;
  /*opacity: 0.06;*/
}

.product-bar__inner {
  display: flex;
  justify-content: space-between;
  flex: 0 0 auto;
  height: 100%;
  background: var(--primary);
  z-index: 1;
}

.product-star-sell .star {
  color: var(--orange);
  font-size: 12px;
}

.product-star-sell .sell {
  font-size: 12px;
  line-height: 18px;
}

.product-slider .owl-nav .owl-prev,
.product-slider .owl-nav .owl-next,
.category-slider .owl-nav .owl-prev,
.category-slider .owl-nav .owl-next,
.suggestion-slider .owl-nav .owl-prev,
.suggestion-slider .owl-nav .owl-next {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 30px;
}

.product-slider .owl-nav .owl-prev,
.category-slider .owl-nav .owl-prev,
.suggestion-slider .owl-nav .owl-prev {
  left: -5%;
}

.product-slider .owl-nav .owl-next,
.category-slider .owl-nav .owl-next,
.suggestion-slider .owl-nav .owl-next {
  right: -5%;
}

.product-slider .item-product {
  padding: 12px;
}

@media(max-width: 1440px)
{
  .product-slider .item-product {
    padding: 10px;
  }
}



/*** Top Seller ***/

.seller {
  background: #fffbf8;
  height: 548px;
  max-height: 100%;
  display: flex;
  align-items: center;
}

.title-seller {
  max-width: 25%;
  flex: 0 0 25%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-seller {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.right-text-box {
    flex: 0 0 25%;
    max-width: 25%;
}

.box-img-seller {
  position: relative;
  flex: 0 0 50%;
  max-width: 50%;
  min-height: 450px;
  display: flex;
}
.box-img-seller .img {
/*    flex: 1;*/
}
.box-img-seller .img:nth-child(2) {
    margin-left: -50px;
    margin-right: -50px;
}
.box-img-seller .img:nth-child(2) img {
    margin-top: 100px;    
}
.box-img-seller .img:nth-child(3) img {
    margin-top: 30px;    
}


.title-seller,
.title-seller-mb {
  color: var(--primary);
  font-size: 40px;
  line-height: 52px;
  font-weight: 700;
}



.right-text-box p,
.right-text-mb p {
  font-size: 16px;
  line-height: 28px;
  color: var(--black);
  margin-bottom: 30px;
}

.right-text-box a {
  font-size: 16px;
  line-height: 31.25px;
  font-weight: 600;
  color: var(--primary);
}
.right-text-box a:after{
  content: "";
  display: inline-block;
  width: 5px;
  height: 20px;
  background: url('../img/icon-right-small.svg') no-repeat center bottom;
  margin-left: 10px;

}

@media(max-width: 767px)
{
  .content-seller {

  }
  .title-seller{
    flex: 0 0 100%;
    max-width: unset;
  }
  .box-img-seller {
    flex: 0 0 100%;
    max-width: unset;
    min-height: 300px;
    display: flex;
    align-items: center;
    gap: 30px;
  }
  
    .box-img-seller .img:nth-child(3) img {
        margin-top: 0;    
    }

    .right-text-box {
        margin-top: 30px;
        flex: 0 0 100%;
        max-width: unset;
    }
    .right-text-box a {
      display: block;
      text-align: right;
    }
}

/*** Brands ***/
.slogan-home,
.ads-info {
  background: url('../img/bg-ads.jpg') center no-repeat;
  background-size: cover;
  color: var(--white);
}

.ads-content {
/*  overflow: hidden;*/
}

.ads-info p {
  font-size: 37px;
  line-height: 46.25px;

  /*-moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -moz-animation: my-animation 15s linear infinite;
  -webkit-animation: my-animation 15s linear infinite;
  animation: my-animation 15s linear infinite;*/
}

.slogan-home .scroll-text {
    white-space: nowrap;
    min-width: 800px;
}
.slogan-home p {
    font-size: 37px;
}


/* for Firefox */
@-moz-keyframes my-animation {
  from { -moz-transform: translateX(100%); }
  to { -moz-transform: translateX(-100%); }
}

/* for Chrome */
@-webkit-keyframes my-animation {
  from { -webkit-transform: translateX(100%); }
  to { -webkit-transform: translateX(-100%); }
}

@keyframes my-animation {
  from {
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}


/*** Brands ***/

.title-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.view-more {
  border-bottom: 1px solid var(--third);
}

.view-more a {
  color: var(--third);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-transform: capitalize;
}

.view-more a i {
  color: var(--third);
}

.item-brand a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.item-brand a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background: #8A7E71;
  opacity: 0.3;
  width: 100%;
  height: 100%;
}

.item-brand img {
  width: 100%;
  transition: all 0.3s;
}
.item-brand:hover img {
  transform: scale(1.2);
}

.content-brand {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  z-index: 1;
}

.content-brand h3 {
  color: var(--white);
  font-size: 20px;
  line-height: 40px;
  margin-bottom: 0;
}

/*** Category ***/

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

.item-cate .thumb {
  position: relative;
}

.item-cate .more {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  border-radius: 30px;
  color: var(--white);
  font-size: 20px;
  padding: 6px;
  width: 32px;
  height: 32px;
  display: flex;
}

.item-cate .content {
  margin-top: 16px;
}

.item-cate h4 {
  color: var(--third);
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 0;
}

/*** Service ***/

.service-item {
  position: relative;
  overflow: hidden;
}

.service-item img {
  width: 100%;
}

.service-item .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.service-item h3 {
  -webkit-text-fill-color: var(--white);
  -webkit-text-stroke: 1px var(--primary);
  text-shadow: 0px 5px 5px var(--primary);
  font-family: Arial, Tahoma;
  font-size: 40px;
  line-height: 32px;
  font-weight: 900;
  letter-spacing: .48px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.service-item p {
  color: var(--dark);
  font-size: 22px;
  line-height: 24px;
  font-weight: 700;
}

/*** Top Search ***/

.list-btn-search ul {
    flex-wrap: wrap;
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

.list-btn-search a {
  padding: 9px 22px;
  color: var(--black);
  border-radius: 19px;
  background: var(--gray-2);
  text-transform: capitalize;
  font-size: 14px;
  transition: all .2s;
  display: block;
}

.list-btn-search a:hover {
  background: var(--primary);
  color: var(--white);
}

/*** Video ***/

.item-video a {
  display: block;
  position: relative;
}

.item-video a::before {
  content: '';
  display: block;
  padding-top: calc(100% + 278px);
}

.item-video .thumb {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.item-video img {
  width: 100%;
  height: 100%;
}

/*** Reviews ***/

.review-item {
  border: 2px solid #EDEFE4;
}

.review-item .thumb img {
  width: 100%;
}

.review-item img {
  /*width: 100%;*/
  height: 100%;
  object-fit: cover;
}

@media(max-width: 767px)
{
    .reviews .container {
/*        padding: 0;*/
    }
}

/*** Footer ***/

.footer-wrapper {
  background: #FFFEF8;
}

.top-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--black);
  padding-bottom: 30px;
}

.middle-footer {
  padding: 30px 0;
}

.bottom-footer {
  font-size: 14px;
  line-height: 24px;
  color: var(--black);
}

.bottom-footer ul li a{
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 24px;
  color: var(--black);
}

.middle-footer h4 {
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 8px;
  text-transform: capitalize;
}

.middle-footer p {
  font-size: 14px;
  color: var(--dark-1);
}

.bottom-footer h3,
.nav-footer h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 24px;
  margin-top: 24px;
}

.nav-footer li,
.nav-footer a {
  display: block;
  font-size: 14px;
  line-height: 24px;
  color: var(--black);
}

.nav-footer li:not(:last-child) {
  margin-bottom: 8px;
}

.bottom-footer,
.nav-footer p {
  font-size: 14px;
  line-height: 24px;
  color: var(--black);
}

.payment {
  display: flex;
  align-items: center;
  gap: 20px;
}

.copyright {
  /*background: var(--light);*/
  /*background: #F9F4D9;*/
  background: #fcf8e1;
  padding: 43px 0;
}

.copyright .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyright h3 {
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
}

.copyright p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
}

/* ----------------------------------- Other Pages Styles ----------------------------------- */

/*---------------------
  Archive
-----------------------*/

.banner-page {
  padding: 36px 0 30px;
}

.banner-page .banner-title {
  position: absolute;
  top: 50%;
  left: 50px;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
}

.banner-title h3 {
  color: var(--primary);
  font-size: 32px;
  line-height: 44px;
  margin-bottom: 0;
  text-transform: capitalize;
  font-weight: 700;
}

.bg-cover img {
  width: 100%;
}

@media(max-width: 767px)
{
  .banner-page {
    padding: 0;
  }
}

.title-product-new {
  font-size: 28px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.classify-products:not(:last-child) {
  margin-bottom: 20px;
}

#productFilterForm .form-check-input {
  width: 20px;
  height: 20px;
  border-color: #D7D7D7;
/*  border-radius: 0;*/
  margin-right: 10px;
  margin-top: 0;
}
#productFilterForm .form-check-input[type="checkbox"] {
  border-radius: 0;
}
#productFilterForm .form-check-input:focus {
  box-shadow: unset;
  outline: unset;
}

.search-archive {
  margin-bottom: 20px;
  position: relative;
  display: flex;
}
.search-archive .search-input {
  position: relative;
  flex: 1;
}

.search-archive input {
  background-color: transparent;
  padding-left: 0;
  padding-right: 0;
  border: 0;
  padding: 7px 30px 7px 20px;
  border: 1px solid var(--primary);
  border-radius: 30px;
  background: var(--gray-1);
}
.search-archive input:focus {
  box-shadow: unset;
  outline: unset;
}
.search-archive i {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.search-archive button {
    border: none;
    color: var(--primary);
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: unset;
}
.search-archive button:hover {
/*  background: var(--gray-1); */
}

.frm-search .search-archive input {
  padding: 10px 30px 10px 20px;
  border-radius: 24px;
  font-size: 14px;
  min-height: 48px;
}
.frm-search .search-archive button {
  right: 10px;
}
.frm-search .search-archive {
  margin-bottom: 0 !important;
}

.title-archile {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--black);
  font-weight: 700;
  text-transform: capitalize;
}

.filter-open {
  display: none;
  margin-left: 10px;
}
@media(max-width: 767px)
{
  .sidebar-content {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    padding: 10px;
    background: #fff;
    z-index: 999;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: all 0.5s;
  }
  .sidebar-content.open {
    left: 0;
    bottom: 0;
    overflow-y: auto;
  }

  .filter-open {
    display: block;
    max-width: 10%;
    flex: 0 0 10%;
    cursor: pointer;
  }

  .filter-open img {
    background: var(--primary);
    border-radius: 30px;
    padding: 8px;
  }
}

.classify-products .form-group {
  display: block;
}

.classify-products .form-group:not(:last-child) {
  margin-bottom: 8px;
}

.classify-products .form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.classify-products .form-group label {
  position: relative;
  cursor: pointer;
  font-size: 14px;
  color: var(--black);
}

.classify-products .form-group label::before {
  content: '';
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid var(--gray);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 7px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
}

.classify-products .form-group input:checked + label::before {
  border-color: var(--primary);
}

.classify-products .form-group input:checked + label::after {
  content: '';
  display: block;
  position: absolute;
  top: 4px;
  left: 6px;
  width: 6px;
  height: 12px;
  border: solid var(--primary);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.readmore__toggle {
  color: var(--primary);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  text-decoration-line: underline;
  display: block;
  margin-top: 8px;
}

.archive-title p {
  font-size: 14px;
  font-weight: 700;
}

.filter-sort {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-sort span {
  font-size: 14px;
  text-transform: capitalize;
}

.filter .form-select:focus {
  box-shadow: none;
}

.filter .form-select {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid var(--black);
  color: var(--black);
}

.product-view-more {
  text-align: center;
  margin-top: 24px;
}

.product-view-more button {
  color: var(--dark);
  text-transform: capitalize;
  padding: 8px 40px;
  border: 1px solid var(--dark);
  border-radius: 20px;
}

.product-view-more button:hover {
  border-color: var(--dark);
  color: var(--dark);
}

/*---------------------
  Detail Product
-----------------------*/

.image-gallery {
  display: flex;
}

.swiper-thumb {
  align-items: center;
  border: 1px solid #e0e5eb;
  cursor: pointer;
  display: flex;
  height: auto !important;
  justify-content: center;
  transition: border-color .2s ease-in-out;
/*  width: auto !important;*/
/*  margin-bottom: 12px;*/
}

.swiper-thumb.active, 
.swiper-thumb.swiper-slide-thumb-active {
  border-color: #6C7449;
}

.swiper-thumb-img {
  border-radius: 8px;
  opacity: .5;
  transition: opacity .2s ease-in-out;
}

.swiper-thumb.active .swiper-thumb-img, 
.swiper-thumb.swiper-slide-thumb-active .swiper-thumb-img,
.swiper-thumb:hover .swiper-thumb-img {
  opacity: 1;
}

@media(max-width: 767px)
{
  .image-gallery {
    flex-wrap: wrap;
  }
  .swiper-thumbs {
    max-width: unset;
    order: 1;
  }
  .swiper-thumb {
/*    width: inherit !important;*/
  }
}

/*.swiper-thumb .ratio::before {
  padding-top: 70%;
}*/

.single-breadcrumbs li, 
.single-breadcrumbs a {
  font-size: 12px;
  line-height: 20px;
  color: var(--dark);
  text-transform: capitalize;
}

.single-breadcrumbs .breadcrumb-item+.breadcrumb-item::before {
    content: '>';
}

.content-detail h1 {
  font-size: 18px;
  line-height: 28px;
}

.reviews ul li,
.brand-origin ul li {
  display: inline-block;
  position: relative;
}

.reviews ul li:not(:last-child),
.brand-origin ul li:not(:last-child) {
  margin-right: 6px;
  padding-right: 12px;
}

.reviews ul li:not(:last-child)::after,
.brand-origin ul li:not(:last-child)::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  background: var(--light-2);
  width: 1px;
  height: 50%;
}

.rate {
  display: flex;
  align-items: center;
  gap: 8px;
}

.star i {
  font-size: 12px;
}

.rate p {
  text-decoration: underline;
  font-size: 12px;
  line-height: 20px;
  color: var(--light-2);
}

.reviews p,
.brand-origin p {
  font-size: 12px;
  line-height: 20px;
  color: var(--light-2);
}

.reviews p i {
  color: var(--dark-1);
}

.brand-origin p {
  color: var(--dark);
}

.price.price-sale {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
}

.price-sale ins  {
  font-size: 24px;
  line-height: 32px;
}

.price-sale del {
  font-size: 14px;
  line-height: 32px;
  margin-bottom: 0;
}

.percent {
  display: inline-block;
  background: #F21031;
  color: var(--white);
  font-size: 12px;
  line-height: 18px;
  padding: 2px 9px;
  border-radius: 30px;
}

.form-attr {
    padding-left: 0;
}

.form-check-justified:not(:last-child) {
    margin-right: 0.5rem;
}

.form-attr .form-check-input {
  border: 0;
  background: none;
  box-shadow: unset !important;
}

.form-attr-label {
  position: relative;
  margin-bottom: 0;
  padding: 5px 7px;
  transition: color .2s ease-in-out, border-color .2s ease-in-out;
  border: 1px solid #c1c1c1;
  color: #333;
  font-size: 14px;
  font-weight: normal;
  text-align: center;
  line-height: 24px;
  cursor: pointer;
  border-radius: 15px;
  white-space: nowrap;
}

.form-check-justified .form-attr-label {
    width: 100%;
}

.form-attr-label:hover, 
.form-check-input:checked~.form-attr-label {
    border-color: var(--primary);
    color: var(--primary);
}

.product-attr h6 {
  font-size: 12px;
  line-height: 20px;
  color: var(--dark);
  margin-bottom: 10px;
}

.product-attr-content {
  margin-bottom: 16px;
}

.product-single__actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.filter-product, 
.add-cart {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 16px;
}

.filter-product label {
    min-width: 75px;
    color: var(--dark);
}

.qtyField {
    display: table;
}

.qtyField a {
    color: var(--black);
}

.qtyField > a, 
.qtyField > span, 
.qtyField input {
    display: table-cell;
    line-height: normal;
    text-align: center;
    padding: 3px 6px;
    border: 1px solid #ebebeb;
}

.qtyField .qtyBtn, .qtyField .qty {
    padding: 10px 6px;
    width: 33px;
    height: 36px;
    border-radius: 0;
    float: left;
    line-height: 15px;
}

.qtyField .qty {
	-moz-appearance: textfield;
}

.qtyField .qty:focus-visible {
	outline: none;
}

.qtyField .qty::-webkit-outer-spin-button,
.qtyField .qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
} 

.qtyField .qtyBtn {
    background: #f9f9f9;
}

.qtyField > a:first-child {
    border-right: 0;
}

.qtyField > a:last-child {
    border-left: 0;
}

.product-stock {
  font-size: 12px;
  line-height: 20px;
}

.add-cart {
  gap: 16px;
}

.add-cart a {
  font-size: 16px;
  text-transform: capitalize;
  padding: 14px 18px;
  border-radius: 40px;
  font-weight: 500;
}

.add-cart a:first-child {
  color: var(--primary);
  border: 1px solid var(--primary);
}

.add-cart a:last-child {
  background: var(--primary);
  color: var(--white);
  /* padding-left: 50px;
  padding-right: 50px; */
}

.product-share__icon,
.social_like_single {
  display: flex;
  align-items: center;
}

.product-share__icon {
  gap: 10px;
}

.product-share__icon p {
  font-size: 12px;
  line-height: 20px;
  color: var(--secondary);
}

.social_like_single img {
  width: 45px;
}

.product-tabs {
  padding-bottom: 40px;
}

.product-tabs,
.detail-description-top {
  border-bottom: 1px solid #dee2e6;
}

.product-tabs ul {
  justify-content: center;
  flex-wrap: nowrap;
  border-bottom: none;
}

.product-tabs ul li .nav-link {
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  color: var(--black);
  background-color: transparent !important;
  border: none;
  position: relative;
}

.product-tabs ul li .nav-link::after {
  content: '';
  width: 76px;
  height: 2px;
  background: transparent;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
}

.product-tabs .nav-tabs .nav-link:hover::after ,
.product-tabs .nav-tabs .nav-link.active::after {
  background: #646E57;
}

.product-tabs .nav-tabs .nav-link:hover,
.product-tabs .nav-tabs .nav-link.active {
  color: #646E57;
}

.product-detail_description {
  padding-top: 40px;
  overflow: hidden;
  max-height: 900px;
  position: relative;
}

.product-detail_description.active {
    overflow: initial;
    max-height: initial;
}

.product-detail_description::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, hsla(0, 0%, 100%, 0) 20%, #fff);
}

.product-detail_description.active::after {
  display: none;
}

.detail-readmore {
  text-align: center;
  padding: 16px 0 0;
}

.btn__custom {
  font-weight: 500;
  background: transparent;
  outline: none;
  border: 1px solid var(--dark);
  text-transform: capitalize;
  padding: 8px 84px;
  border-radius: 20px;
}

.evaluate {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.evaluate span,
.evaluate a {
  font-size: 14px;
  line-height: 28px;
  font-weight: 600;
}

.evaluate a {
  display: block;
  border-bottom: 1px solid #646E57;
  color: #646E57;
}

.star-product_rate {
    font-size: 36px;
    margin: 12px 0;
}

.item-rate {
  position: relative;
}

.rate-start {
  width: 12px;
  display: inline-block;
  color: var(--black);
  font-weight: 500;
}

.rate-progress-bar {
  background: #71747159;
  display: block;
  height: 5px;
  width: 220px;
  position: absolute;
  left: 20px;
  top: 6px;
  border-radius: 4px;
}

.rate-progress-bar .full {
  background: #00000070 !important;
  width: 50%;
  height: 5px;
  border-radius: 4px;
}

.rate-num {
  position: absolute;
  left: 245px;
  top: -4px;
  color: var(--black);
  font-weight: 500;
}

.top-rate {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 4px;
}

.top-rate p {
  margin-bottom: 0;
}

.top-rate p:first-child {
  font-size: 15px;
  font-weight: 600;
  line-height: 28px;
  color: var(--black);
}

.top-rate p.date {
  font-size: 12px;
  line-height: 28px;
}

.user-info_rate p,
.admin-reply p {
  font-size: 14px;
  line-height: 24px;
}

.admin-reply {
  display: flex;
}

.reply {
    width: 40px;
}

.item-cont-rating:not(:last-child) {
  border-bottom: 1px solid var(--bg-light);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

@media(max-width: 767px)
{
  .product-detail_description {
    padding-top: 20px;
  }
}

/*---------------------
  Login
-----------------------*/

.bg-main_login {
  background: linear-gradient(rgba(108, 116, 73, .75), rgba(108, 116, 73, .85)), url('../img/slide_1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.content-login {
  color: var(--white);
}

.content-login h3 {
  text-transform: uppercase;
  font-size: 40px;
  font-weight: 600;
  line-height: 45px;
  margin-bottom: 16px;
}

.content-login p {
  font-size: 14px;
  line-height: 24px;
  display: inline-block;
  width: 60%;
}

.frm-account {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0px 0px 20px 0px #0000001A;
}

.frm-box_title h4 {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 12px;
}

.frm-box_title p,
.frm-box_title a {
  font-size: 14px;
  line-height: 24px;
}

.frm-account .form-label {
  color: var(--black);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
}

.required {
  color: var(--red);
}

.frm-account input {
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 14px;
  line-height: 24px;
}

.frm-account input:focus {
  box-shadow: none;
  border-color: #dee2e6;
}

.password-toggle {
  position: relative;
}

.password-toggle-btn .password-toggle-check {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}

.password-toggle-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: .625rem;
  left: unset;
  margin-bottom: 0;
  padding: .5rem;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  border: 0;
  background: unset;
}

.form-other,
.form-loginIcon,
.login-social-icon {
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-other {
  justify-content: space-between;
  gap: initial;
}

.login-social-icon {
  gap: 6px;
}

.form-loginIcon p {
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
  color: var(--black);
}

.btn-login-page button {
  background: var(--primary);
  color: var(--white);
  border-radius: 30px;
  padding: 12px 20px;
}

.btn-login-page button:hover {
  background: var(--primary);
  color: var(--white);
}

/*---------------------
  My Order
-----------------------*/

.customer-dashboard {
  padding: 30px 0;
}

.customer-menu {
  display: block;
  position: relative;
  border: 1px solid var(--bg-light);
  border-top: 3px solid var(--primary);
  border-radius: 5px;
  overflow: hidden;
}

.customer-menu .tit-menu-cus {
  color: var(--primary);
  font-weight: 700;
  padding: 10px 10px 10px 15px;
  border-bottom: 1px solid #c9d0cd;
  font-size: 17px;
  display: block;
  line-height: 20px;
}

.block_info_profile {
  padding: 15px 20px;
  border-bottom: 1px solid #d7d7d7;
  display: flex;
  align-items: center;
  gap: 10px;
}

.avata_profile {
  width: 50px;
}

.block_info_profile .name_profile {
  color: var(--primary);
}

.name_profile p {
  font-weight: 700;
  font-size: 14px;
  text-transform: capitalize;
}

.name_profile a {
  color: var(--dark);
  font-size: 14px;
  line-height: 24px;
}

.name_profile a:hover {
  color: var(--primary);
}

.customer-menu ul.menu_siderbar_custom_view {
  display: block;
}

ul.menu_siderbar_custom_view > li {
  border-bottom: 1px solid #d7d7d7;
  margin: 0;
  position: relative;
  text-transform: uppercase;
}

.customer-menu ul.menu_siderbar_custom_view li {
  padding-left: 20px;
}

ul.menu_siderbar_custom_view > li:before {
  position: absolute;
  left: 2px;
  content: '\f111';
  font-family: 'Font Awesome 6 Pro';
  font-weight: 900;
  font-size: 8px;
  top: 50%;
  color: var(--primary);
  transform: translateY(-50%);
}

.customer-menu ul.menu_siderbar_custom_view li:before {
  left: 15px;
}

ul.menu_siderbar_custom_view > li > a {
  border-left: 0;
  padding: 15px 0 15px 15px;
  text-transform: capitalize;
  font-weight: 500;
  color: var(--secondary);
  font-size: 13px;
  letter-spacing: 1.2px;
  display: block;
}

.customer-menu ul.menu_siderbar_custom_view li a:hover,
ul.menu_siderbar_custom_view li a.active {
  text-decoration: underline;
  color: var(--primary);
}

.customer-dashboard-content {
  display: block;
  position: relative;
  border: 1px solid var(--bg-light);
  border-top: 3px solid var(--primary);
  border-radius: 5px;
  overflow: hidden;
}

.customer-dashboard-content .page-title h2 {
  color: var(--primary);
  font-weight: 700;
  padding: 10px 10px 10px 15px;
  border-bottom: 1px solid var(--bg-light);
  font-size: 17px;
  text-transform: uppercase;
}

.customer-dashboard-content .content_profile_view_container {
  padding: 10px;
}

.my-dashboard {
  padding-bottom: 10px;
}

.my-dashboard p {
  font-size: 14px;
  line-height: 24px;
}

.row-title {
  padding-bottom: 3px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 15px;
  text-transform: uppercase;
  position: relative;
  font-weight: 700;
  font-size: 18px;
}

.title_primary_profile {
  border-bottom: 1px solid #d7d7d7;
  margin-bottom: 15px;
  padding-bottom: 10px;
  padding-top: 0;
  margin-top: 0;
}

.title_primary_profile a,
.profile_view_usr .item a.action {
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  text-decoration: underline;
  text-transform: uppercase;
}

.profile_view_usr .item {
  padding: 15px 10px;
  display: block;
}

.profile_view_usr .item span.label {
  font-weight: 700;
  font-size: 14px;
  color: var(--secondary);
}

.profile_view_usr .item span.value,
.contact_title,
.address-cnt {
  color: var(--secondary);
  font-size: 14px;
  line-height: 24px;
}

.profile_view_usr .item:nth-child(2n) {
  background: #f8f8f8;
}

.avatar-upload {
  position: relative;
  max-width: 205px;
  margin: 15px auto;
}

.avatar-upload .avatar-edit {
  display: none;
  position: absolute;
  right: 12px;
  z-index: 1;
  top: 10px;
}

.avatar-upload .avatar-edit input {
  display: none;
}

.avatar-upload .avatar-edit.active {
    display: block;
}

.content_profile_view_container .card-body .form-group input, 
.content_profile_view_container .card-body .form-group select, 
.content_profile_view_container .card-body .form-group textarea {
  font-size: 14px;
  color: var(--secondary);
}

.content_profile_view_container .card-body .form-group input:focus, 
.content_profile_view_container .card-body .form-group select:focus, 
.content_profile_view_container .card-body .form-group textarea:focus {
  box-shadow: none;
  border-color: #dee2e6;
}

.avatar-upload .avatar-edit input + label {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-bottom: 0;
  border-radius: 100%;
  background: #FFFFFF;
  border: 1px solid transparent;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s ease-in-out;
}

.avatar-upload .avatar-edit input + label::after {
    content: '\f304';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 900;
    color: var(--dark);
    position: absolute;
    top: 7px;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
}

.content_profile_view_container .card-body .form-group label {
  display: block;
  margin-bottom: 3px;
}

.avatar-upload .avatar-preview {
  width: 192px;
  height: 192px;
  position: relative;
  border-radius: 100%;
  border: 6px solid #F8F8F8;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.avatar-upload .avatar-preview {
  width: 100px;
  height: 100px;
}

.avatar-upload .avatar-preview > div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.content_profile_view_container input[type="button"],
.content_profile_view_container input[type="submit"] {
  background: var(--primary);
  color: var(--white) !important;
}

.content_profile_view_container input[name="btn_cancel"].form-control {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.btn_edit_form.active,
.btn_update,
.btn_cancel {
  display: none;
}

.btn_update.active,
.btn_cancel.active {
  display: block;
}

.btn-add-old-order {
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
  border-radius: 4px;
}

.list-order .btn-add-old-order:hover,
.list-order .btn-add-old-order:active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.list-order .navbar-expand-lg .navbar-nav a {
    background: #f2f1f6;
    color: var(--black) !important;
    display: inline-block;
    padding: 5px 20px;
    margin-right: 10px;
    border-radius: 3px;
    font-size: 15px;
    border-right: none !important;
    white-space: nowrap;
}

.list-order .navbar-nav .nav-link.active {
    font-weight: 700;
    color: var(--primary);
}

.list-order .navbar-expand-lg .navbar-nav a.active, 
.list-order .navbar-expand-lg .navbar-nav a:hover {
    background: var(--primary);
    color: var(--white) !important;
}


@media (min-width: 1200px) {
    .col-16 {
        flex: 0 0 16.66666666666667%;
        max-width: 16.66666666666667%;
    }
}

@media (min-width: 992px) and (max-width: 1344px) {
  .box-product-btn a {
    font-size: 16px;
  }
}

@media (max-width: 991px) {

    .item-video a::before {
      padding-top: calc(100% + 165px);
    }
}

@media (max-width: 767px) {
  .offcanvas-header{
    justify-content: left;
  }

  .sale-wrapper {
    padding: 27px 16px;
  }

  .title h3 {
    font-size: 20px;
    line-height: 24px;
  }

  .view-more a {
    font-size: 12px;
    line-height: 24px;
  }

  .title-countdown {
    align-items: center;
    gap: 6px;
    justify-content: space-between;

    flex-wrap: wrap;
    flex: 1;
    width: auto;
    padding-right: 0;
  }
  .title-countdown .countdown {
/*    flex: 0 0 100%;*/
  }

  .timer-number {
    font-size: 12px;
    line-height: 20px;
  }

  .countdown-timer-content {
    min-width: 30px;
    min-height: 20px;
  }

  .coupons-wrapper {
    gap: 3px;
  }

  .coupons-wrapper>div {
    font-size: 10px;
    line-height: 12px;
    padding-right: 8px;
    padding-left: 8px;
  }

  .product-title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  .product-star-sell {
  }

  .product-slider .owl-nav .owl-prev,
  .suggestion-slider .owl-nav .owl-prev {
    left: -3%;
  }

  .product-slider .owl-nav .owl-next,
  .suggestion-slider .owl-nav .owl-next {
    right: -3%;
  }

  .content-brand h3 {
    font-size: 18px;
  }

  .border-title {
    padding-left: 24px;
    padding-right: 24px;
  }

  .ads-info p {
    font-size: 36px;
    line-height: 50px;
  }

  .item-video a::before {
    padding-top: calc(100% + 125px);
  }

  .block {
    display: inline;
  }

  .nav-orders {
    overflow-x: auto;
  }

  .nav-orders .navbar-nav {
    flex-wrap: nowrap;
    flex-direction: inherit;
  }

  .seller {
    height: auto;
  }
}

@media (max-width: 580px) {
    .title-countdown img {
        max-height: 60px;
    }
}
@media (max-width: 480px) {
    .title-countdown img {
        max-height: 45px;
    }
}

@media (max-width: 400px) {
  .coupons-wrapper {
    flex-wrap: wrap;
  }
  .title-countdown img {
        max-height: 38px;
    }
}


/* 5/8/2024 */

input+.error, select+.error {
  font-size: 15px;
  color: #f00;
  margin-top: 5px;
}

.select2+.error,
.error-message, input+.error, select+.error {
  font-size: 13px;
  color: #f00;
  margin-top: 5px;
}
.select2+.error {
  position: absolute;
  bottom: -22px;
}


.scroll-text {
  /* animation properties */
  -moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  
  -moz-animation: my-animation 20s linear infinite;
  -webkit-animation: my-animation 20s linear infinite;
  animation: my-animation 20s linear infinite;
}

/* for Firefox */
@-moz-keyframes my-animation {
  from { -moz-transform: translateX(100%); }
  to { -moz-transform: translateX(-100%); }
}

/* for Chrome */
@-webkit-keyframes my-animation {
  from { -webkit-transform: translateX(100%); }
  to { -webkit-transform: translateX(-100%); }
}

@keyframes my-animation {
  from {
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

/* rate_thongke */
.rate_thongke{
  font-size: 14px;
/*    border: 1px solid #ddd;*/
    /*border-radius: 10px;*/
}

.rate_thongke hr{
    background-color: #7c7c7c;
}

.rate_diem{
    font-size: 30px;
}
.rate_diem i {
  margin: 0 5px;
}

.thongke_star_detail{
/*    border-left: 1px solid #efefef;*/
}

.thongke_star_detail ul {padding: 0;margin: 0;}
.thongke_star_detail ul li{
    display: flex; align-items: center; justify-content: center;
}

.thongke_star_detail .tk_star,
.thongke_star_detail .tk_progress,
.thongke_star_detail .tk_num{
    display: inline-block;
    padding: 0 3px;
    font-size: 14px;
    color: #9a9a9a;
}
.thongke_star_detail .tk_star, .thongke_star_detail .tk_num{width: 42px;}
.thongke_star_detail .tk_progress{
  flex: 1;
}

.thongke_star_detail .tk_progress .progress{
    height: 5px;
}
.thongke_star_detail .tk_progress .progress-bar{
        background-color: #000;
}


.view_thumbnail img{
    display: inline-block;
    max-height: 80px;
}


/* end rate_thongke */
/*product review*/

.review-star .radio-group{
  display: flex;
  flex: 1;
}
.review-star .radio-group div{
  display: flex;
}
.review-star .radio-group label{
  cursor: pointer;
  padding: 0 3px;
  color: #cacaca;
  text-align: center;
  font-weight: normal;
  margin: 0;
  font-size: 18px;
}

/*.review-star .radio-group input:checked+label,*/
.review-star .radio-group label.active,
.review-star .radio-group label:hover{
    color: #f5a623;
}
.review-star .radio-group input{
  position: absolute;
  clip: rect(0,0,0,0);
  pointer-events: none;
}

#review label{
    font-weight: bold;
}
#review input,
#review textarea{
    font-size: 14px;
    padding: 7px;
}


.up_picture_rate label{
    cursor: pointer;
}
.up_picture_rate input{
    opacity: 0;
}

.view_thumbnail {
    display: inline-block;
    position: relative;
    padding: 5px;
    margin: 5px;
    border: 1px solid #eee;
    border-radius: 5px;
}
.view_thumbnail .btn {
    color: #f00;
    background-color: #fff;
    border-color: #f00;
    position: absolute;
    right: -5px;
    top: -5px;
    border-radius: 50%;
    z-index: 99;
    font-size: 12px;
    padding: 3px 5px;
    line-height: 1;
    width: 20px;
    height: 20px;
}
.review-star .voted{
    color: #fd9727;
}

.review-detail{
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #D9D9D9;
}
.r-date{
/*    font-size: 14px;*/
    color: #878787;
}
.r-name {
  font-size: 14px;
}
.r-name b{
/*  font-size: ;*/
}

.icon-replies-count{
    color: #2f80ed;
    font-size: 13px;
    cursor: pointer;
}

.box_reply{
    display: none;
    border: 1px solid #dadada;
    padding: 5px;
    padding-left: 15px;
    border-radius: 3px;
    position: relative;
    margin: 10px 0 5px;
    background: #f1f1f1;
}

.box_reply:after, .box_reply:before {
    bottom: 100%;
    left: 30px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.box_reply:after {
    border-color: rgba(136, 183, 213, 0);
    border-bottom-color: #f1f1f1;
    border-width: 9px;
    margin-left: -9px;
}
.box_reply:before {
    border-color: rgba(194, 225, 245, 0);
    border-bottom-color: #dadada;
    border-width: 10px;
    margin-left: -10px;
}
.list_rate_title{
    display: inline-block;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    font-size: 13px;
    margin-bottom: 10px;
    margin-top: 5px;
}
.reply_item .list_rate_title span{
    color: #4bab02;
    font-size: 14px;
    font-weight: bold;
}

.count-comment{
    position: absolute;
  right: 15px;
  font-size: 13px;
  color: #f15a34;
}
.count-comment span{
    color: #333;
}
.count-comment span.error{
    color: #f15a34;
}

#aniimated-thumbnials img{
    max-height: 65px;
}
/*product review*/

/*blog*/
.section-title {
    text-align: center;
    margin-bottom: 15px;
}

.section-title h3 {
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.3;
    font-size: 24px;
    color: #000000;
    margin-bottom: 0;
}

.blogs {
    background: #E9EAE8;
}

.news-item {
    background: #e9eae8;
    position: relative;
    border-radius: 10px;
}

.item-news h6 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
  margin-top: 0px;
  -webkit-line-clamp: 2;
}
.news-image {
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.news-image a {
    position: relative;
    overflow: hidden;
    padding-top: 60%;
    /* padding-top: 100%; */
    width: 100%;
    height: 0;
    display: block;
}
.item-news:not(:last-child) {
  margin-bottom: 20px;
}
.cnZzhJ {
  width: 100px;
  height: 1px;
  background-color: var(--black);
  margin-left: auto;
  margin-right: auto;
}
.news-content{
  margin-bottom: 50px;
}
.item-news{

  display: flex;
  position: relative;
}

.thumb-news{
  overflow: hidden;

  width: 170px;
  border-radius: 5px;

  /* height: 114.62px;
  width: 196px; */
}
.item-news .content{
  width: calc(100% - 170px);
  padding-left: 15px;
}
/* .item-news .thumb-news img{
  height: 114.62px;
  width: 196px;
} */
.news-image img {
    transition: all ease-in .3s;
    -webkit-transition: all ease-in .3s;
    -moz-transition: all ease-in .3s;
    position: absolute;
    display: block;
    width: 100%;
    max-width: 100%;
    /* height: 100%;
    max-height: 100%; */
    left: 0;
    right: 0;
    top: 0;
    /* bottom: 0; */
    margin: auto;
    object-fit: cover;
}

.news-item:hover img {
    transform: scale(1.1);
}

.news-overlay {
    padding: 15px 18px;
}

.news-cata {
    text-transform: uppercase;
    color: #2F4F89;
}

.news-overlay a {
    display: block;
    color: #000000;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 600;
    line-height: 1.5;
    margin: 5px 0 13px 0;
    min-height: 48px;
}

.news-date {
    color: #c6c6c6;
}
.blog-post-title h2,
.blog-post-title h3,
.blog-post-content h2 {
  font-size: 22px;
  
}
.blog-post-content h3 {
  font-size: 20px;
}

.sidebar-news .news-item {
  background: unset;
  display: flex;
  margin-bottom: 20px;
  border-radius: 0;
}
.sidebar-news .news-item .news-image {
  flex:  0 0 30%;
  border-radius: 0;
}
.sidebar-news .news-image a {
  padding-top: 80%;
  border-radius: 9px;
}
.sidebar-news .news-overlay{
  padding: 0 0 0 15px;
  font-size: 14px;
}
.sidebar-news .news-overlay a {
  margin-top: 0;
  font-size: 14px;
  min-height: 40px;
}
.sidebar-news .news-cata{
  display: none;
}
/*blog*/

/*content loading*/
.mh-100{
    min-height: 100px !important;
}
.list-content-loading {
  background: rgba(0, 0, 0, .3);
  border-radius: 3px;
  bottom: 0;
  display: none;
  left: 0;
  /*margin: -15px;*/
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1021;
}

.half-circle-spinner {
  border-radius: 100%;
  height: 60px;
  margin: 20px auto;
  position: relative;
  width: 60px
}

.half-circle-spinner,
.half-circle-spinner * {
  box-sizing: border-box
}

.half-circle-spinner .circle {
  border: 3px solid transparent;
  border-radius: 100%;
  content: "";
  height: 100%;
  position: absolute;
  width: 100%
}

.half-circle-spinner .circle.circle-1 {
  -webkit-animation: half-circle-spinner-animation 1s infinite;
  animation: half-circle-spinner-animation 1s infinite;
  border-top-color: var(--color-primary)
}

.half-circle-spinner .circle.circle-2 {
  -webkit-animation: half-circle-spinner-animation 1s infinite alternate;
  animation: half-circle-spinner-animation 1s infinite alternate;
  border-bottom-color: var(--color-primary)
}

@-webkit-keyframes half-circle-spinner-animation {
  0% {
    transform: rotate(0)
  }
  to {
    transform: rotate(1turn)
  }
}

@keyframes half-circle-spinner-animation {
  0% {
    transform: rotate(0)
  }
  to {
    transform: rotate(1turn)
  }
}

.list-content-loading .half-circle-spinner .circle.circle-1 {
  border-top-color: #fff
}

.list-content-loading .half-circle-spinner .circle.circle-2 {
  border-bottom-color: #fff
}

.list-content-loading .half-circle-spinner {
    left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.list-content-loading .half-circle-spinner .circle {
  border: 5px solid transparent
}

@media screen and (max-width:768px) {
  .list-content-loading {
    top: 15px
  }
}


@-webkit-keyframes button-loading-spinner {
  0% {
    transform: rotate(0)
  }
  to {
    transform: rotate(1turn)
  }
}

@keyframes button-loading-spinner {
  0% {
    transform: rotate(0)
  }
  to {
    transform: rotate(1turn)
  }
}
/*content loading*/

/*social-icon*/
.social-icon ul li {
  width: 30px;
  text-align: center;
}
.social-icon a {
  color: #000;
  font-size: 18px;
}
/*social-icon*/

/*modal*/
.modal-backdrop {
  z-index: 999;
}
/*modal*/

/*menu mobile*/
@media(max-width: 990px)
{
}

.offcanvas {
    transition: 0.5s;
  left: -100%;
  top: 0;
  width: 100%;

}
.open-offcanvas .offcanvas {
  left: 0; 
  visibility: visible;
}
.offcanvas-overlay {
    background-color: #000;
    height: 100%;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    position: fixed;
    top: 0;
    -webkit-transition: all 400ms cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    -o-transition: all 400ms cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    transition: all 400ms cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    width: 100%;
    z-index: 990;
    visibility: hidden;
}
.offcanvas-overlay.show {
  opacity: 0.5;
  visibility: visible;
}
.btn.btn-offcanvas-close {
/*    display: none;*/
    position: absolute;
    top: 20px;
    left: -40px;
    padding: 0;
    width: 38px;
    height: 38px;
    font-size: 20px;
    color: #000;
    background: #fff;
    border-radius: 50%;
    z-index: 999;
    transition: all 400ms cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}
.open-offcanvas .btn.btn-offcanvas-close {
/*    display: block;*/
    left: 310px;
}

#wrapper {
  transition: 0.5s;
}
.open-offcanvas #wrapper {
    height: 100%;
    /*overflow: hidden;*/
    /*position: fixed;*/
    /*-webkit-transform: translate(300px, 0px);
    -ms-transform: translate(300px, 0px);
    -o-transform: translate(300px, 0px);
    transform: translate(300px, 0px);*/
}
.open-offcanvas .sidebar {
    margin-left: 0;
}
.open-offcanvas .offcanvas-overlay {
    opacity: 0.7;
    filter: alpha(opacity=80);
    visibility: visible;
}
/*menu mobile*/


/* blog update */
.i-margin{
  margin-top: 1.5625rem;
}
.italic {
  font-style: italic;
  
        font-size: 2.25rem;
       
}
.italic h2 {
  font-weight: 600;
}

@media (min-width: 1024px) {
  .banner-image[data-v-8fe1ae48] {
      height: 32.3125rem;
      border-radius: 10px;
  }
}
.bg-no-repeat {
  background-repeat: no-repeat;
}
.bg-center {
  background-position: center;
}
.bg-cover {
  background-size: cover;
}
@media (max-width: 767px) {
.banner-image[data-v-8fe1ae48] {
  height: 12.5rem;
  border-radius: 10px;
}
.italic{
  font-style: normal;
  
 
}
.blog-detail >.entry-meta
{
  padding-top: 0px !important;
}
.list-group-product .product-sale{
  width: 50%;
}
.list-btn-search >ul li{
  
  min-width: 48%;
  max-width: calc(48% - 12px);
  flex: 0 0 calc(48% - 12px);
}

.list-btn-search >ul li:last-child {
  max-width: 100%;
  flex: 0 0 100%;
}
.badge-circle{
  width: 46px;
  height: 46px;
}

.more .fa-arrow-right {
  line-height: normal;
  font-size: 16px;
}
.coupons-wrapper,
.product-star-sell {
   
    gap: 1px;
    
}
.topbar{
  padding-top: 2px !important;
  padding-bottom: 2px !important;
}
}


.td-title{
  --bs-table-bg-state: #f7f7f7;
  padding: 15px 10px 15px 10px !important;
}
.table>tbody td{
  padding: 15px 10px 15px 10px ;
}

.table>thead th{
  background: #f7f7f7;
}
.table>tbody {
  color: var(--secondary);
  font-size: 13px;
}

.sidebar-content .form-check-input:checked {
  background-color: var(--primary);
}

.collapsed > .fa-chevron-up::before
{
  content: '\f078';
}
/*  */
@media (min-width: 1025px) {
  .product-success {
      padding: 0 40px;
     
  }
}
.product-success {
  margin: 0 auto;
  box-shadow: 0 0 20px rgb(0 0 0 / 15%);
  margin-bottom: 50px;
  margin-top: 40px;
  position: relative;
  padding: 0 20px 20px;
}
.title-notification {
  display: block;
  overflow: visible;
  position: relative;
}
._notistatus {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  width: 280px;
  line-height: 46px;
  font-size: 16px;
  color: var(--primary);
  font-weight: 600;
  text-align: center;
  display: block;
  margin: auto;
  text-transform: uppercase;
  background: #fff;
  border-radius: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
._thank {
  color: var(--black);
  line-height: 22px;
  background: var(--white);
  padding-top: 40px;
  padding-bottom: 20px;
}
._title_bill {
  display: block;
  line-height: 30px;
  color: var(--black);
  background: #efefef;
  text-transform: uppercase;
  padding: 0 10px;
  font-weight: bold;
}
._info_order, ._call_ship {
  padding: 10px 0;
}
._info_order {
    border: 1px solid #ececec;
}

._result {
  margin: 10px 0;
  flex-wrap: wrap;
  display: flex;
}
._total {
  font-weight: bold;
  display: inline-block;
  flex: 1;
}
._total-prices {
  display: inline-block;
  color: var(--red);
  font-weight: 700;
}
.icon {
  padding: 10px;
  /*  */
  font-family: "icoibco" !important;
  speak: never;
  font-size: var(--fz-normal);
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-rendering: auto;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.info-order-item {
  margin-bottom: 5px;
  padding-left: 20px;
}
.info-order-item:last-child {
    margin-bottom: 0;
}
 .table-order-detail tr>td, .table-order-detail tr>th {
  margin-top: 10px;
  border: 1px solid #ececec;
  /* padding: .4rem .7rem; */
  color: #000;
}

.table-scroll>.table tr>td, .table-scroll tr>th {
  margin-top: 10px;
  border: 1px solid #ececec;
}
.table-scroll>.table {
    min-width: 700px;
}
.item-bottom {
  text-align: center;
  padding-bottom: 20px;
}

.btn__customs {
  background-color: #2f4f89;
  color: var(--white);
  position: relative;
  display: inline-block;
  font-size: var(--fz-normal);
  text-align: center;
  height: 50px;
  line-height: 48px;
  border-radius: 30px;
  outline: none;
  padding: 0 20px;
  overflow: hidden;
  border: 1px solid #2f4f89;
  cursor: pointer;
  transition: .4s all;
  text-transform: uppercase;
  min-width: 160px;
}

.btn__customs:hover {
  color: var(--white);
  background-color: var(--black);
  border: 1px solid var(--black);
}
/*  */

.navbar-vertical #img-icon{
  max-width: 24px;
  margin-right: 10px;
}
.navbar-nav-main .nav-link:hover{
  color: var(--primary);
    font-size: 16px;
    font-weight: 700;
}
#icon-cardf:hover
{

}

.col-right a img:hover {
  width: 30px;
}

.col-right a:hover {
  font-weight: 700;
}





.service-item img {
	-webkit-transform: scale(1);
	transform: scale(1);
  transition: transform 0.4s ease-in-out;
}
.service-item:hover img{
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.service-item p {
  transition: transform 0.3s ease-in-out; /* Hiệu ứng mượt trong 0.3 giây */
}

.service-item p:hover {
  transform: scale(1.2); /* Zoom lên 20% */
}

.service-item h3 {
  transition: transform 0.3s ease-in-out; /* Hiệu ứng mượt trong 0.3 giây */
}

.service-item h3:hover {
  transform: scale(1.2); /* Zoom lên 20% */
}


.box-product-btn:hover{
  color: #fff !important;
}



.item-brand-hover img {
  width: 100%;
  transition: all 0.3s;
}
.item-brand-hover:hover img {
  transform: scale(1.1);
}

.item-brand-hoverd {
  
  position: relative;
}



.item-brand-hoverd::before {

  position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);

}

.item-brand-hoverd:hover::before {
  -webkit-animation: shine .75s;
	animation: shine .75s;
  
}

@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {

  
	100% {
		left: 125%;
	}
}



.review-item{
  /* overflow: hidden; */
}



@media (min-width: 1200px) {
  .main {
    /* margin-top: 199px;
        width: 100%; */
    }
}


.iOCHGJ {
  /* position: fixed;
  z-index: 998;
  left: 0px;
  right: 0px;
  top: 0px;
  background: rgb(255, 255, 255); */
}


.item-brand-hoversp:hover img {
	opacity: 1;
	-webkit-animation: flash 1.5s;
	animation: flash 1.5s;
}
@-webkit-keyframes flash {
	0% {
		opacity: .4;
	}
	100% {
		opacity: 1;
	}
}
@keyframes flash {
	0% {
		opacity: .4;
	}
	100% {
		opacity: 1;
	}
}




/*  */

#myTab-blog{
  justify-content: center;
  position: relative;
  display: flex;
  flex: none;
  align-items: center;
  margin: 0 0 16px;
  }
  .section-title__title {
  font-style: normal;
  letter-spacing: 0em;
  text-align: center;
  font-size: 25px !important;
  font-weight: 700 !important;
  line-height: 36px !important;
  margin-bottom: 30px ;
  }
  .nav-tabs-blog>.nav-item{
  
  padding: 12px 0;
  
  }
  
  .nav-link-blog {
  display: block;
  padding: 0rem 1rem;
  font-size: 16px;
  /* font-weight: normal; */
  color: black;
  text-decoration: none;
  background: 0 0;
  border: 0;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
  
  font-weight: 400;
  line-height: 23px;
  color: rgb(129, 129, 129);
  }
  .nav-link-blog:hover{
  color: var(--primary);
  font-weight: 600;
  border-bottom: 1px solid var(--primary);
  }
  .title-countdown>.title{
  max-width: 330px;
  }
  
  
  .btn-watch:hover
  {
  background-position: left bottom !important;
  background-color: var(--primary);
  color: #fff ;
  }
  
  .btn-watch:hover a{
  color: #fff ;
  }
  .btn-watch a{
  color:#000;
  }
  .btn-watch{
  
  font-weight: 600;
  border-radius: 56px;
  border-color: var(--primary);
  
  
  
  }
  .nav-item >.active{
  color: var(--primary);
  font-weight: 600;
  
  }
  .logo-footer{
    max-width: 150px;
  }
  
  
  
  .ellipsis-3-t {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: break-word;
  }
  
  
  
  @media (max-width: 768px) {
    .nav-tabs-blog {
      display: flex ;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      flex-wrap: nowrap;
    }
    
    .nav-tabs-blog::-webkit-scrollbar {
      display: none; /* Ẩn thanh cuộn ngang trên trình duyệt WebKit */
    }
  
    .nav-item {
      flex-shrink: 0;
    }
  
    .nav-link-blog {
      padding: 10px 15px;
      white-space: nowrap !important;
    }
    .nav-link-blog:hover{
      color: var(--primary);
      font-weight: 600;
      border-bottom: none;
      }
    
  }


  @media (min-width: 992px) { 
    .category-slider {
      display: flex;
      flex-wrap: wrap;
      /* justify-content: space-around; */
  }

  .item-cate {
    flex-basis: 16.66%; 
   
      margin-bottom: 20px; 
  }
}
/*  */
.index-vouchers {
  padding-top: 30px;
}
.index-vouchers .voucher-list {
  align-items: unset;
}
.voucher-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media (min-width: 1024px) {
  .index-vouchers .voucher-item {
      width: 25%;
      min-height: 135px;
      padding: 5px;
  }
}
.voucher-item {
  width: 50%;
  flex-shrink: 0;
  padding: 20px 20px;
  display: flex;
  justify-content: center;
  position: relative;
}
.item-ribbon {
  background: #fdf2f2;
  display: flex;
  width: 100%;
  border-radius: 12px;
  border: 1px solid #cfcfcf;
}

.item-ribbon__left {
  flex: 0 0 25%;
  -ms-flex: 0 0 25%;
  max-width: 25%;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-ribbon__right {
  flex: 0 0 75%;
  -ms-flex: 0 0 75%;
  max-width: 75%;
  padding: 15px 20px;
  border-left: 1px dashed #b5b5b5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.item-ribbon__right:before {
  position: absolute;
  content: '';
  width: 14px;
  height: 9px;
  background: #fff;
  top: -1px;
  left: -8px;
  border: 1px solid #cfcfcf;
  border-top: none;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.item-info .condition {
  margin: 0;
  font-size: 12px;
}
@media (min-width: 768px) {
  .index-vouchers .item-info .title {
      font-size: 16px;
  }
}
.item-info .title {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.save-voucher-btn {
  background: #820813;
  display: inline-block;
  padding: 5px 35px;
  font-size: 14px;
  color: #fff !important;
  position: relative;
}
@media (min-width: 768px) {
  .index-vouchers .save-voucher-btn {
      padding: 1px 20px;
      font-size: 14px;
  }
}
.item-info__lower {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 15px;
}

@media (min-width: 768px) {
  .index-vouchers .item-info__lower span:not(.coupon-ani) {
      font-size: 11px;
  }
}

.view-coupon-btn .dt {
  font-size: 13px;
  display: block;
  color: #000;
  
}
.view-coupon-btn .mb {
  display: none;
}

.item-info__upper .heading {
  display: flex;
  justify-content: space-between;
}





.coupon-detail-container {
  background: #fff;
}
.blog-detail{
  box-sizing: content-box;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  position: relative;
  width: 90%;
}
.bg-blog{
  box-sizing: content-box;
  margin-left: auto;
  margin-right: auto;
  max-width: 1024px;
  position: relative;
  width: 90%;
}
#title-blog{
  box-sizing: content-box;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  position: relative;
  width: 90%;
}



/*quick alo*/
.quick-social {
    position: fixed;
    right: 15px;
    bottom: 100px;
    z-index: 999;
}
.quick-alo-phone {
/*    position: fixed;*/
/*    right: 150px*/
    background-color: transparent;
    width: 82px;
    height: 64px;
    margin-top: 15px;
    cursor: pointer;
    z-index: 999!important;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -webkit-transition: visibility .5s;
    -moz-transition: visibility .5s;
    -ms-transition: visibility .5s;
    -o-transition: visibility .5s;
    transition: visibility .5s;
}
.quick-alo-phone.show {
    opacity: 1;
    visibility: visible;
}

.quick-alo-phone.quick-alo-green .quick-alo-ph-circle {
    border-color: #2aa3d4;
    opacity: .5
}

.quick-alo-phone.quick-alo-viber .quick-alo-ph-circle {
    border-color: #7f4da0;
    opacity: .5
}

.quick-alo-ph-circle {
    position: absolute;
    top: 0;
    left: 0;

    width: 90px;
    height: 90px;
    
    background-color: transparent;
    border: 2px solid #ff0000;
    border-radius: 100%;
    animation: 1.2s ease-in-out infinite quick-alo-circle-anim;
    transition: .5s;
    transform-origin: 50% 50%
}

.quick-alo-phone.quick-alo-green .quick-alo-ph-circle-fill {
    background-color: rgba(0,175,242,.5);
    background-color: #a6e3fa 9;
    opacity: 1!important
}

.quick-alo-phone.quick-alo-viber .quick-alo-ph-circle-fill {
    background-color: #7f4da070;
    opacity: 1!important
}

.quick-alo-ph-circle-fill {
    position: absolute;
    top: 15px;
    left: 15px;

    width: 60px;
    height: 60px;
    
    background-color: #ff2323;
    border: 2px solid transparent;
    border-radius: 100%;
    animation: 2.3s ease-in-out infinite quick-alo-circle-fill-anim;
    transition: .5s;
    transform-origin: 50% 50%
}

.quick-alo-phone.quick-alo-green .quick-alo-ph-img-circle,.quick-alo-phone.quick-alo-green.quick-alo-hover .quick-alo-ph-img-circle,.quick-alo-phone.quick-alo-green:hover .quick-alo-ph-img-circle,.quick-alo-phone.quick-alo-viber .quick-alo-ph-img-circle,.quick-alo-phone.quick-alo-viber.quick-alo-hover .quick-alo-ph-img-circle,.quick-alo-phone.quick-alo-viber:hover .quick-alo-ph-img-circle {
    background-color: #fff
}

.quick-alo-ph-img-circle {
    position: absolute;
    top: 25px;
    left: 25px;

    width: 40px;
    height: 40px;
    
    background: url("../img/message503.svg") center center no-repeat rgba(30,30,30,.1);
    border: 2px solid transparent;
    opacity: 1;
    border-radius: 100%;
    animation: 1s ease-in-out infinite quick-alo-circle-img-anim;
    transform-origin: 50% 50%;
    background-size: 50%
}

.quick-alo-ph-img-circle.quick-alo-ph-img-circle-zalo {
    background-image: url('../img/zalo_cicle_icon.png');
    background-size: 100% 100%
}

.quick-alo-ph-img-circle.quick-alo-ph-img-circle-viber {
    background-image: url('../img/icon-viber.png');
    background-size: 100% 100%
}

.quick-alo-ph-img-circle.quick-alo-ph-img-circle-phone {
    background-image: url('../img/phone-icon.png');
    background-size: 100% 100%
}

.quick-alo-ph-img-circle.quick-alo-ph-img-circle-email {
    background-image: url('../img/icon-email.png');
    background-size: 100% 100%
}
.quick-alo-ph-img-circle.quick-alo-ph-img-circle-messenger {
    background-image: url('../img/icon-messenger.png');
    background-size: 100% 100%
}
.quick-alo-phone.quick-alo-green .quick-alo-ph-img-circle.quick-alo-ph-img-circle-location {
    background-image: url('../img/icon-map-1.png');
    background-size: 100% 100%;
    border-radius: 0;
    background-color: unset;
}

.quick-social-close {
    width: 90px;
    height: 90px;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    display: none;
}
.quick-social-close .img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: url('../img/icon-chat-3.png?ver=1.00') no-repeat center center;
    background-size: 34px;
    background-color: #03ad94;
}
.quick-social-close.active .img{
    background: url('../img/icon-close.png?ver=1.00') no-repeat center center;
    background-size: 30px;
    background-color: #03ad94;
}

.quick-social-close i {
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

@media(max-width: 767px)
{
    .quick-social {
      bottom: 180px;
        /*bottom: 10px;
        right: 5px;*/
    }
    .quick-social-close {
        display: flex;
    }

    .quick-alo-phone {
/*        opacity: 0;*/
/*        visibility: hidden;*/
    }
}

@keyframes quick-alo-circle-anim {
    0% {
        -webkit-transform: rotate(0) scale(.5) skew(1deg);
        -moz-transform: rotate(0) scale(.5) skew(1deg);
        -ms-transform: rotate(0) scale(.5) skew(1deg);
        -o-transform: rotate(0) scale(.5) skew(1deg);
        transform: rotate(0) scale(.5) skew(1deg);
        opacity: .1
    }

    30% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        -moz-transform: rotate(0) scale(.7) skew(1deg);
        -ms-transform: rotate(0) scale(.7) skew(1deg);
        -o-transform: rotate(0) scale(.7) skew(1deg);
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .5
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        -moz-transform: rotate(0) scale(1) skew(1deg);
        -ms-transform: rotate(0) scale(1) skew(1deg);
        -o-transform: rotate(0) scale(1) skew(1deg);
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .1
    }
}

@keyframes quick-alo-circle-fill-anim {
    0%,100% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        -moz-transform: rotate(0) scale(.7) skew(1deg);
        -ms-transform: rotate(0) scale(.7) skew(1deg);
        -o-transform: rotate(0) scale(.7) skew(1deg);
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        -moz-transform: rotate(0) scale(1) skew(1deg);
        -ms-transform: rotate(0) scale(1) skew(1deg);
        -o-transform: rotate(0) scale(1) skew(1deg);
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .2
    }
}

@keyframes quick-alo-circle-img-anim {
    0%,100%,50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        -moz-transform: rotate(0) scale(1) skew(1deg);
        -ms-transform: rotate(0) scale(1) skew(1deg);
        -o-transform: rotate(0) scale(1) skew(1deg);
        transform: rotate(0) scale(1) skew(1deg)
    }

    10%,30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
        -moz-transform: rotate(-25deg) scale(1) skew(1deg);
        -ms-transform: rotate(-25deg) scale(1) skew(1deg);
        -o-transform: rotate(-25deg) scale(1) skew(1deg);
        transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20%,40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
        -moz-transform: rotate(25deg) scale(1) skew(1deg);
        -ms-transform: rotate(25deg) scale(1) skew(1deg);
        -o-transform: rotate(25deg) scale(1) skew(1deg);
        transform: rotate(25deg) scale(1) skew(1deg)
    }
}

/*quick alo*/