.site-header {
  position: fixed;
  width: 100%;
  padding: 18px;
  display: flex;
  justify-content: center;
  background: transparent;
  border-bottom: none;
  transition: all 0.3s;
  top: 60px;
}
.site-header .sub-menu {
  position: fixed;
  flex-direction: column;
  background: white;
  z-index: 99;
  margin-top: 15px;
  min-width: 240px;
  padding: 25px 30px;
}
.site-header .sub-menu a::after {
  display: none !important;
}
.site-header.nav-scrolled {
  top: 0;
  background-color: rgb(4, 2, 2);
}
.site-header .menu-toggle::after, .site-header .menu-toggle::before {
  width: 22px;
}
.site-header .nav-close {
  position: absolute;
  top: 46px;
  right: 40px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.site-header .nav-close.toggle {
  display: block;
  transition-delay: 0.4s;
}
.site-header .nav-close.active .line1 {
  transform: rotate(0);
}
.site-header .nav-close.active .line2 {
  transform: rotate(0);
}
.site-header .nav-close .line {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease-in-out;
}
.site-header .nav-close .line1 {
  transform: rotate(45deg);
}
.site-header .nav-close .line2 {
  transform: rotate(-45deg);
}
@media (max-width: 992px) {
  .site-header .primary-navigation {
    left: 0;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    opacity: 0;
    left: -999%;
    right: 999%;
    transition-duration: 0.4s;
  }
}
.site-header .primary-navigation.active {
  opacity: 1;
  left: 0;
  right: 0;
}
.site-header #site-navigation-menu-toggle {
  height: 45px;
  display: block;
  padding: 0;
  width: 45px;
  background: transparent;
  border: none;
}
.site-header #site-navigation-menu-toggle::before {
  background-color: white;
}
.site-header #site-navigation-menu-toggle::after {
  background-color: white;
}
.site-header #site-navigation-menu-toggle > span {
  display: none;
}
@media (min-width: 992px) {
  .site-header #site-navigation-menu-toggle {
    display: none;
  }
}
.site-header__top {
  background-color: rgb(4, 2, 2);
}
.site-header__top .col-full {
  display: flex;
  justify-content: space-between;
  padding: 0 18px;
}
@media (max-width: 1200px) {
  .site-header__top .header_countdown {
    width: 150px;
  }
}
.site-header__top--text {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1200px) {
  .site-header__top--text {
    padding: 10px 0;
  }
}
.site-header__top--text::before {
  content: "";
  height: 20px;
  width: 20px;
  background-repeat: no-repeat;
  display: block;
  background-size: 20px;
  background-position: center;
  border-radius: 50%;
  background-image: url("../images/svg/alarm.svg");
}
.site-header__top--socials {
  display: flex;
}
.site-header__top--social {
  height: 40px;
  width: 40px;
  background-repeat: no-repeat;
  display: block;
  background-size: 20px;
  background-position: center;
  border-radius: 50%;
}
.site-header__top--social.facebook {
  background-image: url("../images/svg/facebook-white.svg");
}
.site-header__top--social.instagram {
  background-image: url("../images/svg/instagram-white.svg");
}
.site-header__top--social.pinterest {
  background-image: url("../images/svg/pinterest-white.svg");
}
.site-header__top--wrapper {
  align-items: center;
}
.site-header__top--icon {
  display: block;
  padding-left: 30px;
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 0px;
  position: relative;
}
.site-header__top--icon::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 20px;
  height: 20px;
  background-size: cover;
}
.site-header__top--icon.phone::before {
  background-image: url("../images/svg/phone-white.svg");
}
.site-header__top * {
  color: white;
}
@media (max-width: 992px) {
  .site-header__top * {
    font-size: 11px;
  }
}
.site-header__top--wrapper {
  display: flex;
  gap: 20px;
}
@media (max-width: 992px) {
  .site-header__top--wrapper {
    display: none;
  }
}
.site-header__wrapper {
  max-width: 1302px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}
@media (max-width: 992px) {
  .site-header__wrapper {
    justify-content: space-between;
  }
}
.site-header__utils {
  width: 40%;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
@media (max-width: 992px) {
  .site-header__utils {
    width: auto;
    display: flex;
    gap: 12px;
    flex: 1;
    justify-content: flex-end;
  }
}
.site-header__utils--single {
  width: 24px;
  height: 24px;
  display: block;
}
.site-header__utils--single.search {
  background-image: url("../images/svg/search.svg");
}
.site-header__utils--single.cart {
  background-image: url("../images/svg/cart.svg");
  position: relative;
  display: flex;
  width: 100px;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .site-header__utils--single.cart {
    width: 30px;
  }
}
.site-header__utils--single.account {
  background-image: url("../images/svg/account.svg");
}
.site-header__utils .cart__count {
  position: absolute;
  background-color: #e05a33;
  border-radius: 50%;
  font-size: 10px;
  color: white;
  top: -7px;
  left: 12px;
  padding: 2px 6px;
}
.site-header__utils .cart__total {
  padding-left: 30px;
  color: white;
  font-size: 14px;
}
@media (max-width: 768px) {
  .site-header__utils .cart__total {
    display: none;
  }
}
.site-header .custom-logo-link {
  width: 20%;
}
@media (max-width: 768px) {
  .site-header .custom-logo-link {
    width: 30%;
  }
}
.site-header .custom-logo-link img {
  max-width: 130px;
  margin: auto;
}
@media (max-width: 768px) {
  .site-header .custom-logo-link img {
    max-width: 100px;
  }
}
.site-header::before {
  display: none;
}
.site-header #site-navigation {
  width: 40%;
}
@media (max-width: 992px) {
  .site-header #site-navigation {
    width: 45px;
    flex: 1;
    justify-self: flex-start;
    display: flex;
  }
}
.site-header #site-navigation ul {
  display: flex;
  margin: 0;
  max-height: none;
  gap: 24px;
}
@media (max-width: 992px) {
  .site-header #site-navigation ul {
    padding: 5em 2em 2em 2em;
    top: 85px;
    width: 70%;
    bottom: 0;
    background-color: rgb(4, 2, 2);
    height: 100vh;
    flex-direction: column;
  }
}
.site-header #site-navigation ul li {
  list-style-type: none;
}
.site-header #site-navigation .menu-item a,
.site-header #site-navigation .current_page_item a {
  color: white;
  font-size: 15px;
  line-height: 24px;
}
@media (max-width: 992px) {
  .site-header #site-navigation .menu-item a,
  .site-header #site-navigation .current_page_item a {
    color: white;
  }
}
.site-header #site-navigation .menu-item a::after,
.site-header #site-navigation .current_page_item a::after {
  transition-duration: 0.4s;
  content: "";
  width: 0;
  height: 1px;
  background-color: white;
  display: block;
}
.site-header #site-navigation .menu-item a:hover::after,
.site-header #site-navigation .current_page_item a:hover::after {
  width: 100%;
}
.site-header #site-navigation .current_page_item a::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: white;
  display: block;
}

.sub_header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 21px 29px 6px rgba(244, 244, 244, 0.4);
  z-index: 999;
}

.site-header-non_home {
  width: 100%;
  padding: 18px;
  display: flex;
  justify-content: center;
  background: white;
  border-bottom: none;
  transition: ease-in-out 0.3s;
}
.site-header-non_home .menu-item-has-children {
  position: relative;
}
.site-header-non_home .menu-item-has-children:hover .sub-menu {
  display: flex !important;
}
.site-header-non_home .menu-item-has-children::after {
  content: "";
  position: absolute;
  right: -15px;
  width: 13px;
  height: 13px;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/svg/arrow_down.svg");
  display: block;
  filter: brightness(0%);
  top: 8px;
}
.site-header-non_home .menu-toggle::after, .site-header-non_home .menu-toggle::before {
  width: 22px;
}
.site-header-non_home .nav-close {
  position: absolute;
  top: 46px;
  right: 40px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.site-header-non_home .nav-close.toggle {
  display: block;
  transition-delay: 0.4s;
}
.site-header-non_home .nav-close.active .line1 {
  transform: rotate(0);
}
.site-header-non_home .nav-close.active .line2 {
  transform: rotate(0);
}
.site-header-non_home .nav-close .line {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease-in-out;
}
.site-header-non_home .nav-close .line1 {
  transform: rotate(45deg);
}
.site-header-non_home .nav-close .line2 {
  transform: rotate(-45deg);
}
@media (max-width: 992px) {
  .site-header-non_home .primary-navigation {
    left: 0;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    opacity: 0;
    left: -999%;
    right: 999%;
    transition-duration: 0.4s;
  }
}
.site-header-non_home .primary-navigation.active {
  opacity: 1;
  left: 0;
  right: 0;
}
.site-header-non_home #site-navigation-menu-toggle {
  height: 45px;
  display: block;
  padding: 0;
  width: 45px;
  background: transparent;
  border: none;
}
.site-header-non_home #site-navigation-menu-toggle::before {
  background-color: black;
}
.site-header-non_home #site-navigation-menu-toggle::after {
  background-color: black;
}
.site-header-non_home #site-navigation-menu-toggle > span {
  display: none;
}
@media (min-width: 992px) {
  .site-header-non_home #site-navigation-menu-toggle {
    display: none;
  }
}
.site-header-non_home__text {
  flex: 1;
  color: rgb(4, 2, 2);
  font-size: 14px;
  font-weight: 300;
  text-align: center;
}
@media (max-width: 992px) {
  .site-header-non_home__text {
    text-align: right;
  }
}
.site-header-non_home__top {
  background: white;
  border-bottom: solid 1px rgba(117, 117, 117, 0.2);
  padding: 5px 0;
}
.site-header-non_home__top .language-switcher {
  width: 110px;
  background: white;
  position: relative;
  margin: 0;
  list-style-type: none;
}
.site-header-non_home__top .language-switcher::after {
  content: "";
  height: 20px;
  position: absolute;
  right: 0;
  top: 2px;
  width: 20px;
  background-repeat: no-repeat;
  display: block;
  background-size: 20px;
  background-position: center;
  border-radius: 50%;
  background-image: url("../images/svg/chevron-down.svg");
}
.site-header-non_home__top .language-switcher__wrapper {
  position: relative;
  width: 100px;
  flex: 1;
  height: 23px;
}
.site-header-non_home__top .language-switcher:hover {
  cursor: pointer;
  position: absolute;
  z-index: 99;
  height: auto;
}
.site-header-non_home__top .language-switcher:hover li {
  display: block;
}
.site-header-non_home__top .language-switcher li {
  display: none;
}
.site-header-non_home__top .language-switcher li:first-of-type {
  display: block;
}
.site-header-non_home__top .language-switcher li a {
  display: flex;
  gap: 9px;
  font-size: 14px;
  font-weight: 300;
  color: rgb(54, 54, 54);
}
.site-header-non_home__top .language-switcher li a img {
  width: 25px;
}
.site-header-non_home__top .col-full {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header-non_home__top--text {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1200px) {
  .site-header-non_home__top--text .header_countdown {
    width: 150px;
  }
}
.site-header-non_home__top--text::before {
  content: "";
  height: 20px;
  width: 20px;
  background-repeat: no-repeat;
  display: block;
  background-size: 20px;
  background-position: center;
  border-radius: 50%;
  background-image: url("../images/svg/alarm.svg");
  background-size: contain;
}
.site-header-non_home__top--socials {
  display: flex;
}
.site-header-non_home__top--social {
  height: 40px;
  width: 40px;
  background-repeat: no-repeat;
  display: block;
  background-size: 20px;
  background-position: center;
  border-radius: 50%;
}
.site-header-non_home__top--social.facebook {
  background-image: url("../images/svg/facebook.svg");
}
.site-header-non_home__top--social.instagram {
  background-image: url("../images/svg/instagram.svg");
}
.site-header-non_home__top--social.pinterest {
  background-image: url("../images/svg/pinterest.svg");
}
.site-header-non_home__top--wrapper {
  align-items: center;
}
.site-header-non_home__top--icon {
  display: block;
  padding-left: 30px;
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 0px;
  position: relative;
}
.site-header-non_home__top--icon::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 20px;
  height: 20px;
  background-size: cover;
}
.site-header-non_home__top--icon.phone::before {
  background-image: url("../images/svg/phone.svg");
}
.site-header-non_home__top * {
  color: rgb(4, 2, 2);
}
.site-header-non_home__top--wrapper {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  gap: 20px;
}
@media (max-width: 992px) {
  .site-header-non_home__top--wrapper {
    display: none;
  }
}
.site-header-non_home__top--text {
  position: fixed;
  top: 156px;
  background: black;
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 5px;
  color: white;
}
@media (max-width: 992px) {
  .site-header-non_home__top--text {
    padding: 5px 15px;
    top: auto;
    text-align: left;
    color: white;
    font-size: 12px;
  }
}
.site-header-non_home__wrapper {
  max-width: 1302px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-header-non_home__utils {
  width: 40%;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
@media (max-width: 992px) {
  .site-header-non_home__utils {
    width: auto;
    display: flex;
    flex: 1;
    gap: 12px;
    justify-content: flex-end;
  }
}
.site-header-non_home__utils--single {
  width: 24px;
  height: 24px;
  display: block;
}
.site-header-non_home__utils--single.search {
  background-image: url("../images/svg/search-black.svg");
}
.site-header-non_home__utils--single.cart {
  background-image: url("../images/svg/cart-black.svg");
  position: relative;
  display: flex;
  width: 100px;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .site-header-non_home__utils--single.cart {
    width: 30px;
  }
}
.site-header-non_home__utils--single.account {
  background-image: url("../images/svg/account-black.svg");
}
.site-header-non_home__utils .cart__count {
  position: absolute;
  background-color: #e05a33;
  border-radius: 50%;
  font-size: 10px;
  color: white;
  top: -7px;
  left: 12px;
  padding: 2px 6px;
}
.site-header-non_home__utils .cart__total {
  padding-left: 30px;
  color: rgb(4, 2, 2);
  font-size: 14px;
}
@media (max-width: 768px) {
  .site-header-non_home__utils .cart__total {
    display: none;
    padding-left: 0px;
  }
}
.site-header-non_home .custom-logo-link {
  width: 20%;
}
@media (max-width: 992px) {
  .site-header-non_home .custom-logo-link {
    width: 30%;
  }
}
.site-header-non_home .custom-logo-link img {
  max-width: 130px;
  margin: auto;
  filter: brightness(0%);
}
@media (max-width: 768px) {
  .site-header-non_home .custom-logo-link img {
    max-width: 100px;
  }
}
.site-header-non_home::before {
  display: none;
}
.site-header-non_home #site-navigation {
  width: 40%;
}
@media (max-width: 992px) {
  .site-header-non_home #site-navigation {
    width: 45px;
    flex: 1;
    display: flex;
  }
}
.site-header-non_home #site-navigation ul {
  display: flex;
  margin: 0;
  max-height: none;
  gap: 28px;
}
@media (max-width: 992px) {
  .site-header-non_home #site-navigation ul {
    padding: 5em 2em 2em 2em;
    top: 85px;
    width: 70%;
    bottom: 0;
    background-color: rgb(4, 2, 2);
    height: 100vh;
    flex-direction: column;
  }
}
.site-header-non_home #site-navigation ul li {
  list-style-type: none;
}
.site-header-non_home #site-navigation .menu-item > a,
.site-header-non_home #site-navigation .current_page_item > a {
  color: rgb(4, 2, 2);
  font-size: 15px;
  line-height: 24px;
  transition-duration: 0.4s;
}
@media (max-width: 992px) {
  .site-header-non_home #site-navigation .menu-item > a,
  .site-header-non_home #site-navigation .current_page_item > a {
    color: white;
  }
}
.site-header-non_home #site-navigation .menu-item > a::after,
.site-header-non_home #site-navigation .current_page_item > a::after {
  content: "";
  width: 0;
  transition-duration: 0.4s;
  height: 1px;
  background-color: rgb(4, 2, 2);
  display: block;
}
.site-header-non_home #site-navigation .menu-item > a:hover::after,
.site-header-non_home #site-navigation .current_page_item > a:hover::after {
  width: 100%;
}
.site-header-non_home #site-navigation .current_page_item a::after {
  content: "";
  transition-duration: 0.4s;
  width: 100%;
  height: 1px;
  background-color: rgb(4, 2, 2);
  display: block;
}

