:root {
  --theme_color: #ffc702;
  --title_color: #161616;
}
li {
  list-style: none;
}
a {
  color: var(--title_color);
  text-decoration: none;
  font-size: 1rem;
}
i {
  font-style: normal;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  padding: 10px;
  overflow: hidden;
}
button,
input,
textarea {
  outline: none;
  border: none;
  font-family: unset;
}
input[type="submit"],
button {
  cursor: pointer;
}
textarea {
  resize: none;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: unset;
}
.center {
  text-align: center;
}
.flex_start {
  justify-content: flex-start;
}
.flex_center {
  justify-content: center;
}
.flex_end {
  justify-content: flex-end;
}
.flex_top {
  align-items: flex-start;
}
.flex_middle {
  align-items: center;
}
.flex_bottom {
  align-items: flex-end;
}
body {
  color: var(--title_color);
  font-family: "Roboto", sans-serif;
}
body.fixed {
  overflow: hidden;
  padding-right: 17px;
}
.only_mobile {
  display: none;
}
.content .content {
  padding: 0;
}
.gap {
  gap: 1.25rem;
}
li.swiper-slide {
  height: auto;
}
.grecaptcha-badge {
  visibility: hidden;
}
.oswald,
h1,
.title {
  font-family: 'Oswald', sans-serif;
}
.head .subtitle {
  display: block;
  color: #2b2b2b;
  font-size: 17px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
}
.head h2 {
  font-size: 46px;
  line-height: 62px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
}
.btn {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  cursor: pointer;
  background-color: transparent;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.3s;
  padding: 14px 22px;
  min-width: 186px;
}
.btn:hover {
  color: var(--title_color);
  border-color: var(--theme_color);
  background-color: var(--theme_color);
}
.btn_more {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  cursor: pointer;
  background-color: transparent;
  font-size: 18px;
  font-weight: 500;
  border: 1px solid #868686;
  transition: all 0.3s;
  padding: 14px 22px;
  min-width: 186px;
}
.btn_more.loading{
  text-indent: -9999px;
  transition: none !important;
  border-color: transparent !important;
  background-color: transparent !important;
}
.btn_more:hover {
  border-color: var(--theme_color);
  background-color: var(--theme_color);
}
.btn_arrow {
  cursor: pointer;
  background-color: transparent;
  max-width: max-content;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  font-size: 18px;
  font-weight: 500;
  gap: 10px;
}
.btn_arrow::after {
  content: '';
  display: block;
  width: 7px;
  height: 12px;
  background: url(../svg/arrow-r-b.svg) no-repeat center / contain;
  transition: all 0.5s;
}
.btn_arrow:hover::after {
  transform: translateX(5px);
}
.swiper_btns {
  display: flex;
  gap: 24px;
}
.swiper_btns div {
  width: 4rem;
  height: 4rem;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--title_color);
  clip-path: polygon(10px 0, 100% 0, 100% 100%, 0 100%, 0 10px);
}
.swiper_btns div::before {
  content: '';
  display: block;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  position: absolute;
  z-index: -1;
  left: 1px;
  top: 1px;
  transition: all 0.3s;
  background-color: var(--title_color);
  clip-path: polygon(10px 0, 100% 0, 100% 100%, 0 100%, 0 10px);
}
.swiper_btns div::after {
  content: '';
  display: block;
  width: 34.375%;
  height: 34.375%;
  background: url(../svg/arrow-b.svg) no-repeat center / contain;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
}
.swiper_btns div:hover {
  background-color: var(--theme_color);
}
.swiper_btns div:hover::before {
  background-color: var(--theme_color);
}
.swiper_btns div:hover::after {
  filter: none;
}
.swiper_btns .btn_next {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  background-color: #8b8b8b;
  pointer-events: none;
  cursor: default;
}
.swiper_btns .swiper-button-disabled::before {
  background-color: #fff;
}
.swiper_btns .swiper-button-disabled::after {
  filter: none;
}
.swiper_btns .swiper-button-disabled:hover {
  background-color: #8b8b8b;
}
.swiper_btns .swiper-button-disabled:hover::before {
  background-color: #fff;
}
.swiper_btns .swiper-button-disabled:hover::after {
  filter: none;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 1410px;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.swiper_btns.middle div {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.swiper_btns.middle .btn_next {
  left: unset;
  right: 0;
  transform: translateY(-50%) rotate(180deg);
}
div.swiper-pagination {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 18px;
  gap: 18px;
}
div.swiper-pagination .swiper-pagination-bullet {
  position: relative;
  width: 18px;
  height: 18px;
  background-color: transparent;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
div.swiper-pagination .swiper-pagination-bullet::before {
  content: '';
  display: block;
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
  border: 1px solid var(--title_color);
  transform: translate(-50%, -50%) scale(0);
  position: absolute;
  left: 50%;
  top: 50%;
  transition: all 0.3s;
}
div.swiper-pagination .swiper-pagination-bullet::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--title_color);
}
div.swiper-pagination .swiper-pagination-bullet-active::before {
  transform: translate(-50%, -50%) scale(1);
}
.single-product header {
  top: -167px;
}
.single-product .pop_cart.sticky {
  top: 0;
  height: 100vh;
}
header {
  position: sticky;
  top: -54px;
  z-index: 997;
  overflow: hidden;
  pointer-events: none;
  padding-bottom: 11px;
  margin-bottom: -11px;
}
header .content {
  width: calc(100% - 10rem);
  max-width: 1740px;
}
header .header_top {
  color: #fff;
  padding: 9px 0;
  background-color: #21242b;
  pointer-events: all;
}
header .header_top .center {
  flex: 1;
}
header .header_top .left,
header .header_top .right {
  width: 240px;
}
header .header_top .right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .header_top .icon_lang {
  cursor: pointer;
  font-size: 14px;
  font-weight: 300;
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 10px;
}
header .header_top .icon_lang::before {
  content: '';
  display: block;
  width: 21px;
  height: 21px;
  background: url(../svg/icon-lang-w.svg) no-repeat center / contain;
}
header .header_top .header_notice_swiper {
  height: 26px;
  width: 100%;
  overflow: hidden;
}
header .header_top .header_notice_swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  overflow: hidden;
  line-height: 1.5;
}
header .header_top .header_notice_swiper .swiper-slide::before {
  content: '';
  display: block;
  width: 26px;
  min-width: max-content;
  height: 26px;
  background: no-repeat center / contain;
  margin-right: 4px;
}
header .header_top .header_notice_swiper .swiper-slide p {
  flex: 1;
  max-width: max-content;
  height: 24px;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  transform: translateY(2px);
}
header .header_top .header_notice_swiper .swiper-slide a {
  display: block;
  min-width: max-content;
  color: var(--theme_color);
  transform: translateY(2px);
}
header .header_top .header_notice_swiper .swiper-slide a:hover {
  text-decoration: underline;
}
header .header_top .header_notice_swiper .icon_notice::before {
  background-image: url(../svg/icon-notice.svg);
}
header .header_main {
  padding: 12px 0;
  background-color: #14171e;
  pointer-events: all;
}
header .header_main .left{
  width: 100%;
  justify-content: space-between;
}
header .header_main .left,
header .header_main .right {
  display: flex;
  align-items: center;
}
header .header_main .logo {
  width: 243px;
  position: relative;
  z-index: 2;
}
header .header_main .logo::before {
  content: '';
  display: block;
  width: 100vw;
  height: 10px;
  background-color: #14171e;
  position: absolute;
  z-index: -1;
  top: calc(100% + 12px);
  right: 0;
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
header .header_main .logo::after {
  content: '';
  display: block;
  width: 1px;
  height: min(100%, 46px);
  background-color: rgba(255, 255, 255, 0.14);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
header .header_main .logo a {
  display: block;
  position: relative;
  overflow: hidden;
  text-indent: -999px;
  max-width: max-content;
}
header .header_main .logo img {
  display: block;
  width: 210px;
  height: auto;
}
header .header_main .logo p {
  position: absolute;
  inset: 0;
}
header .header_main .social {
  display: flex;
  gap: 10px;
  margin-left: 26px;
}
header .header_main .social li a {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  transition: all 0.3s;
  background-color: rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  text-indent: -999px;
}
header .header_main .social li a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / contain;
  transition: all 0.3s;
}
header .header_main .social li a:hover {
  background-color: var(--theme_color);
}
header .header_main .social li a:hover::after {
  filter: contrast(0) brightness(0);
}
header .header_main .social li.active a {
  background-color: var(--theme_color);
}
header .header_main .social li.active a::after {
  filter: contrast(0) brightness(0);
}
header .header_main .social .facebook a::after {
  background-image: url(../svg/icon-facebook-w.svg);
}
header .header_main .social .twitter a::after {
  background-image: url(../svg/icon-twitter-w.svg);
}
header .header_main .social .youtube a::after {
  background-image: url(../svg/icon-youtube-w.svg);
}
header .header_main .social .instagram a::after {
  background-image: url(../svg/icon-instagram-w.svg);
}
header .header_main .social .tfw a::after {
  background-image: url(../svg/icon-tfw-w.svg);
}
header .header_main .search {
  margin-right: 34px;
}
header .header_main .search form {
  width: 313px;
  border-radius: 6px;
  overflow: hidden;
  background-color: #23252b;
  display: grid;
  grid-template-columns: 1fr auto;
  transition: all 0.3s;
}
header .header_main .search form.active{
  width: 450px;
}
header .header_main .search form input[type="text"] {
  width: 100%;
  height: 52px;
  font-size: 17px;
  background-color: transparent;
  color: #fff;
  padding: 0 22px;
}
header .header_main .search form.active{
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
header .header_main .search form input[type="text"]::placeholder {
  color: #fff;
}
header .header_main .search form label {
  width: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
header .header_main .search form label::after {
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  background: url(../svg/icon-search-w.svg) no-repeat center/contain;
  transition: filter 0.3s;
}
header .header_main .search form.searching label::after{
  background-image: url('../gif/load.gif');
}
header .header_main .search form label:hover {
  background-color: var(--theme_color);
}
header .header_main .search form label:hover::after {
  filter: contrast(0) brightness(0);
}
header .header_main .search form label input {
  display: none;
}
header .header_main .search .icon_search {
  display: none;
}
header .header_main .btns {
  display: flex;
  align-items: center;
  gap: 28px;
}
header .header_main .btns .icon_cart {
  display: block;
  position: relative;
  width: 31px;
  height: 28px;
  background: url(../svg/header-cart.svg) no-repeat center / contain;
}
header .header_main .btns .icon_cart.empty_cart::after{
  display: none;
}
header .header_main .btns .icon_cart::after {
  content: attr(data-quantity);
  display: inline-block;
  vertical-align: top;
  line-height: 1rem;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  border-radius: 100px;
  background-color: var(--theme_color);
  padding: 0 4px;
  min-width: 1rem;
  box-sizing: border-box;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(35%, -20%);
}
header .header_main .btns .icon_pcenter {
  display: block;
  width: 31px;
  height: 31px;
  background: url(../svg/icon-pcenter.svg) no-repeat center / contain;
  overflow: hidden;
  text-indent: -999px;
}
header .header_main .btns .icon_lang {
  display: none;
}
header .header_main .btns .icon_menu {
  display: none;
}
footer .content {
  width: calc(100% - 10rem);
  max-width: 1740px;
}
footer .footer_service {
  padding: 52px 0 78px;
  color: #fff;
  background-color: #21242b;
  overflow: hidden;
}
footer .footer_service .item {
  flex: 1;
  display: grid;
  align-items: start;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  gap: 1rem 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  padding: 10px 1rem 1rem;
}
footer .footer_service .item:first-child {
  padding-left: 0;
}
footer .footer_service .item:last-child {
  border-right: none;
  padding-right: 0;
}
footer .footer_service .item i {
  display: block;
  width: 78px;
  padding-bottom: 100%;
  background: no-repeat center / contain;
  grid-row: span 2;
}
footer .footer_service .item .title {
  font-size: 24px;
  text-transform: uppercase;
}
footer .footer_service .item .desc {
  color: rgba(255, 255, 255, 0.75);
  line-height: 25px;
  font-weight: 300;
}
footer .footer_service .item .desc a {
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.3s;
  text-decoration: underline;
}
footer .footer_service .item .desc a:hover {
  color: var(--theme_color);
}
footer .footer_main {
  margin-top: -36px;
  color: #fff;
  padding: 120px 0 40px;
  background-color: #151618;
  clip-path: polygon(0 0, calc(100% - 150px) 0, calc(100% - 126px) 36px, 100% 36px, 100% 100%, 0 100%);
}
footer .footer_main .flex {
  gap: 3rem 20px;
}
footer .footer_main .slide_obj strong {
  display: block;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 34px;
}
footer .footer_main .slide_obj li {
  margin-bottom: 14px;
}
footer .footer_main .slide_obj li:last-child {
  margin-bottom: 0;
}
footer .footer_main .slide_obj li a {
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.3s;
  font-weight: 300;
}
footer .footer_main .slide_obj li a:hover {
  color: var(--theme_color);
}
footer .footer_main .slide_connect {
  width: 497px;
}
footer .footer_main .slide_connect p {
  margin-top: -18px;
  max-width: 352px;
  line-height: 23px;
  font-weight: 300;
  opacity: 0.85;
}
footer .footer_main .slide_connect form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  margin-top: 2rem;
  position: relative;
}
footer .footer_main .slide_connect form input[type="email"] {
  width: 100%;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.31);
  background-color: #272829;
  color: #fff !important;
  padding: 9px 22px;
  font-size: 17px;
  font-weight: 500;
}
footer .footer_main .slide_connect form input[type="email"]::placeholder {
  color: #fff;
}
footer .footer_main .slide_connect form input[type="submit"] {
  height: 3rem;
  color: var(--title_color);
  font-size: 17px;
  font-weight: 500;
  background-color: var(--theme_color);
  padding: 9px 23.5px;
  transition: all 0.3s;
  border: 1px solid var(--theme_color);
  text-transform: uppercase;
}
footer .footer_main .slide_connect form input[type="submit"]:hover {
  color: var(--theme_color);
  background-color: transparent;
}
footer .footer_main .slide_connect .social {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}
footer .footer_main .slide_connect .social li a {
  display: block;
  position: relative;
  width: 42px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.13);
  overflow: hidden;
  text-indent: -999px;
  transition: all 0.3s;
}
footer .footer_main .slide_connect .social li a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
}
footer .footer_main .slide_connect .social li a:hover {
  background-color: var(--theme_color);
}
footer .footer_main .slide_connect .social li a:hover::after {
  filter: none;
}
footer .footer_main .slide_connect .social li.active a {
  background-color: var(--theme_color);
}
footer .footer_main .slide_connect .social li.active a::after {
  filter: none;
}
footer .footer_main .slide_connect .social .facebook a::after {
  background-image: url(../svg/icon-facebook-b.svg);
}
footer .footer_main .slide_connect .social .instagram a::after {
  background-image: url(../svg/icon-instagram-b.svg);
}
footer .footer_main .slide_connect .social .youtube a::after {
  background-image: url(../svg/icon-youtube-b.svg);
}
footer .footer_main .slide_connect .social .twitter a::after {
  background-image: url(../svg/icon-twitter-b.svg);
}
footer .footer_main .slide_connect .social .tfw a::after {
  background-image: url(../svg/icon-tfw-w.svg);
}
footer .footer_main .slide_connect .social .tfw a:hover::after {
  filter: contrast(0) brightness(0);
}
footer .footer_main .logo {
  display: block;
  max-width: max-content;
  margin: 150px auto 0;
  position: relative;
  overflow: hidden;
  text-indent: -999px;
}
footer .footer_main .logo img {
  display: block;
  max-width: 264px;
}
footer .footer_main .logo p {
  position: absolute;
  inset: 0;
}
footer .copyright {
  color: #fff;
  padding: 15px 0 17px;
  background-color: #070707;
  overflow: hidden;
  margin-top: -1px;
}
footer .copyright p {
  opacity: 0.8;
  font-size: 14px;
  line-height: 25px;
  font-weight: 300;
}
footer .copyright ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
footer .copyright ul li {
  width: 46px;
}
footer .copyright ul li img {
  display: block;
  max-height: 25px;
}
.pop_cart {
  position: fixed;
  top: 102px;
  right: 0;
  z-index: 996;
  width: 284px;
  height: calc(100vh - 102px);
  transition: transform 0.4s ease-in-out, padding 0.3s;
  background-color: #23252b;
  padding: 78px 0 3rem 18px;
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  box-shadow: 0 10px 10px rgba(8, 12, 11, 0.2);
  transform: translateX(100%);
  overflow: auto;
}
.pop_cart.loading{
  position: fixed;
}
.pop_cart::-webkit-scrollbar {
  width: 5px;
}
.pop_cart::-webkit-scrollbar-thumb {
  background: #888888;
  border-radius: 10px;
}
.pop_cart.sticky {
  padding-top: 24px;
  top: 83px;
  height: calc(100vh - 83px);
}
.pop_cart.active {
  transform: translate(0);
}
.pop_cart .con {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
}
.pop_cart .con > div {
  margin-right: 18px;
}
.pop_cart .con > div.pd_list {
  margin-right: 3px;
}
.pop_cart .quantity {
  font-size: 18px;
  display: grid;
  align-items: center;
  gap: 10px;
  grid-template-columns: auto 1fr;
}
.pop_cart .quantity::before {
  content: '';
  display: block;
  width: 28px;
  height: 26px;
  background: url(../svg/icon-cart-w.svg) no-repeat center / contain;
}
.pop_cart .process {
  margin-top: 1rem;
  padding: 14px 0 20px;
  color: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}
