/*-----------------------------------------------------*/
/*                   ALL STYLES                        */
/*-----------------------------------------------------*/
:root {
  --p-main-color:  #26C6B6;
  --p-main-light:  #53c4a4;
  --p-second-color: #68a31a;
  --p-focus-color: #F44336;
  --p-font-color:  #5b5959;
  --swiper-theme-color: #26C6B6;
  --swiper-navigation-size: 50px;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans;Roboto:wght@300;400;500&family=Nunito:wght@300;500&display=swap&family=Rubik:wght@300;400&display=swap');

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

/*
========================================================================
    SAPCING
========================================================================
*/


body {
  margin: 0;
  padding: 0;
   font-family: "Arial", "Noto Sans TC", "Noto Sans", "-apple-system", "sans-serif" ;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  color: var(--p-font-color);
  padding-top: 180px;
}
body.mask {
  position: fixed;
  top: 0px;
  width: 100%;
}
section {
  position: relative;
}


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

.text-black {
  color: #333 !important;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
a{
	color: var(--p-main-color);
	transition: .2s;
}
a:hover {
  text-decoration: none;
	color: #1DCCC3;
	
}

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;
}
@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: 1rem;
  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;
}

/*
========================================================================
    GRID
========================================================================
*/

.grid-product {
  text-align: center;
  margin-bottom: 30px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #f3f3f3;
  border-radius: 10px;
}
.grid-product:hover {
  border: 1px solid #e5e5dc;
}
.grid-product .image {
  border-radius: 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;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.grid-product .image img {
  width: auto;
  height: auto;
  max-width: 80%;
    margin: auto;
}

.grid-product .image .addcart {
  position: absolute;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  transition: all 0.35s ease;
  width: 100%;
  bottom: 0;
  left: 0;
}

.grid-product .image:hover .addcart {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.grid-product .pro-body {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
}
.grid-product .price{
  display: flex;
  justify-content: center;
  align-items: center;
}
.grid-product .pro-tag{
  margin: 0 10px 0 0;
}
.grid-product .pro-tag span {
  margin-left: 0;
}
.grid-product .price .old-price{
  text-decoration: line-through;
}
.grid-product .product-button {
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 0;
  width: 100%;
}
.grid-product .product-button .add-to-cart{
  min-width: 160px;
}
.grid-product .name,
.shop-list .shop-product .product-body .name {
  color: var(--p-font-color);
  font-size: 17px;
  line-height: 1.2;
  display: block;
  height: 45px;
  overflow: hidden;
}
/* .shop-list .shop-grid .shop-product .price .new-price small,
.grid-product .price .new-price small,
.shop-product .price .new-price small, */
.price small{
	margin-right: 2px;
}

/*
========================================================================
    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 .header-wrapper-desktop .header {
  background: #fff;
  border-bottom: 1px solid #f3f3f3;
  -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%);
}

header .header-wrapper-desktop .header .header-main {
  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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  flex-direction: column;
  justify-content: space-between;
  -webkit-transition: all 0.35s;
  -o-transition: all 0.35s;
  -moz-transition: all 0.35s;
  transition: all 0.35s;
}
header .header-wrapper-desktop .header .header-main .header-right{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
header .header__logo {
  max-width: 110px;
  margin-top: 15px;
  height: 65px;
}
header .header-wrapper-desktop .header .header-main .header__navbar {
  /* margin-top: 5px; */
}
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: 17px;
  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: 17px;
  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: 17px;
  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 {
  margin-top: 1.25rem;
  z-index: 999;
  position: absolute;
  right: 2rem;
}
.header__button .noUi-handle:before{
  
}
.header__button > ul{
  display: flex;
}
.header__button > ul > li {
  list-style: none;
  padding-right: 1rem;
  position: relative;
  display: inline-block;
}
.header__button > ul > li small {
  font-weight: 300;
}
.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: #666;
}
.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: 0.8;
  -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?20230905);
}
.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;
  }
  body {
    padding-top: 172px;
  }
  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: 55px;
    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;
}
.header__button ul li ul.dropdown li a {
  text-decoration: none;
  padding: 5px;
  display: block;
  color: var(--p-font-color);
  font-weight: 300;
}
.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-focus-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: -8px;
}

.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: 5px;
    right: 30px;
  }
  .header__button .search-input {
    width: 243px;
    right: 7px;
    top: -7px;
  }
  .header__button small {
    display: none;
  }
}
@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 {
      right: 20px;
      top: 0;
  } 
  .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 {
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.header.header__fixed .header__button {
  margin-top: 0;
}
header .header__fixed .header__logo {
  margin: 13px 0;
  width: 100px;
  height: 60px;
}
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__fixed + .header__holder{
  height: 87px !important;
}

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 .header__fixed .header__logo {
    margin: 10px 0 10px 1rem;
  }
  .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: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  -webkit-justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 80px;
  background-color: #fff;
  border-bottom: 1px solid #eaeaea;
}

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: 17px;
  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: 17px;
}
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: 17px;
  /* 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 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: -18px;
  }
}


@media only screen and (max-width: 575px) {
  
  header .header-wrapper-mobile .header-mobile__bar{
    height: 70px;
  }
  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 .sub-footer-container {
  border-top: 1px solid #e5e5e5;
  height: 70px;
}
.footer .sub-footer .sub-footer-container > div{
  display: flex;
  align-items: center;
}

.footer .sub-footer .sub-footer-container > div p {
  margin-bottom: 0;
}
.footer .sub-footer .sub-footer-container > div p + p{
  margin-left: 1rem;
}
.footer.footer-1 .sub-footer {
  font-size: 13px;
  font-weight: 300;
  color: #777;
}
.footer.footer-1 .sub-footer a{
  color: #777;
}


@media only screen and (min-width: 767px) {
  .footer .sub-footer .sub-footer-container {
    display: flex;
  }
  .footer .sub-footer .sub-footer-container > div + div{
    margin-left: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer .sub-footer .sub-footer-container {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
}
/* @media only screen and (max-width: 575px) {
  .footer .sub-footer .sub-footer-container {
    height: auto;
    padding: 0.5rem;
    align-items: flex-start;
  }
  
} */