.woocommerce-pagination {
  justify-content: center;
  text-align: center;
  display: flex;
  float: none !important;
  margin: 40px 0px 75px !important;
}
.woocommerce-pagination .page-numbers {
  display: flex;
  gap: 24px;
}
.woocommerce-pagination .page-numbers .prev {
  background-image: url("../images/svg/double-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  height: 17px;
  transform: rotate(180deg);
}
.woocommerce-pagination .page-numbers .prev::after {
  display: none !important;
}
.woocommerce-pagination .page-numbers .page-numbers {
  padding: 0 !important;
  background-color: transparent !important;
  color: rgb(4, 2, 2) !important;
  font-size: 16px !important;
  opacity: 0.5;
  font-weight: 500;
}
.woocommerce-pagination .page-numbers .page-numbers.current {
  opacity: 1;
}
.woocommerce-pagination .page-numbers .page-numbers.current::after {
  content: "";
  width: 10px;
  height: 1px;
  background-color: rgb(4, 2, 2);
  display: block;
}
.woocommerce-pagination .page-numbers .next {
  background-image: url("../images/svg/double-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  height: 17px;
}
.woocommerce-pagination .page-numbers .next::after {
  display: none !important;
}

.sub-menu {
  position: fixed;
  flex-direction: column !important;
  background: white;
  margin-top: 15px;
  z-index: 9999;
  min-width: 240px;
  padding: 25px 30px;
  display: none !important;
}
.sub-menu a::after {
  display: none !important;
}
.sub-menu a:hover {
  opacity: 0.5;
}

@media (min-width: 768px) {
  .col-full {
    max-width: 1302px;
  }
}
.col-full::before {
  display: none;
}
.col-full::after {
  display: none;
}

body .storefront-breadcrumb {
  margin-top: 200px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  body .storefront-breadcrumb {
    margin-top: 230px;
  }
}

.right-sidebar .content-area {
  width: 100%;
}

.category-filter label,
.attribute-filter label {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 16px;
  cursor: pointer;
}
.category-filter label:hover input,
.attribute-filter label:hover input {
  border: 1px solid rgb(54, 54, 54);
}
.category-filter input[type=checkbox],
.attribute-filter input[type=checkbox] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(54, 54, 54, 0.5);
  background-color: #fff;
  position: relative;
  margin-right: 10px;
  cursor: pointer;
}
.category-filter input[type=checkbox]:checked,
.attribute-filter input[type=checkbox]:checked {
  background-color: white;
  border-color: rgb(117, 117, 117);
}
.category-filter input[type=checkbox]:checked::after,
.attribute-filter input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  transition: all 0.3s ease;
  background-color: rgb(4, 2, 2);
  transform: translate(-50%, -50%);
}
.category-filter label span,
.attribute-filter label span {
  margin-left: auto;
  font-size: 14px;
  color: #666;
}

body .woocommerce-info,
body .woocommerce-noreviews,
body p.no-comments {
  background-color: #010101;
}

body .woocommerce-message,
body .woocommerce-info,
body .woocommerce-error,
body .woocommerce-noreviews,
body p.no-comments {
  border-left: 0.6180469716em solid rgba(255, 255, 255, 0.15);
}

a {
  color: rgb(4, 2, 2);
}

@media (min-width: 993px) {
  .product-type-variable .woocommerce-product-gallery__image {
    display: none !important;
  }
}

.wpcf7-form label {
  display: block;
  margin-bottom: 10px;
}
.wpcf7-form label .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.wpcf7-form label .wpcf7-form-control-wrap input {
  width: 100%;
}

body .site-footer {
  background-color: white;
  padding: 0;
  padding-top: 64px;
}
body .site-footer .col-full {
  display: flex;
}
body .site-footer .col-full::before {
  display: none;
}
@media (max-width: 992px) {
  body .site-footer .col-full {
    gap: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
body .site-footer__contact {
  width: 35%;
}
@media (max-width: 992px) {
  body .site-footer__contact {
    width: 100%;
    grid-column: span 2;
  }
}
body .site-footer__contact--socialsheader {
  font-family: "outfit";
  margin-top: 30px !important;
  font-size: 14px;
  margin-bottom: 16px;
  color: rgb(4, 2, 2) !important;
  text-transform: uppercase;
}
body .site-footer__contact--socials {
  display: flex;
  gap: 12px;
}
body .site-footer__contact--social {
  height: 40px;
  width: 40px;
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center;
  border-radius: 50%;
  border: solid 1px rgb(4, 2, 2);
}
body .site-footer__contact--social.facebook {
  background-image: url("../images/svg/facebook.svg");
}
body .site-footer__contact--social.instagram {
  background-image: url("../images/svg/instagram.svg");
}
body .site-footer__contact--social.pinterest {
  background-image: url("../images/svg/pinterest.svg");
}
body .site-footer__contact--logo {
  width: 140px;
  margin-bottom: 40px;
  display: block;
}
body .site-footer__contact--icon {
  display: block;
  padding-left: 30px;
  text-decoration: none;
  color: rgb(117, 117, 117) !important;
  font-size: 16px;
  margin-bottom: 6px;
  position: relative;
}
body .site-footer__contact--icon::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 20px;
  height: 20px;
  background-size: cover;
}
body .site-footer__contact--icon.phone::before {
  background-image: url("../images/svg/phone.svg");
}
body .site-footer__contact--icon.email::before {
  background-image: url("../images/svg/mail.svg");
}
body .site-footer__nav {
  width: 17%;
}
@media (max-width: 992px) {
  body .site-footer__nav {
    width: 100%;
  }
}
body .site-footer__nav h4 {
  font-family: "outfit";
  font-size: 14px;
  margin-bottom: 27px;
  color: rgb(4, 2, 2);
  text-transform: uppercase;
}
body .site-footer__nav ul {
  margin: 0;
}
body .site-footer__nav ul li {
  list-style-type: none;
  margin-bottom: 10px;
}
body .site-footer__nav ul li a {
  font-size: 14px;
  color: rgb(54, 54, 54);
  text-decoration: none;
}
body .site-footer__lower {
  padding: 30px 0;
  margin-top: 80px;
  border-top: solid 1px rgb(208, 190, 182);
}
@media (max-width: 992px) {
  body .site-footer__lower {
    margin-top: 30px;
  }
}
body .site-footer__lower .col-full {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 992px) {
  body .site-footer__lower .col-full {
    flex-wrap: wrap;
    gap: 15px;
  }
}
body .site-footer__lower .col-full::before {
  display: none;
}
body .site-footer__lower--text {
  color: rgb(117, 117, 117);
  font-size: 14px;
}
body .site-footer__lower--payment {
  display: flex;
  gap: 10px;
  margin-left: auto;
}
body .site-footer__lower--payment img {
  width: 50px;
}

* {
  outline: none !important;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
#preloader .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 2px;
  background-color: #e05a33;
  border-radius: 50%;
  animation: bounce 1.5s infinite ease-in-out;
}
#preloader .dot:nth-child(1) {
  animation-delay: -0.3s;
}
#preloader .dot:nth-child(2) {
  animation-delay: -0.15s;
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.page-template.home .type-page,
.page-template.home .site-main {
  padding-top: 0;
  overflow: hidden;
  padding-bottom: 0;
  margin-bottom: 0;
}

.content-area {
  margin-bottom: 0;
}

.page-template .woocommerce-error {
  display: none;
}

.products {
  display: grid;
}
.products .product {
  margin: 0 !important;
  float: none;
  width: auto !important;
}
.products .product .onsale {
  position: absolute;
  left: 10px;
  top: 10px;
  text-transform: none;
  background: #e05a33 !important;
  color: white !important;
  font-size: 14px !important;
  font-weight: 300 !important;
  padding: 1px 12px !important;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
}
.products .product.on-sale .available-now {
  top: 45px;
}
.products .product .available-now {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 10;
  padding: 1px 10px;
  border-radius: 3px;
  text-transform: none;
  background: rgb(255, 255, 255);
  color: #e05a33 !important;
  font-size: 14px !important;
  font-weight: 300 !important;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
}
.products.columns-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.products.columns-4::before {
  display: none;
}
@media (max-width: 768px) {
  .products.columns-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .products.columns-4 {
    grid-template-columns: 1fr;
  }
}