.pop_cart .process p {
  font-size: 14px;
  line-height: 18px;
  font-weight: 300;
}
.pop_cart .process .bar {
  margin-top: 10px;
  width: 246px;
  height: 12px;
  padding: 3px;
  background: url(../svg/shipping-bar.svg) no-repeat center / contain;
}
.pop_cart .process .bar::after {
  content: '';
  display: block;
  
  height: 100%;
  background-color: var(--theme_color);
  transition: all 0.3s;

  animation: width_change 3s linear forwards;

}

@keyframes width_change {
  0%{
    width: 0%;
  }
  100%{
    width: var(--process);
  }
}
.pop_cart .process .tip {
  margin-top: 24px;
  display: block;
  align-items: start;
  grid-template-columns: auto 1fr;
  font-size: 14px;
  line-height: 18px;
  font-weight: 300;
  gap: 10px;
}
.pop_cart .process .tip::before {
  content: '';
  display: inline-block;
  width: 21px;
  height: 1rem;
  background: url(../svg/icon-notice.svg) no-repeat center / contain;
  transform: translateY(2px);
}
.pop_cart .pd_list {
  overflow: auto;
  padding-right: 15px;
  margin: 18px 0;
  min-height: 170px;
}
.pop_cart .pd_list ul li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  margin-bottom: 18px;
}
.pop_cart .pd_list ul li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.pop_cart .pd_list ul li .img {
  display: block;
  width: 95px;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.1);
}
.pop_cart .pd_list ul li .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: top;
  transition: all 0.5s;
  position: absolute;
  left: 0;
  top: 0;
}
.pop_cart .pd_list ul li .img:hover img {
  transform: scale(1.05);
}
.pop_cart .pd_list ul li .info {
  padding: 2px 0 0;
}
.pop_cart .pd_list ul li .info .state {
  opacity: 0.65;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 300;
}
.pop_cart .pd_list ul li .info .title {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #fff;
  margin-top: 4px;
}
.pop_cart .pd_list ul li .info .price {
  font-size: 14px;
  margin-top: 14px;
}
.pop_cart .pd_list ul li .info .price ins {
  text-decoration: none;
}
.pop_cart .pd_list ul li .info .price del {
  opacity: 0.58;
  margin-left: 0.2rem;
}
.pop_cart .pd_list ul li .info .discount {
  margin-top: 5px;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--theme_color);
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 5px;
}
.pop_cart .pd_list ul li .info .discount::before {
  content: '';
  display: block;
  width: 1rem;
  height: 1rem;
  background: url(../svg/icon-discount.svg) no-repeat center / contain;
}
.pop_cart .pd_list ul li .info .func {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 7px;
}
.pop_cart .pd_list ul li .info .func_quantity {
  width: 93px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}
