* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.adm-glyphicon span {
  background: url("./img/setting.png");
  background-size: cover;
  width: 12px;
  height: 12px;
  display: block;
  float: left;
}

:root {
  --primary-color: #000;
  --second-color: #43a047;
  --third-color: #222;
  --fourth-color: #ffffff;
  --fifth-color: #e1e1e1;
  --eighth-color: #f3f3f3;
  --seventh-color: #e1e1e1;
  --sixth-color: #888;
  --nineth-color: #c62828;
  --tenth-color: #333;

  --primary-color-hover: #555555;
  --second-color-hover: #43a047;
  --third-color-hover: #f5f5f5;

  --primary-background: #43a047;
  --second-background: #888888;
  --third-background: rgba(24,24,24,.3);
  --fourth-background: #f2f2f2;
  --fifth-background: rgba(255,255,255,.3);
  --sixth-background: #0c79d5;
  
  --color-gach: #A6D7A8;

  --box-shadow-1: rgba(0,0,0,0.07);
  --box-shadow-2: rgba(173, 173, 173, 0.25);

  --icon-color-1: #88b643;
  --icon-color-2: #a4004f;
}

body {
  font-family: "Roboto Serif", sans-serif;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--third-color);
}

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

a {
  color: var(--primary-color);
  transition: all 0.3s linear;
}

a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

a:focus {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 400;
}

p {
  margin: 0;
}

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

img.lazy {
  display: block;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

button {
  border: none;
  border-radius: 0;
}

.wrap {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* ----------------------------------header--------------------------------- */
body.is-affix {
  padding-top: 120px;
}

.toiuu .owl-carousel {
  display: block;
}

.toiuu .owl-carousel .slider-item {
  display: none;
}

.toiuu .owl-carousel .slider-item:first-child {
  display: block !important;
}

.header {}

.header-top {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .07);
  transition: 0.3s linear;
  position: relative;
  z-index: 100;
}


.header-top .emailButton {
  font-size: 14px;
}

.header-top .emailButton svg {
  margin-right: 5px;
  vertical-align: middle;
}

.header-top .phoneButton {
  margin-left: 15px;
  font-size: 14px;
}

.header-top .phoneButton svg {
  margin-right: 5px;
  vertical-align: middle;
}

.header-top-right {
  text-align: right;
  display: inline-block;
  float: right;
}

.header-top-right a {
  display: inline-block;
  padding-left: 15px;
}

.header-top-right a svg {
  vertical-align: middle;
}

.header.affix .header-top {
  /* margin-bottom: 80px; */
  display: none;
}

.header-bot {
  height: 80px;
  position: relative;
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
  z-index: 99;
}

.header.affix {
  z-index: 99;
}

.header.affix .header-bot {
  position: fixed;
  animation: headerdown 0.5s linear;
  top: 0;
  width: 100%;
  background-color: white;
  
}

.header-bot .logo-header {
  line-height: 80px;
  display: inline-block;
}

.header-bot .logo-header img {
  height: 54px;
  width: auto;
}

.header-bot .header-navbar {
  text-align: right;
}

.header-bot .header-navbar>ul {}

.header-bot .header-navbar>ul>li {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  position: relative;
}

.header-bot .header-navbar>ul>li:hover>a,
.header-bot .header-navbar>ul>li.active>a {
  color: var(--second-color-hover);
}

.header-bot li .sub-menu {
  position: absolute;
  background: #fff;
  text-align: left;
  width: 238px;
  padding: 15px;
  opacity: 0;
  transition: 0.3s linear;
  pointer-events: none;
}

.header-bot .header-navbar>ul>li:hover>.sub-menu {
  opacity: 1;
  pointer-events: all;

}

.header-bot li .navbar-item {
  line-height: 80px;
  padding: 0 12px;
}


.sub-menu>ul {}

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

.sub-menu>ul li a {
  line-height: 36px;
}

.sub-menu>ul li a:hover,
.sub-menu>ul li.active a {
  color: var(--second-color);
}

.fomr-search {
  padding: 10px 0;
  margin-top: 10px;
}

.fomr-search input {
  width: 70%;
  float: left;
  margin-right: 15px;
  height: 38px;
  border-radius: 0;
}

.fomr-search .btn-search {
  width: calc(30% - 15px);
  line-height: 38px;
  background: var(--second-color);
  color: white;
}

/* menu-mobile */
.menu-mobile {
  position: fixed;
  background-color: var(--fourth-color);
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  z-index: 99999;
  padding: 50px 25px;
  transition: 0.2s linear;
  opacity: 0;
}

.menu-mobile.active {
  opacity: 1;
  left: 0;
}

.menu-m-close {
  position: absolute;
  top: 15px;
  right: 15px;
}

.menu-logo {
  text-align: center;
  margin-bottom: 15px;
}

.menu-logo img {
  max-width: 120px;
}

.level-1 {
  margin-top: 15px;
}

.level-2 {
  display: none;
}

.item-level-1 {
  position: relative;
}

.item-level-1 .submenu {
  position: absolute;
  right: 0;
  top: 5px;
}

.item-level-1 a {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}

.item-level-2 a {
  padding-left: 15px;
  color: var(--color-text);
}

.lang {
  position: relative;
  float: right;
  display: inline-block;
  margin-right: 15px;
}

.lang-item svg {
  vertical-align: middle;
}
.lang-list {
  width: 110px;
}
.lang-item {
  display: inline-block;
  margin-left: 10px;
}


/* ---------------------------header-mb-------------------------------- */
.btn-icon-menu {
  display: none;
  z-index: 9;
}

/* ---------------------------menu-mobile-------------------------------- */

.backdrop {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  background: var(--third-background);
  z-index: 99999999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}

.backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* ---------------------------popup-cart-------------------------------- */
.popup-cart {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100%;
  width: 400px;
  padding: 30px;
  background-color: var(--fourth-color);
  transition: all 0.5s linear;
  opacity: 0;
  visibility: hidden;
  z-index: 999999999;
}

.popup-cart.active {
  right: 0;
  opacity: 1;
  visibility: visible;
}

.popup-cart-title {
  text-align: center;
  margin-bottom: 40px;
}

.popup-cart-title .icon-cart {
  position: relative;
}

.popup-cart-title .icon-cart .tool-quantity {
  position: absolute;
  top: 0;
  right: 41%;
  background-color: var(--seventh-color);
}

.popup-cart-title .icon-cart .tool-quantity span {
  color: var(--primary-color);
}

.popup-cart-title h2 {
  font-size: 18px;
  line-height: 18px;
  margin-top: 15px;
  text-transform: uppercase;
  font-weight: 400;
}

.cart-pop-item {
  position: relative;
  padding: 20px 12px;
  float: left;
  width: 100%;
  border-bottom: 1px solid var(--seventh-color);
}

.cart-pop-item .cart-pop-img {
  float: left;
  width: 70px;
  height: 70px;
  margin-right: 20px;
}

.cart-pop-item .cart-pop-content {
  float: left;
}

.cart-pop-item .cart-pop-content h3 {
  font-size: 17px;
  line-height: 24px;
  margin-bottom: 3px;
}

.cart-pop-item .cart-pop-content h3:hover a {
  color: var(--primary-color-hover);
}

.cart-pop-item .cart-pop-quantity span {
  font-size: 15px;
  line-height: 22px;
}

.cart-pop-item .cart-pop-remove {
  position: absolute;
  top: 20px;
  right: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}

.cart-pop-item .cart-pop-remove a:hover {
  color: var(--primary-color-hover);
}

.cart-pop-item:hover .cart-pop-remove {
  opacity: 1;
  visibility: visible;
}

.popup-cart .close-menu {
  left: -48px;
}

.popup-cart-total {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 30px 30px;
  width: 100%;
}

.popup-cart-total span {
  font-size: 15px;
  text-transform: uppercase;
}

.popup-cart-total span.cart-total {
  float: right;
}

.popup-cart-total a {
  display: inline-block;
  width: 100%;
  padding: 14px 23px;
  text-align: center;
  background-color: var(--fourth-background);
  text-transform: uppercase;
}

.cart-list-pop {
  float: left;
  max-height: 443px;
  overflow-y: auto;
  width: 100%;
}

.cart-total-title {
  margin-bottom: 20px;
}

.footer-top {
  padding: 40px 0;
  background-color: var(--primary-background);
  border-bottom: 1px solid var(--fourth-color);
}

.footer-top .footer-top-title h2 {
  font-size: 22px;
  color: var(--fourth-color);
}

.footer-top .form-subcriber {
  position: relative;
}

.footer-top .form-subcriber input {
  width: 100%;
  height: 40px;
  border: none;
  padding-right: 50px;
  padding-left: 17px;
}

.footer-top .form-subcriber button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 15px;
  font-size: 12px;
  line-height: 20px;
  background-color: unset;
  text-transform: uppercase;
  border-left: 1px solid var(--fourth-background);
}

.footer-top .footer-social {
  text-align: right;
}

.footer-top .social-item {
  display: inline-block;
  margin: 0 10px;
}

.footer-top .social-item:last-child {
  margin-right: 0;
}

.footer-top .social-item svg {
  color: var(--fourth-color);
  transition: all 0.3s linear;
}

.footer-top .social-item a:hover svg {
  color: var(--primary-color-hover);
}

.footer-main {
  padding: 30px 0 15px 0;
  background-color: var(--primary-background);
}

.footer-main .footer-cate {
  text-align: center;
}

.footer-main .footer-cate-item {
  display: inline-block;
}

.footer-main .footer-cate-item a {
  display: inline-block;
  padding: 15px 17px;
  font-size: 16px;
  color: var(--fourth-color);
}

.footer-main .footer-cate-item a:hover {
  color: var(--primary-color-hover);
}