.woocommerce-breadcrumb a:first-of-type::before {
  content: "" !important;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  background-position: center;
  background-image: url("../images/svg/home.svg");
}

.woocommerce-products-header {
  text-align: left !important;
  padding-bottom: 45px !important;
}
.woocommerce-products-header__title {
  font-size: 38px;
  font-weight: 400;
  color: rgb(4, 2, 2);
  line-height: 43px;
}

.woocommerce-breadcrumb {
  display: flex;
  color: rgb(54, 54, 54);
}
.woocommerce-breadcrumb > a {
  display: flex;
  color: rgb(117, 117, 117) !important;
  font-weight: 300;
  text-decoration: none !important;
  letter-spacing: 0;
}
.woocommerce-breadcrumb .breadcrumb-separator {
  text-indent: 0 !important;
}
.woocommerce-breadcrumb .breadcrumb-separator::after {
  display: none !important;
}

.swatches {
  display: flex;
  position: absolute;
  top: 270px;
  right: 0;
  left: 0;
  justify-content: center;
  z-index: 10;
  gap: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition-duration: 0.4s;
}
@media (max-width: 1450px) {
  .swatches {
    top: 235px;
  }
}
.swatches .swatch {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: relative;
}
.swatches .swatch:hover {
  cursor: pointer;
}
.swatches .swatch::after {
  content: "";
  position: absolute;
  left: -3px;
  right: -3px;
  bottom: -3px;
  top: -3px;
  border-radius: 50%;
  background-color: inherit;
  opacity: 0.35;
}
.swatches .swatch.active::after {
  left: -5px;
  right: -5px;
  bottom: -5px;
  top: -5px;
  background-color: rgb(54, 54, 54);
  z-index: -3;
  opacity: 1;
}
.swatches .swatch.active::before {
  content: "";
  position: absolute;
  left: -3px;
  right: -3px;
  bottom: -3px;
  top: -3px;
  border-radius: 50%;
  background-color: white !important;
  background-color: inherit;
  z-index: -2;
}

.custom_sorting {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
@media (max-width: 768px) {
  .custom_sorting {
    margin-top: -24px;
    flex-direction: column;
  }
}
.custom_sorting__number {
  color: rgb(117, 117, 117);
  font-weight: 300;
  font-size: 16px;
  padding-right: 12px;
  position: relative;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .custom_sorting__number {
    margin-top: -10px;
  }
}
.custom_sorting__number::after {
  content: "";
  display: block;
  position: absolute;
  height: 16px;
  right: 0;
  top: 6px;
  width: 1px;
  background-color: rgb(196, 196, 196);
}
@media (max-width: 768px) {
  .custom_sorting__number::after {
    display: none;
  }
}

.woocommerce-ordering {
  margin-bottom: 0;
  max-width: 50%;
}

.sidebar_switcher {
  display: flex;
  margin-right: auto;
  color: rgb(54, 54, 54);
  font-weight: 600;
  position: relative;
  top: 3px;
}
@media (max-width: 768px) {
  .sidebar_switcher {
    margin-top: -10px;
  }
}
.sidebar_switcher:hover {
  cursor: pointer;
}
.sidebar_switcher:hover .sidebar_switcher__switch::after {
  transform: translateY(0) rotate(90deg);
}
.sidebar_switcher__switch {
  width: 16px;
  height: 16px;
  top: 3px;
  margin-right: 7px;
  display: block;
  margin-left: 12px;
  position: relative;
  cursor: pointer;
}
@media (max-width: 768px) {
  .sidebar_switcher__switch {
    margin-left: 0px;
  }
}
.sidebar_switcher__switch::before, .sidebar_switcher__switch::after {
  content: "";
  position: absolute;
  background-color: rgb(117, 117, 117);
  transition: transform 0.3s ease;
  border-radius: 1px;
  width: 16px;
  height: 2px;
}
.sidebar_switcher__switch::before {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.sidebar_switcher__switch::after {
  top: 0;
  left: 50%;
  height: 16px;
  width: 2px;
  transform: translateX(-50%);
}

.sort-text {
  font-size: 12px;
  color: rgb(54, 54, 54);
  font-weight: 300;
  text-transform: uppercase;
  position: relative;
  top: 2px;
}
@media (max-width: 768px) {
  .sort-text {
    display: none;
  }
}

.orderby {
  font-size: 12px;
  color: rgb(54, 54, 54);
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  background: white;
}

.woocommerce-loop-product__title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 2px;
  line-height: 22px;
  color: rgb(4, 2, 2);
  font-family: "outfit";
}

.woocommerce-account .custom-entry-content {
  width: 80%;
  margin: auto;
}

ul.products li.product .product-category {
  color: rgb(54, 54, 54);
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  margin-bottom: 6px;
}
ul.products li.product:hover .swatches {
  opacity: 1;
  transform: translateY(0);
}
ul.products li.product img {
  margin-bottom: 19px;
}
ul.products li.product .price * {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
ul.products li.product .price bdi {
  color: rgb(4, 2, 2);
}
ul.products li.product .button {
  padding: 0;
  background: white;
  color: #e05a33;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  gap: 6px;
  justify-content: center;
  opacity: 0;
  position: absolute;
  bottom: 10px;
  right: 0;
  left: 0;
  transform: translateY(10px);
  transition-duration: 0.4s;
}
ul.products li.product .button::after {
  content: "";
  height: 20px;
  width: 20px;
  background-repeat: no-repeat;
  display: block;
  background-size: 20px;
  background-position: center;
  border-radius: 50%;
  background-size: contain;
  background-image: url("../images/svg/add-to-cart.svg");
}
ul.products li.product:hover .button {
  transform: translateY(0);
  opacity: 1;
}

.widget-area {
  position: fixed;
  top: 0;
  overflow: auto;
  padding: 40px 60px;
  bottom: 0;
  left: -200%;
  z-index: 999;
  background-color: rgb(255, 255, 255);
  width: 420px !important;
  transition-delay: 0.3s;
  transition-duration: 0.4s;
  margin-bottom: 0 !important;
}
.widget-area__outer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  opacity: 0;
  z-index: 999;
  visibility: hidden;
  transition-duration: 0.4s;
  background-color: rgba(0, 0, 0, 0.4);
}
.widget-area__outer:not(.active) {
  transition-delay: 0.6s;
}
.widget-area__outer.active {
  opacity: 1;
  visibility: visible;
}
.widget-area__outer.active .widget-area {
  left: 0%;
}
.widget-area__outer.active #minicart {
  right: 0;
}
.widget-area__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.widget-area__wrapper h2 {
  margin-bottom: 0;
}
.widget-area__close {
  font-size: 20px;
}
.widget-area__close:hover {
  cursor: pointer;
}
.widget-area .wp-block-search__input {
  padding: 14px 0 14px 40px;
  background: rgba(117, 117, 117, 0.05);
  box-shadow: none;
}
.widget-area .wp-block-search__input input {
  color: rgb(54, 54, 54) !important;
}
.widget-area .wp-block-search__input input::placeholder {
  color: rgb(54, 54, 54) !important;
  font-weight: 300;
}
.widget-area .wp-block-search__inside-wrapper {
  position: relative;
}
.widget-area .wp-block-search__inside-wrapper::before {
  content: "";
  height: 20px;
  top: 14px;
  width: 20px;
  display: block;
  position: absolute;
  left: 10px;
  background-image: url("../images/svg/search-black.svg");
}
.widget-area #block-7 {
  margin-bottom: 21px;
}
.widget-area .widget {
  margin: 0 0 36px;
}
.widget-area .wp-block-heading {
  color: rgb(4, 2, 2);
}

.storefront-sorting {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 30px;
  border-bottom: solid 1px rgba(117, 117, 117, 0.2);
}

.cus-products .circle-origin {
  fill: rgba(255, 255, 255, 0.2901960784);
  stroke: #422020;
  stroke-width: 4px;
  stroke-linecap: round;
  stroke-dasharray: 125.664px;
  stroke-dashoffset: 125.664px;
}

img.custom-logo:hover {
  transform: scale(0.98);
  transition: 0.5s ease;
}

.site-header .custom-logo-link img {
  max-width: 130px;
  margin: auto;
  transition: 0.5s ease;
}

.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item) {
  width: 32px;
  height: 32px;
  padding: 3px;
}

body div.asl_w {
  box-shadow: none !important;
}
body div.asl_w .probox .proinput {
  margin: 0 0 0 0 !important;
  padding: 0 !important;
}
body .asl_w_container_1.search_toggled #ajaxsearchlite1 {
  top: 0;
}
body #ajaxsearchlite1 {
  background-color: #000 !important;
  position: fixed;
  transition-duration: 0.4s;
  top: -10%;
  z-index: 99999;
}
body #ajaxsearchlite1 * {
  font-family: "outfit";
}
body #ajaxsearchlite1 .probox {
  margin: auto;
  position: relative;
  overflow: visible;
}
@media (min-width: 768px) {
  body #ajaxsearchlite1 .probox {
    max-width: 1302px;
  }
}
body #ajaxsearchlite1 .probox,
body #ajaxsearchlite1 div.asl_w .probox {
  background-color: #000 !important;
  border: 0 none #000;
  border-radius: 0 0 0 0;
  box-shadow: none;
  padding: 15px;
  box-shadow: none !important;
}
@media (max-width: 992px) {
  body #ajaxsearchlite1 .probox,
  body #ajaxsearchlite1 div.asl_w .probox {
    width: 85%;
    margin: 0;
  }
}
body #ajaxsearchlite1 .probox .proinput input,
body #ajaxsearchlite1 div.asl_w .probox .proinput input {
  color: #fff !important;
  font-size: 20px !important;
  box-shadow: none !important;
}
body #ajaxsearchlite1 .probox .proinput input::placeholder,
body #ajaxsearchlite1 div.asl_w .probox .proinput input::placeholder {
  color: #fff !important;
}
body #ajaxsearchlite1 .promagnifier {
  background-image: url("../images/svg/search.svg") !important;
  box-shadow: none;
}
body #ajaxsearchlite1 .promagnifier span {
  display: none !important;
}

.searchbar__close {
  top: 15px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: -25px;
}
.searchbar__close .line {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: white;
  top: 50%;
  left: 0;
  transform-origin: center;
}
.searchbar__close .line1 {
  transform: rotate(45deg);
}
.searchbar__close .line2 {
  transform: rotate(-45deg);
}

.wp-block-woocommerce-empty-cart-block {
  text-align: center;
  margin: 7% 0;
}
.wp-block-woocommerce-empty-cart-block .btn {
  margin-top: 20px;
}

.wc-block-components-quantity-selector {
  border: solid 1px rgb(117, 117, 117);
  padding: 8px 8px;
  border-radius: 0 !important;
}
.wc-block-components-quantity-selector__button {
  border-radius: 50% !important;
  font-size: 20px !important;
  color: black !important;
}
.wc-block-components-quantity-selector__button:hover {
  box-shadow: none !important;
  background-color: rgba(117, 117, 117, 0.1) !important;
}