.pop_cart .pd_list ul li .info .func_quantity input {
  width: 100%;
  height: 30px;
  background-color: transparent;
  color: #fff;
  text-align: center;
}
.pop_cart .pd_list ul li .info .func_quantity span {
  width: 34px;
  height: 30px;
  cursor: pointer;
  display: block;
  background: no-repeat center / 11px;
  transition: all 0.3s;
}
.pop_cart .pd_list ul li .info .func_quantity span:hover {
  filter: brightness(0.5);
}
.pop_cart .pd_list ul li .info .func_quantity .reduce {
  background-image: url(../svg/num-reduce.svg);
}
.pop_cart .pd_list ul li .info .func_quantity .add {
  background-image: url(../svg/num-add.svg);
}
.pop_cart .pd_list ul li .info .delete {
  width: 17px;
  height: 17px;
  cursor: pointer;
  background: url(../svg/icon-delete.svg) no-repeat center / contain;
}
.pop_cart .pd_list::-webkit-scrollbar {
  width: 5px;
}
.pop_cart .pd_list::-webkit-scrollbar-thumb {
  background: #888888;
  border-radius: 10px;
}
.pop_cart .btc {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  margin-top: auto;
}
.pop_cart .btc .subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.pop_cart .btc .price-line{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.pop_cart .btc .price-line span {
  font-size: 19px;
}
.pop_cart .btc .price-line .price, .pop_cart .btc .price-line .price span{
  font-size: 22px;
}

.pop_cart .btc .subtotal span {
  font-size: 19px;
}
.pop_cart .btc .subtotal .price, .pop_cart .btc .subtotal .price span{
  font-size: 22px;
}
.pop_cart .btc p {
  font-size: 13px;
  opacity: 0.75;
  font-weight: 300;
  margin-top: 17px;
}
.pop_cart .btc .btns {
  margin-top: 20px;
  display: grid;
  gap: 15px;
}
.pop_cart .btc .btns a {
  text-align: center;
  display: block;
  transition: all 0.3s;
  line-height: 2;
  font-weight: 500;
  padding: 9px 22px;
  text-transform: uppercase;
}
.pop_cart .btc .btns .checkout {
  border: 1px solid var(--theme_color);
  background-color: var(--theme_color);
  font-weight: 500;
}
.pop_cart .btc .btns .checkout:hover {
  color: var(--theme_color);
  background-color: transparent;
}
.pop_cart .btc .btns .viewcart {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
}
.pop_cart .btc .btns .viewcart:hover {
  color: var(--title_color);
  border-color: var(--theme_color);
  background-color: var(--theme_color);
}
.pop_ad {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 995;
  width: 289px;
  height: 422px;
  box-shadow: 0 10px 10px rgba(8, 12, 11, 0.2);
  clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%, 0 20px);
  background: url(../svg/pop-ad-bg.svg) no-repeat center / cover;
  background-color: var(--theme_color);
  transition: transform 0.4s ease-in-out;
  overflow: hidden;
}
.pop_ad.hide {
  transform: translateX(100%);
}
.pop_ad .close {
  padding: 6px;
  position: absolute;
  right: 12px;
  top: 12px;
  cursor: pointer;
  transition: all 0.3s;
}
.pop_ad .close::after {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  background: url(../svg/close.svg) no-repeat center / contain;
}
.pop_ad .close:hover {
  transform: rotate(180deg);
}
.pop_ad a {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  text-align: center;
  gap: 30px;
  padding: 26px 18px;
}
.pop_ad a:hover img {
  transform: scale(1.02);
}
.pop_ad a .img {
  display: flex;
  align-items: flex-end;
}
.pop_ad a .img img {
  transition: all 0.5s;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.pop_ad a .info .title {
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  text-transform: uppercase;
}
.pop_ad a .info .desc {
  font-size: 13px;
  line-height: 17px;
  opacity: 0.85;
  margin: 12px 0;
}
.pop_ad a .info .get {
  display: inline-block;
  vertical-align: top;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 2;
  padding: 5px 22px;
  transition: all 0.3s;
  border: 1px solid rgba(22, 22, 22, 0.6);
}
.pop_ad a .info .get:hover {
  color: #fff;
  border-color: var(--title_color);
  background-color: var(--title_color);
}
.sidebar {
  position: fixed;
  top: 102px;
  left: 0;
  z-index: 996;
  width: 284px;
  height: calc(100vh - 102px);
  transition: transform 0.4s ease-in-out, padding 0.3s;
  background-color: #23252b;
  padding: 60px 0 62px 18px;
  color: #fff;
  /* clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%); */
  box-shadow: 0 10px 10px rgba(8, 12, 11, 0.2);
  font-family: 'Oswald', sans-serif;
}
.sidebar.sticky {
  padding-top: 6px;
  top: 89px;
  height: calc(100vh - 89px);
}
.sidebar .con {
  width: 100%;
  height: 100%;
  overflow: auto;
  padding-right: 18px;
}
.sidebar .con::-webkit-scrollbar {
  width: 5px;
}
.sidebar .con::-webkit-scrollbar-thumb {
  background: #888888;
  border-radius: 10px;
}
.sidebar .item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.sidebar .item:last-child {
  border-bottom: none;
}
.sidebar .item .title {
  margin: 6px 0 4px;
  padding: 1rem 2px 1rem 0;
  text-transform: uppercase;
  font-size: 18px;
  cursor: pointer;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
}
.sidebar .item .title::after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background: url(../svg/num-reduce.svg) no-repeat center / contain;
  transition: all 0.3s;
  opacity: 0.8;
}
.sidebar .item ul {
  padding-bottom: 24px;
}
.sidebar .item ul li {
  color: #c8c8ca;
  transition: all 0.3s;
  cursor: pointer;
  font-weight: 300;
  margin-bottom: 5px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 15px;
}
.sidebar .item ul li.hidden-term{
  display: none;
}
.sidebar .item ul li a{
  color: #c8c8ca;
  transition: all 0.3s;
  cursor: pointer;
  font-weight: 300;
}
.sidebar .item ul li.hide {
  display: none;
}
.sidebar .item ul li:last-child {
  margin-bottom: 0;
}
.sidebar .item ul li::before {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateY(4px);
  transition: all 0.3s;
}
.sidebar .item ul li:hover, .sidebar .item ul li:hover>a {
  color: var(--theme_color);
}
.sidebar .item ul li:hover::before {
  border-color: var(--theme_color);
}
.sidebar .item ul li.active {
  color: var(--theme_color);
}
.sidebar .item ul li.active>a{
  color: var(--theme_color);
}
.sidebar .item ul li.active::before {
  background: url(../svg/checked.svg) no-repeat center / contain;
  border-color: var(--theme_color);
  background-color: var(--theme_color);
}
.sidebar .item .show {
  cursor: pointer;
  font-size: 15px;
  font-family: "Roboto", sans-serif;
  color: var(--theme_color);
  max-width: max-content;
  margin: -7px 0 23px 33px;
}
.sidebar .item .show:hover {
  text-decoration: underline;
}
.sidebar .item.hide .title::after {
  opacity: 1;
  background-image: url(../svg/num-add.svg);
  transform: rotate(180deg);
}
.sidebar .cate ul {
  padding-bottom: 30px;
}
.sidebar .cate ul li {
  color: #919295;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  margin-bottom: 13px;
}
.sidebar .cate ul li::before {
  width: 25px;
  height: 25px;
  border: none;
  background: var(--icon) no-repeat center / contain;
  filter: contrast(0) brightness(1.4);
  transform: translate(0);
}
.sidebar .cate ul li .sub_term{
  grid-column: span 3;
  order: 9;
  display: none;
}
.sidebar .cate ul li .sub_term li:before{
  opacity: 0;
}
.sidebar .cate ul li::after {
  content: '';
  display: block;
  width: 7px;
  height: 12px;
  background: url(../svg/arrow-r.svg) no-repeat center / contain;
  transition: all 0.3s;
  filter: contrast(0);
  margin-right: 4px;
}
.sidebar .cate ul li:hover::before {
  filter: none;
}
.sidebar .cate ul li.active::before {
  filter: none;
  background: var(--icon) no-repeat center / contain;
}
.sidebar .cate ul li.active::after {
  filter: none;
}
.sidebar .cate ul li.active.has_childs::after {
  transform: rotate(90deg);
}