.footer-payment-method {
  line-height: 52px;
}

.footer-payment-method img {
  height: auto;
}

.logo-footer img {
  width: auto;
  height: auto;
  max-width: 100%;
}

/* --------.tab-fixed-m header------- */
.tab-fixed-m {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--fourth-color);
  z-index: 999999;
  padding: 10px 0;
  box-shadow: 0 -2px 5px -2px var(--box-shadow-1);
}

.tab-fixed-m .sticky-menu {
  position: relative;
  display: block;
  text-align: center;
  width: calc(100% / 4);
  float: left;
}

.tab-fixed-m .sticky-menu .title {
  display: block;
  font-size: 10px;
  color: var(--third-color);
  padding-top: 5px;
  font-size: 13px;
}

.tab-fixed-m .sticky-menu-icon {
  height: 21px;
}

.sticky-more::before {
  content: "";
  position: absolute;
  width: 6.5px;
  height: 6.5px;
  top: 3px;
  left: 23px;
  background: var(--second-color);
  border-radius: 50%;
}

.sticky-more::after {
  content: "";
  position: absolute;
  height: 14px;
  width: 14px;
  border-radius: 100%;
  top: -1px;
  left: 19px;
  border: 1px solid var(--second-color);
  animation: pulsate 1s ease-out;
  animation-iteration-count: infinite;
  opacity: 0;
}

.sticky-more.active .icon-more,
.sticky-more .more-close {
  display: none;
}

.sticky-more.active .more-close {
  display: inline-block;
}

.sticky-more.active::after,
.sticky-more.active::before {
  display: none;
}

.mobile-boxpage {
  position: fixed;
  top: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--fourth-color);
  z-index: 20;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s linear;
  height: 100%;
  padding: 20px;
  z-index: 9999;
}

.mobile-boxpage.active {
  visibility: visible;
  opacity: 1;
  top: 0;
}

.mobile-boxpage .mobile-boxpage-title {
  text-align: center;
  margin-bottom: 100px;
}

.mobile-boxpage .mobile-boxpage-title svg {
  margin-bottom: 10px;
}

.mobile-boxpage .mobile-boxpage-title h2 {
  text-transform: uppercase;
  font-size: 17px;
  line-height: 17px;
}

.mobile-boxpage .mobile-boxpage-item {
  text-align: center;
  padding: 8px 0;
}

.mobile-boxpage .mobile-boxpage-item a {
  text-transform: uppercase;
  font-size: 13px;
  line-height: 26px;
}

/* ------------------------slider-home------------------------ */
.slider-home {
  position: relative;
  min-height: 600px;
}

.slider-home .slider-item {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 650px;
}

.slider-home .slider-content {
  position: absolute;
  top: 45%;
  text-align: center;
  width: 100%;
}

.slider-home .slider-content h2 {
  font-size: 42px;
  color: var(--third-color);
  margin-bottom: 5px;
}

.slider-home .slider-content p {
  font-size: 16px;
  color: var(--primary-color-hover);
  margin-bottom: 30px;
}

.slider-home .slider-content a {
  padding: 6px 33px;
  color: var(--fourth-color);
  display: inline-block;
  background-color: var(--primary-background);
  text-transform: uppercase;
  font-size: 16px;
  line-height: 26px;
}

.slider-home .slider-content a:hover {
  background-color: var(--primary-color-hover);
}

.slider-home .owl-nav {
  position: absolute;
  top: 48%;
  width: 100%;
}

.slider-home .owl-nav button {
  width: 50px;
  height: 50px;
  line-height: 62px !important;
  text-align: center;
  background-color: var(--fifth-color) !important;
  transition: all 0.3s linear;
}

.slider-home .owl-nav button:hover {
  opacity: 0.6;
}

.slider-home .owl-nav .owl-next {
  float: right;
}

.slider-home .owl-nav svg {
  color: var(--primary-color);
}

.slider-home .owl-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.slider-home .owl-dots button {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  border-radius: 100%;
  background-color: var(--third-color);
}

.slider-home .owl-dots button.active {
  opacity: 0.5;
}

/* ----------------------home-1--------------------------------------- */
.home-1 {
  padding-top: 20px;
  padding-bottom: 55px;
}

.home-1 .home-1-item img {
  width: auto;
  max-width: 60px;
  max-height: 60px;
  margin-right: 20px;
  display: inline-block;
  float: left;
}

.home-1 .home-1-item h3 {
  font-size: 18px;
  display: inline-block;
  float: left;
}

/* -------------------------home-main--------------------------------- */
.home-main {
  padding: 15px 0;
}

/* -----------------------------home-sitebar-------------------------------- */
.home-sidebar h2,
.sidebar-product-detail h2,
.sidebar-new h2 {
  font-size: 14px;
  padding-bottom: 14px;
  margin-bottom: 19px;
  border-bottom: 1px solid var(--fifth-color);
  text-transform: uppercase;
}

.home-cate {
  margin-bottom: 62px;
  float: left;
  width: 100%;
}

.home-cate-list li {
  position: relative;
}

.home-cate-list a {
  display: inline-block;
  position: relative;
  color: var(--sixth-color);
  padding: 5px 0;
  font-size: 16px;
  line-height: 20px;
}

.home-cate-list .home-cate-item:first-child a {
  padding-top: 0;
}

.home-cate-list a::before {
  content: "";
  position: absolute;
  bottom: 4px;
  width: 0;
  height: 1px;
  left: 0;
  background-color: var(--primary-background);
  transition: all 0.3s linear;
}

.home-cate-list .home-cate-item:hover > a::before,
.home-cate-child li:hover > a::before {
  width: 100%;
}

.home-cate-list .home-cate-item:hover > a,
.home-cate-child li:hover > a {
  color: var(--primary-color);
}

.home-cate-list li > svg {
  position: absolute;
  right: 0;
  top: 5px;
  color: var(--sixth-color);
  cursor: pointer;
}

.home-cate-child {
  padding-left: 10px;
}

.home-cate-child li a {
  font-size: 14px;
  padding: 5px 0 !important;
}

.home-child-item.active a {
  color: var(--primary-color);
}

.home-child-item.active a::before {
  width: 100%;
}

.home-cate-list li svg.collapsed ~ a::before {
  width: 100%;
  color: var(--primary-color);
}

.home-cate-item-title.active,
.home-cate-item.active .home-cate-item-title
{
  color: var(--primary-color);
}

.home-cate-item-title.active::before,
.home-cate-item.active .home-cate-item-title::before
{
  width: 100%;
}

/* -------------------featured-products---------------- */
.featured-product-item {
  margin-bottom: 23px;
  float: left;
  width: 100%;
}

.featured-product-img {
  width: 70px;
  height: 70px;
  float: left;
  margin-right: 20px;
}

.featured-product-content {
  float: left;
}

.featured-product-content h3 {
  font-size: 16px;
  margin-bottom: 3px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-product-content h3:hover a {
  color: var(--sixth-color);
}

.featured-product-content span {
  font-size: 14px;
  line-height: 19px;
  color: var(--sixth-color);
}

.featured-product-content .price-old {
  text-decoration: line-through;
}

.featured-product-content .price-new {
  color: var(--second-color-hover);
  margin-left: 5px;
}

.home-featured-product {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

.home-banner-sidebar {
  position: relative;
  float: left;
  width: 100%;
  height: 330px;
  margin-bottom: 20px;
  overflow: hidden;
}

.home-banner-sidebar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: .6;
  bottom: 0;
  background-color: #086C41;
  z-index: 1;
}

.home-banner .home-banner-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 120%;
  height: 100px;
  background: var(--fifth-background);
  transition: all 0.6s linear;
  z-index: 1;
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translateY(-150%);
  backface-visibility: hidden;
}

.home-banner .home-banner-item img {
  transition: all 0.7s ease-in-out;
}

.home-banner .home-banner-item:hover img {
  transform: scale(1.15);
}

.home-banner .home-banner-item:hover::before {
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translateY(200%);
  left: -100%;
  top: 100%;
}

.home-banner-sidebar .home-banner-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 2;
  padding: 20px 15px;
}

.home-banner-content img {
  width: 76px;
  margin: 0 auto 16px;
}

.home-banner-content h3 {
  font-size: 24px;
  line-height: 29px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--fourth-color);
}

.home-banner-content p,
.home-sidebar-rate p,
.home-main-title p,
.home-categories-title p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 10px;
  color: var(--primary-color-hover);
}

.home-banner-content p {
  color: var(--fourth-color);
}

.home-banner-content a {
  padding: 10px 30px;
  display: inline-block;
  color: var(--fourth-color);
  background-color: var(--primary-background);
  text-transform: uppercase;
  line-height: 12px;
  font-size: 12px;
}

.home-banner-content a:hover {
  background-color: var(--primary-color-hover);
}

.home-sidebar-rate {
  float: left;
  width: 100%;
}

.home-sidebar-rate p {
  margin-bottom: 20px;
}

.home-sidebar-rate img {
  width: auto;
  max-width: 70px;
  max-height: 70px;
  margin-bottom: 20px;
}

.home-sidebar-rate h3 {
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
}

.home-banner-award::before {
  display: none;
}

.home-banner-award {
  border: 1px solid #CFD8DB;
  height: auto;
}

.home-banner-award h3,
.home-banner-award p
{
  color: var(--tenth-color);
}

.home-banner-award .home-banner-content {
  position: relative;
  top: 0;
  transform: translateY(0);
  padding: 26px 35px 10px 42px;
}

/* ------------------------------home-main-------------------------------- */
.home-main-title,
.home-categories-title,
.product-related-title {
  margin-bottom: 30px;
  text-align: center;
}

.home-main-title h2,
.home-categories-title h2,
.product-related-title h2 {
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 24px;
  text-transform: uppercase;
}