.wp-block-woocommerce-cart .wc-block-components-sale-badge {
  display: none;
}
.wp-block-woocommerce-cart .wc-block-cart-item__product {
  position: relative;
}
.wp-block-woocommerce-cart .wc-block-components-product-metadata__description {
  display: none;
}
.wp-block-woocommerce-cart .wc-block-cart-item__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  margin-top: 19px;
}
.wp-block-woocommerce-cart .wc-block-cart-item__wrap .wc-block-components-product-name {
  grid-column: 1/2;
  grid-row: 1/2;
}
.wp-block-woocommerce-cart .wc-block-cart-item__wrap .wc-block-cart-item__prices {
  grid-column: 1/2;
  grid-row: 2/3;
}
.wp-block-woocommerce-cart .wc-block-cart-item__wrap .wc-block-cart-item__quantity {
  grid-column: 2/3;
  grid-row: 1/3;
}
.wp-block-woocommerce-cart .wc-block-cart-item__remove-link {
  position: absolute;
  left: -140px;
  top: 41%;
}
.wp-block-woocommerce-cart .wc-block-cart__sidebar {
  padding: 40px;
  border: solid 1px rgba(117, 117, 117, 0.5);
}
.wp-block-woocommerce-cart .wc-block-cart-items__header-image {
  padding-left: 17px !important;
}
.wp-block-woocommerce-cart .wc-block-cart-items__header-image span {
  font-weight: 500;
  color: black;
  text-transform: none;
  text-transform: capitalize;
  font-size: 16px;
}
.wp-block-woocommerce-cart .wc-block-cart-item__total-price-and-sale-badge-wrapper {
  margin-top: 27px;
}
.wp-block-woocommerce-cart .wc-block-cart-items__header-total span {
  font-weight: 500;
  color: black;
  text-transform: none;
  text-transform: capitalize;
  font-size: 16px;
}
.wp-block-woocommerce-cart .is-large.wc-block-cart .wc-block-cart-items th {
  padding-bottom: 19px;
}
.wp-block-woocommerce-cart .wc-block-cart-item__image img {
  border-radius: 0;
}
.wp-block-woocommerce-cart .wc-block-components-product-name {
  margin-bottom: 5px !important;
  font-size: 16px;
  font-weight: 300;
}
.wp-block-woocommerce-cart .wc-block-components-product-price * {
  color: rgb(4, 2, 2);
  font-weight: 500;
  font-size: 14px;
}
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main {
  width: 60% !important;
}
.wp-block-woocommerce-cart .wc-block-components-sidebar {
  width: 40% !important;
}
.wp-block-woocommerce-cart .is-large .wc-block-components-sidebar .wc-block-components-panel,
.wp-block-woocommerce-cart .is-large .wc-block-components-sidebar .wc-block-components-totals-coupon,
.wp-block-woocommerce-cart .is-large .wc-block-components-sidebar .wc-block-components-totals-item {
  padding-left: 0px;
  padding-right: 0px;
}
.wp-block-woocommerce-cart .wp-block-woocommerce-cart-order-summary-block * {
  color: rgb(4, 2, 2);
}
.wp-block-woocommerce-cart .wc-block-cart__totals-title {
  font-size: 20px !important;
  text-transform: none !important;
  font-weight: 500 !important;
  color: rgb(4, 2, 2) !important;
}
.wp-block-woocommerce-cart .wc-block-cart-item__remove-link {
  visibility: hidden;
}
.wp-block-woocommerce-cart .wc-block-cart-item__remove-link::before {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  visibility: visible;
  background-size: cover;
  background-image: url("../images/svg/x.svg");
}
.wp-block-woocommerce-cart .wc-block-cart__submit {
  margin-bottom: 8px;
}
.wp-block-woocommerce-cart .back-to-shop a {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.wp-block-woocommerce-cart .back-to-shop a::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  visibility: visible;
  background-size: cover;
  background-image: url("../images/svg/back-to-shop.svg");
}
.wp-block-woocommerce-cart .wc-block-components-button__text {
  color: white;
}

body .wc-block-components-form .wc-block-components-text-input input[type=email],
body .wc-block-components-form .wc-block-components-text-input input[type=number],
body .wc-block-components-form .wc-block-components-text-input input[type=password],
body .wc-block-components-form .wc-block-components-text-input input[type=tel],
body .wc-block-components-form .wc-block-components-text-input input[type=text],
body .wc-block-components-form .wc-block-components-text-input input[type=url],
body .wc-block-components-text-input input[type=email],
body .wc-block-components-text-input input[type=number],
body .wc-block-components-text-input input[type=password],
body .wc-block-components-text-input input[type=tel],
body .wc-block-components-text-input input[type=text],
body .wc-block-components-text-input input[type=url] {
  background-color: white;
  border: none;
  padding: 10px 15px;
  border: solid 1px rgb(232, 232, 235) !important;
  box-shadow: none;
  border-radius: 0 !important;
  min-width: 270px;
}
body .wc-block-components-form .wc-block-components-text-input input[type=email]:focus,
body .wc-block-components-form .wc-block-components-text-input input[type=number]:focus,
body .wc-block-components-form .wc-block-components-text-input input[type=password]:focus,
body .wc-block-components-form .wc-block-components-text-input input[type=tel]:focus,
body .wc-block-components-form .wc-block-components-text-input input[type=text]:focus,
body .wc-block-components-form .wc-block-components-text-input input[type=url]:focus,
body .wc-block-components-text-input input[type=email]:focus,
body .wc-block-components-text-input input[type=number]:focus,
body .wc-block-components-text-input input[type=password]:focus,
body .wc-block-components-text-input input[type=tel]:focus,
body .wc-block-components-text-input input[type=text]:focus,
body .wc-block-components-text-input input[type=url]:focus {
  border: solid 1px rgb(117, 117, 117) !important;
}
body .wc-block-components-form .wc-block-components-text-input input[type=email] label,
body .wc-block-components-form .wc-block-components-text-input input[type=number] label,
body .wc-block-components-form .wc-block-components-text-input input[type=password] label,
body .wc-block-components-form .wc-block-components-text-input input[type=tel] label,
body .wc-block-components-form .wc-block-components-text-input input[type=text] label,
body .wc-block-components-form .wc-block-components-text-input input[type=url] label,
body .wc-block-components-text-input input[type=email] label,
body .wc-block-components-text-input input[type=number] label,
body .wc-block-components-text-input input[type=password] label,
body .wc-block-components-text-input input[type=tel] label,
body .wc-block-components-text-input input[type=text] label,
body .wc-block-components-text-input input[type=url] label {
  font-size: 16px;
  font-weight: 300;
  color: rgb(117, 117, 117);
}
body .wc-block-components-form .wc-block-components-text-input input[type=email] *,
body .wc-block-components-form .wc-block-components-text-input input[type=number] *,
body .wc-block-components-form .wc-block-components-text-input input[type=password] *,
body .wc-block-components-form .wc-block-components-text-input input[type=tel] *,
body .wc-block-components-form .wc-block-components-text-input input[type=text] *,
body .wc-block-components-form .wc-block-components-text-input input[type=url] *,
body .wc-block-components-text-input input[type=email] *,
body .wc-block-components-text-input input[type=number] *,
body .wc-block-components-text-input input[type=password] *,
body .wc-block-components-text-input input[type=tel] *,
body .wc-block-components-text-input input[type=text] *,
body .wc-block-components-text-input input[type=url] * {
  font-size: 16px;
  font-weight: 300;
  color: rgb(4, 2, 2);
}
body .wc-blocks-components-select .wc-blocks-components-select__container {
  border: solid 1px rgb(232, 232, 235) !important;
  border-radius: 0 !important;
}