.sidebar.home_sidebar .state ul li {
  gap: 12px;
}
.sidebar.home_sidebar .state ul li::before {
  width: 7px;
  height: 12px;
  filter: contrast(0);
  transform: translateY(7px);
  border: none;
  background: url(../svg/arrow-r.svg) no-repeat center / contain;
}
.sidebar.home_sidebar .state ul li.active::before {
  filter: none;
  background: url(../svg/arrow-r.svg) no-repeat center / contain;
}
.home_sidebar .icon_open{
  width: 45px;
  height: 40px;
  border-radius: 0 20rem 20rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  background-color: #23252b;
  cursor: pointer;
}
.home_sidebar .icon_open:after{
  content: "";
  width: 25px;
  height: 25px;
  transition: all 0.3s;
  background: url('../svg/close-yellow.svg') no-repeat center/contain;
  display: inline-block;
}
.home_sidebar.hide .icon_open:after{
  background-image: url('../svg/menu.svg');
}
.home_sidebar{
  clip-path: none;
  background-color: transparent;
  box-shadow: none;
}
.home_sidebar:after{
  content: "";
  width: 100%;
  height: 100%;
  background: #23252b;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
  box-shadow: 0 10px 10px rgba(8, 12, 11, 0.2);;
}
.sidebar.hide {
  transform: translateX(-100%);
}
.product_items .product_item {
  /* max-width: 392px; */
  max-width: 227px;
  position: relative;
  transition: all 0.3s;
}