.home-list-product {
  margin-bottom: 30px;
}

.home-list-product-owl {
  position: relative;
}

.home-list-product-owl:hover .owl-nav button.owl-prev {
  left: -40px;
  opacity: 1;
  visibility: visible;
}

.home-list-product-owl:hover .owl-nav button.owl-next {
  right: -40px;
  opacity: 1;
  visibility: visible;
}

.home-list-product .owl-nav button.owl-prev {
  position: absolute;
  top: 48%;
  left: -45px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}

.home-list-product .owl-nav button.owl-next {
  position: absolute;
  top: 48%;
  right: -45px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}

/* ---------------------------------product-item-------------------------------- */
.product-item {
  margin-bottom: 30px;
}

.product-item:hover .btn-quickview {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
}

.product-item:hover .btn-wishlist {
  opacity: 1;
  visibility: visible;
}

.product-item .product-img {
  position: relative;
  margin-bottom: 15px;
}

.product-item .product-img img {
  border: 1px solid var(--fifth-color);
  min-height: 333px;
  max-height: 333px;
}

.product-item .btn-quickview {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}

.product-item .btn-quickview a {
  display: inline-block;
  width: 80%;
  height: 36px;
  text-align: center;
  line-height: 36px;
  background-color: var(--primary-background);
  color: var(--fourth-color);
  text-transform: uppercase;
}

.product-item .btn-quickview:hover a {
  background-color: var(--tenth-color);
}

.product-item .btn-wishlist {
  position: absolute;
  top: 18px;
  right: 18px;
  opacity: 0;
  visibility: hidden;
}

.product-item .btn-wishlist.active svg {
  color: var(--primary-color);
}

.product-item .btn-wishlist:hover {
  opacity: 0.6;
}

.product-item .product-content {
  text-align: center;
}

.product-sale {
  position: absolute;
  left: 20px;
  top: 20px;
  padding: 3px 8px;
  font-size: 12px;
  line-height: 14px;
  text-transform: uppercase;
  color: var(--fourth-color);
  background-color: var(--nineth-color);
}

.product-content h3,
.product-content p,
.product-content span,
.product-like-content span {
  font-size: 16px;
  line-height: 24px;
}

.product-content h3:hover a {
  color: var(--second-color-hover);
}

.product-content p {
  color: var(--primary-color-hover);
}

.product-content span.price-old,
.product-like-content span.price-old {
  text-decoration: line-through;
  margin-right: 3px;
}

.product-content span.price-new,
.product-like-content span.price-new,
.product-content span.price-new a {
  color: var(--second-color-hover);
}

.product-content .btn-addtocart {
  margin-top: 15px;
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--fourth-background);
  text-transform: uppercase;
  font-size: 12px;
  line-height: 14px;
}

.product-content .btn-addtocart:hover {
  background-color: var(--primary-background);
  color: var(--fourth-color);
}

/* -----------------------------------home-banner-------------------------------- */
.home-banner {
  margin-top: 15px;
  margin-bottom: 40px;
}

.home-banner .home-banner-item {
  padding: 12px 0 0 12px;
  position: relative;
  overflow: hidden;
}

.home-banner .home-banner-item.home-banner-2 {
  padding-left: 0;
  padding-right: 12px;
}

.home-banner-1 .home-banner-content {
  position: absolute;
  top: 25%;
  right: 20px;
  text-align: right;
}

.home-banner-2 .home-banner-content {
  position: absolute;
  top: 39%;
  text-align: center;
  width: 100%;
}

.home-banner-item .home-banner-content h3 {
  font-size: 24px;
  line-height: 29px;
}

.home-banner-item .home-banner-content p {
  color: var(--third-color);
  font-size: 18px;
}

/* ----------------------------------------home-categories---------------------------------- */
.home-categories {
  padding-bottom: 90px;
}

.home-categories-item {
  float: left;
  width: 100%;
}

.home-categories-img {
  float: left;
  width: 190px;
  padding: 10px;
}

.home-categories-img img {
  border: 1px solid var(--fifth-color);
}

.home-categories-content {
  width: calc(100% - 190px);
  float: left;
  padding: 10px;
  padding-left: 20px;
  margin-bottom: 28px;
}

.home-categories-content h3 {
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 9px;
}

.home-categories-list li a {
  font-size: 14px;
  line-height: 16px;
  color: var(--sixth-color);
  padding-bottom: 14px;
  display: inline-block;
}

.home-categories-list li:hover a {
  color: var(--primary-color);
}

/* -------------------------------quickview------------------------------- */
.quickview {
  padding: 0;
}

.product-view {
  overflow-y: auto;
  width: 100%;
  height: 100%;
  padding: 15px;
}

.product-view .owl-nav .owl-next {
  position: absolute;
  top: 48%;
  right: 15px;
}

.product-view .owl-nav .owl-prev {
  position: absolute;
  top: 48%;
  left: 15px;
}

.product-view img {
  margin-bottom: 24px;
  height: auto;
}

.product-view h3 {
  line-height: 30px;
  margin-bottom: 12px;
}

.product-view .product-view-price {
  margin-bottom: 12px;
}

.product-view-price span {
  font-size: 19px;
  line-height: 24px;
  color: var(--sixth-color);
}

.product-view-price .price-old {
  text-decoration: line-through;
  margin-right: 3px;
}

.product-view-price .price-new {
  color: var(--second-color-hover);
}

.product-view-des p {
  font-size: 16px;
  line-height: 26px;
}

.product-view table {
  width: 100%;
  margin-bottom: 15px;
}

.product-view table > tbody > tr {
  border-bottom: 1px solid var(--fifth-color);
}

.product-view table > tbody > tr > td {
  font-size: 16px;
  line-height: 26px;
  padding: 16px 0;
}

.product-view table > tbody > tr > td.extra-value {
  text-align: right;
}

.product-view-quantity .quantity {
  margin-right: 20px;
  display: inline-block;
  float: left;
}

.product-view-quantity button,
.cart-table .quantity button {
  padding: 0 4px;
  background-color: unset;
  border: 1px solid var(--fifth-color);
  float: left;
  font-size: 16px;
  font-weight: 700;
  height: 38px;
  color: var(--primary-color-hover);
  width: 22px;
}

.product-view-quantity input,
.cart-table .quantity input {
  width: 45px;
  height: 38px;
  float: left;
  border: 1px solid var(--fifth-color);
  text-align: center;
  pointer-events: none;
}

.product-view-quantity .quantity-down,
.cart-table .quantity .quantity-down {
  margin-right: -1px;
}

.product-view-quantity .quantity-up,
.cart-table .quantity .quantity-up {
  margin-left: -1px;
}

.product-view-quantity .btn-addtocart {
  display: inline-block;
  float: left;
}

.product-view-quantity .btn-addtocart a {
  display: inline-block;
  background-color: var(--primary-background);
  color: var(--fourth-color);
  text-transform: uppercase;
  padding: 13px 30px;
  font-size: 12px;
  line-height: 12px;
  text-align: center;
}

.product-view-quantity .btn-addtocart a svg {
  margin-right: 4px;
}

.product-view-quantity .btn-addtocart a:hover {
  background-color: var(--primary-color-hover);
}

.product-view .btn-wishlish.active {
  color: var(--second-color-hover);
}

.product-view .btn-wishlish.active svg {
  color: var(--second-color-hover);
}

.product-view .btn-wishlish {
  display: inline-block;
  margin-top: 22px;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 10px;
}

.product-view .btn-wishlish svg {
  margin-right: 5px;
  margin-bottom: -2px;
}

.product-social h4 {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 12px;
}

.product-social .product-categories h4 a {
  margin-left: 5px;
  color: var(--sixth-color);
}

.product-social .product-categories h4 a:hover {
  color: var(--primary-color);
}

.product-social .social-item h4 {
  display: inline-block;
}

.product-social .socials {
  display: inline-block;
}

.product-social .social-item li {
  display: inline-block;
  padding: 0 5px;
}

.product-social .social-item li svg {
  color: var(--sixth-color);
  transition: all 0.3s linear;
}

.product-social .social-item li svg:hover {
  color: var(--primary-color);
}

.product-view .btn-view {
  font-size: 16px;
  line-height: 26px;
  text-decoration: underline;
}

.product-view .btn-view:hover {
  color: var(--primary-color-hover);
}

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 0;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 50px;
  background-color: unset;
  box-shadow: inset 0 0 0 1px var(--fifth-color);
  z-index: 999;
  transition: all 0.3s linear;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
}

.back-to-top.active {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
}

.back-to-top svg {
  color: var(--third-color);
  transition: all 0.3s linear;
  margin-bottom: -3px;
}

.back-to-top:hover svg {
  animation: animArrow 1s infinite;
}

/* -----------------------------------page-heading---------------------------------- */
.page-heading {
  padding: 13px 0;
}

.breadcrumb-page li {
  display: inline-block;
  font-size: 16px;
  line-height: 30px;
}

.breadcrumb-page li a {
  color: var(--sixth-color);
}

.breadcrumb-page li:not(:last-child)::after {
  content: url(./img/icon-next.png);
  margin: 0 8px;
}

.breadcrumb-page li:last-child a {
  pointer-events: none;
  color: var(--primary-color);
}

.breadcrumb-page li a {
  transition: all 0.2s linear;
}

.breadcrumb-page li:hover a {
  color: var(--primary-color);
}

/* --------------------------------product-list---------------------------- */
.home-sidebar h2 svg {
  float: right;
}

.home-sidebar h2 .plus {
  display: none;
}

.home-sidebar h2 .minus {
  margin-top: 5px;
}

.home-sidebar h2.collapsed .plus {
  display: block;
}

.home-sidebar h2.collapsed .minus {
  display: none;
}