.single-product {
  margin-top: 270px;
}
.single-product #page,
.single-product div.product {
  overflow: clip !important;
}
@media (min-width: 993px) {
  .single-product .summary {
    top: 180px;
    position: sticky;
  }
}
.single-product #show-inquiry-form {
  background-color: #e05a33;
  border: none;
  color: white;
  border: solid 2px white;
  font-weight: bold;
}
.single-product #show-inquiry-form:hover {
  background-color: white;
  color: black;
  border: solid 2px #e05a33;
}
@media (max-width: 992px) {
  .single-product {
    margin-top: 230px;
  }
  .single-product .product {
    padding-top: 70px;
  }
}
.single-product__info {
  margin-top: 24px;
}
.single-product__info--single {
  gap: 20px;
  display: flex;
}
.single-product__info--single img {
  width: 34px;
  height: auto;
}
.single-product__info p {
  margin-bottom: 0;
  font-weight: 300;
  color: rgb(117, 117, 117);
  display: flex;
  align-items: center;
  gap: 10px;
}
.single-product .color-variable-item {
  border-radius: 50% !important;
}
.single-product .color-variable-item .variable-item-contents span {
  border-radius: 50% !important;
}
.single-product .woocommerce-product-gallery_cus {
  width: 55% !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
}
@media (max-width: 992px) {
  .single-product .woocommerce-product-gallery_cus {
    width: 100% !important;
  }
}
.single-product .woocommerce-product-gallery_cus #custom-gallery {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.single-product .woocommerce-product-gallery_cus__image img {
  width: 100%;
}
.single-product .entry-summary {
  width: 35% !important;
  flex-shrink: 0;
}
@media (max-width: 992px) {
  .single-product .entry-summary {
    width: 100% !important;
  }
}
.single-product #pa_opcje,
.single-product #pa_przelotki {
  display: block !important;
  font-weight: 300;
  color: rgb(54, 54, 54);
  max-width: 100%;
}
.single-product .reset_variations {
  margin-left: 0 !important;
  margin-top: 10px;
  font-weight: 300;
  color: rgb(117, 117, 117);
  text-decoration: underline;
}
.single-product .reset_variations::before {
  display: none !important;
}
.single-product .onsale {
  position: absolute;
  top: 11px;
  left: 50px;
  z-index: 100;
  text-transform: none;
  background: rgb(107, 39, 55) !important;
  color: white !important;
  font-size: 14px !important;
  font-weight: 300 !important;
  padding: 1px 12px !important;
}
.single-product .onsale + .available-now {
  top: 50px;
}
@media (max-width: 992px) {
  .single-product .onsale {
    left: 11px;
  }
}
.single-product .available-now {
  position: absolute;
  top: 11px;
  left: 51px;
  border-radius: 3px;
  z-index: 10;
  padding: 1px 12px !important;
  text-transform: none;
  background: rgb(255, 255, 255);
  color: rgb(66, 32, 32) !important;
  font-size: 14px !important;
  font-weight: 300 !important;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 992px) {
  .single-product .available-now {
    left: 11px;
  }
}
.single-product .on-sale .available-now {
  top: 50px;
}
.single-product .product_timer {
  background: black;
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 3px;
  color: white;
}
.single-product .product_timer .product_countdown {
  background: white;
  border-radius: 5px;
  color: black;
  padding: 0 6px;
}
.single-product .product_timer::before {
  content: "";
  height: 20px;
  width: 20px;
  background-repeat: no-repeat;
  display: block;
  background-size: 20px;
  background-position: center;
  border-radius: 50%;
  background-image: url("../images/svg/alarm.svg");
}
.single-product .variations_button {
  padding-top: 0 !important;
}
.single-product #custom_text_field_container {
  margin-bottom: 2em;
}
.single-product #custom_text_field_container textarea {
  border: solid 1px rgb(117, 117, 117);
  background-color: white;
}
.single-product #custom_text_field_container label {
  font-weight: 500;
  font-size: 15px;
  color: rgb(0, 0, 0);
  color: rgb(4, 2, 2);
  margin-bottom: 10px;
  display: block;
}
.single-product .slider__title {
  text-align: left;
  font-size: 29px;
  margin-bottom: 40px;
  line-height: 32px;
}
.single-product .product_available {
  color: rgb(34, 120, 53);
  padding-left: 30px;
  margin-bottom: 24px;
  position: relative;
}
.single-product .product_available::before {
  content: "";
  height: 25px;
  width: 25px;
  display: block;
  position: absolute;
  left: 0px;
  background-image: url("../images/svg/check.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.single-product .variations th {
  margin-bottom: 10px;
}
.single-product .variations th * {
  font-weight: 500;
  font-size: 15px;
  color: rgb(4, 2, 2);
}
.single-product .woo-variation-items-wrapper select {
  width: 100%;
  border: solid 1px rgb(117, 117, 117);
  padding: 11px;
  background: white;
}
.single-product [data-attribute_name=attribute_pa_opcje] {
  display: none !important;
}
.single-product [data-attribute_name=attribute_pa_przelotki] {
  display: none !important;
}
.single-product .storefront-breadcrumb {
  margin-top: 0px;
  margin-bottom: 24px;
  padding: 0;
}
@media (max-width: 1200px) {
  .single-product .storefront-breadcrumb .col-full {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .single-product .storefront-breadcrumb {
    position: absolute;
    top: -50px;
  }
}
.single-product .storefront-breadcrumb .col-full {
  padding: 0;
}
.single-product .product_title {
  font-weight: 400;
  font-size: 38px;
  line-height: 43px;
  margin-bottom: 8px;
}
.single-product .product-categories {
  font-weight: 300;
  font-size: 14px;
  color: rgb(54, 54, 54);
  margin-bottom: 8px;
}
.single-product .price {
  margin: 0 !important;
  margin-bottom: 24px !important;
}
.single-product .price * {
  font-size: 27px;
  font-weight: 500;
}
.single-product .price bdi {
  color: rgb(4, 2, 2);
}
.single-product .flex-viewport {
  display: none;
}
@media (max-width: 992px) {
  .single-product .flex-viewport {
    display: block;
  }
}
.single-product .product_wrapper {
  display: flex;
  position: relative;
  align-items: flex-start;
  gap: 75px;
}
@media (max-width: 992px) {
  .single-product .product_wrapper {
    flex-direction: column;
  }
}
.single-product .flex-control-nav {
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .single-product .flex-control-nav {
    gap: 10px;
    flex-direction: row;
  }
}
.single-product .flex-control-nav li {
  width: 100% !important;
  margin-right: 0 !important;
}
.single-product .flex-control-nav li img {
  opacity: 1 !important;
}
.single-product .model.btn {
  display: block;
  margin-bottom: 24px;
}
.single-product .single_add_to_cart_button {
  width: 69%;
  margin-left: auto;
  font-weight: 500;
  font-size: 14px;
  justify-content: center;
  position: relative;
  height: 50px;
  align-items: center;
  gap: 10px;
  display: flex;
}
.single-product .single_add_to_cart_button::after {
  content: "";
  height: 21px;
  width: 21px;
  display: block;
  background-image: url("../images/svg/bag-white.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.single-product .cart {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.single-product .product_meta {
  border-top: none;
}
.single-product .sku_wrapper {
  color: rgb(4, 2, 2);
  font-size: 16px;
  font-weight: 300;
}
.single-product .sku_wrapper span {
  font-size: 16px;
  font-weight: 300;
  color: rgb(117, 117, 117);
}
.single-product .posted_in {
  color: rgb(4, 2, 2);
  font-size: 16px;
  font-weight: 300;
}
.single-product .posted_in a {
  font-size: 16px;
  font-weight: 300 !important;
  color: rgb(117, 117, 117);
}
.single-product .payment-frame {
  margin: 24px 0;
}
.single-product .quantity {
  width: 30%;
  margin-right: 0 !important;
  border: solid 1px rgb(117, 117, 117);
  text-align: center;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-product .quantity input::-webkit-outer-spin-button,
.single-product .quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.single-product .quantity input[type=number] {
  -moz-appearance: textfield;
}
.single-product .quantity button {
  padding: 0;
}
.single-product .quantity .qty {
  width: 60px;
  box-shadow: none;
  padding: 0;
  background-color: white;
}
.single-product .quantity .qty-button {
  background: rgba(117, 117, 117, 0.1);
  border-radius: 50%;
  height: 24px;
  font-size: 25px;
  line-height: 0;
  width: 24px;
}
.single-product .custom-accordion-wrapper {
  margin: 20px 0;
}
.single-product .accordion-section:last-of-type .accordion-header {
  border-bottom: none;
}
.single-product .accordion-section {
  overflow: hidden;
}
.single-product .accordion-header {
  color: rgb(4, 2, 2);
  font-size: 18px;
  font-weight: 500;
  font-family: "outfit";
  border-bottom: solid 1px rgba(117, 117, 117, 0.2);
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
  padding: 10px 0;
}
.single-product .accordion-header:hover {
  cursor: pointer;
}
.single-product .accordion-content {
  background-color: rgba(117, 117, 117, 0.03);
  padding: 0px;
  margin-bottom: 0px;
  max-height: 0px;
  transition-duration: 0.4s;
}
.single-product .accordion-content p {
  padding: 10px;
}
.single-product .accordion-content h2 {
  padding: 0 18px;
}
.single-product .accordion-content.active {
  max-height: 2000px;
}
.single-product .accordion-content * {
  font-weight: 300;
  font-family: "outfit";
  color: rgb(4, 2, 2);
  font-size: 14px !important;
}
@media (max-width: 992px) {
  .single-product .slider {
    padding: 80px 0 80px;
  }
}
.single-product .storefront-product-pagination {
  display: none;
}

.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).color-variable-item.selected:not(.no-stock) .variable-item-contents::before,
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).image-variable-item.selected:not(.no-stock) .variable-item-contents::before {
  background-image: none !important;
}

.woocommerce-account * {
  font-family: "outfit" !important;
}
.woocommerce-account input[type=text],
.woocommerce-account input[type=password],
.woocommerce-account input[type=email] {
  background-color: white;
  border: none;
  padding: 10px 15px;
  border: solid 1px rgb(232, 232, 235);
  box-shadow: none;
  min-width: 270px;
}
.woocommerce-account input[type=text]:focus,
.woocommerce-account input[type=password]:focus,
.woocommerce-account input[type=email]:focus {
  border: solid 1px rgb(117, 117, 117);
}
.woocommerce-account input[type=text]::placeholder,
.woocommerce-account input[type=password]::placeholder,
.woocommerce-account input[type=email]::placeholder {
  font-size: 16px;
  font-weight: 300;
  color: rgb(117, 117, 117);
}
.woocommerce-account input[type=text] *,
.woocommerce-account input[type=password] *,
.woocommerce-account input[type=email] * {
  font-size: 16px;
  font-weight: 300;
  color: rgb(4, 2, 2);
}
.woocommerce-account .form-flex {
  display: flex;
  justify-content: space-between;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  margin-left: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li {
  list-style-type: none;
  padding: 10px;
  border-bottom: solid 1px #eee;
}
.woocommerce-account .newsletter {
  display: none;
}
.woocommerce-account .woocommerce-form input[type=text],
.woocommerce-account .woocommerce-form input[type=password],
.woocommerce-account .woocommerce-form input[type=email] {
  background-color: white;
  border: none;
  padding: 10px 15px;
  border: solid 1px rgb(232, 232, 235);
  box-shadow: none;
  min-width: 270px;
}
.woocommerce-account .woocommerce-form input[type=text]:focus,
.woocommerce-account .woocommerce-form input[type=password]:focus,
.woocommerce-account .woocommerce-form input[type=email]:focus {
  border: solid 1px rgb(117, 117, 117);
}
.woocommerce-account .woocommerce-form input[type=text]::placeholder,
.woocommerce-account .woocommerce-form input[type=password]::placeholder,
.woocommerce-account .woocommerce-form input[type=email]::placeholder {
  font-size: 16px;
  font-weight: 300;
  color: rgb(117, 117, 117);
}
.woocommerce-account .woocommerce-form input[type=text] *,
.woocommerce-account .woocommerce-form input[type=password] *,
.woocommerce-account .woocommerce-form input[type=email] * {
  font-size: 16px;
  font-weight: 300;
  color: rgb(4, 2, 2);
}
.woocommerce-account .woocommerce-form .form-flex {
  display: flex;
  justify-content: space-between;
}
.woocommerce-account.custom-login-page .storefront-breadcrumb {
  display: none;
}
.woocommerce-account.custom-login-page > .site {
  height: 100vh;
}
.woocommerce-account.custom-login-page > .site .page {
  margin-top: 27%;
}
.woocommerce-account .login {
  transition: opacity 0.5s ease-in-out;
}
.woocommerce-account .select2-container--default .select2-selection--single {
  padding: 8px;
  border-radius: 0;
  border: solid 1px rgb(232, 232, 235);
  height: auto;
}
.woocommerce-account .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 10px;
}
.woocommerce-account .customer-login__image {
  background-image: url("../images/img/login_img.jpg");
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 50%;
  background-size: cover;
}
@media (max-width: 992px) {
  .woocommerce-account .customer-login__image {
    position: relative;
    background-size: cover;
    height: 300px;
    width: 100%;
    margin-top: 220px;
    margin-bottom: 20px;
  }
}
.woocommerce-account .customer-login__wrapper {
  width: 50%;
  margin-left: auto;
}
@media (max-width: 992px) {
  .woocommerce-account .customer-login__wrapper {
    width: 100%;
  }
}
.woocommerce-account .customer-login__wrapper h2 {
  font-size: 28px;
  line-height: 32px;
  margin-bottom: 30px;
  text-align: center;
}
.woocommerce-account .customer-login .woocommerce-form {
  width: 58%;
  margin: auto;
}
@media (max-width: 992px) {
  .woocommerce-account .customer-login .woocommerce-form {
    width: 100%;
  }
}
.woocommerce-account .customer-login .register-me {
  margin-top: 13px;
  text-align: center;
  color: rgb(117, 117, 117);
  font-weight: 300;
}
.woocommerce-account .customer-login .register-me span {
  font-weight: 500;
  color: rgb(107, 39, 55);
}
.woocommerce-account .customer-login .register-me span:hover {
  opacity: 0.7;
  cursor: pointer;
}
.woocommerce-account .woocommerce-form-login__rememberme * {
  font-weight: 300;
  color: rgb(54, 54, 54);
}
.woocommerce-account .woocommerce-form-login__submit {
  width: 100%;
  display: block;
  background-color: rgb(4, 2, 2);
  font-weight: 500;
  color: white;
  padding: 12px;
}
.woocommerce-account .woocommerce-form-row {
  margin-bottom: 14px;
}
.woocommerce-account .lost_password a {
  font-weight: 500;
  color: rgb(107, 39, 55);
}
.woocommerce-account .lost_password a:hover {
  opacity: 0.7;
  cursor: pointer;
}

.customer-register {
  width: 50%;
  margin-left: auto;
}
.customer-register__wrapper {
  width: 58%;
  margin: auto;
}
.customer-register__wrapper h2 {
  font-size: 28px;
  line-height: 32px;
  margin-bottom: 30px;
  text-align: center;
}
.customer-register__wrapper p {
  font-weight: 300;
}
.customer-register__wrapper .woocommerce-form-register__submit {
  width: 100% !important;
  display: block;
  background-color: rgb(4, 2, 2);
  font-weight: 500;
  color: white;
  padding: 12px;
}

.show-password-input.display-password {
  opacity: 0.4;
}
.show-password-input::after {
  content: "" !important;
  background-image: url("../images/svg/password.svg");
  width: 24px;
  height: 24px;
  top: 4px;
  position: relative;
}

.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}

.fade-in {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  pointer-events: auto;
}

.hidden {
  display: none;
}

.woocommerce-ResetPassword {
  width: 40%;
  margin: auto;
}
@media (max-width: 992px) {
  .woocommerce-ResetPassword {
    width: 100%;
  }
}
.woocommerce-ResetPassword input[type=text],
.woocommerce-ResetPassword input[type=password],
.woocommerce-ResetPassword input[type=email] {
  background-color: white;
  border: none;
  padding: 10px 15px;
  border: solid 1px rgb(232, 232, 235);
  box-shadow: none;
  min-width: 270px;
}
.woocommerce-ResetPassword input[type=text]:focus,
.woocommerce-ResetPassword input[type=password]:focus,
.woocommerce-ResetPassword input[type=email]:focus {
  border: solid 1px rgb(117, 117, 117);
}
.woocommerce-ResetPassword input[type=text]::placeholder,
.woocommerce-ResetPassword input[type=password]::placeholder,
.woocommerce-ResetPassword input[type=email]::placeholder {
  font-size: 16px;
  font-weight: 300;
  color: rgb(117, 117, 117);
}
.woocommerce-ResetPassword input[type=text] *,
.woocommerce-ResetPassword input[type=password] *,
.woocommerce-ResetPassword input[type=email] * {
  font-size: 16px;
  font-weight: 300;
  color: rgb(4, 2, 2);
}
.woocommerce-ResetPassword h2 {
  font-size: 28px;
  line-height: 32px;
  margin-bottom: 30px;
  text-align: center;
}

.woocommerce-Button {
  width: 100% !important;
  display: block;
  background-color: rgb(4, 2, 2);
  font-weight: 500;
  color: white;
  padding: 12px;
}
.woocommerce-Button:hover {
  opacity: 0.7;
  color: white !important;
  background-color: rgb(4, 2, 2) !important;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.no-comments {
  background-color: black !important;
}

body .woocommerce-message,
body .woocommerce-info,
body .woocommerce-error,
body .woocommerce-noreviews,
body p.no-comments {
  border-left: 0.6180469716em solid rgba(255, 255, 255, 0.15);
}

.page-template-page-inspo .swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.page-template-page-inspo .swiper-wrapper {
  height: 100vh;
}
.page-template-page-inspo .swiper-slide {
  text-align: center;
  font-size: 18px;
  height: auto !important;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .page-template-page-inspo .swiper-slide {
    flex-direction: column-reverse;
  }
}
.page-template-page-inspo .swiper-slide .inspo-products__wrapper {
  height: 100vh;
  width: 50%;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 992px) {
  .page-template-page-inspo .swiper-slide .inspo-products__wrapper {
    width: 100%;
    height: 50vh;
  }
}
.page-template-page-inspo .swiper-slide .inspo-products__image {
  background-size: cover;
  width: 50%;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
}
@media (max-width: 992px) {
  .page-template-page-inspo .swiper-slide .inspo-products__image {
    width: 100%;
    height: 50vh;
  }
}
.page-template-page-inspo .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-template-page-inspo .inspo-products .swiper-pagination-products {
  display: flex;
  justify-content: center;
  transform: scale(0.5);
  position: absolute;
  top: 60%;
  left: 0;
  flex-direction: column;
}
.page-template-page-inspo .inspo-products .swiper-pagination-bullet {
  position: relative;
  display: flex;
  opacity: 1;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  margin: 0 10px;
  background-color: transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}
.page-template-page-inspo .inspo-products .swiper-pagination-bullet span {
  background-color: #e05a33;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 1;
  transform: translate(-50%, -50%);
}
@media (max-width: 992px) {
  .page-template-page-inspo .inspo-products .swiper-pagination-bullet span {
    background-color: white;
  }
}
.page-template-page-inspo .inspo-products .swiper-pagination-bullet span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  width: 8px;
  border-radius: 50%;
  height: 8px;
}
@media (max-width: 992px) {
  .page-template-page-inspo .inspo-products .swiper-pagination-bullet span::before {
    outline: #e05a33;
  }
}
.page-template-page-inspo .inspo-products .progress {
  transform: rotate(-90deg);
  overflow: visible;
}
.page-template-page-inspo .inspo-products .circle-origin {
  fill: transparent;
  stroke: #e05a33;
  stroke-width: 5px;
  stroke-linecap: round;
  stroke-dasharray: 125.664px;
  stroke-dashoffset: 125.664px;
}
@media (max-width: 992px) {
  .page-template-page-inspo .inspo-products .circle-origin {
    stroke: white;
  }
}
.page-template-page-inspo .inspo-products .swiper-pagination-bullet-active {
  outline: 3px #e05a33;
  transform: scale(1.2);
  margin: 0 11px !important;
}
@media (max-width: 992px) {
  .page-template-page-inspo .inspo-products .swiper-pagination-bullet-active {
    outline: white;
  }
}
.page-template-page-inspo .inspo-products .swiper-pagination-bullet-active .circle-origin {
  animation: progress 5s;
}
.page-template-page-inspo .inspo-products .swiper-pagination-bullet-active span {
  width: 10px;
  height: 10px;
}
.page-template-page-inspo .inspo-products .swiper-pagination-bullet-active span::before {
  display: none;
}
@keyframes progress {
  0% {
    stroke-dashoffset: 125.664px;
  }
  90% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -125.664px;
  }
}