.product_items .product_item .like {
  width: 23px;
  height: 20px;
  cursor: pointer;
  background: url(../svg/like.svg) no-repeat center / contain;
  transition: all 0.3s;
  position: absolute;
  top: 36px;
  right: calc(7.142858% + 2px);
  z-index: 6;
  pointer-events: all;
}
.product_items .product_item .like.liked {
  background-image: url(../svg/liked.svg);
}
.product_items .product_item .like:active {
  transform: scale(0.92);
}
.product_items .product_item .add_cart {
  position: absolute;
  right: calc(7.142858% + 2px);
  bottom: 34px;
  z-index: 3;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  background-color: var(--theme_color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}


.product_items .product_item.product_item_sold_out:after{
  content: "";
  width: 100%;
  height: 100%;
  color: white;
  background: rgba(255, 255, 255, 0.7) url('../svg/sold-out.svg') no-repeat center 20%/40%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}

.product_items .product_item .add_cart::after {
  content: '';
  display: block;
  width: 55%;
  height: 55%;
  background: url(../svg/header-cart-black.svg) no-repeat center / contain;
  transition: all 0.3s;
}
.product_items .product_item .add_cart:hover {
  box-shadow: 0 0 8px rgba(255, 199, 2, 0.5);
}
.product_items .product_item .add_cart.added::after {
  width: 35%;
  height: 35%;
  background-image: url(../svg/added.svg);
}
.product_items .product_item .add_cart.adding:after {
  aspect-ratio: 2;
  --_g: no-repeat radial-gradient(circle closest-side, #000 90%, #0000);
  background: var(--_g) 0% 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
  background-size: calc(90%/3) 50%;
  animation: l3 1.5s infinite linear;
}

@keyframes l3 {
  20% {
    background-position: 0% 0%, 50% 50%, 100% 50%;
  }
  40% {
    background-position: 0% 100%, 50% 0%, 100% 50%;
  }
  60% {
    background-position: 0% 50%, 50% 100%, 100% 0%;
  }
  80% {
    background-position: 0% 50%, 50% 50%, 100% 100%;
  }
}
.product_items .product_item .add_cart:active {
  transform: scale(0.92);
}
.product_items .product_item .send_email {
  position: absolute;
  right: calc(7.142858% + 2px);
  bottom: 34px;
  z-index: 3;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  background-color: var(--title_color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.product_items .product_item .send_email::after {
  content: '';
  display: block;
  width: 55%;
  height: 55%;
  background: url(../svg/icon-email-b.svg) no-repeat center / contain;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
}
.product_items .product_item .send_email:hover {
  background-color: var(--theme_color);
}
.product_items .product_item .send_email:hover::after {
  filter: none;
}
.product_items .product_item .send_email:active {
  transform: scale(0.92);
}
.product_items .product_item .discount {
  position: absolute;
  top: 0;
  left: 6.63266%;
  z-index: 3;
  background-color: #e52e2e;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-width: 58px;
  padding: 12px 6px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), 50% 100%, 0 calc(100% - 12px));
}
.product_items .product_item .discount .percent {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: -3px;
}
.product_items .product_item a {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  overflow: hidden;
  position: relative;
  z-index: 2;
  /* padding: 34px 7.142858% 34px; */
  background-color: #d1d1d1;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}
.product_items .product_item a::before {
  content: '';
  display: block;
  position: absolute;
  z-index: -2;
  left: 1px;
  top: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background-color: #f6f6f6;
  transition: all 0.3s;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}
.product_items .product_item a::after {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  inset: 0;
  transition: all 0.3s;
  background: url(../svg/product-bg.svg) no-repeat center / cover;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
  opacity: 0;
}
.product_items .product_item a:hover img {
  transform: scale(1.03);
}
.product_items .product_item .img {
  position: relative;
  padding-bottom: 100%;
  overflow: hidden;
  border: 1px solid #d1d1d1;
  border-bottom: none;
}
.product_items .product_item .quick_view{
  width: 50px;
  height: 50px;
  display: inline-block;
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  text-indent: -9999px;
  cursor: pointer;
  background: url('../svg/icon-search-w.svg') no-repeat center/40%;
  filter: brightness(0);
  transform: translate(-50%,-50%) scale(0) ;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7);
  clip-path: polygon(10px 0, 100% 0, 100% 100%, 0 100%, 0 10px);

  transition: transform 0.3s;

}
.product_items .product_item .quick_view.viewing{
  background: none;
  transform: translate(-50%,-50%) scale(1) ;
}
.product_items .product_item .quick_view:before{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transition: all 0.3s;
  width: 50%;
  height: 50%;
  transform: translate(-50%,-50%);
  transition: all 0.3s;
  aspect-ratio: 2;
  --_g: no-repeat radial-gradient(circle closest-side, #fff 90%, #0000);
  background: var(--_g) 0% 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
  background-size: calc(90% / 3) 50%;
  animation: l3 1.5s infinite linear;
  position: absolute;
  z-index: 15;
  opacity: 0;
}
.product_items .product_item .quick_view.viewing:before{
  opacity: 1;
}
.product_items .product_item.active .quick_view{
  filter: brightness(1);
  transform: translate(-50%,-50%) scale(1) ;
}
.product_items .product_item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s;
}
.product_items .product_item .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-top: 14px;
  padding: 0px 7.142858% 34px;
}
.product_items .product_item .info .state {
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
  max-width: max-content;
  padding: 2px 14px 0;
  clip-path: polygon(0 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  margin-bottom: 13px;
}
.product_items .product_item .info .state.pre_order {
  background-color: #ffd95f;
}
.product_items .product_item .info .state.in_stock {
  background-color: #80d9f0;
}
.product_items .product_item .info .state.sold_out {
  background-color: #d1d1d1;
}
.product_items .product_item .info .title {
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  height: 50px;
  transition: all 0.3s;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product_items .product_item .info .tags {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
}
.product_items .product_item .info .tags li {
  color: #494949;
  font-size: 14px;
  line-height: 20px;
  transition: all 0.3s;
  border: 1px solid rgba(134, 134, 134, 0.69);
  white-space: nowrap;
  padding: 2px 10px 0;
}
.product_items .product_item .info .btc {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 12px;
}
.product_items .product_item .info .btc .gap {
  width: 45px;
  height: 45px;
  margin-right: 2px;
}
.product_items .product_item .info .price_box {
  display: flex;
  gap: 0.5rem;
  padding-bottom: 4px;
}
.product_items .product_item .info .price_box span {
  display: block;
  font-size: 13px;
  font-weight: 300;
  transition: all 0.3s;
  margin-bottom: 8px;
  line-height: 1;
}
.product_items .product_item .info .price, .product_items .product_item .info .price>span.amount, .product_items .product_item .info .price>span.amount .woocommerce-Price-currencySymbol, .product_items .product_item .info .price>span.amount span{
  transition: all 0.3s;
  font-size: 18px;
  font-weight: 500;
}
.product_items .product_item .info .price ins {
  text-decoration: none;
}
.product_items .product_item .info .price ins span{
  display: inline-block;
  font-size: inherit;
  color: inherit;
  margin: 0;
  font-weight: inherit;
}
.product_items .product_item .info .price del {
  opacity: 0.58;
  font-size: 14px;
  font-weight: normal;
  margin-left: 0.3rem;
}
.product_items .product_item .info .price del span{
  display: inline-block;
  font-size: inherit;
  color: inherit;
  margin: 0;
  text-decoration: line-through;
}
.product_items .product_item .info .full_price {
  flex: 1;
}
.product_items .product_item .info .full_price + .deposit{
  border-left: 1px solid rgba(134, 134, 134, 0.6);
}
.product_items .product_item .info .deposit {
  width: 40.433213%;
  padding-left: 0.5rem;
}
.product_items .product_item[data-rank]::before {
  content: '';
  display: block;
  position: absolute;
  top: 24px;
  z-index: 3;
  font-family: 'Oswald', sans-serif;
  pointer-events: none;
}
.product_items .product_item[data-rank]:not([data-rank="1"], [data-rank="2"])::before {
  content: attr(data-rank);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 7.142858%;
  width: 42px;
  height: 3rem;
  background: url(../svg/product-rank.svg) no-repeat center / contain;
}
.product_items .product_item[data-rank][data-rank="1"]::before {
  top: 22px;
  left: 5.10205%;
  width: 76px;
  height: 53px;
  background-image: url(../svg/product-rank1.svg);
}
.product_items .product_item[data-rank][data-rank="2"]::before {
  left: 5.61225%;
  width: 76px;
  height: 3rem;
  background-image: url(../svg/product-rank2.svg);
}
.product_items .product_item[data-rank][data-rank="3"]::before {
  background-image: url(../svg/product-rank3.svg);
}
.product_items .product_item[data-rank] .discount {
  display: none;
}
.product_items .product_item.active {
  filter: drop-shadow(0 8px 8px rgba(114, 114, 114, 0.55));
}
.product_items .product_item.active .like {
  filter: contrast(0) brightness(2);
}
.product_items .product_item.active .like:hover {
  filter: none;
  background-image: url(../svg/liked.svg);
}
.product_items .product_item.active .like.liked {
  filter: none;
}
.product_items .product_item.active .send_email {
  background-color: var(--theme_color);
}
.product_items .product_item.active .send_email::after {
  filter: none;
}
.product_items .product_item.active .send_email:hover {
  box-shadow: 0 0 8px rgba(255, 199, 2, 0.5);
}
.product_items .product_item.active a::after {
  opacity: 1;
}
.product_items .product_item.active .info .title {
  color: #fff;
}
.product_items .product_item.active .info .tags li {
  color: #d1d1d2;
  border-color: rgba(255, 255, 255, 0.29);
}
.product_items .product_item.active .info .tags li:hover {
  color: var(--title_color);
  border-color: var(--theme_color);
  background-color: var(--theme_color);
}
.product_items .product_item.active .info .price_box span {
  color: #fff;
}
.product_items .product_item.active .info .price {
  color: #fff;
}
.product_items.col4 .product_item .like {
  top: 30px;
}
.product_items.col4 .product_item .discount {
  min-width: 50px;
  font-size: 12px;
}
.product_items.col4 .product_item .discount .percent {
  font-size: 20px;
}
.product_items.col4 .product_item .add_cart {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}
.product_items.col4 .product_item .add_cart:active {
  transform: translate(-50%, 50%) scale(0.92);
}
.product_items.col4 .product_item .send_email {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  background-color: var(--theme_color);
}
.product_items.col4 .product_item .send_email::after {
  width: 50%;
  height: 50%;
  filter: contrast(0) brightness(0);
}
.product_items.col4 .product_item .send_email:active {
  transform: translate(-50%, 50%) scale(0.92);
}
.product_items.col4 .product_item .info .state {
  font-size: 13px;
  line-height: 20px;
  padding: 2px 12px 0;
}
.product_items.col4 .product_item .info .title {
  font-size: 17px;
}
.product_items.col4 .product_item .info .btc {
  display: block;
}
.product_items.col4 .product_item .info .btc .gap {
  display: none;
}
.product_items.col4 .product_item .info .price_box {
  padding-bottom: 14px;
}
.product_items.col4 .product_item .info .price ins {
  font-size: 17px;
}
.product_items.col4 .product_item .info .price del {
  font-size: 13px;
}
.product_items.col4 .product_item .info .deposit {
  width: 34.263%;
}
.product_items.col5 .product_item .like {
  top: 21px;
}
.product_items.col5 .product_item .discount {
  min-width: 50px;
  font-size: 12px;
}
.product_items.col5 .product_item .discount .percent {
  font-size: 20px;
}
.product_items.col5 .product_item .add_cart {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}
.product_items.col5 .product_item .add_cart:active {
  transform: translate(-50%, 50%) scale(0.92);
}
.product_items.col5 .product_item .send_email {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  background-color: var(--theme_color);
}
.product_items.col5 .product_item .send_email::after {
  width: 50%;
  height: 50%;
  filter: contrast(0) brightness(0);
}
.product_items.col5 .product_item .send_email:active {
  transform: translate(-50%, 50%) scale(0.92);
}
.product_items.col5 .product_item a {
  clip-path: polygon(0 0, calc(100% - 1rem) 0, 100% 1rem, 100% 100%, 0 100%);
}
.product_items.col5 .product_item a::before,
.product_items.col5 .product_item a::after {
  clip-path: polygon(0 0, calc(100% - 1rem) 0, 100% 1rem, 100% 100%, 0 100%);
}
.product_items.col5 .product_item .info .state {
  font-size: 13px;
  line-height: 20px;
  padding: 2px 10px 0 7px;
  margin-bottom: 8px;
}
.product_items.col5 .product_item .info .title {
  font-size: 17px;
}
.product_items.col5 .product_item .info .tags li {
  font-size: 13px;
  padding-top: 1px;
}
.product_items.col5 .product_item .info .btc {
  display: block;
}
.product_items.col5 .product_item .info .btc .gap {
  display: none;
}
.product_items.col5 .product_item .info .price_box {
  display: block;
}
.product_items.col5 .product_item .info .price_box span {
  margin: 0;
}
.product_items.col5 .product_item .info .price {
  text-align: right;
}
.product_items.col5 .product_item .info .price ins {
  font-size: 17px;
  display: block;
}
.product_items.col5 .product_item .info .price del {
  font-size: 13px;
  display: block;
}
.product_items.col5 .product_item .info .full_price {
  display: grid;
  align-items: start;
  grid-template-columns: auto 1fr;
  gap: 12px;
}
.product_items.col5 .product_item .info .deposit {
  margin-top: 10px;
  display: grid;
  align-items: start;
  grid-template-columns: auto 1fr;
  gap: 12px;
  width: 100%;
  padding: 10px 0 0;
  border: none;
  border-top: 1px solid rgba(134, 134, 134, 0.29);
}
.product_items.col5 .product_item.active .info .deposit {
  border-color: rgba(255, 255, 255, 0.29);
}
.countdown {
  display: flex;
  gap: 10px;
}
.countdown .item {
  min-width: 96px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-align: center;
  background-color: var(--title_color);
}
.countdown .item strong {
  color: #fff;
  font-size: 34px;
  font-weight: 500;
}
.countdown .item span {
  color: #919191;
  font-size: 15px;
  text-transform: uppercase;
}
.sy_contentfaq .sy_fap_group .faqs {
  margin-top: 19px;
  padding-top: 11px;
  border-top: 1px solid #e8e8e8;
}
.sy_contentfaq .sy_fap_group .faqs .faq {
  border-bottom: 1px solid #d9d9d9;
  transition: all 0.3s;
}
.sy_contentfaq .sy_fap_group .faqs .faq.hide{
  display: none;
}
.sy_contentfaq .sy_fap_group .faqs .faq.active {
  border-color: var(--title_color);
}
.sy_contentfaq .sy_fap_group .faqs .faq.active .question span {
  transform: rotate(135deg);
}
.sy_contentfaq .sy_fap_group .faqs .faq:first-child .answer {
  display: block;
}
.sy_contentfaq .sy_fap_group .faqs .faq .question {
  cursor: pointer;
  display: grid;
  align-items: center;
  gap: 12px;
  grid-template-columns: 1fr auto;
  padding: 15px 0 22px;
}
.sy_contentfaq .sy_fap_group .faqs .faq .question strong {
  font-size: 22px;
  font-weight: 600;
  font-family: 'Oswald', sans-serif;
}
.sy_contentfaq .sy_fap_group .faqs .faq .question span {
  display: block;
  width: 1rem;
  height: 1rem;
  background: url(../svg/plus-b.svg) no-repeat center / contain;
  transition: all 0.3s;
}
.sy_contentfaq .sy_fap_group .faqs .faq .answer {
  display: none;
  padding-bottom: 24px;
  color: #494949;
  font-size: 17px;
  line-height: 30px;
}
.sy_contentfaq .sy_fap_group button,
.sy_contentfaq .sy_fap_group a {
  cursor: pointer;
  margin: 30px 0 0 auto;
  max-width: max-content;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  font-size: 18px;
  font-weight: 500;
  background-color: transparent;
  gap: 10px;
}
.sy_contentfaq .sy_fap_group button::after,
.sy_contentfaq .sy_fap_group a::after {
  content: '';
  display: block;
  width: 7px;
  height: 12px;
  background: url(../svg/arrow-r-b.svg) no-repeat center / contain;
  transition: all 0.5s;
}
.sy_contentfaq .sy_fap_group button:hover::after,
.sy_contentfaq .sy_fap_group a:hover::after {
  transform: translateX(5px);
}
.page_banner {
  color: #fff;
  overflow: hidden;
  background: url(../svg/page-banner-bg.svg) no-repeat bottom center / cover #0c0d10;
}
.page_banner .flex {
  min-height: 322px;
  padding: 4rem 0;
  position: relative;
}
.page_banner .flex::after {
  content: '';
  display: block;
  width: 100vw;
  height: 25px;
  position: absolute;
  left: 103.2787%;
  bottom: 0;
  background-color: #fff;
  clip-path: polygon(18px 0, 100% 0, 100% 100%, 0 100%);
}
.page_banner h1 {
  font-size: 4rem;
  line-height: 77px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.page_banner p{
  line-height: 1.5;
}
.contact_form form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 31px 0;
}
.contact_form form span {
  width: 100%;
}
.contact_form form .col2 {
  width: 47.76387%;
}
.contact_form form .file:not(.multilinefile) .wpcf7-form-control-wrap{
  display: none;
}
.contact_form form strong {
  display: block;
  color: #333333;
  font-size: 19px;
  font-weight: normal;
  cursor: pointer;
  max-width: max-content;
  margin-bottom: 17px;
}
.contact_form form strong i {
  color: #e52e2e;
}
.contact_form form input,
.contact_form form select,
.contact_form form textarea {
  width: 100%;
  border: 1px solid #cacaca;
  background-color: #fff;
  color: #666666;
  font-size: 17px;
  line-height: 27px;
  padding: 10px 20px;
}
.contact_form form select {
  cursor: pointer;
  background: url(../svg/select-full-b.svg) no-repeat right 1rem center / 11px #fff;
  padding-right: 3rem;
}
.contact_form form textarea {
  height: 267px;
}
.contact_form form .file:not(.multilinefile) label {
  display: grid;
  align-items: start;
  grid-template-columns: 35.95506% 1fr;
  pointer-events: none;
}
.contact_form form .file strong {
  max-width: 157px;
  font-size: 18px;
  pointer-events: all;
}
.multilinefile  {
  cursor: pointer;
}
.contact_form form .file:not(.multilinefile) .file_area {
  cursor: pointer;
  pointer-events: all;
  border: 1px dashed #d3d3d3;
  max-width: 129px;
  aspect-ratio: 129/136;
  position: relative;
  z-index: 2;
  color: #1c232f;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 17.64706%;
}
.contact_form form .file:not(.multilinefile) .file_area::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: url(../svg/plus-b.svg) no-repeat center / contain;
}
.contact_form form .file:not(.multilinefile) .file_area::after {
  content: '';
  display: block;
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  background-color: #fff;
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
.contact_form form .file:not(.multilinefile) .file_area:hover::after {
  background-color: var(--theme_color);
}
.contact_form form .textarea strong {
  font-size: 18px;
}
.contact_form form input[type="submit"] {
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  border: 2px solid var(--theme_color);
  background-color: var(--theme_color);
  transition: all 0.3s;
  display: block;
  width: auto;
  margin: 0 0 0 auto;
  line-height: 28px;
  min-width: 220px;
}
.contact_form form input[type="submit"]:hover {
  color: #fff;
  border-color: var(--title_color);
  background-color: var(--title_color);
}
.pop_user_infos {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s;
}
.pop_user_infos.active {
  opacity: 1;
  pointer-events: all;
}
.pop_user_infos.active > .close {
  opacity: 1;
}
.pop_user_infos.active .user_infos_con {
  opacity: 1;
  transform: translate(0);
}
.pop_user_infos > .close {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: rgba(9, 9, 10, 0.89);
  transition: all 0.3s;
  opacity: 0;
}
.pop_user_infos .user_infos_con {
  transition: all 0.4s;
  opacity: 0;
  transform: translateY(-20%);
  position: relative;
  z-index: 2;
  padding: 12px;
  width: calc(100% - 2.4rem);
  max-width: 908px;
  background-color: #1c1e23;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.45);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);

  min-height: 240px;
}

.single-product .pop_user_infos .user_infos_con{
  /* min-height: unset; */
}

@keyframes spin {
  0% {
      transform: rotate(0deg);
  }

  100% {
      transform: rotate(360deg);
  }
}
.pop_user_infos .user_infos_con .loader{
  position: absolute;
  top: 50%;
  border-color: transparent transparent transparent #eee;
}
.pop_user_infos .user_infos_con::before {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  inset: 0;
  background-color: #747578;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 0, 2px 2px, 2px calc(100% - 2px), calc(100% - 18px - 0.83px) calc(100% - 2px), calc(100% - 2px) calc(100% - 18px - 0.83px), calc(100% - 2px) 2px, 2px 2px);
}
.pop_user_infos .user_infos_con .close {
  width: 1rem;
  height: 1rem;
  background: url(../svg/close.svg) no-repeat center / contain;
  cursor: pointer;
  filter: contrast(0) brightness(1.2);
  transition: all 0.3s;
  position: absolute;
  top: 40px;
  right: 30px;
  z-index: 2;
}
.pop_user_infos .user_infos_con .close:hover {
  filter: contrast(0) brightness(2);
}
.pop_user_infos .user_infos_con .con {
  max-height: calc(100vh - 3rem);
  display: flex;
  gap: 5.1076%;
  align-items: flex-start;
  padding: 7.918553% 7.918553% 11.312218%;
  background: url(../png/user-bg.png) no-repeat center / cover;
  overflow: auto;
}
.pop_user_infos .user_infos_con .con::-webkit-scrollbar {
  width: 3px;
}
.pop_user_infos .user_infos_con .con::-webkit-scrollbar-thumb {
  background: #888888;
  border-radius: 10px;
}
.pop_user_infos .user_infos_con .avatar {
  width: 21.23656%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.17);
  padding: 6px;
}
.pop_user_infos .user_infos_con .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}
.pop_user_infos .user_infos_con .infos {
  flex: 1;
  color: #fff;
}
.pop_user_infos .user_infos_con .infos .name {
  margin-top: 1rem;
  font-size: 33px;
  font-weight: 500;
  text-transform: uppercase;
}
.pop_user_infos .user_infos_con .infos .status {
  font-size: 20px;
  font-weight: 500;
  color: var(--theme_color);
  text-transform: uppercase;
  margin-top: 6px;
}
.pop_user_infos .user_infos_con .infos .date {
  opacity: 0.85;
  font-size: 18px;
  margin-top: 12px;
}
.pop_user_infos .user_infos_con .infos .items {
  margin-top: 22px;
  padding: 24px 0 20px;
  gap: 1rem;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}
.pop_user_infos .user_infos_con .infos .items .item {
  flex: 1;
}
.pop_user_infos .user_infos_con .infos .items .item strong {
  font-size: 37px;
  font-weight: 500;
  line-height: 1;
}
.pop_user_infos .user_infos_con .infos .items .item p {
  margin-top: 10px;
  opacity: 0.75;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 19px;
}
.pop_intro_infos .infos {
  text-align: center;
}
.pop_intro_infos .date {
  line-height: 1.5;
}
.pop_intro_infos .btn {
  margin-top: 2rem;
  color: var(--title_color);
  border-color: var(--theme_color);
  background-color: var(--theme_color);
}
.pop_intro_infos .btn:hover {
  color: var(--theme_color);
  background-color: transparent;
}
.mightlike {
  padding: 40px 0 168px;
}
.mightlike .head h2 {
  font-size: 36px;
  line-height: 1.5;
}
.mightlike .list {
  margin-top: 54px;
}
.mightlike .list .product_items {
  margin-bottom: 100px;
  display: grid;
  gap: 76px 1rem;
  grid-template-columns: repeat(5, 1fr);
}

body .wpcf7-spinner{
  width: 24px !important;
}

body .wpcf7 form .wpcf7-response-output{
  padding: 0;
  margin: 0;
  border: none;
}

body .wpcf7-not-valid-tip{
  margin-top: 0.2rem;
}




.video_pop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 9999;
  padding: 1.2rem;
}
.video_pop.active {
  opacity: 1;
  pointer-events: all;
}
.video_pop.active .pop_content {
  transform: translate(-50%, -50%);
}
.video_pop .mask {
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}
.video_pop .mask .close {
  display: block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  right: 2rem;
  top: 1rem;
  cursor: pointer;
}
.video_pop .pop_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  transition: all 0.3s;
  width: max-content;
  max-width: 90vw;
  height: 80vh;
  aspect-ratio: 1920/1080;
}
.video_pop .pop_content iframe, .video_pop .pop_content video{
  width: 100%;
  height: 100%;
  object-fit: contain;
}