.sidebar-product .home-cate {
  margin-bottom: 0;
}

.sidebar-product .home-cate-list {
  margin-bottom: 62px;
}

.sidebar-product .price-range {
  width: 96%;
  margin-left: 4px;
  background-color: var(--sixth-color);
}

.sidebar-product .filter {
  margin-bottom: 20px;
}

.sidebar-product .filter-price-title span,
.sidebar-product .filter-price-title a {
  font-size: 16px;
  line-height: 26px;
}

.sidebar-product .filter-price-title a {
  float: right;
  text-transform: uppercase;
}

.sidebar-product .filter-price-title a:hover {
  color: var(--second-color-hover);
}

.sidebar-product .filter-price-title {
  margin-bottom: 62px;
}

.ui-slider-horizontal {
  height: 2px;
}

.ui-widget.ui-widget-content {
  border-color: var(--sixth-color) !important;
}

.ui-slider .ui-slider-handle {
  width: 12px;
  height: 12px;
  border-radius: 100% !important;
  border: 2px solid var(--primary-color);
  background-color: var(--primary-background);
}

.ui-slider .ui-slider-range {
  border-color: var(--primary-color);
  background-color: var(--primary-background);
  height: 2px;
}

/* -----------------------------filter-brands----------------------------- */
.list-brand {
  margin-bottom: 62px;
}

.list-brand .brand-item a {
  display: inline-block;
  font-size: 16px;
  line-height: 23px;
  padding: 5px 0;
  color: var(--sixth-color);
}

.list-brand .brand-item.active a {
  color: var(--second-color-hover);
}

.list-brand .brand-item a:hover {
  color: var(--primary-color);
}

/* -------------------------------product-list-------------------------------------- */
.product-banner {
  position: relative;
  height: 156px;
  margin-bottom: 12px;
}

.product-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--primary-background);
  opacity: 0.5;
  z-index: 1;
}

.product-banner .product-banner-title {
  position: absolute;
  left: 0;
  top: 28%;
  width: 50%;
  text-align: center;
  z-index: 2;
}

.product-banner .product-banner-title h2 {
  font-size: 24px;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--fourth-color);
}

.product-sort {
  margin-bottom: 12px;
  float: left;
  width: 100%;
}

.product-sort .form-filter {
  position: relative;
  display: inline-block;
  float: left;
}

.product-sort .select-title {
  position: relative;
  display: inline-block;
  float: left;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 220px;
  padding: 0 46px 0 16px;
  height: 30px;
  line-height: 28px;
  border: 1px solid var(--fifth-color);
  font-size: 16px;
  color: var(--sixth-color);
}

.product-sort .form-filter.open .select-title {
  background-color: var(--second-color-hover);
  color: var(--fourth-color);
}

.product-sort .form-filter.open .select-title svg {
  color: var(--fourth-color);
  transform: rotate(180deg);
  margin-bottom: 0;
}

.product-sort .select-title svg {
  display: inline-block;
  float: right;
  transition: all 0.3s linear;
  position: absolute;
  top: 10px;
  right: 10px;
}

.product-sort .select-title:hover {
  background-color: var(--second-color-hover);
  color: var(--fourth-color);
}

.product-sort .select-title:hover svg {
  color: var(--fourth-color);
}

.product-sort .select-filter {
  position: absolute;
  left: 0;
  width: 210px;
  transition: all 0.25s ease;
  background: var(--fourth-color);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 10px;
}

.product-sort .select-item {
  line-height: 28px;
  text-transform: capitalize;
  font-weight: 400;
  cursor: pointer;
}

.product-sort .select-item:hover {
  color: var(--second-color-hover);
}

.btn-open-sidebar {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  display: inline-block;
  border: 1px solid var(--fifth-color);
  margin-right: 10px;
  cursor: pointer;
  display: none;
  float: left;
}

.btn-open-sidebar svg {
  margin-bottom: -4px;
}

.btn-open-sidebar:hover {
  background-color: var(--primary-background);
}

.btn-open-sidebar:hover svg {
  color: var(--fourth-color);
}

.sidebar-product-close {
  display: none;
}

/* -----------------------------pagination----------------------------- */
.paging-n {
  text-align: center;
  padding: 24px 0;
  margin-bottom: 20px;
}

.disabled {
  display: none !important;
}

.paging-n li:first-child svg {
  margin-left: 0;
}

.paging-n li:last-child svg {
  margin-right: 0;
}

.paging-n div {
  display: inline-block;
}

.paging-n div a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  margin: 0 4px;
  background-color: transparent;
  border: 1px solid var(--fifth-color);
  font-size: 12px;
}

.paging-n div.current a,
.paging-n div a:hover {
  background-color: var(--primary-background);
  color: var(--fourth-color);
}

.paging-n div a svg {
  margin-bottom: -1px;
}

/* ---------------------------------product-detail---------------------------------------- */
.product-detail-page {
  padding-bottom: 35px;
}

.product-owl-img {
  position: relative;
  margin-bottom: 10px;
}

.product-owl-img .owl-nav button.owl-next {
  position: absolute;
  top: 48%;
  right: 10px;
}

.product-owl-img .owl-nav button.owl-prev {
  position: absolute;
  top: 48%;
  left: 10px;
}

.product-owl-img-dots img {
  opacity: 0.5;
  transform: translateY(5px);
  transition: all 0.3s linear;
  cursor: pointer;
}

.product-owl-img .owl-item .product-detail-img {
  min-height: 361px;
}

.product-owl-img-dots .owl-item .product-detail-img.focus img {
  opacity: 1;
  transform: translateY(0);
}

.product-detail-img.detail-yt {
  text-align: center;
}

.product-detail-img.detail-yt svg {
  margin: 0 auto 5px auto;
  display: block;
}

.product-detail-img.detail-yt .detail-yt-img {
  opacity: 0.5;
  transform: translateY(5px);
  transition: all 0.3s linear;
  cursor: pointer;
}

.product-detail-img.detail-yt.focus .detail-yt-img {
  opacity: 1;
  transform: translateY(0);
}

.product-owl-img-dots img:hover {
  transform: translateY(0);
}

.product-detail {
  padding-top: 0;
  overflow: hidden;
}

.product-detail .btn-wishlish {
  position: relative;
  margin: 0;
  margin-left: 20px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  text-align: center;
  line-height: 40px;
  border: 1px solid var(--fifth-color);
}

.product-detail .btn-wishlish.active {
  background-color: var(--primary-background);
}

.product-detail .btn-wishlish.active svg {
  color: var(--fourth-color);
}

.product-detail .btn-wishlish::before,
.wishlist-page table > tbody > tr > td .btn-wlp::before {
  content: attr(data-title);
  position: absolute;
  display: inline-block;
  padding: 7px 12px !important;
  top: -30px;
  left: 50%;
  width: 105px;
  height: 27px;
  transform: translateX(-50%);
  border-radius: 2px;
  font-size: 12px;
  line-height: 11px;
  border: 1px solid var(--fifth-color);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}

.product-detail .btn-wishlish svg {
  margin-right: 0;
  margin-bottom: -2px;
  transition: all 0.3s linear;
}

.product-detail .product-social {
  margin-top: 20px;
}

.product-detail .btn-wishlish:hover {
  background-color: var(--primary-background);
}

.product-detail .btn-wishlish:hover svg {
  color: var(--fourth-color);
}

.product-detail .btn-wishlish:hover::before,
.wishlist-page table > tbody > tr > td .btn-wlp:hover::before {
  top: -35px;
  opacity: 1;
  visibility: visible;
}

.product-detail table {
  margin-bottom: 30px;
}

.product-detail table > tbody > tr:last-child {
  border: none;
}

/* ----------------------------------sidebar-product-detail--------------------------------- */
.product-like {
  position: relative;
  margin-bottom: 62px;
}

.product-like-child {
  float: left;
  width: 100%;
  margin-bottom: 10px;
}

.product-like-child img {
  width: 100px !important;
  height: 100px;
  margin-right: 20px;
  float: left;
}

.product-like-child .product-like-content {
  float: left;
  width: calc(100% - 130px);
}