/* img.attachment-woocommerce_thumbnail, .cus-products__image, .categories__image, .flex-control-thumbs li:first-child img {
    filter: brightness(0.92) contrast(1.19) saturate(1.2);
}

*/
#open-minicart {
  margin-bottom: 0 !important;
}

@media (max-width: 992px) {
  .site-header #site-navigation .menu-item a,
  .site-header #site-navigation .current_page_item a {
    color: white !important;
  }
}
@media (min-width: 993px) {
  .site-header__utils--single.cart,
  .site-header-non_home__utils--single.cart {
    min-width: 85px !important;
  }
}
.product .image-hover img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.product:hover .image-hover img {
  opacity: 1;
}

#qlwapp.qlwapp-bottom-right {
  z-index: 10;
}

#qlwapp .qlwapp-toggle,
#qlwapp .qlwapp-box .qlwapp-header,
#qlwapp .qlwapp-box .qlwapp-user,
#qlwapp .qlwapp-box .qlwapp-user::before {
  background: black;
}

#qlwapp.qlwapp-button .qlwapp-toggle {
  padding: 12px;
}

#qlwapp.qlwapp-button .qlwapp-toggle .qlwapp-icon {
  margin: 0;
}

.single-product__info--single {
  margin-bottom: 7px;
}

.woocommerce-variation-availability {
  display: none;
}

.single-product .price {
  margin-bottom: 0 !important;
}

.wp-element-button {
  display: block;
  padding: 13px;
  border: solid 2px rgb(4, 2, 2) !important;
  text-align: center;
  color: rgb(4, 2, 2) !important;
  transition-duration: 0.4s;
  border-radius: 0;
  background: white !important;
}

.wp-element-button:hover {
  background-color: rgb(4, 2, 2) !important;
  color: white !important;
}

@media (max-width: 992px) {
  #open-minicart {
    width: 25px !important;
  }
  .single-product .custom-accordion-wrapper {
    margin-top: 20px;
  }
  .single-product {
    margin-top: 170px;
  }
  .single-product .price {
    margin-bottom: 10px !important;
  }
  .single-product .personalize-me {
    right: 1%;
  }
  .hero-block__text h2 {
    font-size: 30px;
    line-height: 38px;
  }
  .categories {
    padding: 40px 0px 80px;
  }
  .site-header #site-navigation .current_page_item a::after {
    display: none;
  }
}
@media (max-width: 568px) {
  .wp-block-group {
    margin-left: 1.41575em;
    margin-right: 1.41575em;
    padding: 0;
  }
}
.stock {
  display: none;
}

.single-product .flex-control-nav li img {
  width: 100%;
}

.single-product .reset_variations {
  padding: 0;
  margin-top: 0;
  background-color: transparent;
}

.woocommerce-variation-price {
  margin-bottom: 20px;
  display: block;
}

.minicart .minicart-item__actions {
  width: 25%;
}

@media (min-width: 992px) {
  .site-header #site-navigation ul {
    justify-content: space-between;
  }
}
.single-product .accordion-header {
  background: white;
}

.single-product .accordion-section {
  margin: 0;
}

.sample-selection {
  margin-top: 28px;
}

.wpcf7-list-item {
  margin: 0;
}

.sample-label {
  margin-bottom: 0;
}

@media (max-width: 1450px) {
  h2.wp-block-heading {
    margin-top: 20px !important;
  }
}
@media (min-width: 576px) and (max-width: 1080px) {
  .products.columns-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .col-full,
  .wp-block-group {
    padding: 0 26px;
  }
}
@media (min-width: 768px) {
  .hotspots-block__single--content {
    width: 220px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  #open-minicart {
    width: 115px !important;
  }
}
.container,
.wp-block-group {
  padding: 0px 16px;
}

@media (max-width: 768px) {
  .site-header-non_home__utils .cart__total {
    display: none;
    padding-left: 0px;
  }
  .newsletter form {
    flex-direction: column;
    gap: 0;
  }
  body #newsletter_text {
    max-width: initial;
  }
  .site-header-non_home .menu-item-has-children::after {
    filter: brightness(100%);
  }
  .orderby {
    min-width: initial;
  }
  .sidebar_switcher {
    top: -8px;
  }
  .single-product .personalize-me {
    right: 12px;
    font-size: 11px;
    width: 105px;
    text-align: center;
    line-height: 13px;
  }
  .single-product .product_timer {
    font-size: 12px;
  }
}
@media (max-width: 1200px) {
  .site-header-non_home__top--text .header_countdown {
    min-width: 110px;
    width: auto;
  }
  .site-header__top .header_countdown {
    min-width: 110px;
    width: auto;
  }
}
@media (max-width: 576px) {
  .newsletter {
    padding-bottom: 40px;
  }
  .single-product .onsale {
    font-size: 11px !important;
  }
  .woocommerce-breadcrumb {
    font-size: 11px;
  }
  .single-product .quantity .qty {
    width: 40px;
  }
  body .storefront-breadcrumb {
    margin-top: 180px;
  }
  .cus-products {
    padding: 50px 0 120px;
  }
  .minicart .minicart-item__actions {
    width: 30%;
  }
}
@media (max-width: 576px) and (max-width: 992px) {
  .single-product .product_wrapper {
    gap: 35px;
  }
}
.single-product .product_meta {
  display: block;
}

.single-product .product_meta .sku_wrapper {
  display: none !important;
}

.single-product .product_meta .posted_in {
  display: none !important;
}

.single-product .cart {
  margin-bottom: 20px !important;
}

.payu-mini-installments-widget {
  display: none;
}

body .site-footer__lower--payment {
  align-items: center;
}

.wp-block-woocommerce-cart .wc-block-cart__submit-button {
  background-color: black !important;
}

.wp-block-woocommerce-cart .wc-block-cart__submit-button:hover {
  opacity: 0.7;
}

body input[type=tel] {
  background-color: white;
  border: none;
  padding: 10px 15px;
  border: solid 1px rgb(232, 232, 235);
  box-shadow: none;
  width: 100%;
  min-width: 270px;
}

.product-form-info {
  margin-top: 20px;
}

.product-form-info p {
  margin-bottom: 10px;
}

.accordion-section .accordion-content {
  height: 0;
}

.accordion-section .accordion-content.active {
  height: auto;
}

.sidebar_switcher {
  top: 9px;
}

.custom_sorting__number {
  top: 6px;
}

.site-header__top--text::before {
  display: none;
}

.language-switcher li:not(.current, .en) {
  display: none !important;
}

.highlighted {
  position: relative;
}

.highlighted::after {
  background-color: #e05a33;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 3px;
  z-index: -1;
  height: 15px;
}

.show-inquiry-form__wrapper {
  margin-top: 20px;
}

.site-header__utils--single.cart {
  width: auto;
}

.two-photos-block__first {
  position: relative;
}

.two-photos-block__first {
  position: relative;
}
.two-photos-block__first--text,
.two-photos-block__first .btn {
  z-index: 5;
}
.two-photos-block__first::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.26);
  z-index: 1;
}
.two-photos-block__second {
  position: relative;
}
.two-photos-block__second--text,
.two-photos-block__second .btn {
  z-index: 5;
}
.two-photos-block__second::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.26);
  z-index: 1;
}

.btn {
  transition: ease-in 0.3s;
}
.btn:hover {
  cursor: pointer;
}
.btn.black-outline {
  display: block;
  padding: 13px;
  border: solid 2px rgb(4, 2, 2);
  text-align: center;
  color: rgb(4, 2, 2);
}
.btn.black-outline:hover {
  background-color: rgb(4, 2, 2);
  color: white;
}
.btn.black {
  border: solid 2px rgb(4, 2, 2);
  text-align: center;
  padding: 13px 40px;
  display: inline-flex;
  background-color: rgb(4, 2, 2);
  color: white;
}
.btn.black:hover {
  background-color: white;
  color: rgb(4, 2, 2);
}
.btn.white {
  border: solid 2px white;
  text-align: center;
  padding: 13px 40px;
  display: inline-flex;
  background-color: white;
  color: rgb(4, 2, 2);
}
.btn.white:hover {
  background-color: transparent;
  color: white;
}
.btn.arrow {
  display: flex;
  font-size: 18px;
  padding: 0;
  text-transform: none;
  align-items: center;
  color: rgb(4, 2, 2) !important;
  gap: 10px;
}
.btn.arrow::after {
  content: "";
  display: block;
  background-image: url("../images/svg/arrow-right.svg");
  width: 16px;
  height: 16px;
  top: 2px;
  position: relative;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

body input[type=text] {
  background-color: rgb(255, 255, 255);
  border: none;
  box-shadow: none;
  padding: 6px 15px;
  min-width: 270px;
}
body input[type=text]::placeholder {
  color: rgb(117, 117, 117);
}
@media (max-width: 992px) {
  body input[type=text] {
    min-width: 200px;
  }
}
@media (max-width: 576px) {
  body input[type=text] {
    min-width: 160px;
  }
}
body input[type=submit] {
  padding: 10px 47px;
}
body input[type=text],
body input[type=password],
body input[type=email],
body select,
body textarea {
  background-color: white;
  border: none;
  padding: 10px 15px;
  border: solid 1px rgb(232, 232, 235);
  box-shadow: none;
  width: 100%;
  min-width: 270px;
}
body input[type=text]:focus,
body input[type=password]:focus,
body input[type=email]:focus,
body select:focus,
body textarea:focus {
  border: solid 1px rgb(117, 117, 117);
}
body input[type=text]::placeholder,
body input[type=password]::placeholder,
body input[type=email]::placeholder,
body select::placeholder,
body textarea::placeholder {
  font-size: 16px;
  font-weight: 300;
  color: rgb(117, 117, 117);
}
body input[type=text] *,
body input[type=password] *,
body input[type=email] *,
body select *,
body textarea * {
  font-size: 16px;
  font-weight: 300;
  color: rgb(4, 2, 2);
}
body .wpcf7-submit {
  border: solid 2px rgb(4, 2, 2);
  text-align: center;
  padding: 13px 40px;
  display: inline-flex;
  background-color: rgb(4, 2, 2);
  color: white;
}
body .wpcf7-submit:hover {
  background-color: white;
  color: rgb(4, 2, 2);
}
body #newsletter_text {
  max-width: 270px;
}