.footer.footer-1 {
  background-color: #f0f0f0;
  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: 17px;
  }
  .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: 17px;
  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 #d3d6d9;
  width: 100%;
  text-align: center;
  padding: 0 45px;
  height: 45px;
  border-radius: 45px;
  font-size: 19px;
  color: #666;
  background-color: transparent !important;
}
.quantity input[type="number"]:focus {
  border-color: #b2b3b5 !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: #ccc;
  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,
.increase_item:hover .proimg img::before,
.increase_item:hover .proimg img::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: 0.5rem;
  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 {
  overflow: hidden;
  position: relative;
}
.shop-product .product-body > div{
  margin-bottom: 0.75rem;
}
.shop-product .product-body .description{
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
}
.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: 400;
  letter-spacing: 2px;
  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-product .price .new-price{
  font-size: 16px;
} */
.shop-list .shop-product .price .new-price, .grid-product .price .new-price{
  /* color: var(--p-focus-color); 
  font-size: 28px;*/
}
.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: 230%;
  line-height: 1;
  color: var(--p-focus-color);
  margin-left: 5px;
}
.shop-product .price .new-price.original-price span {
  color: var(--p-font-color);
}
.shop-product .price .new-price small,
.grid-product .price .new-price small {
  font-size: 70%;
}
.shop-product .price .old-price{
  color: #999;
    font-size: 14px;
    margin-right: 10px;
}
.shop-product .price .old-price span{
  font-size: 130%;
  text-decoration: line-through;
}
.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: 200px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-family: 'Noto Sans HK', sans-serif;
  font-size: 15px;
  letter-spacing: 2px;
  padding-left: 2px;
  font-weight: 500;
  text-align: center;
  border-radius: 50px;
  border: 0;
  cursor: pointer;
  padding-right: 0;
}
.add-to-cart i{
  display: none;
    margin-right: 5px;
    font-size: 17px;
}
.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: 121px;
  right: -32px;
  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 / 5%);
  -moz-box-shadow: 0 0 20px 0 rgb(0 0 0 / 5%);
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 5%);
}
.header__fixed .shop-cart {
  top: 67px;
}
.shop-cart .shop-cart__list {
  padding-right: 10px;
  width: 100%;
  max-height: 350px;
	min-height: 250px;
  overflow-y: scroll;
}
.shop-cart .shop-cart__list::-webkit-scrollbar-track,
.modal-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 {
	width: 6px;
}
.shop-cart .shop-cart__list::-webkit-scrollbar-thumb,
.modal-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: 70px;
  height: 70px;
  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;
  display: flex;
  flex-wrap: wrap;
  padding: 0 20px 10px 10px;
}

.shop-cart .shop-cart__list .item .item-detail p {
  line-height: 1.5;
}

.shop-cart .shop-cart__list .item .item-detail p.name {
  color: var(--p-font-color);
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 4px;
  width: 100%;
}
.shop-cart .shop-cart__list .item .item-detail p.name span {
  color: #fff;
  background-color: #bbb;
  line-height: 1;
  padding: 0 3px;
  font-size: 13px;
}
.shop-cart .shop-cart__list .item .item-detail p.name span small{
  font-size: 12px;
  margin:  0 5px;;
}
.shop-cart .shop-cart__list .item .item-detail p.price {
  color: #333;
  font-size: 17px;
  margin-bottom: 0;
}

.shop-cart .shop-cart__list .item .item-detail p.amount {
  color: #999;
  font-size: 14px;
  font-weight: 300;
  margin: 0;
  /* padding-left: 5px; */
}
.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: 24px;
  color: var(--p-font-color);
  font-weight: 400;
  margin-bottom: 9px;
  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: 21px;
  color: var(--p-focus-color);
  font-weight: normal;
}

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

.shop-cart .checkout a {
  margin-top: 24px;
  display: block;
  height: 45px;
  line-height: 45px;
  border-radius: 6px;
  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: 17px;
  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 (max-width: 1199px) {
  .shop-cart {
    top: 111px;
  }
  }

@media only screen and (max-width: 992px) {
  .shop-cart {
    padding: 15px;
    top: 53px;
    right: -30px;
  }
  .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: 49px;
    right: -20px;
  }
  .shop-list {
    padding-bottom: 40px;
  }
  .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-list .add-to-cart {
    min-width: 85%;
    height: 45px;
    margin-right: 0 !important;
}
  .grid-product .product-button .add-to-cart {
    min-width: 100%;
    height: 45px;
  }
  .shop-product .price .new-price span {
    font-size: 220%;
}
.social-media.style-3 li a {
  width: 35px;
  height: 35px;
  font-size: 17px;
}
.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;
  }
  /* .au-tabs .nav-tabs li a {
    padding: 10px 0;
} */
  }
@media (max-width: 992px) {
  .header__button ul li ul.dropdown {
    top: 49px;
    right: -35px;
  }
  .au-tabs .nav-tabs.sticky-top {
    top: 120px;
  } 
  /* .shop-product .price {
    flex-direction: column;
  } */
}


@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: 17px;
    justify-content: center;
}
}