.product-like-content h3 {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-like-content span {
  color: var(--sixth-color);
}

.product-like .owl-nav {
  position: absolute;
  top: -50px;
  right: 0;
}

.product-like .owl-nav .owl-next {
  margin-left: 15px;
}

.offer-item {
  margin-bottom: 10px;
  float: left;
}

.offer-item svg {
  float: left;
  margin-right: 15px;
}

.offer-item p {
  float: left;
  font-size: 16px;
  line-height: 26px;
  color: var(--sixth-color);
  width: calc(100% - 45px);
}

.product-related .owl-nav button.owl-next {
  position: absolute;
  top: 48%;
  right: -10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
  width: 90px;
  text-align: right;
}

.product-related .owl-nav button.owl-prev {
  position: absolute;
  top: 48%;
  left: -10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
  width: 90px;
  text-align: left;
}

.product-related-owl:hover .owl-nav button.owl-prev,
.product-related-owl:hover .owl-nav button.owl-next {
  opacity: 1;
  visibility: visible;
}

.product-related-owl:hover .owl-nav button.owl-prev {
  left: -30px;
}

.product-related-owl:hover .owl-nav button.owl-next {
  right: -30px;
}

/* -----------------------------------cart------------------------------------- */
.cart-nav-page .cart-nav {
  padding: 44px 0;
  background-color: var(--fourth-background);
  text-align: center;
}

.cart-nav-page .cart-nav li {
  display: inline-block;
}

.cart-nav-page .cart-nav li a {
  color: var(--fifth-color);
  font-size: 21px;
  line-height: 29px;
  text-transform: uppercase;
}

.cart-nav-page .cart-nav li:after {
  content: "";
  display: inline-block;
  border-bottom: 1px solid var(--fifth-color);
  min-width: 120px;
  height: 1px;
  margin: 0 20px 7px 20px;
}

.cart-nav-page .cart-nav li:last-child::after {
  display: none;
}

.cart-nav-page .cart-nav span {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 100%;
  line-height: 28px;
  background-color: unset;
  border: 1px solid var(--fifth-color);
  color: var(--sixth-color);
  margin-right: 7px;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s linear;
}

.cart-nav-page .cart-nav li.active a,
.cart-nav-page .cart-nav li:first-child a {
  color: var(--primary-color);
}

.cart-nav-page .cart-nav li.active span,
.cart-nav-page .cart-nav li:first-child span {
  color: var(--fourth-color);
  background-color: var(--primary-background);
  border-color: var(--primary-color);
}

.cart-nav-page .order-status {
  pointer-events: none;
}

.cart-page {
  padding-top: 70px;
  padding-bottom: 70px;
}

.cart-page table {
  width: 100%;
  margin-bottom: 20px;
}

.cart-page table > thead > tr > th:first-child {
  max-width: 200px;
  padding-left: 0;
}

.cart-page table > thead > tr > th:last-child {
  padding-right: 0;
  text-align: right;
}

.cart-page table > thead > tr {
  border-bottom: 1px solid var(--fifth-color);
}

.cart-page table > thead > tr > th {
  padding: 26px 10px 14px 10px;
  font-size: 14px;
  line-height: 15px;
  font-weight: 400;
  text-transform: uppercase;
}

.cart-page table > tbody > tr > td {
  padding: 16px 11px 11px;
  vertical-align: top;
}

.cart-page table > tbody > tr > td:first-child {
  padding-left: 0;
}

.cart-page table > tbody > tr > td:last-child {
  padding-right: 0;
  text-align: right;
}

.cart-page table > tbody > tr > td:first-child {
  width: 100px;
}

.cart-page table > tbody > tr > td img {
  width: 80px;
  height: 80px;
}

.cart-page table > tbody > tr > td h3 {
  font-size: 18px;
  line-height: 26px;
}

.cart-page table > tbody > tr > td .btn-remove {
  font-size: 15px;
  line-height: 26px;
  text-decoration: underline;
  display: inline-block;
}

.cart-page table > tbody > tr > td .btn-remove:hover {
  color: var(--primary-color-hover);
}

.cart-page table > tbody > tr > td span {
  font-size: 16px;
  line-height: 26px;
  color: var(--sixth-color);
}

.cart-coupon {
  padding-top: 16px;
  border-top: 1px solid var(--fifth-color);
  margin-bottom: 60px;
}

.cart-coupon .coupon {
  position: relative;
  display: inline-block;
}

.cart-coupon .coupon input {
  width: 305px;
  height: 37px;
  padding: 0 41px 0 17px;
  font-size: 16px;
  line-height: 28px;
  border: 1px solid var(--fifth-color);
}

.cart-coupon .btn-coupon {
  position: absolute;
  top: 0;
  right: 0;
  width: 36px;
  height: 37px;
  font-size: 12px;
  line-height: 12px;
  transition: all 0.3s linear;
}

.cart-coupon .btn-coupon:hover {
  color: var(--fourth-color);
  background-color: var(--primary-background);
}

.cart-order-details {
  padding: 27px 32px 32px 32px;
  border: 1px solid var(--primary-color);
}

.cart-order-details .cart-order-title {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--fifth-color);
}

.cart-order-details .cart-order-title h2 {
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
}

.cart-order-details table > tbody > tr > th {
  width: 50%;
  padding: 11px 11px 11px 0;
  font-size: 16px;
  line-height: 26px;
  color: var(--sixth-color);
  font-weight: 400;
}

.cart-order-details table > tbody > tr > td {
  width: 50%;
  padding: 11px 0px 11px 11px;
  font-size: 16px;
  line-height: 26px;
  color: var(--sixth-color);
}

.cart-order-details table > tbody > tr:last-child > th,
.cart-order-details table > tbody > tr:last-child > td {
  font-size: 20px;
  color: var(--primary-color);
  text-transform: uppercase;
}

.cart-order-details .btn-cart {
  display: block;
  padding: 13px 30px;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  background-color: var(--primary-background);
  color: var(--fourth-color);
  margin-bottom: 10px;
  text-align: center;
}

.cart-order-details .btn-cshop {
  background-color: unset;
  border: 1px solid var(--fifth-color);
  color: var(--primary-color);
}

.cart-order-details .btn-cart:hover {
  opacity: 0.6;
}

.cart-login:last-child p {
  margin-bottom: 7px;
}

.cart-login p {
  font-size: 16px;
  line-height: 26px;
  margin: 23px 0;
}

.cart-login p svg {
  margin-right: 5px;
  margin-bottom: -2px;
}

.cart-login p a {
  text-decoration: underline;
  opacity: 0.85;
}

.cart-login p a:hover {
  opacity: 0.7;
}

.cart-coupon p {
  font-size: 16px;
  line-height: 26px;
  margin-top: 22px;
  margin-bottom: 13px;
}

.cart-coupon .cart-coupon-group {
  position: relative;
}

.cart-coupon .cart-coupon-group input {
  width: 350px;
  height: 35px;
  padding: 0 17px;
  border: 1px solid var(--fifth-color);
  font-size: 16px;
  line-height: 28px;
  float: left;
}

.cart-coupon .cart-coupon-group button {
  width: 151px;
  height: 35px;
  padding: 10px 30px;
  text-transform: uppercase;
  background-color: var(--primary-background);
  color: var(--fourth-color);
  font-size: 12px;
  line-height: 12px;
  float: left;
  transition: all 0.3s linear;
}

.cart-coupon .cart-coupon-group button:hover {
  opacity: 0.6;
}

.price-thanh-toan {
  text-align: right;
}

.billing-detail h2,
.order-review h2 {
  font-size: 16px;
  line-height: 19px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--fifth-color);
  text-transform: uppercase;
}

.billing-detail .billing-group {
  margin-bottom: 12px;
}

.billing-detail label {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 5px;
  font-weight: 400;
}

.billing-detail input,
.billing-detail textarea {
  display: block;
  width: 100%;
  height: 40px;
  border: 1px solid var(--fifth-color);
  font-size: 16px;
  line-height: 28px;
  padding: 0 17px;
}

.billing-detail textarea {
  resize: vertical;
  height: 90px;
}

.order-review {
  padding: 27px 32px;
  border: 2px solid var(--primary-color);
}

.cart-page .order-review table > tbody > tr > td {
  padding: 11px 0;
}

.cart-page .order-review table > tbody > tr > td.subtotal {
  text-align: right !important;
}

.order-review table > tbody > tr > td {
  width: 100% !important;
  text-align: left !important;
}

.cart-page .order-review table > tbody > tr > td h3 {
  font-size: 16px;
}

.cart-page .order-review table > tbody > tr > td p {
  margin-top: 7px;
  font-size: 15px;
  color: var(--primary-color-hover);
}

.cart-page .order-review table > tbody > tr > td span {
  color: var(--third-color);
}

.order-review .subtotal-title,
.order-review .subtotal,
.order-review .total-title,
.order-review .total-price {
  font-size: 16px;
  line-height: 26px;
  padding: 14px 11px 11px 0;
  color: var(--sixth-color);
  font-weight: 400;
}

.order-review .subtotal,
.order-review .total-price {
  padding-left: 0;
  padding-right: 11px;
}

.order-review .total-title,
.order-review .total-price {
  text-transform: uppercase;
  font-size: 20px;
  color: var(--third-color);
}

.order-review table > tbody > tr:first-child {
  border-top: none;
}

.order-review table > tbody > tr {
  border-top: 1px solid var(--fifth-color);
}

.order-review table > tbody > tr:last-child {
  border-top: none;
  border-bottom: 1px solid var(--fifth-color);
}

.cart-delivery p {
  text-align: right;
  font-size: 16px;
  margin-bottom: 3px;
  line-height: 28px;
}

.cart-delivery .delivery-2 {
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 23px;
}

.cart-delivery .btn-place-order {
  display: inline-block;
  width: 100%;
  background-color: var(--primary-background);
  color: var(--fourth-color);
  text-transform: uppercase;
  font-size: 14px;
  line-height: 14px;
  padding: 13px 30px;
  text-align: center;
}

.cart-delivery .btn-place-order:hover {
  opacity: 0.6;
}

/* --------------------cart-null-------------------------------------- */
.cart-null {
  padding-top: 100px;
  padding-bottom: 150px;
}

.cart-null .cart-null-title {
  padding: 20px 30px;
  border-top: 2px solid var(--primary-color);
  background-color: var(--fourth-background);
  margin-bottom: 30px;
}

.cart-null .cart-null-title h2 {
  font-size: 18px;
  font-weight: 400;
}

.cart-null .btn-return-shop {
  margin-bottom: 100px;
}

.cart-null .btn-return-shop a {
  display: inline-block;
  padding: 16px 60px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 1.8px;
  background-color: var(--primary-background);
  color: var(--fourth-color);
  margin-top: 10px;
}

.cart-null .btn-return-shop a:hover {
  opacity: 0.6;
}

/* -----------------------------------wishlist--------------------------------- */
.banner-page {
  padding: 44px 0;
  background-color: var(--fourth-background);
  text-align: center;
  margin-bottom: 44px;
}

.banner-page .banner-title h1 {
  display: inline-block;
  font-size: 24px;
  line-height: 28px;
  text-transform: uppercase;
  margin-left: 5px;
}

.wishlist-page table > tbody > tr > td {
  vertical-align: middle;
}

.wishlist-page table > thead > tr > th {
  padding: 24px 10px 24px 0;
  font-size: 16px;
}