@font-face {
  font-family: "outfit";
  src: url("../fonts/outfit.ttf") format("truetype");
  font-style: normal;
}
body *,
body select {
  font-family: "outfit";
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0 !important;
}

h1,
.h1 {
  font-size: 67px;
  line-height: 78px;
}
@media (max-width: 1400px) {
  h1,
  .h1 {
    font-size: 57px;
    line-height: 68px;
  }
}
@media (max-width: 576px) {
  h1,
  .h1 {
    font-size: 47px;
    line-height: 55px;
  }
}

h2,
.h2 {
  font-size: 51px;
  line-height: 57px;
}
@media (max-width: 1400px) {
  h2,
  .h2 {
    font-size: 43px;
    line-height: 47px;
  }
}
@media (max-width: 576px) {
  h2,
  .h2 {
    font-size: 35px;
    line-height: 44px;
  }
}

h3,
.h3,
h2.wp-block-heading {
  font-size: 38px;
  line-height: 43px;
}
@media (max-width: 1400px) {
  h3,
  .h3,
  h2.wp-block-heading {
    font-size: 29px;
    line-height: 34px;
  }
}
@media (max-width: 576px) {
  h3,
  .h3,
  h2.wp-block-heading {
    font-size: 24px;
    line-height: 25px;
  }
}

h4,
.h4 {
  font-size: 21px;
  line-height: 24px;
}
@media (max-width: 1400px) {
  h4,
  .h4 {
    font-size: 21px;
    line-height: 24px;
  }
}
@media (max-width: 576px) {
  h4,
  .h4 {
    font-size: 18px;
    line-height: 25px;
  }
}

.text-14 {
  font-size: 14px;
  line-height: 19.6px;
}

.text-16 {
  font-size: 23px;
  line-height: 25px;
}

.color-accent {
  color: #e05a33;
}

.hero-block {
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  position: relative;
  background-position: center;
}
.hero-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.26);
  z-index: 1;
}
@media (max-width: 992px) {
  .hero-block {
    height: 60vh;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.hero-block__text {
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: center;
  flex-direction: column;
  z-index: 10;
  position: relative;
}
@media (max-width: 992px) {
  .hero-block__text {
    text-align: center;
  }
}
.hero-block__text * {
  color: white;
}
.hero-block__text .button {
  background-color: white;
  color: black;
  font-weight: 400;
  padding: 13px 40px;
}

.newsletter {
  background-color: rgb(251, 251, 251);
  text-align: center;
  padding-top: 60px;
  padding-bottom: 90px;
}
.newsletter h3 {
  margin-bottom: 5px;
}
.newsletter .color-accent {
  margin-bottom: 37px;
}
.newsletter form {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}
.newsletter form #newsletter_submit {
  background-color: rgb(4, 2, 2);
  color: white;
}

.three-columns {
  padding: 105px 0 95px;
  background-color: rgb(251, 251, 251);
}
@media (max-width: 992px) {
  .three-columns {
    padding: 60px 0 60px;
  }
}
.three-columns__wrapper {
  display: flex;
  gap: 120px;
}
@media (max-width: 992px) {
  .three-columns__wrapper {
    flex-direction: column;
    gap: 70px;
  }
}
.three-columns__column {
  text-align: center;
}
.three-columns__column--title {
  font-size: 16px;
  line-height: 22.4px;
  font-weight: 500;
  color: rgb(4, 2, 2);
  margin-bottom: 10px;
}
.three-columns__column--text {
  color: rgb(54, 54, 54);
  font-size: 16px;
  line-height: 25px;
  font-weight: 300;
  margin-bottom: 10px;
}
.three-columns__column--btnwrap {
  margin-bottom: 0;
}
.three-columns__column img {
  height: 45px;
  margin: auto;
  margin-bottom: 10px;
  width: 45px;
  object-fit: cover;
  border-radius: 25px;
}
.three-columns__column .btn {
  font-weight: 500;
  justify-content: center;
  font-size: 16px;
}
.three-columns__title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .three-columns__title {
    margin-bottom: 40px;
  }
}

.slider {
  padding: 100px 0 150px;
}
.slider__button {
  text-align: center;
  margin-top: 50px;
}
.slider .col-full {
  position: relative;
}
.slider .swiper-button-next,
.slider .swiper-button-prev {
  background-image: url("../images/svg/slider-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  height: 20px;
  width: 10px;
  top: 56%;
}
.slider .swiper-button-next::after,
.slider .swiper-button-prev::after {
  display: none;
}
.slider .swiper-button-prev {
  transform: rotate(180deg);
}
.slider .product-actions {
  display: flex;
  z-index: -100;
  position: relative;
  opacity: 0;
  transform: translateY(11px);
  transition-duration: 0.3s;
  align-items: flex-end;
  margin-top: auto;
  gap: 12px;
  padding-bottom: 13px;
  justify-content: center;
  height: 100%;
  visibility: hidden;
}
.slider__title {
  text-align: center;
  margin-bottom: 8px;
}
.slider__subtitle {
  text-align: center;
  font-weight: 300;
  font-size: 16px;
  margin-bottom: 40px;
  color: rgb(54, 54, 54);
}
.slider__image {
  width: 100%;
  height: 236px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.slider__image:hover .product-actions {
  opacity: 1;
  transform: translateY(0px);
  z-index: 100;
  visibility: visible;
}
.slider__wrapper--title {
  font-weight: 500;
  font-family: "outfit";
  font-size: 16px;
  line-height: 23px;
  margin-top: 19px !important;
  color: rgb(4, 2, 2);
}
.slider__wrapper--price {
  margin-bottom: 0;
}
.slider__wrapper--price del {
  color: rgba(4, 2, 2, 0.4);
  font-weight: 600;
}
.slider__wrapper--price del * {
  color: rgba(4, 2, 2, 0.4);
  font-weight: 600;
}
.slider__wrapper--categories {
  color: rgb(54, 54, 54);
  font-weight: 300;
  margin-bottom: 6px;
}
.slider__wrapper--categories * {
  font-weight: 300;
  color: rgb(54, 54, 54);
}
.slider__wrapper--price * {
  font-weight: 500;
  font-size: 14px;
  color: rgb(4, 2, 2);
  line-height: 20px;
}
.slider .see-product {
  border-radius: 50%;
  width: 35px;
  height: 35px;
  position: relative;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 2px 8px -3px rgba(0, 0, 0, 0.25);
  background-image: url("../images/svg/eye.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px;
}
.slider .see-product:hover .tooltip {
  display: block;
}
.slider .add-to-cart {
  border-radius: 50%;
  background-color: rgb(107, 39, 55);
  width: 35px;
  position: relative;
  height: 35px;
  box-shadow: 0px 2px 8px -3px rgba(0, 0, 0, 0.25);
  background-image: url("../images/svg/bag-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px;
}
.slider .add-to-cart:hover .tooltip {
  display: inline-block;
}
.slider .tooltip {
  font-size: 12px;
  line-height: 19px;
  font-weight: 400;
  top: -25px;
  border-radius: 3px;
  background-color: rgb(4, 2, 2);
  color: white;
  padding: 5px;
  display: none;
  position: absolute;
  left: 50%;
  min-width: 103px;
  text-align: center;
  margin-right: -50%;
  box-shadow: 0px 2px 8px -3px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, -50%);
}
.slider .tooltip::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  left: 40px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 13px solid rgb(4, 2, 2);
  position: absolute;
  transform: rotate(180deg);
}

.categories {
  padding: 100px 0 150px;
}
@media (max-width: 992px) {
  .categories {
    padding: 0px 0px 80px;
  }
}
.categories__button {
  text-align: center;
  margin-top: 50px;
}
.categories .col-full {
  position: relative;
}
.categories .swiper-button-next,
.categories .swiper-button-prev {
  background-image: url("../images/svg/slider-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  height: 20px;
  width: 10px;
  top: 60%;
}
.categories .swiper-button-next::after,
.categories .swiper-button-prev::after {
  display: none;
}
.categories .swiper-button-prev {
  transform: rotate(180deg);
}
.categories__title {
  text-align: center;
  margin-bottom: 8px;
}
.categories__subtitle {
  text-align: center;
  color: rgb(54, 54, 54);
  margin-bottom: 56px;
}
.categories__image {
  width: 100%;
  height: 315px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.categories__image:hover .product-actions {
  opacity: 1;
  transform: translateY(0px);
  z-index: 100;
  visibility: visible;
}
.categories__wrapper--title {
  font-weight: 500;
  font-family: "outfit";
  font-size: 16px;
  line-height: 23px;
  margin-top: 23px !important;
  color: rgb(4, 2, 2);
  margin-bottom: 0;
}
.categories__wrapper--price {
  margin-bottom: 0;
}
.categories__wrapper--price del {
  color: rgba(4, 2, 2, 0.4);
  font-weight: 600;
}
.categories__wrapper--price del * {
  color: rgba(4, 2, 2, 0.4);
  font-weight: 600;
}
.categories__wrapper--count {
  font-weight: 300;
  color: rgb(117, 117, 117);
  line-height: 19.6px;
  margin-bottom: 0;
}
.categories .see-product {
  border-radius: 50%;
  background-color: rgb(107, 39, 55);
  width: 35px;
  height: 35px;
  position: relative;
  box-shadow: 0px 2px 8px -3px rgba(0, 0, 0, 0.25);
}
.categories .see-product:hover .tooltip {
  display: block;
}
.categories .add-to-cart {
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  width: 35px;
  position: relative;
  height: 35px;
  box-shadow: 0px 2px 8px -3px rgba(0, 0, 0, 0.25);
}
.categories .add-to-cart:hover .tooltip {
  display: inline-block;
}
.categories .tooltip {
  font-size: 12px;
  line-height: 19px;
  font-weight: 400;
  top: -25px;
  border-radius: 3px;
  background-color: rgb(4, 2, 2);
  color: white;
  padding: 5px;
  display: none;
  position: absolute;
  left: 50%;
  min-width: 103px;
  text-align: center;
  margin-right: -50%;
  box-shadow: 0px 2px 8px -3px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, -50%);
}
.categories .tooltip::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  left: 40px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 13px solid rgb(4, 2, 2);
  position: absolute;
  transform: rotate(180deg);
}

.hotspots-block {
  height: 70vh;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 1200px) {
  .hotspots-block {
    display: none;
  }
}
.hotspots-block__single.active .hotspots-block__single--product {
  opacity: 1;
  visibility: visible;
  z-index: 100;
  transform: translateY(0px);
}
.hotspots-block__single.active .hotspots-block__single--value {
  transform: scale(1.1);
}
.hotspots-block__single--value {
  background: white;
  border-radius: 50%;
  width: 27px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  color: rgb(4, 2, 2);
  outline: solid 7px rgba(255, 255, 255, 0.3) !important;
  transition-duration: 0.3s;
  cursor: pointer;
}
.hotspots-block__single--product {
  opacity: 0;
  display: flex;
  visibility: hidden;
  z-index: -100;
  transform: translateY(10px);
  transition-duration: 0.4s;
  gap: 20px;
  position: relative;
  align-items: center;
  background-color: white;
  margin-left: -25px;
  margin-top: 16px;
}
.hotspots-block__single--content {
  padding: 16px 30px 16px 0;
  width: 175px;
}
.hotspots-block__single--content p {
  margin-bottom: 0;
}
.hotspots-block__single--title {
  margin-top: 0 !important;
  font-family: "outfit";
  font-weight: 500;
  font-size: 16px;
  color: rgb(4, 2, 2);
  margin-bottom: 5px;
  line-height: 20px;
}
.hotspots-block__single--title a {
  margin-top: 0 !important;
  font-family: "outfit";
  font-weight: 500;
  font-size: 16px;
  color: rgb(4, 2, 2);
  margin-bottom: 5px;
  line-height: 20px;
}
.hotspots-block__single--categories {
  line-height: 16px;
}
.hotspots-block__single--categories a {
  font-weight: 300;
  font-size: 14px;
  color: rgb(54, 54, 54);
}
.hotspots-block__single--price * {
  font-weight: 500;
  font-size: 14px;
  color: rgb(4, 2, 2);
}
.hotspots-block__single--photo img {
  width: 130px;
  height: 130px;
  object-fit: cover;
}

.cta-block {
  margin-bottom: 90px;
}
.cta-block__first {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px;
  width: 70%;
}
@media (max-width: 992px) {
  .cta-block__first {
    width: 100%;
    padding: 30px;
  }
}
.cta-block__first .btn {
  align-self: flex-start;
}
.cta-block__first *:not(.btn) {
  color: white;
}
.cta-block__second {
  padding: 37px;
  width: 30%;
  background-color: #e05a33;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 992px) {
  .cta-block__second {
    width: 100%;
    min-height: 254px;
    padding: 30px;
  }
}
.cta-block__second .btn {
  align-self: flex-start;
}
.cta-block__second *:not(.btn) {
  color: white;
}
.cta-block .col-full {
  display: flex;
  align-items: stretch;
  gap: 30px;
}
@media (max-width: 992px) {
  .cta-block .col-full {
    flex-direction: column;
  }
}

.inspo {
  margin-top: 90px;
  margin-bottom: 140px;
  position: relative;
}
.inspo__link--wrapper {
  text-align: center;
}
.inspo__wrapper {
  position: absolute;
  padding: 0 16px;
  left: 0;
  width: 307px;
  z-index: 10;
  background: white;
  bottom: 0px;
  top: 0;
}
@media (max-width: 768px) {
  .inspo__wrapper {
    top: -260px;
    z-index: 0;
  }
}
.inspo__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: -999%;
  background: white;
}
.inspo__wrapper--subtitle .btn {
  margin-top: 20px;
}
.inspo__wrapper--title {
  line-height: 20px;
  font-size: 14px;
  color: white;
  font-weight: 300;
  background-color: rgb(4, 2, 2);
  padding: 4px 7px;
  display: inline-block;
  top: -14px;
  position: relative;
}
.inspo__image {
  height: 306px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.inspo .inspo-block {
  overflow: visible;
}
@media (max-width: 768px) {
  .inspo .inspo-block {
    margin-top: 320px;
  }
}
.inspo .swiper-pagination {
  display: flex;
  justify-content: center;
  transform: scale(0.5);
  bottom: -90px !important;
}
.inspo .swiper-pagination-bullet {
  position: relative;
  display: flex;
  opacity: 1;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  margin: 0 10px;
  background-color: transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}
.inspo .swiper-pagination-bullet span {
  background-color: #e05a33;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 1;
  transform: translate(-50%, -50%);
}
.inspo .swiper-pagination-bullet span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  width: 8px;
  border-radius: 50%;
  height: 8px;
}
.inspo .swiper-wrapper {
  margin-left: 300px;
}
.inspo .progress {
  transform: rotate(-90deg);
  overflow: visible;
}
.inspo .circle-origin {
  fill: transparent;
  stroke: black;
  stroke-width: 5px;
  stroke-linecap: round;
  stroke-dasharray: 125.664px;
  stroke-dashoffset: 125.664px;
}
.inspo .swiper-pagination-bullet-active {
  outline: 3px #e05a33;
  transform: scale(1.2);
  margin: 0 11px !important;
}
.inspo .swiper-pagination-bullet-active .circle-origin {
  animation: progress 5s;
}
.inspo .swiper-pagination-bullet-active span {
  width: 10px;
  height: 10px;
}
.inspo .swiper-pagination-bullet-active span::before {
  display: none;
}
@keyframes progress {
  0% {
    stroke-dashoffset: 125.664px;
  }
  90% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -125.664px;
  }
}

