/*-----------------------------------------------------*/
/*                   ALL STYLES                        */
/*-----------------------------------------------------*/
:root {
  --p-main-color: #252525;
  --p-main-light: #252525;
  --p-second-color: #7C7C7C;
  --p-focus-color: #FF4E4E;
  --p-font-color: #252525;
  --swiper-theme-color: #252525;
  --swiper-navigation-size: 50px;
  --black: #000;
  --gray-900: #252525;
  --gray-800: #424242;
  --gray-600: #7C7C7C;
  --gray-500: #A0A0A0;
  --gray-400: #C5C5C5;
  --gray-300: #EAE9E9;
  --gray-100: #F6F6F6;
  --highlight-900:#DD2B2B;
  --highlight-600:#FF4E4E;
  --highlight-300:#FCEAEA;
  --highlight-100:#FFF5F5;
}

@media (min-width: 1366px) {
  .container {
    max-width: 1300px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1360px;
  }
}

@media (max-width: 767px) {
  .container {
    max-width: unset;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: "Arial", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "sans-serif";
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  color: var(--p-font-color);
  padding-top: 80px;
}

body.mask {
  position: fixed;
  top: 0px;
  width: 100%;
}

section {
  position: relative;
}


.color-white {
  color: #fff !important;
}

.color-dark {
  color: var(--gray-900) !important;
}

.color-gray {
  color: var(--gray-600) !important;
}

/* ul {
  list-style: none;
  padding: 0;
  margin: 0;
} */

a {
  color: var(--p-main-color);
  transition: .2s;
}

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

input:focus {
  outline: none;
}

.title-border {
  width: 49px;
  height: 2px;
  background-color: var(--p-main-color);
  margin-top: -20px;
  margin-bottom: 50px;
}

.login-page .title-border,
.checkout-page .title-border {
  display: none;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    line-height: 1.5;
}
.fs-7 {
  font-size: 14px;
}

@media only screen and (max-width: 767px) {
  .title-border {
    margin-top: -10px;
    margin-bottom: 30px;
  }
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: #000;
  opacity: .6;
}

.to-top {
  display: none;
  position: fixed;
  bottom: 3rem;
  right: 1.5rem;
  background-color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  z-index: 2;
  cursor: pointer;
  -webkit-box-shadow: 0 0 20px 0 rgb(0 0 0 / 15%);
  -moz-box-shadow: 0 0 20px 0 rgb(0 0 0 / 15%);
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 15%);
}

.to-top span {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #989898;
}

.to-top span i {
  font-size: 24px;
  line-height: 52px;
}


/*
========================================================================
    LOADING
========================================================================
*/
.loading {
  position: fixed;
  z-index: 999999999999;
  width: 100%;
  height: 100%;
  background-color: #333;
  display: none !important;
}