.wishlist-page table > tbody > tr > td {
  padding-left: 0;
  font-size: 16px;
}

.wishlist-page table > tbody > tr > td .btn-wlp {
  position: relative;
  width: 40px;
  height: 40px;
  padding: 10px;
  border: 1px solid var(--fifth-color);
  text-align: center;
  margin-left: 10px;
  float: right;
}

.wishlist-page table > tbody > tr > td .btn-wlp::before {
  width: 90px;
  background-color: var(--fourth-color);
}

.wishlist-page .wishlist-date {
  float: right;
  width: 100%;
  margin-top: 7px;
  font-size: 12px;
  color: var(--sixth-color);
  line-height: 26px;
}

/* ----------------------------news------------------------------------- */
.news-page {
  padding-bottom: 90px;
}

.news-item {
  margin-bottom: 30px;
}

.news-img {
  overflow: hidden;
  margin-bottom: 20px;
}

.news-img img {
  transition: all 0.4s ease-out;
}

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

.news-item .news-content h3,
.news-detail h2 {
  font-size: 24px;
  line-height: 29px;
  margin-bottom: 7px;
}

.news-item .news-content h3 a {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-item .news-content .content {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-infor {
  margin-bottom: 12px;
}

.news-infor-item {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  color: var(--sixth-color);
}

.news-infor-item svg {
  margin-bottom: -6px;
  color: var(--sixth-color);
}

.news-infor-item::after {
  content: "/";
  margin: 0px 2px;
  display: inline-block;
}

.news-infor-item:last-child::after {
  display: none;
}

.content p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 10px;
}

.news-item .btn-readmore {
  position: relative;
  font-size: 16px;
  line-height: 25px;
  color: var(--second-color-hover);
}

.news-item .btn-readmore::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background-color: var(--primary-background);
  bottom: -2px;
  transition: all 0.3s linear;
}

.news-item .btn-readmore svg {
  position: absolute;
  top: 4px;
  right: -7px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}

.news-item .btn-readmore:hover svg {
  right: -13px;
  opacity: 1;
  visibility: visible;
}

.news-item .btn-readmore:hover::before {
  width: 100%;
}

/* -----------------------------sidebar-new--------------------------- */
.sidebar-new {
  float: left;
}

.sidebar-new-title,
.lasted-post,
.news-cate,
.form-search-new {
  margin-bottom: 62px;
  float: left;
  width: 100%;
}

.sidebar-new-title img {
  margin-bottom: 16px;
}

.sidebar-new p {
  font-size: 16px;
  line-height: 26px;
}

.lasted-post .post-item {
  float: left;
  margin-bottom: 17px;
}

.lasted-post img {
  width: 75px;
  height: 75px;
  margin-right: 20px;
  float: left;
}

.lasted-post .post-content {
  float: left;
  width: calc(100% - 95px);
}

.lasted-post .post-content h3 {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 5px;
}

.lasted-post .post-content h3 a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lasted-post .post-content h3:hover a {
  color: var(--second-color-hover);
}

.lasted-post .post-date span {
  font-size: 14px;
  line-height: 26px;
  color: var(--sixth-color);
}

.lasted-post .post-date svg {
  margin-right: 5px;
}

.news-cate-list li a {
  color: var(--sixth-color);
  font-size: 16px;
  line-height: 22px;
  padding: 5px 0;
  display: inline-block;
}

.news-cate-list li:first-child a {
  padding-top: 0;
}

.news-cate-list li a:hover {
  color: var(--third-color);
}

.form-search-new {
  margin-bottom: 0;
}

.form-search-new form {
  position: relative;
}

.form-search-new form button {
  position: absolute;
  top: 0;
  right: 0;
  height: 37px;
  width: 37px;
  background-color: unset;
}

.form-search-new form button svg {
  margin-bottom: -3px;
}

.form-search-new input {
  width: 100%;
  height: 37px;
  border: 1px solid var(--fifth-color);
  padding: 0 52px 0 14px;
  font-size: 14px;
  line-height: 28px;
}

/* -------------------------news-details------------------------------ */
.news-detail-page {
  padding-bottom: 90px;
}

.news-detail .content {
  margin-bottom: 15px;
}

.news-detail .content img {
  width: auto;
  margin: 0 auto;
  max-width: 100%;
}

.news-detail .content ul {
  padding-left: 15px;
  border-left: 1px solid var(--fifth-color);
}

.news-detail .content p {
  margin-bottom: 20px;
}

.news-detail .content ul li {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 20px;
}

.news-detail .content h3 {
  margin-bottom: 20px;
  font-size: 21px;
  line-height: 25px;
}

.news-detail .content h4 {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 22px;
}

.news-detail .content h5 {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 18px;
}

.news-detail .content h6 {
  margin-bottom: 20px;
  font-size: 10px;
  line-height: 14px;
}

.news-detail .socials {
  text-align: center;
  padding: 32px 0;
  margin-bottom: 56px;
  border-top: 1px solid var(--fifth-color);
  border-bottom: 1px solid var(--fifth-color);
}

.news-detail .socials li {
  display: inline-block;
  margin: 0 10px;
}

.news-detail .socials li svg {
  transition: all 0.3s linear;
}

.news-detail .socials li:hover svg {
  color: var(--primary-color-hover);
}

/* -------------------------------comment--------------------------------- */
.comment-img {
  width: 100px;
  height: 100px;
  float: left;
  border-radius: 100%;
  overflow: hidden;
}

.comment-content {
  float: left;
  width: 88%;
  margin-left: 20px;
}

.comment-content h3 {
  font-size: 24px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.comment-content .comment-time {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 15px;
}

.comment-item {
  position: relative;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--tenth-color);
  margin-bottom: 35px;
  float: left;
  width: 100%;
}

.comment-item .btn-reply {
  position: absolute;
  top: 0px;
  right: 0px;
}

.comment-reply-list {
  padding-left: 140px;
  padding-top: 20px;
  float: left;
  width: 100%;
}

.comment-reply-list .comment-img {
  width: 40px;
  height: 40px;
}

.comment-reply-list .comment-item {
  margin-bottom: 0;
  padding-bottom: 35px;
  margin-bottom: 20px;
}

.btn-reply button {
  padding: 10px 18px;
  text-transform: uppercase;
  background-color: var(--primary-background);
  color: var(--fourth-color);
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 1.8px;
  font-weight: 400;
  transition: all 0.2s linear;
}

.btn-reply button:hover {
  background-color: var(--primary-color-hover);
}

.blog-comment {
  float: left;
  width: 100%;
}

.blog-comment-title {
  margin-bottom: 40px;
}

.blog-comment-title h2 {
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 12px;
  margin-top: 24px;
}

.blog-review-title p {
  font-size: 15px;
  line-height: 22.5px;
  margin-bottom: 0;
}

/* -------------------------------form-comment----------------------------- */
.form-comment h2 {
  font-size: 27px;
  line-height: 33px;
  margin-bottom: 19px;
}

.form-comment p {
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 20px;
}

.form-comment textarea {
  width: 100%;
  height: 200px;
  padding: 17px;
  resize: vertical;
  border: 1px solid var(--fifth-color);
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 28px;
}

.form-comment .comment-group {
  width: 100%;
  float: left;
  margin-bottom: 20px;
}

.form-comment input {
  float: left;
  width: calc(100% / 3 - 15px);
  padding: 0 17px;
  height: 37px;
  border: 1px solid var(--fifth-color);
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 15px;
}

.form-comment input:last-child {
  float: right;
}

.form-comment input:nth-child(2) {
  margin: 0 22.5px;
}

.form-comment .post-comment {
  padding: 10px 30px;
  background-color: var(--primary-background);
  color: var(--fourth-color);
  text-transform: uppercase;
  font-size: 12px;
  line-height: 12px;
  transition: all 0.3s linear;
}

.form-comment .post-comment:hover {
  opacity: 0.6;
}

.form-reply {
  float: left;
  margin-top: 20px;
}

/* ----------------------------aboutus--------------------------------- */
.aboutus-page {
  padding-bottom: 150px;
}

.aboutus-content {
  margin: 30px 0;
}

.aboutus-content p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 10px;
}

.team-item {
  margin-bottom: 20px;
}

.team-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  height: 400px;
}

.team-img img {
  transition: all 0.7s ease-in-out;
}

.team-img:hover img {
  transform: scale(1.1);
  opacity: 0.8;
}

.team-item:hover .socials {
  opacity: 1;
  visibility: visible;
  top: 48%;
}

.team-item .socials {
  position: absolute;
  text-align: center;
  top: 53%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}

.team-item .socials li {
  display: inline-block;
}

.team-item .socials li a {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  margin: 0 7px;
  background-color: var(--primary-background);
}

.team-item .socials li a:hover {
  opacity: 0.8;
}

.team-item .socials svg {
  color: var(--fourth-color);
  margin-top: 7px;
}

.team-item .socials li:first-child a {
  margin-left: 0;
}

.team-item .socials li:last-child a {
  margin-right: 0;
}

.team-title {
  text-align: center;
}

.team-title h3,
.team-title span {
  font-size: 16px;
  line-height: 19px;
  color: var(--sixth-color);
  margin-bottom: 2px;
}

.team-title span {
  color: var(--second-color-hover);
  margin-top: 5px;
  margin-bottom: 2px;
  display: block;
}

.team-title p {
  font-size: 16px;
  line-height: 26px;
}

.aboutus-item {
  margin-top: 30px;
}

.aboutus-item h3 {
  font-size: 14px;
  line-height: 14px;
  margin-bottom: 20px;
}

.aboutus-item h3 span {
  color: var(--second-color-hover);
}

.aboutus-item p {
  font-size: 16px;
  line-height: 26px;
}

/* -------------------------------contact-------------------------------- */
.contact-page {
  padding-top: 60px;
  padding-bottom: 90px;
}