.cus-products {
  padding: 100px 0 150px;
}
.cus-products .cus-products-block {
  overflow: visible;
}
.cus-products__button {
  text-align: center;
  margin-top: 50px;
}
.cus-products .col-full {
  position: relative;
}
.cus-products__title {
  text-align: center;
  margin-bottom: 8px;
}
.cus-products__subtitle {
  text-align: center;
  font-weight: 300;
  margin-bottom: 40px;
  color: rgb(54, 54, 54);
}
.cus-products__image {
  width: 100%;
  height: 250px;
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .cus-products__image {
    height: 250px;
  }
}
.cus-products__image:hover .product-actions {
  opacity: 1;
  transform: translateY(0px);
  z-index: 100;
  visibility: visible;
}
.cus-products__wrapper--title {
  font-weight: 500;
  font-family: "outfit";
  font-size: 16px;
  line-height: 23px;
  margin-top: 19px !important;
  color: rgb(4, 2, 2);
}
.cus-products__wrapper--price {
  margin-bottom: 0;
}
.cus-products__wrapper--price del {
  color: rgba(4, 2, 2, 0.4);
  font-weight: 600;
}
.cus-products__wrapper--price del * {
  color: rgba(4, 2, 2, 0.4);
  font-weight: 600;
}
.cus-products__wrapper--categories {
  color: rgb(54, 54, 54);
  font-weight: 300;
  margin-bottom: 6px;
}
.cus-products__wrapper--categories * {
  font-weight: 300;
  color: rgb(54, 54, 54);
}
.cus-products__wrapper--price * {
  font-weight: 500;
  font-size: 14px;
  color: rgb(4, 2, 2);
  line-height: 20px;
}
.cus-products .swiper-pagination-products {
  display: flex;
  justify-content: center;
  transform: scale(0.5);
  bottom: -60px !important;
  position: relative;
}
.cus-products .swiper-pagination-bullet {
  position: relative;
  display: flex;
  opacity: 1;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  margin: 0 10px;
  background-color: transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}
.cus-products .swiper-pagination-bullet span {
  background-color: #e05a33;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 1;
  transform: translate(-50%, -50%);
}
.cus-products .swiper-pagination-bullet span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  width: 8px;
  border-radius: 50%;
  height: 8px;
}
.cus-products .progress {
  transform: rotate(-90deg);
  overflow: visible;
}
.cus-products .circle-origin {
  fill: transparent;
  stroke: #e05a33;
  stroke-width: 5px;
  stroke-linecap: round;
  stroke-dasharray: 125.664px;
  stroke-dashoffset: 125.664px;
}
.cus-products .swiper-pagination-bullet-active {
  outline: 3px #e05a33;
  transform: scale(1.2);
  margin: 0 11px !important;
}
.cus-products .swiper-pagination-bullet-active .circle-origin {
  animation: progress 5s;
}
.cus-products .swiper-pagination-bullet-active span {
  width: 10px;
  height: 10px;
}
.cus-products .swiper-pagination-bullet-active span::before {
  display: none;
}
@keyframes progress {
  0% {
    stroke-dashoffset: 125.664px;
  }
  90% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -125.664px;
  }
}

.two-photos-block__first {
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 500px;
  width: 50%;
}
@media (max-width: 992px) {
  .two-photos-block__first {
    width: 100%;
    height: 350px;
  }
}
.two-photos-block__first *:not(.btn) {
  color: white;
}
.two-photos-block__second {
  height: 500px;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 992px) {
  .two-photos-block__second {
    width: 100%;
    height: 350px;
  }
}
.two-photos-block__second *:not(.btn) {
  color: white;
}
.two-photos-block .col-full {
  display: flex;
  align-items: stretch;
  gap: 30px;
}
@media (max-width: 992px) {
  .two-photos-block .col-full {
    flex-direction: column;
  }
}

.promo-block {
  background-color: rgb(251, 251, 251);
  padding: 125px 0 111px;
  margin: 110px 0;
}
@media (max-width: 992px) {
  .promo-block {
    padding: 80px 0 80px;
    margin: 80px 0;
  }
}
.promo-block__photos {
  width: 50%;
  position: relative;
}
@media (max-width: 992px) {
  .promo-block__photos {
    width: 100%;
  }
}
.promo-block__photos--first {
  margin-left: auto;
}
.promo-block__photos--second {
  position: absolute;
  left: 0;
  top: 19%;
}
@media (max-width: 992px) {
  .promo-block__photos--second {
    top: -26%;
  }
}
.promo-block__photos--text {
  position: absolute;
  top: 10%;
  left: 23%;
  z-index: 99;
  width: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90px;
  color: white;
  background-color: #e05a33;
  font-size: 18px;
  font-weight: 400;
  border-radius: 50%;
  line-height: 27px;
  text-align: center;
}
@media (max-width: 992px) {
  .promo-block__photos--text {
    top: 25%;
    left: 60%;
  }
}
.promo-block__wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 992px) {
  .promo-block__wrapper {
    flex-direction: column;
  }
}
.promo-block__content {
  width: 50%;
  text-align: center;
}
@media (max-width: 992px) {
  .promo-block__content {
    width: 100%;
  }
}
.promo-block__content h2 {
  margin-bottom: 5px;
}
.promo-block__content--title {
  font-family: "outfit";
  color: rgb(4, 2, 2);
  font-weight: 500;
  font-size: 16px;
  line-height: 22.4px;
  margin-bottom: 7px;
  margin-top: 18px !important;
}
.promo-block__content--subtitle {
  margin-bottom: 14px;
  color: rgb(54, 54, 54);
}
.promo-block__progress {
  display: flex;
  background-color: rgba(186, 150, 129, 0.2);
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}
.promo-block__progress--bar {
  background-color: rgb(107, 39, 55);
  height: 5px;
}
.promo-block__price {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 26px;
}
.promo-block__price p {
  margin-bottom: 0;
  font-size: 14px;
}
.promo-block__price--full * {
  font-weight: 600;
  color: rgba(4, 2, 2, 0.4);
}
.promo-block__price--sale {
  font-weight: 500;
  color: rgb(4, 2, 2);
}
.promo-block__prices {
  display: flex;
  justify-content: space-between;
  color: rgb(4, 2, 2);
  margin-top: 8px;
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}
.promo-block__prices p {
  font-weight: 300;
}
.promo-block__prices span {
  font-weight: 500;
}
.promo-block #countdown_promo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.promo-block #countdown_promo .countdown-element span {
  color: rgb(4, 2, 2);
  font-weight: 600;
  font-size: 28px;
}
.promo-block #countdown_promo .countdown-separator {
  color: rgb(4, 2, 2);
  font-weight: 600;
  font-size: 28px;
  align-self: flex-start;
  top: -3px;
  position: relative;
}
.promo-block #countdown_promo .countdown-label {
  font-size: 10px;
  text-align: center;
  font-weight: 600;
  line-height: 17px;
  color: rgb(117, 117, 117);
}

[data-entrance] {
  visibility: hidden;
}

[data-entrance=lofu] {
  transition: 1s;
  opacity: 0;
  transform: translate(0px, 20px);
}

[data-entrance=lofu].has-entered {
  transform: translate(0px, 0px);
  opacity: 1;
}

/*# sourceMappingURL=main.css.map */