.modalcomment .modalcontent::-webkit-scrollbar {
  width: 5px;
}

.modalcomment .modalcontent::-webkit-scrollbar-track {
  background: #b3b1b1;
  border-radius: 10px;
}
.modalcomment .modalcontent::-webkit-scrollbar-thumb {
  background: #888888;
  border-radius: 10px;
}
.modalcomment .modalcontent::-webkit-scrollbar-thumb:hover {
  background: #646464;
  border-radius: 10px;
}
.modalcomment .modalcontent::-webkit-scrollbar-thumb:active {
  background: #444444;
  border-radius: 10px;
}


.modalcomment.active {
  visibility: visible;
  background: rgba(0,0,0,0.7);
}
.modalcomment {
  position: fixed;
  visibility: hidden;
  top: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  right: 0;
  background: rgba(0,0,0,0);
  z-index: 999;
  transition: background 0.3s ease;
}
.modalcomment.active .modalcontent {
  top: 50%;
  opacity: 1;
}
.modalcomment .modalcontent {
  position: absolute;
  padding: 3rem;
  background-color: #f8f8f8;
  width: 80%;
  max-width: 50rem;
  max-height: 50rem;
  overflow-y: auto;
  border-radius: 1px;
  opacity: 0;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  top: 150%;
  transition: all 0.2s ease;
}
.modalcomment .modalcontent > form > p{
  margin-top: 1rem;
}
.modalcomment .ratestars {
  width: 10rem;
  height: 2rem;
  margin-top: 0.3rem;
  margin-bottom: 1.5rem;
  cursor: pointer;
}
.modalcomment ul.reviews div.ratestars div.rate, .modalcomment .ratestars .rate {
  background-image: url(../svg/stars_full.svg);
  background-repeat: repeat-x;
  background-position: left;
  height: 100%;
}
.modalcomment ul.reviews div.ratestars, .modalcomment .ratestars {
  height: 1.7rem;
  width: 10rem;
  background-image: url(../svg/stars_empty.svg);
  background-repeat: repeat-x;
  background-position: left;
  margin-bottom: 1rem;
  margin-top: 0;
}
.modalcomment .ratestars{
  margin-top: 1rem;
}
.modalcomment div.validform {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  max-width: 18rem;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  text-align: center;
  padding-top: 4rem;
}
.modalcomment div.validform .icon {
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width:4rem;
  height: 4rem;
  border-radius: 50%;
  background-image: linear-gradient(to right, var(--theme_color), #fff);
}
.modalcomment div.validform .icon:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: transparent url(../svg/valid_form.svg);
  background-size: 75%;
  background-position: center;
  background-repeat: no-repeat;
}
.modalcomment div.validform p {
  color: #999;
  font-size: 1rem;
  line-height: 1.5;
}
.modalcomment .content_review p {
  margin-bottom: 1rem;
  line-height: 1.6rem;
}
.modalcomment div.validform.active {
  visibility: visible;
  opacity: 1;
}
.modalcomment div.validform p strong {
  color: #222;
  font-weight: 700;
  display: inline-block;
  font-size: 27px;
  display: block;
  margin: 1rem 0;
}
.modalcomment input:not([type="submit"]), .modalcomment textarea {    
  width: 100%;
  height: 3rem;
  /* font-family: 'Open Sans', sans-serif; */
  margin-bottom: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #fff;
  border-radius: 0;
  border: 0.0625rem solid #e5e5e5;
  font-size: 16px;
  outline: none;
  margin-top: 0.5rem;
  transition: all 0.3s;
}
.modalcomment input:not([type="submit"]):focus, .modalcomment textarea:focus{
  border-color: var(--theme_color);
}
.modalcomment textarea{
  min-height: 150px;
}