.contact-title {
  margin-bottom: 15px;
}

.contact-title h2 {
  font-size: 24px;
  line-height: 26px;
  margin-bottom: 20px;
}

.contact-title p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 20px;
}

.form-contact input,
.form-contact textarea {
  width: 100%;
  border: 1px solid var(--fifth-color);
  font-size: 16px;
  line-height: 28px;
  padding: 0 17px;
  height: 35px;
}

.form-contact label {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 0;
}

.form-contact .contact-group {
  margin-bottom: 20px;
}

.form-contact .group {
  float: left;
  width: 100%;
}

.form-contact .group .contact-group {
  width: calc(100% / 2);
  float: left;
}

.form-contact .group .contact-group:first-child {
  padding-right: 15px;
}

.form-contact .group .contact-group:last-child {
  padding-left: 15px;
  float: right;
}

.form-contact textarea {
  height: 275px;
  resize: vertical;
  padding: 17px;
}

.btn-contact {
  padding: 10px 30px;
  background-color: var(--primary-background);
  color: var(--fourth-color);
  text-transform: uppercase;
  font-size: 12px;
  line-height: 12px;
  transition: all 0.3s linear;
}

.btn-contact:hover {
  opacity: 0.6;
}

/* ------------------------------sidebar-contact-------------------------- */
.map iframe {
  width: 100% !important;
  height: 243px !important;
  margin-bottom: 40px;
}

.sidebar-contact-content h1 {
  font-size: 24px;
  line-height: 26px;
  margin-bottom: 20px;
}

.sidebar-contact-content p:first-child {
  margin-bottom: 20px;
}

.sidebar-contact-content p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 5;
}

.sidebar-contact-content p a:hover {
  color: var(--second-color-hover);
}

.sidebar-contact-content h2 {
  padding-top: 20px;
  padding-bottom: 10px;
  font-size: 14px;
  line-height: 15px;
  text-transform: uppercase;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--fifth-color);
}

.sidebar-contact .socials {
  margin-top: 20px;
}

.sidebar-contact .socials li:first-child {
  margin-left: 0;
}

.sidebar-contact .socials li {
  display: inline-block;
  margin: 0 10px;
}

.sidebar-contact .socials li a:hover svg {
  color: var(--sixth-color);
}

.swal2-confirm {
  height: 30px;
  font-size: 14px !important;
  padding: 5px 20px;
  background-color: var(--primary-background) !important;
}

.swal2-confirm a {
  color: var(--fourth-color);
}

.swal2-html-container {
  font-size: 16px !important;
}

.swal2-container {
  z-index: 9999999999;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm:focus {
  outline: none !important;
  box-shadow: none !important;
}

div:where(.swal2-icon).swal2-warning {
  border-color: var(--primary-background) !important;
  color: var(--primary-background) !important;
}

/* ---------------------------------------------login/register---------------------------------------- */
.sign-in {
  width: 100%;
  margin: 100px auto;
  background: var(--second-color) FFF;
  box-shadow: 0px 4px 20px var(--box-shadow-2);
  max-width: 500px;
}

.sign-in-m {
}

.sign-in .tab {
  width: 100%;
  overflow: hidden;
  display: flex;
}

.sign-in .tab a {
  width: 50%;
  padding: 20px;
  border: none;
  cursor: pointer;
  background-color: var(--fourth-background);
  transition: 0.3s;
  font-size: 21px;
  line-height: 20px;
  text-align: center;
  text-decoration: none;
  color: var(--primary-color);
}

.tab a.active {
  background-color: var(--primary-background);
  color: var(--fourth-color);
}

.tabcontent {
  display: none;
  padding: 6px 12px;
  border-top: none;
}

.user-img {
  max-width: 100px;
  max-height: 100px;
  margin: 30px auto;
}

.user-img img {
  width: 100%;
  height: 100%;
}

.input-wrap {
  position: relative;
  /* width: 100%; */
  /* display: flex; */
  /* padding: 0 20px; */
  border: 1px solid var(--seventh-color);
}

.icon-input {
  padding: 10px;
  width: 10%;
  min-width: 20px;
}

.icon-input img {
  width: 100%;
  height: 100%;
}

.showhide-icon {
  /* width: 5%; */
  /* min-width: 20px; */
  /* padding: 10px 0; */
  cursor: pointer;
  display: flex;
  align-items: center;
  position: absolute;
  top: 10px;
  right: 10px;
}

.white {
  color: var(--nineth-color);
}

.input-wrap input {
  border: none;
  background: transparent;
  width: 100%;
  padding: 0 40px 0 20px;
  font-size: 16px;
  line-height: 20px;
  min-height: 42px;
}

.input-wrap input:focus-visible {
  outline: none;
}

.login_submit {
  width: 80%;
  margin: 20px auto;
  display: flex;
  justify-content: center;
  background: var(--primary-background);
  padding: 12px 20px;
  color: var(--fourth-color);
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  border: none;
}

.re-take {
  margin: 40px auto 0 auto;
  text-align: center;
  /* font-family: 'Roboto'; */
  /* padding-bottom: 35px; */
}

.re-take a:hover {
  text-decoration: underline;
}

.sign-with {
  width: 80%;
  display: flex;
  margin: 30px auto;
}

.sign-with .social {
  width: 50%;
  border-radius: 150px;
  background: var(--fourth-background);
  display: flex;
  justify-content: center;
}

.icon-social {
  padding: 10px 0;
  padding-right: 20px;
}

.icon-social img {
  width: 100%;
}

.text-social {
  display: flex;
  justify-content: center;
  align-items: center;
}

#showEye {
  display: block;
  transition: all 0.2s;
}

#hideEye {
  display: none;
  transition: all 0.2s;
}

#showEye1 {
  display: block;
  transition: all 0.2s;
}

#hideEye1 {
  display: none;
  transition: all 0.2s;
}

#showEye2 {
  display: block;
  transition: all 0.2s;
}

#hideEye2 {
  display: none;
  transition: all 0.2s;
}

#modal-login .modal-dialog {
  background-color: var(--fourth-background);
  padding: 40px 25px;
  border-radius: 25px;
}

#modal-login .modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

#form-register {
  padding-bottom: 10px;
}

.frmlogin {
  padding: 50px;
}

.frmlogin label {
  display: block;
  font-size: 16px;
  line-height: 21px;
  margin-bottom: 10px;
  font-weight: 400;
}

.product-search {
  padding-bottom: 120px;
}

.clear {
  clear: both;
}

.btn-dung-thu {
  background-color: var(--sixth-background);
  color: var(--fourth-color);
}

.space-list {
  padding: 140px 0;
}

.btn-register {
  position: relative;
}

.header-ring {
  position: absolute;
  top: -13px;
  left: -40px;
}

.dashboard .sibar-dashboard {
  margin-right: -23px;
  border: 1px solid var(--fifth-color);
  padding: 30px 0 25px;
}

.dashboard .sibar-dashboard .user {
  padding-left: 20px;
}

.dashboard .sibar-dashboard .user .avatar {
  width: 72px;
  height: 72px;
  float: left;
  margin-right: 10px;
  background-color: var(--fifth-color);
  border-radius: 50%;
  position: relative;
}

.dashboard .sibar-dashboard .user .avatar .avt-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
}

.dashboard .sibar-dashboard .user .info {
  float: left;
  margin-top: 9px;
}

.dashboard .sibar-dashboard .user .info .name {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.dashboard .sibar-dashboard .user .info.point {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: var(--primary-color);
}

.dashboard .sibar-dashboard ul {
  margin-top: 30px;
  list-style: none;
  padding: 0;
}

.dashboard .sibar-dashboard ul li {
  padding: 12px 0 12px 20px;
}

.dashboard .sibar-dashboard ul li img {
  margin-right: 10px;
  width: 16px;
  height: auto;
}

.dashboard .sibar-dashboard ul li a {
  color: var(--tenth-color);
}

.dashboard .sibar-dashboard ul li.active {
  background: var(--fourth-background);
}

.dashboard .sibar-dashboard ul li:hover {
  background: var(--fourth-background);
}

.dashboard .tab-info {
  margin-left: 33px;
}

.dashboard .dashboard-button {
  border: none;
  background: var(--sixth-background);
  color: var(--fourth-color);
  padding: 7px 15px;
  transition: 0.3s linear;
  font-weight: 500;
}

/* .dashboard .dashboard-button:hover{
  background-color: #FFDA7A;
  color: #000;
} */

.dashboard .tab-info h2.title {
  font-size: 20px;
  font-weight: 600;
  line-height: 23px;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-align: left;
}

.dashboard .tab-info .info-inner:not(:first-child) {
  margin-top: 40px;
}

.dashboard .tab-info table {
  border: 1px solid var(--third-color-hover);
  width: 100%;
}

.dashboard .tab-info table th {
  padding: 16px 20px 18px;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  color: var(--primary-color);
  text-align: center;
}

.dashboard .tab-info table td {
  padding: 12px 10px 12px 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  text-align: center;
}

.dashboard .tab-info table .price,
.dashboard .tab-info table .point {
  color: var(--nineth-color);
}

.dashboard .tab-info table .watch-now {
  display: inline-block;
  padding: 3px 8px;
  background-color: var(--primary-color);
  color: var(--fourth-color);
  font-size: 12px;
  line-height: 14px;
}

.dashboard .tab-info table tr:nth-child(even) {
  background-color: var(--fourth-background);
}

.dashboard .tab-info table th:first-child,
.dashboard .tab-info table td:first-child {
  text-align: left;
}

table.type-1 th {
  width: 13%;
}

table.type-1 th:nth-child(3) {
  width: 15%;
}

table.type-1 th:first-child {
  width: 46%;
}

table.type-2 th {
  width: 13%;
}

table.type-2 th:first-child {
  width: 74%;
}

.dashboard .tab-info .info-inner .see-more {
  padding: 20px;
}

.dashboard .tab-info .info-inner .see-more a {
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  color: var(--primary-color);
}

table.type-3 th.stt {
  width: 5%;
  text-align: center;
}

table.type-3 th {
  width: 10%;
}

table.type-3 th.account {
  width: 30%;
  text-align: left;
}

.dashboard .tab-info table.type-3 td.stt {
  text-align: center;
  padding: 12px 20px;
}

.dashboard .tab-info table.type-3 td.name {
  text-align: left;
}

table.type-3 .status {
  color: var(--second-color);
}

#ref_link_text {
  color: var(--primary-color);
}