.spinner {
  width: 40px;
  height: 40px;
  left: 50%;
  top: 40%;
  position: relative;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.spinner .double-bounce1,
.spinner .double-bounce2 {
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #ccc;
  position: absolute;
  opacity: 0.8;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  -moz-animation: sk-bounce 2.0s infinite ease-in-out;
  -o-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.spinner .double-bounce2 {
  background-color: #000;
  -webkit-animation-delay: -1.0s;
  -moz-animation-delay: -1.0s;
  -o-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {

  0%,
  100% {
    -webkit-transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
  }
}

@-moz-keyframes sk-bounce {

  0%,
  100% {
    -moz-transform: scale(0);
    transform: scale(0);
    -webkit-transform: scale(0);
  }

  50% {
    -moz-transform: scale(1);
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

@-o-keyframes sk-bounce {

  0%,
  100% {
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transform: scale(0);
  }

  50% {
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bounce {

  0%,
  100% {
    -moz-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transform: scale(0);
  }

  50% {
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

.port-title .title {
  font-size: 38px;
  letter-spacing: 2px;
  font-weight: 500;
  margin-bottom: 3rem;
}

.port-title .sub-title {
  font-size: 25px;
}

.port-title .title-detail {
  line-height: 1.6;
  font-size: 16px;
  font-weight: 300;
  text-align: left;
  margin-bottom: 20px;
}

/*
========================================================================
    CONTACT
========================================================================
*/

.contact-page .port-body, .contact-page .port-title {
  width: 800px;
  max-width: 100%;
  margin: auto;
}

.contact-info-wrapper {
  widtH: 100%;
  position: relative;
  height: 89px;
}

.contact-info-wrapper .contact-info {
  widtH: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 38px 50px;
  -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  position: absolute;
  top: -63px;
  z-index: 100;
}

.contact-info-wrapper .contact-info .contact-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.contact-info-wrapper .contact-info .contact-item .contact-icon {
  margin-top: 3px;
}

.contact-info-wrapper .contact-info .contact-item .contact-text {
  padding-left: 20px;
  line-height: 25px;
}

.contact-form form .au-form {
  padding: 5px 0;
  margin-bottom: 0;
}

.contact-form form .au-form textarea {
  margin-top: 1rem;
}

form .au-form input {
  font-size: 15px;
}

.contact-form form .au-form button[type="submit"] {
  margin-top: 10px;
}

.port-body .owl-carousel.owl-drag .owl-item>div {
  padding: 0 5px;
}

.grid-product .pro-tag span,
.shop-list .shop-product .price .pro-tag span {
  font-size: 12px;
  padding: 2px 5px;
}

.g-recaptcha {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

/* 聯絡我們ok */

.contact-page .port-body.port-body-sent {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 18px;
  font-weight: 300;
  background-color: #f9f9f9;
  padding: 3rem 1rem;
}


/*
========================================================================
    HEADER
========================================================================
*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1021;
}

header a {
  text-decoration: none;
}

header .header-wrapper-desktop .header {
  background: #fff;
  -webkit-box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
  -moz-box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
}

header .header-wrapper-desktop .header .header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

header .header-wrapper-desktop .header .header-main .header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

header .header__logo {
  height: 80px;
  display: flex;
  align-items: center;
  font-size: 28px;
}

header .header__logo a {
  color: var(--p-font-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

header .header__logo img {
  max-width: 230px;
  max-height: 38px;
}

header .header__logo span {
  font-size: 18px;
  letter-spacing: 2px;
  padding-left: 0.25rem;
}

header .header__neme {
  font-size: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

header .header-wrapper-desktop .header .header-main .header__navbar ul.navbar-menu>li {
  display: inline-block;
  position: relative;
  border-left: 0 solid #eaeaea;
}

header .header-wrapper-desktop .header .header-main .header__navbar ul.navbar-menu>li:last-child {
  border-right: 0px solid #eaeaea;
}

header .header-wrapper-desktop .header .header-main .header__navbar ul.navbar-menu>li>a {
  font-size: 19px;
  line-height: 60px;
  display: block;
  font-weight: 400;
  padding: 0 35px;
  -webkit-transition: all 0.35s;
  -o-transition: all 0.35s;
  -moz-transition: all 0.35s;
  transition: all 0.35s;
  color: #5b5959;
}

header .header-wrapper-desktop .header .header-main .header__navbar ul.navbar-menu>li>a i {
  font-size: 16px;
  margin-left: 5px;
  /* color: var(--p-main-color); */
}

header .header-wrapper-desktop .header .header-main .header__navbar ul.navbar-menu>li .sub-menu {
  visibility: hidden;
  opacity: 0;
  width: 180px !important;
  border: 0px solid #e4e4e4;
  /* border-top: 3px solid var(--p-main-color); */
  position: absolute;
  top: 60px;
  left: 50%;
  margin-left: -90px;
  width: 100%;
  padding: 25px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 20px 0 rgb(0 0 0 / 5%);
  -moz-box-shadow: 0 0 20px 0 rgb(0 0 0 / 5%);
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 5%);
  z-index: 100000;
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-transition: all 0.1s linear 0s, visibility 0s linear 0.1s, z-index 0s linear 0.01s;
  -o-transition: all 0.1s linear 0s, visibility 0s linear 0.1s, z-index 0s linear 0.01s;
  -moz-transition: all 0.1s linear 0s, visibility 0s linear 0.1s, z-index 0s linear 0.01s;
  transition: all 0.1s linear 0s, visibility 0s linear 0.1s, z-index 0s linear 0.01s;
}

header .header-wrapper-desktop .header .header-main .header__navbar ul.navbar-menu>li .sub-menu>li>a {
  font-size: 16px;
  font-weight: 300;
  display: inline-block;
  position: relative;
  line-height: 2;
  color: #000;
  line-height: 25px;
  padding: 10px 0;
  -webkit-transition: all .35s;
  -o-transition: all .35s;
  -moz-transition: all .35s;
  transition: all .35s;
}

header .header-wrapper-desktop .header .header-main .header__navbar ul.navbar-menu>li .sub-menu>li>a:before {
  content: '';
  width: 0;
  height: 1px;
  background-color: var(--p-main-color);
  position: absolute;
  bottom: 5px;
  left: 0;
  -webkit-transition: all .35s;
  -o-transition: all .35s;
  -moz-transition: all .35s;
  transition: all .35s;
}

header .header-wrapper-desktop .header .header-main .header__navbar ul.navbar-menu>li .sub-menu>li>a:hover:before {
  width: 100%;
}

header .header-wrapper-desktop .header .header-main .header__navbar ul.navbar-menu>li:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition-delay: 0s, 0s, 0.1s;
  -moz-transition-delay: 0s, 0s, 0.1s;
  -o-transition-delay: 0s, 0s, 0.1s;
  transition-delay: 0s, 0s, 0.1s;
}

header .header-wrapper-desktop .header .header-main .header__navbar ul.navbar-menu>li.full-dropdown-submenu .sub-menu {
  width: 100% !important;
  padding: 25px 0;
  top: 140px;
  left: 0;
  margin-left: 0;
}

header .header-wrapper-desktop .header .header-main .header__navbar ul.navbar-menu>li.full-dropdown-submenu {
  position: static;
}

.full-dropdown-submenu .sub-menu {
  display: flex;
}

header .header-wrapper-desktop .header .header-main .header__navbar ul.navbar-menu>li .sub-menu>li.second-menu {
  height: auto;
  width: 100%;
  margin: 0 15px;
}

header .header-wrapper-desktop .header .header-main .header__navbar ul.navbar-menu>li .sub-menu>li.second-menu li>a {
  font-size: 16px;
  font-weight: 300;
  display: inline-block;
  position: relative;
  line-height: 2;
  color: #000;
  line-height: 22px;
  padding: 10px 0;
  -webkit-transition: all .35s;
  -o-transition: all .35s;
  -moz-transition: all .35s;
  transition: all .35s;
}

header .header-wrapper-desktop .header .header-main .header__navbar ul.navbar-menu>li .sub-menu>li.second-menu li>a:before {
  content: '';
  width: 0;
  height: 1px;
  background-color: var(--p-main-color);
  position: absolute;
  bottom: 5px;
  left: 0;
  -webkit-transition: all .35s;
  -o-transition: all .35s;
  -moz-transition: all .35s;
  transition: all .35s;
}

header .header-wrapper-desktop .header .header-main .header__navbar ul.navbar-menu>li .sub-menu>li.second-menu li>a:hover:before {
  width: 100%;
}

.second-menu h4 {
  font-size: 15px;
  /* border-bottom: 1px solid #ccc; */
  padding-bottom: 15px;
  color: #999;
  font-weight: 300;
}

.second-menu h4 a {
  color: #000;
}

.header__button {
  width: 230px;
  z-index: 999;
  /* position: absolute; */
  right: 2rem;
  top: 1rem;
}

.header__button .noUi-handle:before {}

.header__button>ul {
  display: flex;
  justify-content: flex-end;
}

.header__button>ul>li {
  list-style: none;
  padding-right: 1rem;
  position: relative;
  display: inline-block;
}

.header__button>ul>li small {
  font-size: 12px;
  color: var(--gray-600);
}

.header__button>ul>li.member>a {
  background-color: var(--gray-100);
  border-radius: 100%;
  padding: 8px;
}

.header__button>ul>li.member,
.header__button>ul>li.language,
.header__button>ul>li.header-shop-cart {
  cursor: pointer;
}


.header__button ul li>a,
.header__button ul li .shop-cart-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 15px;
  color: var(--p-main-color);
}

.header__button ul li.member-logged>a {
  color: var(--p-main-color) !important;
}

.header-wrapper-mobile li.button i,
.header__button ul li i {
  font-size: 20px;
  width: 28px;
  height: 28px;
  background-size: 100%;
  display: block;
  opacity: 1;
  -webkit-transition: all .35s;
  -o-transition: all .35s;
  -moz-transition: all .35s;
  transition: all .35s;
}

.header-wrapper-mobile li.button i,
.header__button ul li:hover i {
  opacity: 1;
}

.header-wrapper-mobile li.button i.header-user,
.header__button i.header-user {
  background-image: url(../images/icon/header-user.png);
}

.header-wrapper-mobile li.button i.header-user-logged,
.header__button i.header-user-logged {
  background-image: url(../images/icon/header-user-logged.png);
}

.header__button i.header-cart {
  background-image: url(../images/icon/header-cart.png);
}

.header__button i.header-search {
  background-image: url(../images/icon/header-search.png);
}

.header-wrapper-mobile li.button i.header-order,
.header__button i.header-order {
  background-image: url(../images/icon/header-order.png);
}

.header-wrapper-mobile li.button i.header-language,
.header__button i.header-language {
  background-image: url(../images/icon/header-language.png);
}

.header-wrapper-mobile li.button i.header-gift {
  background-image: url(../images/icon/header-gift-w.png);
  opacity: 1;
  margin-right: 0.5rem;
}

.header__button ul li:last-child {
  padding-right: 0;
}

@media (max-width: 1199px) {
  header .header-wrapper-desktop .header .header-main .header__navbar ul.navbar-menu>li>a {
    line-height: 50px;
    font-size: 18px;
  }

  header .header-wrapper-desktop .header .header-main .header__navbar ul.navbar-menu>li .sub-menu {
    top: 50px;
  }

  header .header-wrapper-desktop .header .header-main .header__navbar ul.navbar-menu>li.full-dropdown-submenu .sub-menu {
    top: 131px;
  }
}


@media (max-width: 320px) {
  .header__button ul li {
    padding-right: 10px;
  }
}

.header__button ul li ul.dropdown {
  display: none;
  position: absolute;
  top: 62px;
  background: #fff;
  min-width: 120px;
  padding: 10px;
  border-radius: 0 0 0.2em 0.2em;
  right: -35px;
  -webkit-box-shadow: 0 0 20px 0 rgb(0 0 0 / 5%);
  -moz-box-shadow: 0 0 20px 0 rgb(0 0 0 / 5%);
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 5%);
  z-index: 2;
}

.header__button ul li ul.dropdown li {
  list-style-type: none;
  display: block;
  padding: 0;
  text-align: center;
}

.header__button ul li ul.dropdown li a {
  text-decoration: none;
  padding: 5px;
  display: block;
  color: var(--p-font-color);
  font-weight: 400;
}

.header__button ul li.header-shop-cart .shop-cart-button {
  position: relative;
  margin-right: 11px;
}

.header__button ul li.header-shop-cart .shop-cart-button .amount,
.cart-tabs .nav-pills .nav-link span {
  font-family: Arial, Helvetica, sans-serif;
  min-width: 20px;
  padding: 0 2px;
  height: 20px;
  line-height: 20px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: var(--p-main-color);
  font-size: 14px;
  display: flex;
  justify-content: center;
  color: #ffffff;
  align-items: center;
}

.header__button ul li.header-shop-cart .shop-cart-button .amount {
  position: absolute;
  top: -5px;
  right: -5px;
}

.header__button .search-input {
  position: absolute;
  width: 300px;
  top: 0;
  right: 195px;
  z-index: 998;
  display: none;
}

.header__button .search-input input {
  height: 45px;
  width: 100%;
  padding: 0 15px;
  background-color: #f5f5f5;
  border-color: transparent;
  border-radius: 50px;
  border: none;
  outline: none;
}

.header__button .search-input button {
  position: absolute;
  top: 0;
  right: 0;
  height: 45px;
  width: 45px;
  display: flex;
  padding: 0;
  align-items: center;
  justify-content: center;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
}

.header__button .search-input button i {
  width: 28px;
  height: 28px;
  margin-bottom: 3px;
  background-size: 100%;
  display: block;
  opacity: 0.8;
  -webkit-transition: all .35s;
  -o-transition: all .35s;
  -moz-transition: all .35s;
  transition: all .35s;
}

.header__button .search-input a {
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 12px;
  width: 12px;
  display: block;
  background: url(../images/icon/close-search.png) no-repeat center;
  -webkit-transition: all 0.35s;
  -o-transition: all 0.35s;
  -moz-transition: all 0.35s;
  transition: all 0.35s;
}

@media (min-width: 992px) {
  .header__button .search-input a {
    display: none;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .header__button>ul li {
    padding-right: 0.75rem;
  }

  .header__button .search-input {
    width: 230px;
    right: 170px;
  }
}

@media (max-width: 992px) {
  .header__button {
    position: absolute;
    top: 1.5rem;
    right: 1rem;
    width: auto;
  }

  .header__button:has(.member) {
    top: 1rem;
  }

  .header__button ul li ul.dropdown {
    top: 64px;
    right: -15px
  }

  .header__button .search-input {
    width: 243px;
    right: 7px;
    top: -7px;
  }

  .header__button small {
    display: none;
  }

  .header__button .spec small {
    display: inline-block;
  }
}

@media (max-width: 767px) {
  .header__button .search-input {
    width: 270px;
    top: 47px;
    right: -50px;
  }

  .header__button ul li.header-search .search-input input {
    background-color: #fff;
    -webkit-box-shadow: 0 0 20px 0 rgb(0 0 0 / 5%);
    -moz-box-shadow: 0 0 20px 0 rgb(0 0 0 / 5%);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 5%);
    left: 50%;
  }
}

@media (max-width: 575px) {

  .header__button {
    top: 1rem;
  }

  .header__button:has(.member) {
    top: 0.5rem;
  }

  .header__button ul li ul.dropdown {
    top: 52px;
  }

  .header__button>ul li {
    padding-right: 0.5rem;
  }

  .header__button ul li.header-search .search-input {
    top: 35px;
  }

  .header__button ul li.header-search .search-input a {
    right: 20px;
  }
}

.header .header-main .header__button .search-input a:hover {
  background: url(../images/icon/close-search-1.png) no-repeat center;
}

header .header-wrapper-desktop .header.header__fixed {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

header .header-wrapper-desktop .header.header__fixed .header-main .header__navbar {
  margin-left: 1rem;
}

header .header-wrapper-desktop .header.header__fixed .header-main .header__navbar ul.navbar-menu>li>a {
  padding: 0 15px;
}

header .header-wrapper-desktop .header.header__fixed .header-main .header__navbar ul.navbar-menu>li .sub-menu {
  top: 73px;
}

header .header-wrapper-desktop .header.header__fixed .header-main .header__navbar ul.navbar-menu>li.full-dropdown-submenu .sub-menu {
  top: 86px;
}

header .header-wrapper-desktop .header.header__fixed .header-main .header__button .search-input input {
  height: 80px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  header .header-wrapper-desktop .header.header__fixed .header-main {
    justify-content: flex-start;
  }

  .header__fixed+.header__holder {
    height: 80px !important;
  }

  header .header-wrapper-desktop .header.header__fixed .header-main .header__navbar ul.navbar-menu>li .sub-menu {
    top: 68px;
  }
}

header .header-wrapper-mobile {
  padding: 0;
}

header .header-wrapper-mobile .header-mobile__bar {
  display: flex;
  height: 80px;
  align-items: center;
  background: #fff;
  -webkit-box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
  -moz-box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
}

.header-mobile__logo {
  font-size: 24px;
  font-weight: 500;
  margin-left: 1rem;
  margin-right: 8rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-dealer .header-mobile__logo {
  margin-right: 0;
}

header .header-wrapper-mobile .header-mobile__bar .header-mobile__button {
  position: absolute;
  left: 30px;
  height: 36px;
  display: flex;
  /* background-color: #f9f9f9; */
}

header .header-wrapper-mobile .header-mobile__bar .header-mobile__button .humburger-box {
  display: inline-block;
  position: relative;
  width: 24px;
  height: 15px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

header .header-wrapper-mobile .header-mobile__bar .header-mobile__button .humburger-box .hamburger__inner {
  background-color: #999;
  display: inline-block;
  width: 24px;
  height: 2px;
  position: absolute;
  top: 6px;
  -webkit-transition: -webkit-transform 0.15s ease;
  transition: -webkit-transform 0.15s ease;
  -o-transition: -o-transform 0.15s ease;
  -moz-transition: transform 0.15s ease, -moz-transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease, -moz-transform 0.15s ease, -o-transform 0.15s ease;
  line-height: 1;
}

header .header-wrapper-mobile .header-mobile__bar .header-mobile__button .humburger-box .hamburger__inner:before,
header .header-wrapper-mobile .header-mobile__bar .header-mobile__button .humburger-box .hamburger__inner:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #999;
  -webkit-transition: -webkit-transform 0.15s ease;
  transition: -webkit-transform 0.15s ease;
  -o-transition: -o-transform 0.15s ease;
  -moz-transition: transform 0.15s ease, -moz-transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease, -moz-transform 0.15s ease, -o-transform 0.15s ease;
}

header .header-wrapper-mobile .header-mobile__bar .header-mobile__button .humburger-box .hamburger__inner:before {
  top: -7px;
}

header .header-wrapper-mobile .header-mobile__bar .header-mobile__button .humburger-box .hamburger__inner:after {
  top: 7px;
}

header .header-wrapper-mobile .header-mobile__bar .header-mobile__button .humburger-box.active .hamburger__inner {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}

header .header-wrapper-mobile .header-mobile__bar .header-mobile__button .humburger-box.active .hamburger__inner:after {
  -webkit-transform: translate3d(0, -6px, 0) rotate(-90deg);
  -moz-transform: translate3d(0, -6px, 0) rotate(-90deg);
  transform: translate3d(0, -6px, 0) rotate(-90deg);
  top: 6px;
}

header .header-wrapper-mobile .header-mobile__bar .header-mobile__button .humburger-box.active .hamburger__inner:before {
  opacity: 0;
}

header .header-wrapper-mobile .header-mobile__navbar {
  display: none;
  position: absolute;
  width: 100%;
  z-index: 1;
}

header .header-wrapper-mobile .header-mobile__navbar>ul {
  padding: 20px;
  background: #fff;
  box-shadow: 0 3px 4px 0 #ccc;
  overflow-y: auto;
  height: calc(100vh - 70px);
}

header .header-wrapper-mobile .header-mobile__navbar>ul li {
  position: relative;
  border-bottom: 1px solid #f4f4f4;
}

header .header-wrapper-mobile .header-mobile__navbar>ul li.active>a span {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

header .header-wrapper-mobile .header-mobile__navbar>ul li a {
  display: block;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  text-transform: capitalize;
  -webkit-transition: all 0.35s;
  -o-transition: all 0.35s;
  -moz-transition: all 0.35s;
  transition: all 0.35s;
  position: relative;
  padding: 15px 0;
}

header .header-wrapper-mobile .header-mobile__navbar>ul li a span {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  margin-top: -4px;
  border-width: 1px 1px 0 0;
  border-color: var(--p-main-color);
  border-style: solid;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

header .header-wrapper-mobile .header-mobile__navbar>ul li.member-logged {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
}

header .header-wrapper-mobile .header-mobile__navbar>ul li.member-logged a {
  line-height: 1;
  padding: 20px 0;
}

header .header-wrapper-mobile .header-mobile__navbar>ul li.member-logged a::after {
  content: "";
  border-bottom: 1px solid #333;
  height: 1px;
  width: 100%;
  display: block;
}

header .header-wrapper-mobile .header-mobile__navbar>ul li.member-logged a span {
  display: none;
}

header .header-wrapper-mobile .header-mobile__navbar>ul li.button {
  margin-top: 15px;
  border: 0;
  display: flex;
}

header .header-wrapper-mobile .header-mobile__navbar>ul li.button a {
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  justify-content: center;
  width: 49%;
  background-color: #f4f4f4;
  font-size: 16px;
  /* font-weight: 300; */
}

header .header-wrapper-mobile .header-mobile__navbar>ul li.button a.full {
  font-size: 19px;
  background-color: var(--p-main-color);
  color: #fff;
}

.header-wrapper-mobile li.button i {
  opacity: 0.6;
  margin-right: 0.25rem;
}

header .header-wrapper-mobile .header-mobile__navbar>ul li.button a+a {
  margin-left: 2%;
}

header .header-wrapper-mobile .header-mobile__navbar>ul li.button a span {
  display: none;
}

header .header-wrapper-mobile .header-mobile__navbar>ul li .sub-menu {
  padding: 20px;
  display: none;
  background-color: #f4f4f4;
}

header .header-wrapper-mobile .header-mobile__navbar>ul li .sub-menu li {
  border-bottom: 0;
}

header .header-wrapper-mobile .header-mobile__navbar>ul li .sub-menu li a {
  padding: 12px 0;
  border-bottom: 1px solid #fff;
  font-size: 16px;
}

header .header-wrapper-mobile .header-mobile__navbar>ul li.sub-title {
  color: var(--p-main-color);
  margin-top: 30px;
}

header .header-wrapper-mobile .header-mobile__navbar>ul li.sub-title:first-child {
  margin-top: 0;
}


@media(max-width: 992px) {
  .header-mobile__logo {
    font-size: 18px;
    display: flex;
    align-items: center;
    margin-right: 0;
  }

  .header-mobile__logo a {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  header .header__neme {
    font-size: 14px;
    position: absolute;
    bottom: 8px;
    left: 15px;
    width: 100%;
  }

  header .header__neme a {
    color: var(--gray-600);
  }

  .header-mobile__logo img, header .header__logo img {
    max-width: 230px;
    max-height: 38px;
  }

  .header-mobile__logo span {
    font-size: 16px;
  }

  header .header-wrapper-mobile .header-mobile__bar:has(.header__neme) {
    padding-bottom: 16px;
  }
}

@media(max-width: 575px) {
  header .header__neme {
    font-size: 12px;
    bottom: 4px;
    padding-right: 120px;
  }

  .header-mobile__logo {
    font-size: 16px;
  }

  .header-mobile__logo img, header .header__logo img {
    max-width: 180px;
    max-height: 30px;
  }
}


@media all and (max-width: 992px) {
  header .logo {
    padding: 18px 0;
  }

  header .desktop-menu>ul>li {
    padding: 0 5px;
  }

  header .menu-social div#header-cart {
    margin-left: 9px;
    margin-right: 19px;
  }

  header .mobile-menu-btn {
    margin-left: auto;
  }

  .header__button ul li.header-shop-cart .shop-cart-button .amount {
    right: -10px;
  }
}


@media only screen and (max-width: 575px) {

  header .header-wrapper-mobile .header-mobile__bar,
  header .header__logo {
    height: 60px;
  }

  header .header-wrapper-mobile .header-mobile__bar .header-mobile__button {
    left: 20px;
  }


}

/*
========================================================================
    FOOTER
========================================================================
*/
.footer .main-footer {
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.footer .main-footer .main-footer-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}


.footer .footer-item .footer-item-heading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer .footer-item .footer-item-heading img {
  height: 70px;
}

.footer .footer-item .footer-item-heading h3 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  font-size: 18px;
  line-height: 1.3333333333;
  color: #333;
  font-weight: normal;
  padding-bottom: 5px;
  margin-bottom: 0;
  position: relative;
}

.footer .footer-item .footer-item-heading h3:before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 39px;
  height: 1px;
  background-color: #000;
}

.footer .footer-item .footer-item-heading .logo {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  margin-bottom: 10px;
}

.footer .footer-item .footer-item-content {
  /* padding-top: 15px;
  padding-bottom: 35px; */
}

.footer .footer-item .footer-item-content p {
  font-size: 15px;
  line-height: 1.6;
}

.footer .footer-item .footer-item-content .footer-open-time li {
  font-size: 15px;
  line-height: 3;
  border-bottom: 1px solid #e5e5e5;
}

.footer .footer-item .footer-item-content .footer-open-time li:last-child {
  border-bottom: none;
}

.footer .footer-item .footer-item-content .footer-latest-post {
  max-width: 220px;
  padding-top: 13px;
}

.footer .footer-item .footer-item-content .footer-latest-post li {
  margin-bottom: 15px;
}

.footer .footer-item .footer-item-content .footer-latest-post li:last-child {
  margin-bottom: 0;
}

.footer .footer-item .footer-item-content .footer-latest-post .post-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer .footer-item .footer-item-content .footer-latest-post .post-item a {
  font-size: 15px;
  line-height: 1.3333333333;
  margin-bottom: 2px;
  color: #666;
}

.footer .footer-item .footer-item-content .footer-latest-post .post-item a:hover {
  color: #333;
}

.footer .footer-item .footer-item-content .footer-latest-post .post-item .post-time {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  font-size: 12px;
  line-height: 1.6666666667;
  color: #666;
}

.footer .footer-item .footer-item-content .footer-form {
  padding-top: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.footer .footer-item .footer-item-content .footer-form input {
  background-color: #fff;
  border: 1px solid #e5e5e5;
  padding: 0 13px;
  color: #999;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 185px;
  -moz-box-flex: 0;
  -ms-flex: 0 0 185px;
  flex: 0 0 185px;
  height: 40px;
  font-size: 12px;
  line-height: 1.6666666667;
}

.footer .footer-item .footer-item-content .footer-form button {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 56px;
  -moz-box-flex: 0;
  -ms-flex: 0 0 56px;
  flex: 0 0 56px;
  height: 40px;
  background-color: #000;
  border: none;
  cursor: pointer;
}

.footer .footer-item .footer-item-content .footer-social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.footer .footer-item .footer-item-content .footer-social .social-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 10px;
}

.footer-social .social-item a {
  font-size: 21px;
  width: 40px;
  height: 40px;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  opacity: .4;
  color: #000;
}

.footer-social .social-item a:hover {
  opacity: .2;
}

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

.footer .footer-item .footer-item-content .footer-infopage {
  margin-top: 28px;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.footer .footer-item .footer-item-content .footer-infopage p {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 0;
}

.footer .footer-item .footer-item-content .footer-list {}

.footer .footer-item .footer-item-content .footer-list li {
  font-size: 15px;
  line-height: 1.3333333333;
  margin-bottom: 10px;
}

.footer .footer-item .footer-item-content .footer-list li.with-icon {
  display: flex;
  align-items: center;
  font-size: 16px;
}

.footer .footer-item .footer-item-content .footer-list li.with-icon div {
  display: flex;
  flex-direction: column;
}

.footer .footer-item .footer-item-content .footer-list li.with-icon img {
  width: 40px;
  margin-right: 0.5rem;
}

.footer .footer-item .footer-item-content .footer-list li.with-icon .tel {
  /* font-family: 'Montserrat', "sans-serif"; */
  font-size: 24px;
  letter-spacing: 2px;
  color: #666;
}

.footer .footer-item .footer-item-content .footer-list li.with-icon a {
  font-size: 19px;
}

.footer .footer-item .footer-item-content .footer-list li:last-child {
  margin-bottom: 0;
}

.footer .footer-item .footer-item-content .footer-list li a {
  color: var(--p-font-color);
}

.footer .footer-item .footer-item-content .footer-list li a:hover {
  color: #222;
}

.footer .footer-item .footer-item-content .footer-gallery .gallery {
  margin: -5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer .footer-item .footer-item-content .footer-gallery .gallery .gallery-item {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 33%;
  flex: 0 0 33%;
  padding: 5px;
}

.footer .footer-item .footer-item-content .footer-gallery .gallery .gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.footer .footer-item .footer-item-content .footer-gallery .gallery .gallery-item a:after {
  -webkit-transition: all 0.35s;
  -o-transition: all 0.35s;
  -moz-transition: all 0.35s;
  transition: all 0.35s;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: no-repeat center;
}

.footer .footer-item .footer-item-content .footer-gallery .gallery .gallery-item a:hover:after {
  background: url(../images/icon/camera-white.png) no-repeat center rgba(0, 0, 0, 0.3);
}

.footer .sub-footer-container {
  height: 70px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer .sub-footer-container>div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.footer .sub-footer-container .company-info {
  gap: 0.5rem;
}

@media (max-width: 992px) {
  .footer .sub-footer-container .company-info {
    flex-direction: column;
    gap: 0;
    margin-bottom: 0.25rem;
  }
}

.footer .sub-footer-container .company-info div {
  display: flex;
  gap: 1rem;
}

.footer .sub-footer-container p {
  margin-bottom: 0;
}

.footer.footer-1 .sub-footer {
  font-size: 14px;
  color: var(--gray-600);
}

.footer.footer-1 .sub-footer a {
  color: var(--gray-600);
}


@media only screen and (min-width: 992px) {
  .footer .sub-footer-container {
    display: flex;
  }
}

@media only screen and (max-width: 992px) {
  .footer .sub-footer-container {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    /* height: 80px; */
    height: auto;
    padding: 0.5rem 0;
  }

}

@media only screen and (max-width: 576px) {
  .footer.footer-1 .sub-footer {
    font-size: 12px;
  }
}

/* @media only screen and (max-width: 575px) {
  .footer .sub-footer-container {
    height: auto;
    padding: 0.5rem;
    align-items: flex-start;
  }
  
} */



.footer.footer-1 {
  background-color: var(--gray-100);
  color: var(--p-font-color);
}



.footer.footer-1 .footer-item .footer-item-heading h3 {
  color: #000;
}

.footer.footer-1 .footer-item .footer-item-heading h3:before {
  display: none;
}



.footer.footer-1 .footer-item .footer-item-content h6 {
  font-size: 14px;
  margin-bottom: 15px;
  opacity: 0.6;
}

.footer.footer-1 .footer-item .footer-item-content .footer-latest-post .post-item a {
  color: #e5e5e5;
}

.footer.footer-1 .footer-item .footer-item-content .footer-latest-post .post-item a:hover {
  color: #000;
}

.footer.footer-1 .footer-item .footer-item-content .footer-latest-post .post-item .post-time {
  color: #808080;
}

.footer.footer-1 .footer-item .footer-item-content .footer-infopage {
  margin-top: 0px;
}

.footer.footer-1 .footer-item .footer-item-content .footer-gallery {
  margin-top: 15px;
}

.footer .footer-item.footer-item-company>div {
  width: 70%;
}

.footer .footer-item.footer-item-company .footer-item-heading,
.footer .footer-item.footer-item-company .footer-item-content .footer-social {
  justify-content: center;
}

.footer .footer-item.footer-item-company .footer-item-content h6 {
  text-align: center;
  margin-bottom: 10px;
}

.footer .footer-item.footer-item-contact>div {
  width: 90%;
  margin-left: auto;
}

@media (max-width: 992px) {
  .footer .footer-item .footer-item-content .footer-list li.with-icon a {
    font-size: 16px;
  }

  .footer .footer-item.footer-item-links {
    padding-left: 0;
  }
}


@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer .main-footer {
    padding-bottom: 15px;
  }

  .footer .footer-item.footer-item-company>div,
  .footer .footer-item.footer-item-contact>div {
    width: 100%;
  }

  .footer .footer-item .footer-item-content {
    padding-bottom: 0;
  }

  .footer .footer-item .footer-item-content .footer-infopage {
    margin-top: 0;
  }
}

@media only screen and (max-width: 767px) {
  .footer .footer-item {
    margin-bottom: 2rem;
  }

  .footer .footer-item.footer-item-company {
    margin-bottom: 1rem;
  }

  .footer .footer-item.footer-item-company>div {
    width: 100%;
    padding-top: 0;
  }

  .footer .footer-item.footer-item-contact {
    order: 2;
  }

  .footer .footer-item.footer-item-contact>div {
    width: fit-content;
    margin: auto;
  }

  .footer .footer-item.footer-item-links {
    padding-left: 15px;
    order: 3;
  }

  .footer .footer-item.footer-item-links .footer-list {
    margin-left: 20%;
  }

  .footer .main-footer {
    padding-bottom: 0;
    padding-top: 2rem;
  }

  .footer .footer-item .footer-item-content {
    padding-bottom: 0;
  }

  .footer .footer-item .footer-item-content .footer-infopage {
    margin-top: 0;
  }

  .footer .footer-item .footer-item-content .footer-form input {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 150px;
    -moz-box-flex: 0;
    -ms-flex: 0 0 150px;
    flex: 0 0 150px;
  }
}



/*
========================================================================
    BLOG
========================================================================
*/
.blog-single .blog-single-content {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 2rem;
}

.blog-single .blog-single-content .post__content {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #efefef;
}

.blog-single .blog-single-content blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-weight: 400;
  border-left: 5px solid #eee;
}

.blog-single .blog-single-content blockquote p:last-child {
  margin-bottom: 0;
}

/* .blog-single .blog-single-content img {
  margin: 24px 0 33px;
  width: 100%;
} */
.blog-single .blog-single-content table {
  font-size: 16px;
}

.blog-single .blog-single-content table th,
.blog-single .blog-single-content table td {
  border-color: #999;
}

.blog-single .blog-single-content table th {
  border-bottom-width: 1px;
  vertical-align: middle;
  font-weight: 500;
}

.blog-single .blog-single-content table p {
  margin-bottom: 0;
}

.blog-single .blog-single-content .blog-single-list {
  margin-bottom: 18px;
}

.blog-single .blog-single-content .blog-single-list li.title {
  font-weight: 600;
  font-size: 15px;
  text-transform: none;
  color: #666;
  margin-bottom: 20px;
}

.blog-single .blog-single-content .blog-single-list li.title::before {
  display: none;
}

.blog-single .blog-single-content .blog-single-list li:before {
  content: '+';
  padding-right: 3px;
}

/*
========================================================================
    POST
========================================================================
*/
.post__date ul {
  padding-left: 0 !important;
}

.post__date ul li {
  display: inline-block;
  margin-right: 20px;
  font-size: 16px;
  line-height: 1.8461538462;
}

.blog-single .blog-single-content .post__date ul li a {
  color: #666;
  -webkit-transition: all 0.35s;
  -o-transition: all 0.35s;
  -moz-transition: all 0.35s;
  transition: all 0.35s;
}

.post__date ul li a:hover {
  text-decoration: underline;
}

.post__date ul li:last-child {
  margin-right: 0;
}

.post__date ul li:before {
  content: '';
  width: 11px;
  height: 11px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 8px;
  background-repeat: no-repeat;
  background-position: center;
}

.post__date ul li.date:before {
  background-image: url(../images/icon/date.png);
}

.post__date ul li.author:before {
  background-image: url(../images/icon/author.png);
}

.post__date ul li.comments:before {
  background-image: url(../images/icon/comment.png);
}

.post__title {
  display: block;
  color: var(--p-main-color);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  -webkit-transition: all 0.35s;
  -o-transition: all 0.35s;
  -moz-transition: all 0.35s;
  transition: all 0.35s;
  overflow: hidden;
}

/* .post__title a{
  color: var(--p-main-color);
}
.post__title a:hover {
  color: #118783;
} */

.post__title-1 {
  display: block;
  font-size: 36px;
  line-height: 1.25;
  font-weight: normal;
}

.posts {
  padding-top: 20px;
}

.posts .post-image {
  overflow: hidden;
}

.posts .post-image img {
  width: 100%;
  -webkit-transition: all 0.35s linear;
  -o-transition: all 0.35s linear;
  -moz-transition: all 0.35s linear;
  transition: all 0.35s linear;
}

.posts .post-image img:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.posts .post-body {
  padding: 25px 0;
}

.posts .post-body .post__date ul li {
  display: inline-block;
  margin-right: 20px;
  font-size: 15px;
  color: #999;
}

.posts .post-body .post__date ul li:last-child {
  margin-right: 0;
}

.posts .post-body .post__date ul li:before {
  content: '';
  width: 11px;
  height: 11px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 8px;
  background-repeat: no-repeat;
  background-position: center;
}

.posts .post-body .post__date ul li.date:before {
  background-image: url(../images/icon/date.png);
}

.posts .post-body .post__date ul li.author:before {
  background-image: url(../images/icon/author.png);
}

.posts .post-body .post__date ul li.comments:before {
  background-image: url(../images/icon/comment.png);
}

.posts .post-body .post__description {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 20px;
  height: 48px;
  overflow: hidden;
  color: var(--p-font-color);
}

.posts .post-body .post__more {
  color: #848484;
  font-size: 13px;
  line-height: 1.8461538462;
  border-bottom: 1px solid #848484;
  -webkit-transition: all .35s;
  -o-transition: all .35s;
  -moz-transition: all .35s;
  transition: all .35s;
}

.posts .post-body .post__more:hover {
  color: #000;
  border-bottom-color: #000;
}

@media only screen and (max-width: 575px) {
  .post__title-1 {
    font-size: 26px !important;
  }
}

#blog .posts .post-body {
  padding-bottom: 12px;
}

.triangle-left {
  border-right: 13px solid #fff;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -6.5px;
}

.triangle-right {
  border-left: 13px solid #fff;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -6.5px;
}

.post-link {
  margin-bottom: 15px;
}

.post-link a {
  width: 100%;
  color: #e5e5e5;
  display: block;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 1.2;
}

.post-link a:hover {
  color: #000;
}

.post-link span {
  font-size: 12px;
  color: #808080;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .posts.post-style-5 .post-image img {
    width: 100%;
  }

  .posts.post-style-5 .post-body {
    padding: 24px 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .posts .post-body .post__date ul li {
    margin-right: 10px;
  }
}

@media screen and (max-width: 575px) {
  .posts .post-body .post__date ul li {
    margin-right: 5px;
  }
}

/*
========================================================================
    FORM
========================================================================
*/
.au-form-body {
  padding: 25px 0 30px;
}

.au-form-body .au-form-title {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  font-size: 20px;
  font-weight: normal;
  line-height: 24px;
}

.au-form-body .au-form-title.form-title-border {
  margin-bottom: 8px;
  position: relative;
}

.au-form-body .au-form-title.form-title-border:after {
  content: '';
  width: 67px;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: -8px;
  left: 0;
}

.au-form-body fieldset {
  padding: 34px 30px 6px;
  border: 1px dashed #e5e5e5;
  width: 100%;
}

form {
  width: 100%;
}

form .au-form {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

form .au-form label {
  width: 100%;
}

form .au-form select {
  width: 100%;
  height: 42px;
  border: 1px solid #e5e5e5;
  padding: 0 20px;
  color: #999;
  font-size: 13px;
}

form .au-form select:focus {
  outline: none;
}

form .au-form textarea:focus {
  outline: none;
}

form .au-form input[type="checkbox"] {
  width: 14px;
  height: 13px;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  background-color: #ebebeb;
  border: 1px solid #ccc;
}

form .au-form button[type="submit"] {
  cursor: pointer;
  border: none;
}

form .au-form .form-checkbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

form .au-form .form-checkbox input[type="checkbox"] {
  margin-right: 8px;
}

form .au-form .form-checkbox label {
  margin-bottom: 0;
  color: #999;
}

form .au-form .form-forgot a {
  color: #999;
  -webkit-transition: all 0.35s;
  -o-transition: all 0.35s;
  -moz-transition: all 0.35s;
  transition: all 0.35s;
}

form .au-form .form-forgot a:hover {
  color: #333;
}

form .au-form .form-resetpass {
  width: 100%;
}

form .au-form .form-resetpass input {
  height: 60px;
  padding: 10px 20px;
}

form .au-form.require label:after {
  content: '*';
  color: #ff6666;
  margin-left: 5px;
}

.help-block {
  display: block !important;
  margin: 0;
  height: 25px;
}

.help-block ul li {
  font-size: 13px;
  color: #a94442;
}

.au-form .help-block {
  position: absolute;
  top: -10px;
  left: 15px;
}

button.disabled {
  cursor: not-allowed !important;
}

.quantity {
  display: inline-block;
  position: relative;
  width: 160px;
}

.quantity input[type="number"] {
  -moz-appearance: textfield;
  border: 1px solid var(--gray-300);
  width: 100%;
  text-align: center;
  padding: 0 48px;
  height: 48px;
  border-radius: 8px;
  font-size: 16px;
  color: var(--gray-900);
  background-color: transparent !important;
}

.quantity input[type="number"]:focus {
  border-color: var(--gray-900) !important;
}

.quantity input[type="number"]::-webkit-inner-spin-button, .quantity input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.quantity span {
  width: 45px;
  height: 45px;
  position: absolute;
  font-size: 15px;
  color: var(--gray-900);
  top: 0;
  margin-right: 0 !important;
  cursor: pointer;
}

.quantity span i {
  font-family: 'Feather';
  font-size: 21px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.quantity span i.fa-angle-down:before {
  content: "\e996";
}

.quantity span i.fa-angle-up:before {
  content: "\e9b1";
}

.quantity span.add {
  right: 0;
}

.quantity span.sub {
  left: 0;
}

.quantity span:hover {
  color: var(--p-font-color);
}

@media (max-width: 767px) {
  .quantity span {
    width: 25px;
    height: 35px;
  }
}

/*
========================================================================
    PRODUCT LIST
========================================================================
*/
.shop-list .shop-list-body.shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 2rem;
}

/*.shop-list .shop-grid .shop-product:last-child {
  margin: 0;
}*/

.shop-list .shop-grid .shop-product .product-image {
  margin-bottom: 1rem;
  position: relative;
}

.shop-list .shop-grid .shop-product .product-image a {
  position: relative;
  display: block;
  border: 1px solid #f3f3f3;
  padding: 10px;
  text-align: center;
  transition: all .3s;
  border-radius: 10px;
}

.shop-list .shop-grid .shop-product:hover .product-image a {
  border: 1px solid var(--p-main-color);
}

.shop-list .shop-grid .shop-product .product-image a::before,
.shop-list .shop-grid .shop-product .product-image a::after {
  display: none;
  content: " ";
  width: 0px;
  height: 0px;
  position: absolute;
  border: 0px solid #fff;
  transition: all .3s;
}

.shop-list .shop-grid .shop-product .product-image a::before {
  bottom: 0;
  right: 0;
  border-bottom: 1px solid #f3f3f3;
  border-right: 1px solid #f3f3f3;
}

.shop-list .shop-grid .shop-product .product-image a::after {
  top: 0;
  left: 0;
  border-top: 1px solid #f3f3f3;
  border-left: 1px solid #f3f3f3;
}

.shop-list .shop-grid .shop-product:hover .product-image a::before,
.shop-list .shop-grid .shop-product:hover .product-image a::after {
  width: 100%;
  height: 100%;
  border-color: var(--p-main-color);
}

.shop-list .shop-grid .shop-product .product-body {
  text-align: center;
  padding: 0 0 50px;
  width: 100%;
}

.shop-list .shop-product .product-body .name {
  font-size: 19px;
  margin-bottom: 0.5rem;
}

.shop-list .shop-grid .shop-product .product-body .product-rating,
.shop-list .shop-grid .shop-product .product-body .product-color {
  display: none;
}

.shop-list .shop-product .product-body .product-button, .grid-product .image .addcart {
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 0;
}

/*.shop-list .pro-select select, .shop-list .quantity input[type="number"] {
  border-color: #e6e6e6 !important;
}*/
.shop-product {
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  transition: all 0.35s ease;
  overflow: hidden;
}

.shop-product .product-image img {
  max-width: 70%;
}

.shop-product .product-body .description {
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray-600);
}

.shop-product .product-body .description ul {
  list-style: unset;
  padding-left: 20px;
  margin: inherit;
}

.shop-product .product-body .description li p {
  margin-bottom: 0;
}

.shop-product .product-body .pro-title {
  position: relative;
  display: flex;
  flex-direction: column;
}

.shop-product .product-body .name {
  /* color: #333; */
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0;
}

.shop-product .product-body .sub-title {
  display: block;
  font-size: 19px;
  color: var(--p-second-color);
  margin-top: 5px;
}

.shop-product .price {
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
}

.shop-list .shop-product .price .new-price span, .grid-product .price .new-price span {
  font-size: 200%;
  color: var(--p-focus-color);
}

.shop-product .price .new-price span {
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  color: var(--p-focus-color);
  margin-left: 5px;
}

.shop-product .price .new-price small,
.grid-product .price .new-price small {
  font-size: 18px;
}

.shop-product .price .old-price {
  color: var(--gray-400);
  font-size: 14px;
  margin-right: 10px;
}

.shop-product .price .old-price span {
  /* font-size: 16px; */
  text-decoration: line-through;
  margin-left: 0.25rem;
}

.shop-list .shop-product .price {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}

.shop-list .shop-product .price .pro-tag {
  margin: 0 10px 0 0;
}

.shop-product .product-body .product-color {
  padding-top: 3px;
}

.shop-product .product-body .product-color span.color {
  width: 30px;
  height: 30px;
  display: inline-block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin-right: 10px;
}

.shop-product .product-body .product-button,
.grid-product .image .addcart {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.shop-product .product-body .product-button .limited-txt {
  margin: 0 0 0 0.5rem;
}

.add-to-cart {
  display: inline-block;
  display: inline-block;
  color: #fff !important;
  outline: 0;
  min-width: 160px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 16px;
  padding-left: 2px;
  font-weight: 400;
  text-align: center;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  padding-right: 0;
}

.add-to-cart.buy-now:disabled {
  cursor: default;
  background-color: var(--gray-600) !important;
  border-color: var(--gray-600) !important;
}

.add-to-cart i {
  display: none;
  margin-right: 5px;
  font-size: 16px;
}

.add-to-cart.empty {
  cursor: default;
  background: #b3b3b3;
  background: -moz-linear-gradient(top, #b3b3b3 0%, #919191 100%);
  background: -webkit-linear-gradient(top, #b3b3b3 0%, #919191 100%);
  background: linear-gradient(to bottom, #b3b3b3 0%, #919191 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b3b3b3', endColorstr='#919191', GradientType=0);
}

.add-to-cart.empty:hover {
  background: #b3b3b3;
  background: -moz-linear-gradient(top, #b3b3b3 0%, #b3b3b3 100%);
  background: -webkit-linear-gradient(top, #b3b3b3 0%, #b3b3b3 100%);
  background: linear-gradient(to bottom, #b3b3b3 0%, #b3b3b3 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b3b3b3', endColorstr='#b3b3b3', GradientType=0);
}

.grid-product .image .addcart {
  width: 100%;
}

.product-body .add-to-cart:last-child {
  margin-right: 0;
}

.add-to-wishlist {
  height: 40px;
  line-height: 40px;
  width: 40px;
  min-width: auto;
  display: inline-block;
  background-color: #f3f3f3 !important;
  -webkit-transition: all 0.35s linear;
  -o-transition: all 0.35s linear;
  -moz-transition: all 0.35s linear;
  transition: all 0.35s linear;
}

.add-to-wishlist i {
  margin-right: 0 !important;
  font-size: 19px;
  color: #999;
  line-height: 40px;
  display: inline-block;
}

.add-to-wishlist.added i {
  color: var(--p-focus-color);
}

.shop-product .product-body .product-rating {
  position: absolute;
  top: 30px;
  right: 0;
  color: #ffcc66;
  cursor: pointer;
}

.shop-product .product-body .product-rating i {
  margin-right: 7px;
}

.shop-product .product-body .product-rating i:last-child {
  margin-right: 0;
}

.shop-product .product-body .product-available {
  line-height: 2.1333333333;
  padding: 30px 0 23px;
}

.shop-product .product-body .product-available span {
  color: #333;
}

.shop-product .product-body .product-available a {
  color: #000;
}

.shop-product .product-body .product-sku {
  line-height: 2.1333333333;
  color: #666;
}

.shop-product .product-body .product-sku span {
  color: #333;
}

.shop-product .product-body .product-categories {
  margin-bottom: span;
  margin-bottom-color: #333;
  line-height: 2.1333333333;
}

.shop-product .product-body .product-categories a {
  color: #666;
}

.shop-product .product-body .product-categories a:after {
  content: ',';
}

.shop-product .product-body .product-categories a:last-child:after {
  display: none;
}

.shop-product .product-body .product-share {
  display: flex;
  align-items: center;
}

.shop-product .product-body .product-share .social-media {
  display: flex;
}

/*
========================================================================
    SHOP CART
========================================================================
*/
.shop-cart {
  display: none;
  position: absolute;
  cursor: auto;
  top: 63px;
  right: 0;
  width: 304px;
  padding: 15px;
  z-index: 1;
  background-color: #ffffff;
  border-top: 0px solid var(--p-main-color);
  -webkit-box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
  -moz-box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
}

.shop-cart .empty-box img {
  width: 80px;
}

.shop-cart .shop-cart__list {
  padding-right: 10px;
  width: 100%;
  max-height: 400px;
  min-height: 250px;
  overflow-y: auto;
}

.shop-cart .shop-cart__list:has(.empty-box) {
  min-height: auto;
  padding-right: 0;
}


@media only screen and (max-width: 360px) {
  .shop-cart .shop-cart__list {
    max-height: 350px;
  }
}

.shop-cart .shop-cart__list::-webkit-scrollbar-track,
.modal-body::-webkit-scrollbar-track,
.shop-product .product-body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
  border-radius: 6px;
}

.shop-cart .shop-cart__list::-webkit-scrollbar,
.modal-body::-webkit-scrollbar,
.shop-product .product-body::-webkit-scrollbar {
  width: 6px;
}

.shop-cart .shop-cart__list::-webkit-scrollbar-thumb,
.modal-body::-webkit-scrollbar-thumb,
.shop-product .product-body::-webkit-scrollbar-thumb {
  background-color: #999;
  border-radius: 6px;
}

.shop-cart .shop-cart__list .item {
  width: 100%;
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  border-bottom: 1px dotted #eee;
  position: relative;
}


.shop-cart .shop-cart__list .item .item-image {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.shop-cart .shop-cart__list .item .item-detail {
  flex: 1;
  padding: 0 20px 8px 8px;
}

.shop-cart .shop-cart__list .item .item-detail p {
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 0;
}

.shop-cart .shop-cart__list .item .item-detail p.name {
  color: var(--p-font-color);
  font-size: 14px;
  margin-bottom: 4px;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shop-cart .shop-cart__list .item .item-detail p.spec {
  color: var(--gray-600);
}

.shop-cart .shop-cart__list .item .item-detail p.spec small {
  font-size: 12px;
  margin: 0 5px;

}

.shop-cart .shop-cart__list .item .item-detail p.price {
  color: var(--gray-900);
  font-size: 14px;
  font-weight: 500;
}

.shop-cart .shop-cart__list .item .item-detail p.amount {
  color: var(--gray-600);
  margin: 0;
}

.shop-cart .shop-cart__list .item .remove {
  position: absolute;
  display: inline-block;
  top: 0;
  right: 0;
  width: 14px;
  height: 14px;
  /* background: url(../images/icon/close.png) no-repeat; */
  cursor: pointer;
}

.shop-cart .checkout p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--p-font-color);
  font-weight: 400;
  margin: 12px 0 0 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.shop-cart .checkout p .sub-total {
  font-size: 18px;
  color: var(--p-focus-color);
  font-weight: bold;
}

.shop-cart .checkout p .total {
  font-size: 16px;
  color: #ff6666;
  font-weight: normal;
}

.shop-cart .checkout a {
  margin-top: 12px;
  display: block;
  height: 45px;
  line-height: 45px;
  border-radius: 8px;
  text-align: center;
  background-color: var(--p-main-color);
  color: #fff;
  -webkit-transition: all 0.35s;
  -o-transition: all 0.35s;
  -moz-transition: all 0.35s;
  transition: all 0.35s;
}

section.product-detail, section.multiple-block {
  padding: 1rem 0 2rem 0;
  background-color: #f9f9f9;
}

.product-detail .shop-product {
  border: none;
  padding: 0;
  /* padding: 1rem;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 20px 0 rgb(0 0 0 / 5%);
  -moz-box-shadow: 0 0 20px 0 rgb(0 0 0 / 5%);
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 5%); */
}

.product-detail .shop-product .product-body .product-color .color {
  width: 25px;
  height: 25px;
}

.shop-product .shop-btn .add-to-cart {
  height: 60px;
  font-size: 16px;
  min-width: 49%;
}

.shop-product .shop-btn .add-to-cart+.add-to-cart {
  margin-left: 1%;
}

.social-media.style-3 li {
  display: inline-block;
  margin-right: 5px;
}

.social-media.style-3 li a {
  color: #fff;
  font-size: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 45px;
  height: 45px;
  border-radius: 100%;
  background-color: var(--p-main-color);
  opacity: 1;
}

.social-media.style-3 li a.facebook {
  background-color: #4267B2;
}

.social-media.style-3 li a.line {
  background-color: #06c755;
}

.social-media.style-3 li a:hover {
  opacity: 0.8;
}

i.fa-line {
  background-image: url(../images/icon/share-line-w.svg);
  width: 25px;
  height: 25px;
  background-size: 100%;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 992px) {

  .shop-list .shop-list-body.shop-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 1rem;
  }

  .shop-list .shop-grid .shop-product .product-body {
    padding: 0 0 30px;
  }

}


@media only screen and (max-width: 992px) {
  .shop-cart {
    padding: 15px;
    top: 56px;
    right: -1rem;
  }

  .shop-cart .shop-cart__list {
    /* height: 250px; */
    overflow: auto;
  }

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

  .shop-product .product-body .pro-title {
    flex-direction: column-reverse;
  }

  .pro-title .pro-tag {
    margin-top: 0.5rem;
  }

  .product-detail-page .to-top,
  .member-page .to-top {
    bottom: 6.75rem;
  }

  .shop-list .shop-list-body.shop-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 1rem;
  }

  .shop-list .shop-grid .shop-product .product-body {
    padding: 0 0 30px;
  }

}

@media only screen and (max-width: 575px) {
  .to-top {
    right: 0.5rem;
    bottom: 1.25rem;
  }

  .shop-cart {
    top: 44px;
  }

  .shop-list {
    padding-bottom: 1rem;
  }

  .shop-list .shop-grid .shop-product .product-body {
    padding: 0 0 30px;
  }

  .shop-list .shop-grid .shop-product .product-body .product-rating {
    top: 60px;
  }

  .shop-list .shop-product .product-body .name,
  .grid-product .name {
    font-size: 16px;
    height: 40px;
  }

  /* .shop-list .shop-product .price .new-price, .grid-product .price .new-price {
    font-size: 24px;
  } */
  .shop-list .shop-product .price .new-price span, .grid-product .price .new-price span {
    font-size: 180%;
  }

  .shop-product .price .new-price span {
    font-size: 220%;
  }

  .social-media.style-3 li a {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .social-media.style-3 i.fa-line {
    width: 20px;
    height: 20px
  }
}

/*
========================================================================
    SIDEBAR
========================================================================
*/
.page-sidebar .page-sidebar-item {
  margin-bottom: 1.5rem;
}

.page-sidebar .page-sidebar-item:last-child {
  margin-bottom: 0;
}

.page-sidebar .page-sidebar-item .sidebar-item__heading {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
}

.page-sidebar .page-sidebar-item .sidebar-item__heading .title {
  font-weight: 500;
  font-size: 19px;
  /* color: #333; */
  font-weight: 500;
}

.page-sidebar .page-sidebar-item .sidebar-item__heading .title-border {
  width: 41px;
  display: block;
  height: 1px;
  margin-bottom: 1rem;
  margin-top: 0;
}


/*
========================================================================
    TABS
========================================================================
*/
.au-tabs {
  -webkit-transition: all 0.35s;
  -o-transition: all 0.35s;
  -moz-transition: all 0.35s;
  transition: all 0.35s;
}

.au-tabs .nav-tabs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-bottom: 0;
}

.au-tabs .nav-tabs li {
  font-size: 19px;
  font-weight: 300;
  line-height: 1.3333333333;
  padding: 0 25px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.au-tabs .nav-tabs li a {
  display: inline-block;
  color: #666;
  -webkit-transition: all 0.35s;
  -o-transition: all 0.35s;
  -moz-transition: all 0.35s;
  transition: all 0.35s;
  position: relative;
  padding: 15px 0;
  overflow: hidden;
  transition: all 0.35s;
}

.au-tabs .nav-tabs li a:hover {
  color: #222;
}

.au-tabs .nav-tabs li a:after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: -100%;
  width: 100%;
  height: 3px;
  background-color: var(--p-main-color);
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.au-tabs .nav-tabs li.active a {
  color: #333;
}

.au-tabs .nav-tabs li.active a:after,
.au-tabs .nav-tabs li:hover a:after {
  left: 0;
}

.au-tabs .tab-content {
  margin-top: 3rem;
}

@media (min-width: 1199px) {
  .au-tabs .tab-content .container>.row>.col-xl-9 {
    padding-left: 100px;
    padding-right: 100px;
  }
}

.au-tabs .tab-pane,
.certificate-block {
  margin: 3rem 0;
  padding-bottom: 3rem;
  border-bottom: 1px dotted #e5e5e5;
}

.certificate-block .more {
  margin: auto;
  margin-top: 1rem;
  text-align: center;
  width: fit-content;
  position: relative;
  padding: 0 0.25rem;
}

.certificate-block .btn {
  border-radius: 45px;
  min-width: 140px;
  background: #26C6B6;
  background: -moz-linear-gradient(top, #26C6B6 0%, #189F98 100%);
  background: -webkit-linear-gradient(top, #26C6B6 0%, #189F98 100%);
  background: linear-gradient(to bottom, #26C6B6 0%, #189F98 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#26C6B6', endColorstr='#189F98', GradientType=0);
}

.certificate-block .btn.btn-hand::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-image: url(../images/icon/hand.png?20230706);
  background-size: cover;
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
}

/* .au-tabs .tab-pane + .tab-pane{
  border-top: 1px dotted #e5e5e5;
  padding-top: 3rem;
} */
.au-tabs .tab-pane:first-child {
  margin-top: 0;
}

.au-tabs .tab-pane:last-child {
  margin-bottom: 0;
  border: 0;
  padding-bottom: 0;
}

.au-tabs .tab-content .title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  font-weight: 400;
}

.au-tabs .tab-content .multiple-block {
  padding-top: 3rem;
  margin-top: 3rem;
}

.au-tabs .nav-tabs.sticky-top {
  padding: 10px;
  width: 100%;
  left: 0;
  top: 127px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
  -moz-box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
  z-index: 2;
}

/* .sticky-top + .tab-content {
  padding-top: 290px;
} */
.au-tabs .tab-content>.tab-pane {
  display: block;
}

@media (max-width: 1366px) {
  .grid-product .product-button {
    display: flex;
  }

  .grid-product .image .addcart {
    display: none;
  }

}

@media (max-width: 1199px) {

  .au-tabs .nav-tabs.sticky-top {
    padding: 5px 0;
    top: 120px;
  }

}

@media (max-width: 992px) {
  .au-tabs .nav-tabs.sticky-top {
    top: 120px;
  }

}

@media (min-width: 576px) and (max-width: 767px) {
  .au-tabs .nav-tabs li {
    padding: 0 10px;
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .grid-product .image {
    margin-bottom: 10px;
  }
}

@media (max-width: 575px) {
  .au-tabs .nav-tabs.sticky-top {
    top: 110px;
  }

  .au-tabs .nav-tabs {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }

  .au-tabs .nav-tabs li {
    width: 25%;
    padding: 0 5px;
    font-size: 16px;
    justify-content: center;
  }
}