.modalcomment input[type="submit"]{
  margin-top: 2rem;
  background-color: var(--theme_color) !important;
  color: white !important;
  font-weight: 500 !important;
  padding: 0.8rem 3rem !important;
}
.modalcomment input[type="submit"]:disabled{
  background-color: #999 !important;
  color: #fff !important;
}
.modalcomment label{
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
  font-size: 17px;
}

form ul.image_list li {
  width: 5rem;
  margin-right: 1rem;
  border-radius: 3px;
  position: relative;
}
form ul.image_list li img {
  max-width: 100%;
}
form ul.image_list li:hover .delete{
  opacity: 1;
}
form ul.image_list li .delete{
  width: 100%;
  opacity: 0;
  cursor: pointer;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  transition: all 0.3s;
  background: url('../delete.html') no-repeat center/40%;
  background-color: rgba(255, 255, 255, 0.8);
}
form button.upload_image {
  border: 2px dashed #ccc;
  cursor: pointer;
  border-radius: 3px;
  width: 5rem;
  height: 5rem;
  font-size: 0.9rem;
  color: #666;
  margin-right: 0.8rem;
  text-indent: -9999px;
  background: white url('../svg/plus-e.svg') no-repeat center/60%;
}


.loading{
  position: relative;
}
.loading:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../gif/load.gif') no-repeat center;
  background-size: 45px;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 9;
}

div.loader:before{
  display: none !important;
}
div.loader {
  border: 7px solid #f2f5f9;
  border-top: 7px solid #fff;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  position: absolute;
  left: 50%;
  margin-left: -1.75rem;
  animation: spin 1s linear infinite;
  margin-top: 0;
  text-align: center;
}
@keyframes spin {
  0% {
      transform: rotate(0deg);
  }

  100% {
      transform: rotate(360deg);
  }
}

.empty_img{
  width: 500px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: 100%;
}



.checkout_step {
  color: #fff;
  padding: 98px 0;
  overflow: hidden;
  background: url(../svg/checkout-step-bg.svg) no-repeat bottom center / cover #0c0d11;
}
.checkout_step .steps {
  display: flex;
  max-width: max-content;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.checkout_step .steps::after {
  content: '';
  display: block;
  width: 70%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.19);
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
}
.checkout_step .steps .step {
  width: 1220px;
  flex: 1;
  max-width: 194px;
  text-align: center;
  padding: 0 8px;
  position: relative;
  z-index: 2;
}
.checkout_step .steps .step .order {
  margin: 0 auto;
  max-width: 60px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 500;
  position: relative;
  z-index: 2;
}
.checkout_step .steps .step .order::before {
  content: '';
  display: block;
  width: calc(100% + 36px);
  height: calc(100% + 36px);
  border-radius: 50%;
  background-color: #0c0d11;
  position: absolute;
  z-index: -2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.checkout_step .steps .step .order::after {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: 50%;
  background-color: #0c0d11;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.checkout_step .steps .step .title {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  text-transform: uppercase;
}
.checkout_step .steps .active .order {
  color: #111111;
}
.checkout_step .steps .active .order::after {
  border-color: var(--theme_color);
  background-color: var(--theme_color);
}
.checkout_step .steps .active .title {
  color: var(--theme_color);
}
.checkout_step .content::after {
  content: '';
  display: block;
  width: 100vw;
  height: 24px;
  background-color: #fff;
  clip-path: polygon(18px 0, 100% 0, 100% 100%, 0 100%);
  position: absolute;
  bottom: -98px;
  left: calc(100% + 40px);
}



body .woocommerce-error, body .woocommerce-info, body .woocommerce-message{
  background-color: var(--theme_color);
  color: var(--title_color);
  border: none;
  padding: 1em;
}
body .woocommerce-error:before, body .woocommerce-info:before, body .woocommerce-message:before{
  display: none;
}

:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.wc-backward{
  padding: 1rem 2.5rem;
  background-color: var(--theme_color);
  color: var(--title_color);
  font-weight: 500;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s;
  border-radius: 0;
}


body form#sytech-newsletter-subscription p.failed, body form#sytech-newsletter-subscription p.success{
  color: #000;
}

body form#sytech-newsletter-subscription p.failed:before, body form#sytech-newsletter-subscription p.success:before{
  filter: brightness(0);
}



.post_main{
  padding: 4rem 0;
}
.post_main p{
  font-size: 16px;
  color: #23252b;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.post_main h2{
  font-size: 36px;
  line-height: 1.5;
  margin: 1.5rem 0 0.7rem;
}
.post_main p a, .post_main li a{
  color: var(--theme_color);
}
.post_main ul{
  margin: 1rem 0;
}
.post_main li{
  font-size: 16px;
  color: #23252b;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  list-style: disc;
  margin-left: 20px;
}

.post_main h3{
  font-size: 22px;
  margin: 1.5rem 0 0.7rem;
}

.woocommerce-pagination{
  display: none;
}



.woocommerce-cart .woocommerce .blockUI.blockOverlay { 
  position: fixed !important;  
  /* display: none !important; */

}
.woocommerce-cart .woocommerce .blockUI.blockOverlay:before{
  /* display: none !important; */
}
.woocommerce-Price-amount{
  white-space: nowrap;
}
.woocommerce-Price-currencySymbol{
  display: inline-block !important;
}
.item-to-cart {
  position: absolute;
  background-color: var(--theme_color);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  z-index: 1000;
  pointer-events: none;
}

.animate-cart {
  transform: scale(1.1);
}

.animate-counter {
  transform: scale(1.5);
}

#available-coupons ul li{
  background: url(../svg/coupon-bg.svg) no-repeat center / cover #21242b !important;
}
#available-coupons ul li.expired, #available-coupons ul li.excluded-coupon{
  display: none;
}
#available-coupons ul li.hide{
  display: none;
}
#available-coupons ul li.applied-coupon{
  border: 3px solid var(--theme_color);
}
#available-coupons ul li.applied-coupon:after{
  content: "";
  width: 30px;
  height: 30px;
  background: var(--theme_color) url('../svg/duigou-white.svg') no-repeat center/60%;
  position: absolute;
  right: 0;
  bottom: 0;
}
#available-coupons ul li.applied-coupon .apply-coupon{
  background-color: var(--theme_color);
}
#coupon-popup #available-coupons ul li{
  height: auto;
  min-height: unset;
}
#coupon-popup #available-coupons ul li.deadline .info{
  padding-top: 15px;
}

#wplr-popup{
  z-index: 1600 !important;
}
/* Target autofill background color */
#wplr-popup input:-webkit-autofill {
  background-color: transparent !important; /* Or your desired color */
  color: #fff !important; /* Or your desired color */
}

/* For Firefox */
#wplr-popup input:-moz-autofill {
  background-color: transparent !important; /* Or your desired color */
  color: #fff !important; /* Or your desired color */
}

/* Common styles to ensure consistency */
#wplr-popup input:-webkit-autofill,
#wplr-popup input:-webkit-autofill:hover,
#wplr-popup input:-webkit-autofill:focus,
#wplr-popup input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important; /* Or your desired color */
  box-shadow: 0 0 0px 1000px transparent inset !important; /* Or your desired color */
  -webkit-text-fill-color: #fff !important; /* Or your desired color */
  transition: background-color 5000s ease-in-out 0s;
}

/* For Firefox */
#wplr-popup input:-moz-autofill,
#wplr-popup input:-moz-autofill:hover,
#wplr-popup input:-moz-autofill:focus,
#wplr-popup input:-moz-autofill:active {
  box-shadow: 0 0 0px 1000px transparent inset !important; /* Or your desired color */
  text-fill-color: #fff !important; /* Or your desired color */
}


.woocommerce-checkout #wplr-popup{
  z-index: 10000;
}