#form-change-pass .add-item:not(:last-child) {
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  .space-list {
    padding: 30px 0 60px 0;
  }

  .dashboard .sibar-dashboard {
    margin-right: 0;
    padding: 20px 0 20px;
  }

  .dashboard .tab-info {
    margin-left: 0;
    margin-top: 30px;
  }

  .dashboard .tab-info .table-mobile {
    overflow-x: scroll;
    padding: 0px 0px 20px;
  }

  .dashboard .tab-info .table-mobile table {
    min-width: 600px;
  }

  .dashboard .tab-info table th {
    padding: 10px 15px 10px;
    font-size: 14px;
    line-height: 16px;
  }

  table.type-3 th {
    width: 10%;
  }

  .dashboard .sibar-dashboard ul li:hover {
    background: unset;
  }

  /* user-menu-mobile */
  .header-ring {
    position: absolute;
    top: -9px;
    left: -30px;
  }

  .name-user {
    margin-left: 10px;
  }

  .btn-register,
  .login-btn {
    color: var(--tenth-color);
  }

  #modal-login .modal-dialog {
    margin-top: 100px;
  }
}

@media (max-width: 1500px) {
  .home-list-product .owl-nav button.owl-prev {
    left: 0;
  }

  .home-list-product .owl-nav button.owl-next {
    right: 0;
  }
}

@media (max-width: 768px) {
  .header-top {
    display: none;
  }

  .header-bot {
    height: 65px;
  }

  .header-bot .logo-header {
    line-height: 65px;
    display: block;
    text-align: center;
  }

  .btn-icon-menu {
    display: block;
    position: absolute;
    width: 30px;
    top: 50%;
    left: 15px;
    transform: translate(0, -50%);
    cursor: pointer;
  }

  /* ---------------------------footer----------------------------------- */
  .footer-top-title {
    margin-bottom: 30px;
    text-align: center;
  }

  .footer-top .footer-social {
    text-align: center;
    margin-top: 30px;
  }

  .logo-footer {
    text-align: center;
    margin-bottom: 15px;
  }

  .logo-footer img {
    width: auto;
    margin: 0 auto;
  }

  .footer-top {
    padding-bottom: 30px;
  }

  .footer-main {
    padding-bottom: 88px;
    padding-top: 15px;
  }

  /* ---------------------------slider-home----------------------------------- */
  .slider-home {
    min-height: 650px;
  }

  .slider-home .slider-item {
    background-position: right;
  }

  .slider-home .slider-content h2 {
    font-size: 24px;
  }

  .slider-home .slider-content p {
    width: 70%;
    margin: 0 auto 30px auto;
    display: inline-block;
  }

  /* -----------------home-1------------------------------------- */
  .home-1 {
    padding-top: 30px;
  }

  .home-1 .home-1-item {
    text-align: center;
    margin-bottom: 20px;
  }

  .home-1 .home-1-item img {
    margin: 0 auto 10px auto;
    float: unset;
    display: block;
  }

  .home-1 .home-1-item h3 {
    float: unset;
  }

  .home-list-product .owl-nav button.owl-prev,
  .home-list-product .owl-nav button.owl-next {
    display: none;
  }

  .home-categories-content {
    padding-left: 15px;
  }

  .back-to-top.active {
    bottom: 90px;
  }

  /* ----------------------------home-main-------------------------------- */
  .home-sidebar {
    margin-bottom: 50px;
    float: left;
  }

  .product-item {
    padding: 0;
  }

  .product-item .btn-wishlist {
    opacity: 1;
    visibility: visible;
  }

  .product-item .btn-quickview {
    display: none;
  }

  .home-main-title,
  .home-categories-title {
    margin-bottom: 5px;
  }

  .home-banner-1 .home-banner-content {
    width: 100%;
    text-align: center;
    right: 0;
    top: 29%;
  }

  .home-banner .home-banner-item.home-banner-2 {
    padding-right: 0;
  }

  /* -------------------------------------product-lits--------------------------- */
  .btn-open-sidebar {
    display: inline-block;
  }

  .sidebar-product {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100%;
    background-color: var(--fourth-color);
    z-index: 999999999;
    overflow-y: auto;
    padding: 100px 15px 100px 15px;
    transition: all 0.4s linear;
  }

  .sidebar-product.active {
    left: 0;
  }

  .sidebar-product-close {
    position: absolute;
    top: 20px;
    right: 20px;
    display: inline-block;
  }

  /* -----------------------------------product-detail-page---------------------------------- */
  .product-detail-page .col-cus {
    padding: 0;
  }

  .product-view-quantity .quantity {
    margin-right: 10px;
  }

  .product-detail .btn-wishlish {
    margin-left: 10px;
  }

  .product-related .owl-nav button.owl-next {
    right: 20px !important;
    opacity: 1;
    visibility: visible;
  }

  .product-related .owl-nav button.owl-prev {
    left: 20px !important;
    opacity: 1;
    visibility: visible;
  }

  .product-like {
    margin-bottom: 30px;
  }

  .product-sale {
    top: 10px;
    left: 10px;
  }

  .product-item .btn-wishlist {
    top: 10px;
    right: 10px;
  }

  /* ------------------------------cart---------------------------------- */
  .cart-nav-page .cart-nav li,
  .cart-nav-page .cart-nav li:after {
    display: none;
  }

  .cart-nav-page .cart-nav li.active {
    display: block;
  }

  .cart-page .cart-table {
    overflow: scroll;
  }

  .cart-page .cart-table table {
    max-width: 100%;
    min-width: 600px;
  }

  .cart-coupon .coupon,
  .cart-coupon .coupon input {
    width: 100%;
  }

  /* -----------------------------wishlist------------------------------ */
  .wishlist-page table > tbody > tr > td img {
    width: 45px;
    height: 45px;
  }

  .wishlist-status,
  .wishlist-page .wishlist-date {
    display: none;
  }

  .wishlist-page table > tbody > tr > td:first-child {
    width: auto;
  }

  .wishlist-page .cart-table {
    overflow: hidden;
  }

  .wishlist-page table > tbody > tr > td .btn-wlp {
    margin-left: 5px;
  }

  .wishlist-page table > tbody > tr > td .btn-wlp:last-child {
    margin-left: 0;
  }

  /* ----------------------------------news--------------------------- */
  .news-page .paging-n {
    margin-bottom: 40px;
  }

  /* -----------------------------news-detail-------------------------- */
  .form-comment input {
    width: 100%;
    margin: 0 0 15px 0 !important;
  }

  .comment-img {
    width: 50px;
    height: 50px;
  }

  .comment-content {
    width: 78%;
  }

  .comment-reply-list {
    padding-left: 50px;
  }

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

  .comment-content p {
    font-size: 14px;
  }

  .btn-reply button {
    padding: 0;
    background-color: unset;
    color: var(--primary-color-hover);
  }

  .btn-reply button:hover {
    background-color: unset;
  }

  .sidebar-new {
    margin-top: 50px;
  }

  .sidebar-new-title,
  .lasted-post,
  .news-cate,
  .form-search-new {
    margin-bottom: 30px;
  }

  .aboutus-page {
    padding-bottom: 100px;
  }

  .team-item {
    margin-bottom: 40px;
  }

  /* ------------------------contact------------------------------------ */
  .form-contact .group .contact-group {
    width: 100%;
    padding: 0 !important;
  }

  .form-contact textarea {
    height: 150px;
  }

  .form-contact {
    margin-bottom: 50px;
  }

  .product-sort {
    float: left;
  }

  .product-view-quantity .btn-addtocart a {
    padding: 13px 15px;
  }

  .cart-coupon .cart-coupon-group input {
    margin-bottom: 20px;
    width: 100%;
  }

  .billing-detail,
  .order-review,
  .cart-coupon {
    float: left;
    width: 100%;
  }

  .product-item .product-img img {
    min-height: 157px;
  }

  .quickview {
    width: 300px;
  }

  .product-view {
    padding-bottom: 100px;
  }

  .product-detail-img iframe {
    min-height: 361px;
  }

  .product-content .btn-addtocart {
    padding: 12px;
  }

  .cart-page {
    padding: 40px 0;
  }

  .footer-main .footer-cate {
    margin-bottom: 20px;
  }

  .footer-main .footer-cate-item a {
    padding: 5px;
  }

  .header-tool .tool-quantity {
    position: absolute;
    left: 10px;
    top: -6px;
  }

  .home-cate-list li > svg {
    padding: 5px 10px 5px 0;
    box-sizing: initial;
  }
}

@keyframes headerdown {
  0% {
    opacity: 0;
    transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes et-dropdown {
  0% {
    transform-origin: 50% 0;
    transform: perspective(500px) rotateX(-90deg);
  }
  100% {
    transform-origin: 50% 0;
    transform: perspective(500px) rotateX(0);
  }
}

@keyframes pulsate {
  0% {
    transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(0.9, 0.9);
    opacity: 0;
  }
}

@keyframes animArrow {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3px);
  }
  100% {
    transform: translateY(0);
  }
}