.overlay_lang{
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.overlay_lang.active{
  opacity: 1;
  pointer-events: all;
}

.lang_popup{
  padding: 70px 53px;
  border-radius: 3px;
  background-color: white;
  /* position: absolute;
  left: calc(100% + 20px);
  bottom: -15px; */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  z-index: 1005;
  display: none;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.footer_sidebar .lang{
  position: relative;
}
.lang_popup ul + strong{
  margin-top: 2rem;
}
.lang_popup strong{
  display: block;
  font-size: 28px;
  margin-bottom: 30px;
  text-align: left;
}
.lang_popup div.img{
  width: 41px;
  height: 41px;
  /* border-radius: 50%; */
  overflow: hidden;
  margin-right: 19px;
  border: 1px solid transparent;
}
.lang_popup div.img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.lang_popup li{
  padding: 15px 24px;
  border-radius: 4px;
  border: 1px solid #e5e5e5;
  display: flex;
  transition: all 0.3s;
  align-items: center;
  cursor: pointer;
  
}
.lang_popup li:hover{
  border-color: var(--theme_color);
}

.lang_popup:before{
  content: "";
  display: inline-block;
  border-width: 10px;
  border-color: transparent #fff transparent transparent;
  position: absolute;
  right: 100%;
  bottom: 38px;
  border-style: solid;
  display: none;
}

.lang_popup li p{
  font-size: 17px;
  font-weight: 600;
  display: block;
  margin-bottom: 0rem;
}
.lang_popup li span{
  font-size: 14px;
  color: #686868;
}
.lang_popup li:after{
  content: "";
  width: 10px;
  height: 16px;
  display: inline-block;
  margin-left: auto;
  background: url('../svg/arrow-lang.svg') no-repeat center/contain;
  transition: all 0.3s;
}
.lang_popup li.active{
  border-color: var(--theme_color);
}
.lang_popup li.active .img{
  border-color: white;
}

.lang_popup li.active:after{
  filter: brightness(100);
}

.lang_popup .close{
  width: 11px;
  display: inline-block;
  height: 11px;
  position: absolute;
  right: 32px;
  top: 30px;
  cursor: pointer;
  transition: all 0.5s;
  background: url('../svg/lang-close.svg') no-repeat center/contain;
}
.lang_popup .close:hover{
  transform: rotate(360deg);
}
.lang_popup ul.lang-list{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
}



.cart_orther .btn_more{
  display: none;
}


.home_banner .banner .home_banner_img_swiper .swiper-slide img {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
.home_banner .banner.only-image{
  background: none !important;
}

.notice_con{
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
.sy_notice .notice_con{
  visibility: visible;
  opacity: 1;
}
.sy_notice .notice_con p{
  right: 100px;
  
}
.notice_con p{
  max-width: 500px;
  position: absolute;
  right: 100px;
  bottom: 100px;
  border-radius: 10px;
  background-color: rgb(36, 38, 45);
  padding: 1rem 1.5rem 1rem;
  padding-left: 60px; 
  color: white;
  transition: all 0.3s;
  right: -100%;
}
.notice_con p:before{
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  background: url('../svg/warning.svg') no-repeat center/contain;
  left: 20px;
  top: 15px;
}

.self-link{
  cursor: pointer;
}

.tip{
  position: relative;
}

.tip .text{
  display: inline-block;
  min-width: 200px;
  background-color: var(--title_color);
  color: white;
  font-size: 14px;
  font-weight: 300;
  padding: 20px 15px;
  border-radius: 10px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(100% + 20px);
  text-transform: normal !important;
  opacity: 0;
  margin-bottom: -1rem;
  pointer-events: none;
  transition: all 0.3s;
}
.tip:hover .text{
  opacity: 1;
  margin-bottom: 0;
  pointer-events: all;
}
.tip .text::before{
  content: "";
  border-style: solid;
  border-color: var(--title_color) transparent transparent transparent;
  border-width: 10px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
}
.tip .text:after{
  content: "";
  width: 100%;
  height: 20px;
  bottom: -20px;
  position: absolute;
}


.preview_pop .preview_popup{
  pointer-events: all;
  opacity: 1;

}
.preview_pop .preview_popup .preview_popup_content{
  top: 50%;
  opacity: 1;
  pointer-events: all;
}
.preview_popup{
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1500;
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
}
.preview_popup .preview_popup_content{
  width: 60%;
  min-height: 500px;
  background: #14171e url('../jpg/pd-pre-bg.jpg') no-repeat center/cover;
  padding: 2rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  max-height: 750px;
  overflow: auto;
  z-index: 5;
  /* top: -200%; */
  transition: all 0.3s; 
  max-width: 1200px;
  opacity: 0;
  pointer-events: none;
}
.preview_popup .preview_popup_overlay{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}


.preview_popup .preview_popup_content::-webkit-scrollbar {
  width: 14px;
  height: 14px;
}

.preview_popup .preview_popup_content::-webkit-scrollbar-track,
.preview_popup .preview_popup_content::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 5px solid transparent;
}

.preview_popup .preview_popup_content::-webkit-scrollbar-track {
  box-shadow: 1px 1px 5px transparent inset;
}

.preview_popup .preview_popup_content::-webkit-scrollbar-thumb {
  min-height: 20px;
  background-clip: content-box;
  box-shadow: 0 0 0 5px #999 inset;
}

.preview_popup .preview_popup_content::-webkit-scrollbar-corner {
  background: transparent;
}

.preview_popup_content>.close{
  width: 25px;
  height: 25px;
  filter: brightness(100);
  background: url('../svg/close.svg') no-repeat center/60%;
  position: absolute;
  right: 2rem;
  /* border: 1px solid #fff; */
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  top: 2rem;
  transition: all 0.3s;
  cursor: pointer;
}
.preview_popup_content>.close:hover{
  transform: rotate(180deg);
}


.lang_popup .gtranslate_wrapper{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.lang_popup .gtranslate_wrapper a{
  padding: 15px 24px;
  border-radius: 4px;
  border: 1px solid #e5e5e5;
  display: flex;
  transition: all 0.3s;
  align-items: center;
  cursor: pointer;
}
.lang_popup .gtranslate_wrapper a.gt-current-lang{
  border-color: var(--theme_color);
}
.lang_popup .gtranslate_wrapper a img{
  width: 41px;
  height: auto;
  /* border-radius: 50%; */
  overflow: hidden;
  margin-right: 19px;
  border: 1px solid transparent;
  display: inline-block;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.lang_popup .gtranslate_wrapper a span{
  font-size: 17px !important;
  font-weight: 600;
  display: block;
  margin-bottom: 0rem;
}
#gotop{
  width: 55px;
  height: 55px;
  background: url('../svg/go-top.svg') no-repeat center/50%;
  background-color: #000;
  position: fixed;
  right: 0;
  bottom: 2rem;
  z-index: 9;
  cursor: pointer;
  transition: all 0.4s;
  transform: translateX(100%);
}
#gotop.active{
  transform: translateX(-1rem);
}
.product_item .review_con{
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  flex-flow: wrap;
  justify-content: space-between;
  min-height: 34px;
}
.product_item .review_con p {
  font-size: 14px;
}
.product_item.active .review_con p{
  color: white;
}
.product_item .review_con .star{
  width: 102px;
  height: 18px;
  background: url(../svg/stars-b.svg) no-repeat center / contain;
}
.product_item .review_con .star:after{
  content: '';
  display: block;
  width: var(--width);
  height: 100%;
  background: url(../svg/stars.svg) no-repeat left center / 102px 100%;
}

.lb-outerContainer{
  background-color: transparent!important;
}
/* Style the ajax search results container */
.ajax-search-results {
    position: absolute;
    background-color: white;
    overflow-y: auto;
    max-height: 300px;
    min-width: 450px;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    border-radius: 0 0 6px 6px;
} 

/* Style each ajax search result item */
.ajax-search-result-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    font-size: 14px;
    display: flex;
    /* justify-content: space-between; */
    gap: 1rem;
    align-items: center;
    text-decoration: none;
    color: #fff;
    transition: all .3s;
    background-color: #23252b;
}
.ajax-search-result-item>div{
  padding: 14px;
  padding-left: 0;
}
.ajax-search-result-item:hover{
  background-color: #14171e;
}

/* No results found style */
.no-results {
    padding: 14px 22px;
    font-size: 14px;
    color: #fff;
    background-color: #23252b;
}

/* Error message style */
.error {
    padding: 8px;
    font-size: 14px;
    color: red;
}

.ajax-search-result-item .img{
  display: inline-block;
  width: 70px;
  min-width: 70px;
  overflow: hidden;
  height: 70px;
}
.ajax-search-result-item .img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.ajax-search-result-item:hover .img img{
  transform: scale(1.1);
}

.search-result-title {
    font-size: 16px;
    font-weight: 400;
}

.search-result-price {
    font-size: 18px;
    color: #fff;
    margin-top: .5rem;
    font-weight: bold;
    text-align: right;
    display: none;
}


.ajax-search-results::-webkit-scrollbar {
  width: 5px;
}
 
.ajax-search-results::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
 
.ajax-search-results::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}
#available-coupons ul li.deadline .info{
  padding: 10px 20px 60px 0!important;
}
.contact_form form span[data-name="product_name"] input{
  display: none; 
}









.tip1{
  position: relative;
  display: block;
  cursor: pointer;
  width: 19px;
  height: 19px;
  margin-top: 0;
  border-radius: 50%;
  background: url(../svg/tip.svg) no-repeat center / contain;
  transition: all 0.3s;
}

.tip1 .text{
  display: inline-block;
  min-width: 200px;
  background-color: var(--title_color);
  color: white;
  font-size: 14px;
  font-weight: 300;
  padding: 20px 15px;
  border-radius: 10px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(100% + 20px);
  text-transform: normal !important;
  opacity: 0;
  margin-bottom: -1rem;
  pointer-events: none;
  transition: all 0.3s;
}
.tip1:hover .text{
  opacity: 1;
  margin-bottom: 0;
  pointer-events: all;
}
.tip1 .text::before{
  content: "";
  border-style: solid;
  border-color: var(--title_color) transparent transparent transparent;
  border-width: 10px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
}
.tip1 .text:after{
  content: "";
  width: 100%;
  height: 20px;
  bottom: -20px;
  position: absolute;
}

.banner.only-image{
  min-height: 700px;
}
.img_bg{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.img_bg img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header_middle > div > ul{
  display: flex;
  gap: 1rem;
}
.header_middle > div > ul li a{
  color: white;
  font-size: 15px;
  transition: all 0.3s;
}
.header_middle > div > ul li a:hover{
  color: var(--theme_color);
}