@charset "UTF-8";
/*
 Selector generator
 @access public
 @param {String} property - Css Property
 @param {String} min - Minimum value in px
 @param {String} max - Maximum value in px
 @requires $property, $min, $max
*/
/*
 Decor generator
 @access public
 @param {String} orientation - Orientation
 @param {String} color - Color in hex
 @param {String} min - Minimum font size value in px
 @param {String} max - Maximum font size value in px
 @requires $orientation, $color, $min, $max
*/
/*
 Responsive breakpoint manager
 @access public
 @param {String} $breakpoint - Breakpoint
 @requires $breakpoints
*/
.heading-1 {
  font-size: 50px;
  line-height: 48px;
  font-weight: 300;
  letter-spacing: -2px;
}

.heading-2 {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 30px;
}

.heading-3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
}

.heading-4 {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
}

.heading-5 {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.btn-default {
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  padding: 16px 40px;
  background-color: #000000;
  color: #fff;
  transition: 0.25s;
}
.btn-default:hover {
  background-color: #727272;
}

input.btn-default {
  border: none;
  outline: 0;
  cursor: pointer;
}

button.btn-default {
  border: none;
  font-family: poppins, sans-serif;
  outline: 0;
  cursor: pointer;
}

.link-back {
  font-weight: 500;
  text-decoration: none;
  color: #000;
  padding-left: 30px;
  position: relative;
}
.link-back:before {
  content: "";
  font-family: icomoon;
  position: absolute;
  left: 0px;
  top: 0px;
  font-size: 20px;
}
.link-back:hover {
  color: #727272;
}
.link-back:hover:before {
  -webkit-transform: translateX(-3px);
  -ms-transform: translateX(-3px);
  transform: translateX(-3px);
}

a.btn-default {
  text-decoration: none;
  display: inline-block;
}

.link-arrow {
  font-weight: 500;
  position: relative;
  padding-right: 30px;
  display: inline-block;
  color: #000;
  text-decoration: none;
}
.link-arrow.white {
  color: #fff;
}
.link-arrow.white:before {
  color: #fff;
}
.link-arrow:before {
  content: "";
  font-family: icomoon;
  position: absolute;
  right: 0px;
  top: 0px;
  font-size: 20px;
}
.link-arrow:hover {
  color: #727272;
}
.link-arrow:hover:before {
  -webkit-transform: translateX(3px);
  -ms-transform: translateX(3px);
  transform: translateX(3px);
}

.swiper-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  background-color: #fff;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 2;
  cursor: pointer;
  outline: 0;
}
.swiper-btn:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.25s;
}
.swiper-btn.swiper-btn-next {
  right: -20px;
}
.swiper-btn.swiper-btn-next:hover:before {
  -webkit-transform: translateX(3px) translate(-50%, -50%);
  -ms-transform: translateX(3px) translate(-50%, -50%);
  transform: translateX(3px) translate(-50%, -50%);
}
.swiper-btn.swiper-btn-next:before {
  content: url("../images/svg/arrow-right.svg");
}
.swiper-btn.swiper-btn-prev {
  left: -20px;
}
.swiper-btn.swiper-btn-prev:hover:before {
  -webkit-transform: translateX(-3px) translate(-50%, -50%);
  -ms-transform: translateX(-3px) translate(-50%, -50%);
  transform: translateX(-3px) translate(-50%, -50%);
}
.swiper-btn.swiper-btn-prev:before {
  content: url("../images/svg/arrow_left.svg");
}

.reset_variations {
  color: #727272;
  font-size: 11px;
  line-height: 20px;
  position: relative;
  top: 7px;
}

.back-link {
  width: 24px;
  height: 24px;
  position: relative;
  display: block;
  margin-right: 20px;
}
.back-link:before {
  content: "";
  font-family: "icomoon";
  position: absolute;
  font-size: 24px;
  top: 0;
  left: 0;
  color: #A4A8BA;
  line-height: 24px;
}

input {
  padding: 15px 16px 16px;
  outline: 0;
  box-sizing: border-box;
  border: solid #D1D1D1 1px;
}

textarea {
  padding: 15px 16px 16px;
  outline: 0;
  box-sizing: border-box;
  border: solid #D1D1D1 1px;
  resize: none;
}

::placeholder {
  color: #9B9F9E;
}

:-ms-input-placeholder {
  color: #9B9F9E;
}

::-ms-input-placeholder {
  color: #9B9F9E;
}

.attribute_pa_color [type=radio]:not(:checked),
.attribute_pa_color [type=radio]:checked {
  position: absolute;
  left: -9999px;
}

.attribute_pa_color [type=radio]:not(:checked) + label, .attribute_pa_color [type=radio]:checked + label {
  position: relative;
  cursor: pointer;
  display: block;
}

.attribute_pa_color [type=radio]:not(:checked) + label,
.attribute_pa_color [type=radio]:checked + label {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 0px;
  padding: 0px;
  position: relative;
}

.attribute_pa_color [type=radio]:not(:checked) + label:before,
.attribute_pa_color [type=radio]:checked + label:before {
  width: 40px;
  height: 40px;
  border: solid 1px #E3E3E3;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.75);
  border-radius: 50%;
  transition: 0.25s;
}

.attribute_pa_color [type=radio]:checked + label:before {
  transform: scale(1) translate(-50%, -50%);
}

/*radio btn*/
.variation-radios ul:not(.attribute_pa_color) [type=radio]:not(:checked),
.variation-radios ul:not(.attribute_pa_color) [type=radio]:checked {
  position: absolute;
  left: -9999px;
}

.variation-radios ul:not(.attribute_pa_color) [type=radio]:not(:checked) + label,
.variation-radios ul:not(.attribute_pa_color)[type=radio]:checked + label {
  position: relative;
  cursor: pointer;
  display: block;
}

.variation-radios ul:not(.attribute_pa_color) [type=radio]:not(:checked) + label,
.variation-radios ul:not(.attribute_pa_color) [type=radio]:checked + label {
  font-weight: 400;
}

.variation-radios ul:not(.attribute_pa_color) [type=radio]:checked + label {
  text-decoration: underline;
}

/*end radio btn*/
.woocommerce-product-search {
  position: relative;
}
.woocommerce-product-search input {
  border: none;
  border-bottom: 1px solid #707070;
  padding: 7px 30px 7px 0;
  width: 100%;
  color: #707070;
  background: transparent;
}
.woocommerce-product-search button {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0px;
  top: 2px;
  border: none;
  outline: 0;
  background-color: transparent;
  z-index: 1;
  cursor: pointer;
}
.woocommerce-product-search button:before {
  content: "";
  font-family: "icomoon";
  font-size: 20px;
  color: #727272;
  top: 0px;
  left: 0px;
  position: absolute;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.woocommerce-cart-form .head {
  padding: 11px 0;
  border: solid 1px #E3E3E3;
  font-weight: 500;
  box-sizing: border-box;
}
.woocommerce-cart-form .body ul {
  border-bottom: solid 1px #E3E3E3;
  border-left: solid 1px #E3E3E3;
  border-right: solid 1px #E3E3E3;
  position: relative;
}
.woocommerce-cart-form .body ul:before {
  width: 1px;
  height: 100%;
  content: "";
  position: absolute;
  left: 80px;
  background-color: #E3E3E3;
}
.woocommerce-cart-form ul {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  padding: 12px 0;
}
.woocommerce-cart-form li {
  width: calc((100% - 80px) / 5);
  padding-right: 30px;
  box-sizing: border-box;
}
.woocommerce-cart-form li.product-thumbnail {
  padding-left: 12px;
}
.woocommerce-cart-form li:nth-child(1) {
  width: 80px;
  padding-right: 0px;
}
.woocommerce-cart-form .product-name a {
  color: #727272;
  text-decoration: none;
}
.woocommerce-cart-form .product-price span {
  color: #727272;
}
.woocommerce-cart-form .product-subtotal span {
  font-weight: 500;
}

.remove-btn {
  width: 21px;
  height: 21px;
  position: relative;
  cursor: pointer;
  display: block;
  margin-right: 10px;
  background-color: #9B9F9E;
  border-radius: 50%;
}
.remove-btn:before {
  content: "";
  font-family: "icomoon";
  position: absolute;
  font-size: 10px;
  color: #fff;
  text-align: center;
  width: 100%;
}

.add-btn {
  width: 21px;
  height: 21px;
  position: relative;
  cursor: pointer;
  display: block;
  margin-left: 10px;
  margin-right: 10px;
  background-color: #9B9F9E;
  border-radius: 50%;
}
.add-btn::before {
  content: "";
  font-family: "icomoon";
  position: absolute;
  font-size: 10px;
  color: #fff;
  text-align: center;
  width: 100%;
}

.product-quantity {
  display: flex;
  flex-flow: wrap;
  align-items: center;
}

.woocommerce-cart a.remove {
  display: block;
  font-size: 0px;
  height: 16px;
  width: 16px;
  color: #000000 !important;
  position: relative;
  transition: 0.25s;
  margin: 0 auto;
}
.woocommerce-cart a.remove:hover {
  color: #000000 !important;
  background-color: transparent;
  transform: scale(1.1);
}
.woocommerce-cart a.remove:before {
  content: "";
  font-family: icomoon;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 16px;
}
.woocommerce-cart .quantity .qty {
  border: none;
  padding: 6px 0px;
  width: 26px;
  box-sizing: border-box;
}

.woocommerce-page .cart-collaterals .cart_totals {
  width: calc((100% - 80px) / 5);
}

.cart_totals h2 {
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 30px;
}
.cart_totals ul {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  margin-bottom: 12px;
  justify-content: space-between;
}
.cart_totals ul:last-child {
  margin-bottom: 0px;
}
.cart_totals .order-total .woocommerce-Price-amount {
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
}

.coupon-wrapper {
  padding: 40px 0 40px 93px;
}
.coupon-wrapper .actions {
  display: flex;
  flex-flow: wrap;
  align-items: center;
}
.coupon-wrapper .form-group {
  width: 33.33%;
  padding-right: 10px;
  box-sizing: border-box;
}
.coupon-wrapper .left {
  width: calc((100% - 12px) / 5 * 3);
  padding-right: 10px;
  box-sizing: border-box;
  padding-bottom: 20px;
}
.coupon-wrapper .right {
  width: calc((100% - 12px) / 5 * 2);
  display: flex;
  flex-flow: wrap;
  padding-bottom: 20px;
  align-items: center;
}
.coupon-wrapper .right .update-cart-wrapper {
  width: 50%;
}

.coupon {
  display: flex;
  flex-flow: wrap;
  align-items: center;
}
.coupon label {
  color: #727272;
  margin-right: 15px;
  display: block;
}
.coupon input {
  width: 100%;
}

.apply-coupon, .update-cart {
  font-size: 13px;
  color: #000;
  font-weight: 500;
  line-height: 20px;
  text-decoration: underline;
  border: none;
  padding: 0px;
  background-color: transparent;
  outline: 0;
  cursor: pointer;
  margin: 15px 0;
}

button:disabled.update-cart {
  opacity: 0.4;
}

.woocommerce-cart .woocommerce {
  padding-bottom: 100px;
  padding-top: 40px;
}
.woocommerce-cart .tinv-wishlist {
  display: none;
}
.woocommerce-cart .entry-title {
  display: none;
}

@media (max-width: 1100px) {
  .coupon-wrapper {
    padding-left: 0px;
  }
  .coupon-wrapper .left {
    width: 100%;
    padding-right: 0px;
  }
  .coupon-wrapper .right {
    width: 100%;
  }
  .coupon-wrapper .right .update-cart-wrapper {
    width: 100%;
  }
  .coupon-wrapper .form-group {
    padding-right: 0;
    width: 100%;
  }

  .woocommerce-page .cart-collaterals .cart_totals {
    width: 50%;
    max-width: 400px;
    float: left;
  }

  .woocommerce-cart-form .head {
    display: none;
  }

  .woocommerce-cart-form li:nth-child(2) {
    width: 104px;
  }
  .woocommerce-cart-form li:nth-child(3) {
    width: calc((100% - 184px) );
  }
  .woocommerce-cart-form li:nth-child(4) {
    width: 100%;
    padding-left: 185px;
    margin-bottom: 5px;
  }
  .woocommerce-cart-form li:nth-child(5) {
    width: 100%;
    padding-left: 185px;
    margin-bottom: 5px;
  }
  .woocommerce-cart-form li:nth-child(6) {
    width: 100%;
    padding-left: 185px;
    margin-bottom: 5px;
  }
}
.woocommerce-page.woocommerce-checkout .form-row {
  margin-bottom: 20px;
}
.woocommerce-page.woocommerce-checkout .form-row:last-child {
  margin-bottom: 0px;
}
.woocommerce-page.woocommerce-checkout .form-row label {
  display: none;
}
.woocommerce-page.woocommerce-checkout .entry-title {
  display: none;
}
.woocommerce-page.woocommerce-checkout .woocommerce {
  width: 80%;
  margin: 0 auto;
  margin-top: 40px;
}
.woocommerce-page #payment {
  background-color: transparent;
}
.woocommerce-page #payment div.form-row {
  padding: 0px;
  font-size: 11px;
  color: #727272;
}
.woocommerce-page #payment a {
  color: #000;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border-color: #D1D1D1;
  border-radius: 0px;
  height: 40px;
  outline: 0;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #9B9F9E;
  line-height: 40px;
  padding-left: 16px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 40px;
  width: 40px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  transform: translate(-50%, -50%);
}

.woocommerce-billing-fields {
  margin-bottom: 100px;
}
.woocommerce-billing-fields h3 {
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 20px;
}

#order_review_heading {
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 20px;
}

.woocommerce table.shop_table {
  border-radius: 0px;
}
.woocommerce table.shop_table tfoot td {
  border-color: #E3E3E3;
  padding: 16px 12px;
}
.woocommerce table.shop_table td, .woocommerce table.shop_table th {
  padding: 16px 12px;
}
.woocommerce table.shop_table tbody.shop_table th {
  border-color: #E3E3E3;
  padding: 16px 12px;
}
.woocommerce table.woocommerce-checkout-review-order-table {
  border-collapse: collapse;
  margin-bottom: 100px;
}
.woocommerce ul#shipping_method .amount {
  font-weight: 500;
}

#order_comments {
  height: 160px;
}

.woocommerce-shipping-fields h3 {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
}

.woocommerce-shipping-fields__field-wrapper {
  margin-bottom: 20px;
}

.payment_methods.one-payment {
  display: none;
}

.woocommerce-terms-and-conditions-wrapper {
  margin-bottom: 60px;
}

form.woocommerce-checkout {
  margin-top: 60px;
}

@media (max-width: 1100px) {
  .woocommerce-page.woocommerce-checkout .woocommerce {
    width: 100%;
  }
}
.single-product .remove-btn {
  display: none;
}
.single-product .add-btn {
  display: none;
}
.single-product .woocommerce {
  margin-top: 20px;
}
.single-product .woocommerce .product {
  margin-top: 60px;
}

.swiper-gallery-product .swiper-wrapper {
  flex-direction: column;
}
.swiper-gallery-product .swiper-slide {
  margin-bottom: 40px;
}
.swiper-gallery-product .swiper-slide:last-child {
  margin-bottom: 0px;
}
.swiper-gallery-product .swiper-btn {
  display: none;
}

@media (max-width: 900px) {
  .swiper-gallery-product .swiper-wrapper {
    flex-direction: row;
  }
  .swiper-gallery-product .swiper-slide {
    margin-bottom: 0px;
  }
  .swiper-gallery-product .swiper-btn {
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .product-gallery .swiper-container {
    left: -20px;
  }
}
.woocommerce-order-received h2 {
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}

.woocommerce .woocommerce-order-details {
  margin-bottom: 100px;
}

.woocommerce-table--order-details a {
  color: #000;
}

.woocommerce-thankyou-order-received {
  margin-bottom: 30px;
  font-size: 16px;
}

.page-404-wrapper {
  padding: 120px 0px;
}
.page-404-wrapper .image {
  width: 50%;
  max-width: 670px;
  margin: 0 auto;
  margin-bottom: 40px;
}
.page-404-wrapper .image img {
  width: 100%;
}
.page-404-wrapper .description {
  width: calc(100% / 8 * 3);
  margin: 0 auto;
  margin-bottom: 60px;
  text-align: center;
}
.page-404-wrapper .btn-default {
  left: 50%;
  transform: translate(-50%, 0);
  position: relative;
}

.search-products-list {
  display: flex;
  flex-flow: wrap;
}
.search-products-list li.product {
  cursor: pointer;
  width: 25%;
  padding-right: 42px;
  box-sizing: border-box;
  margin: 0px;
  margin-bottom: 20px;
}
.search-products-list li.product .image {
  position: relative;
}
.search-products-list li.product .image img {
  width: 100%;
}
.search-products-list li.product .woocommerce-loop-product__title {
  z-index: 1;
  position: relative;
  background: #fff;
  padding-top: 20px;
  padding-bottom: 3px;
}
.search-products-list li.product .price {
  display: flex;
  flex-flow: wrap;
  position: relative;
  z-index: 1;
  background: #fff;
  margin-bottom: 0px;
}
.search-products-list li.product-white-details:hover .image .details-wrapper {
  transform: translate(0, 0);
}
.search-products-list li.product-white-details:hover .discount-wrapper {
  bottom: 66px;
}

.search-results h1 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  display: inline-block;
  padding-top: 40px;
  position: relative;
}
.search-results h1:before {
  content: "";
  height: 28px;
  width: 1px;
  background-color: #000;
  position: absolute;
  top: 0px;
  left: 10px;
  transform: rotate(45deg);
}
.search-results .result-count {
  display: inline-block;
  vertical-align: super;
  font-size: 11px;
  line-height: 20px;
  font-weight: 500;
}
.search-results .breadcrumb-wrapper {
  margin: 20px 0 30px;
}

@media (max-width: 1400px) {
  .search-products-list li.product {
    width: 33.33%;
  }
}
@media (max-width: 900px) {
  .search-products-list li.product {
    width: calc(50% - 20px);
    padding-right: 0px;
    margin-right: 40px;
  }
  .search-products-list li.product:nth-child(even) {
    margin-right: 0px;
  }
}
@media (max-width: 768px) {
  .search-products-list li.product {
    width: 100%;
    margin-right: 0px;
  }
}
* {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  transition: 0.25s;
}
a:before {
  transition: 0.25s;
}
a:after {
  transition: 0.25s;
}

.image img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

body {
  font-size: 13px;
  line-height: 20px;
  font-weight: 300;
  font-family: poppins, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body:not(.page-template-template-homepage) .container-page {
  padding-top: 77px;
}
body.woocommerce .container-page {
  padding-top: 113px;
}
body.woocommerce-page .container-page {
  padding-top: 113px;
}

input,
textarea,
button,
select,
a,
.swiper-pagination-numbers-wrapper,
.nav-swiper-wrapper,
.hamburger {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.container-page {
  position: relative;
  overflow: hidden;
}
.container-page:before {
  content: "";
  background-image: linear-gradient(#fff, transparent);
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 20%;
  opacity: 0;
  transition: 0.25s;
}
.container-page.shadow-decor:before {
  z-index: 2;
  opacity: 1;
}

.js-link {
  cursor: pointer;
}

.container {
  position: relative;
}

.title-section {
  padding-top: 40px;
  position: relative;
}
.title-section:before {
  content: "";
  height: 28px;
  width: 1px;
  background-color: #000;
  position: absolute;
  top: 0px;
  left: 10px;
  transform: rotate(45deg);
}

.section, article.page, article.product {
  max-width: 1600px;
  padding: 0 80px;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
}

.new-is-coming-wrapper {
  padding-top: 100px;
  color: #727272;
  display: none;
}
.new-is-coming-wrapper .image {
  margin-bottom: 10px;
}

.the-brand-wrapper {
  padding-top: 200px;
  padding-bottom: 150px;
}
.the-brand-wrapper .title-section {
  margin-bottom: 26px;
}
.the-brand-wrapper .description {
  margin-bottom: 40px;
  color: #727272;
}
.the-brand-wrapper .left {
  width: 50%;
  margin-bottom: 50px;
  position: relative;
}
.the-brand-wrapper .left:before {
  content: "";
  background-image: url("../images/png/Mask_Group_4@2x.png");
  background-size: cover;
  background-position: center;
  right: 0px;
  top: 50%;
  transform: translate(0, -50%);
  width: calc(100% + 80px);
  height: 70%;
  position: absolute;
}
.the-brand-wrapper .left .image {
  width: 50%;
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);
}
.the-brand-wrapper .right {
  width: 50%;
  margin-bottom: 50px;
  padding-left: calc(100% / 8);
  box-sizing: border-box;
}
.the-brand-wrapper .right .description {
  width: calc(100% / 3 * 2);
}
.the-brand-wrapper .section {
  display: flex;
  flex-flow: wrap;
  align-items: center;
}

.new-is-coming-banner-wrapper {
  position: relative;
}

.new-is-coming-banner {
  position: absolute;
  z-index: 2;
  width: calc((100% / 8) + 80px );
  right: 0px;
  bottom: 40px;
  color: #727272;
}
.new-is-coming-banner .image {
  margin-bottom: 20px;
}

.ide-wrapper {
  background-image: url("../images/png/shutterstock_600903620@2x.png");
  background-position: center;
  background-size: cover;
  color: #fff;
  padding-top: 65px;
  padding-bottom: 15px;
}
.ide-wrapper .section {
  display: flex;
  flex-flow: wrap;
}
.ide-wrapper .left {
  width: calc(100% / 8);
  align-self: center;
  margin-bottom: 50px;
}
.ide-wrapper .right {
  width: calc(100% / 8 * 7);
  margin-bottom: 50px;
}
.ide-wrapper .title-section {
  margin-bottom: 26px;
}
.ide-wrapper .title-section:before {
  background-color: #fff;
}
.ide-wrapper .description {
  margin-bottom: 40px;
}
.ide-wrapper .link-arrow {
  color: #fff;
}
.ide-wrapper .square {
  width: 660px;
  height: 470px;
  position: relative;
  left: 42%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.ide-wrapper .square:before {
  content: "";
  background-image: url("../images/png/idea-circle.png");
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  transform: rotate(-45deg);
  transition: 0.25s;
}
.ide-wrapper .square.hover:before {
  transform: rotate(0deg);
}

.not-race-community-wrapper {
  padding-top: 146px;
  padding-bottom: 100px;
}
.not-race-community-wrapper .title-section {
  margin-bottom: 54px;
  display: inline-block;
}
.not-race-community-wrapper .text-wrapper {
  display: flex;
  flex-flow: wrap;
  padding-bottom: 50px;
}
.not-race-community-wrapper .text-wrapper .left {
  width: 50%;
  padding-bottom: 50px;
}
.not-race-community-wrapper .text-wrapper .right {
  width: 50%;
  border-top: 1px solid #DEDEDE;
  padding-bottom: 50px;
}
.not-race-community-wrapper .text-wrapper .right .description {
  position: relative;
  top: 100%;
  transform: translate(0, -100%);
  color: #727272;
  display: flex;
  flex-flow: wrap;
}
.not-race-community-wrapper .text-wrapper .right .description .col-50 {
  width: 50%;
  box-sizing: border-box;
  padding-right: 40px;
  padding-top: 20px;
}
.not-race-community-wrapper .swiper-container {
  position: relative;
}
.not-race-community-wrapper .swiper-slide {
  padding-bottom: 25%;
  position: relative;
  overflow: hidden;
}
.not-race-community-wrapper .swiper-slide .link-arrow {
  color: #727272;
  position: absolute;
  left: 30px;
  bottom: -30px;
  transition: 0.25s;
}
.not-race-community-wrapper .image {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  transition: 0.25s;
  cursor: pointer;
}
.not-race-community-wrapper .image:before {
  content: "";
  background-color: #FFF;
  opacity: 0;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  position: absolute;
  transition: 0.25s;
}
.not-race-community-wrapper .call-to-action-instagram {
  display: none;
}
.not-race-community-wrapper .swiper-btn.swiper-btn-prev {
  left: 20px;
}
.not-race-community-wrapper .swiper-btn.swiper-btn-next {
  right: 20px;
}

.second-life-wrapper {
  padding-top: 100px;
  padding-bottom: 50px;
}
.second-life-wrapper .section {
  display: flex;
  flex-flow: wrap;
  align-items: center;
}
.second-life-wrapper .left {
  width: 50%;
  margin-bottom: 50px;
}
.second-life-wrapper .left .heading-2 {
  margin-bottom: 26px;
}
.second-life-wrapper .left .description {
  margin-bottom: 40px;
  width: calc(100% / 4 * 3);
  color: #727272;
}
.second-life-wrapper .right {
  width: 50%;
  margin-bottom: 50px;
}
.second-life-wrapper .right .image {
  width: calc(100% + 80px);
}

.our-support-wrapper {
  padding-top: 100px;
  padding-bottom: 150px;
}
.our-support-wrapper .section {
  display: flex;
  flex-flow: wrap;
  align-items: center;
}
.our-support-wrapper .left {
  width: 50%;
  margin-bottom: 50px;
  padding-right: calc(100% / 8 * 0.6);
  box-sizing: border-box;
}
.our-support-wrapper .left .image {
  width: calc(100% + 80px);
  left: -80px;
  position: relative;
}
.our-support-wrapper .right {
  width: 50%;
  margin-bottom: 50px;
}
.our-support-wrapper .right .heading-2 {
  margin-bottom: 26px;
}
.our-support-wrapper .right .description {
  margin-bottom: 40px;
  width: calc(100% / 4 * 3);
  color: #727272;
}

.newsletter-wrapper {
  background-image: url("../images/png/NT_194075@2x.png");
  background-position: center;
  background-size: cover;
  padding: 98px 0 100px;
}
.newsletter-wrapper .title-section {
  text-align: center;
  margin-bottom: 13px;
}
.newsletter-wrapper .title-section:before {
  left: calc(50% - 20px);
}
.newsletter-wrapper .description {
  text-align: center;
  margin-bottom: 46px;
}
.newsletter-wrapper .tnp-email {
  border: none;
  width: 100%;
}
.newsletter-wrapper .tnp-field-email {
  width: calc(100% - 161px);
}
.newsletter-wrapper .tnp-subscription {
  max-width: none;
}
.newsletter-wrapper .tnp-subscription form {
  width: calc(100% / 8 * 3);
  display: flex;
  flex-flow: wrap;
  margin: 0 auto;
}
.newsletter-wrapper .tnp-subscription .field-error {
  display: block;
  color: red;
  width: 100%;
  text-align: center;
}
.newsletter-wrapper .tnp-subscription .field-success {
  display: block;
  color: green;
  width: 100%;
  text-align: center;
}

.seo-wrapper {
  padding-top: 100px;
  padding-bottom: 80px;
  color: #727272;
}
.seo-wrapper .section {
  display: flex;
  flex-flow: wrap;
}
.seo-wrapper .section .left {
  width: 50%;
  padding-right: 60px;
  box-sizing: border-box;
  margin-bottom: 20px;
}
.seo-wrapper .section .right {
  width: 50%;
  padding-right: 60px;
  box-sizing: border-box;
  margin-bottom: 20px;
}

.new-is-coming-wrapper {
  position: relative;
  z-index: 2;
}

.banner-wrapper .heading-1 {
  margin-bottom: 20px;
}
.banner-wrapper .description {
  margin-bottom: 60px;
  max-width: 280px;
  color: #727272;
  min-height: 80px;
}
.banner-wrapper .swiper-container {
  height: 100vh;
  position: relative;
}
.banner-wrapper .swiper-slide {
  background-position: center;
  background-size: cover;
}
.banner-wrapper .swiper-slide:after {
  content: url("../images/svg/Group_82.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 561px;
}
.banner-wrapper .swiper-slide .section {
  position: relative;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 3;
}
.banner-wrapper .nav-swiper {
  font-size: 11px;
  color: #727272;
  cursor: pointer;
  position: absolute;
  right: 80px;
  top: 201px;
}
.banner-wrapper .nav-swiper-wrapper {
  position: relative;
  z-index: 2;
}
.banner-wrapper .nav-arrow {
  outline: 0;
  transition: 0.25s;
  position: relative;
}
.banner-wrapper .nav-arrow span {
  position: relative;
  transition: 0.25s;
  display: inline-block;
}
.banner-wrapper .nav-arrow span:after {
  content: "";
  width: 100%;
  height: 100%;
  border-bottom: solid 1px #727272;
  position: absolute;
  bottom: 1px;
  left: 0px;
  opacity: 0;
  transition: 0.25s;
}
.banner-wrapper .nav-arrow:hover.nav-arrow-left span {
  transform: translateX(-3px);
}
.banner-wrapper .nav-arrow:hover.nav-arrow-right span {
  transform: translateX(3px);
}
.banner-wrapper .nav-arrow:hover span:after {
  opacity: 1;
}
.banner-wrapper .nav-arrow-left {
  margin-right: 50px;
  position: relative;
}
.banner-wrapper .nav-arrow-left:before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #727272;
  position: absolute;
  right: -10px;
  transform: translate(100%, 0);
  top: 8px;
}
.banner-wrapper .swiper-pagination-numbers-wrapper {
  position: relative;
  top: -40px;
  z-index: 2;
  transform: translate(0, -100%);
}
.banner-wrapper .swiper-pagination-numbers {
  outline: 0;
}
.banner-wrapper .swiper-pagination-numbers .swiper-pagination-bullet {
  width: auto;
  height: auto;
  background-color: transparent;
  opacity: 1;
  color: #727272;
  font-size: 11px;
  line-height: 17px;
  outline: 0;
}
.banner-wrapper .swiper-pagination-numbers .swiper-pagination-bullet:last-child .last-number {
  display: inline-block;
  position: relative;
}
.banner-wrapper .swiper-pagination-numbers .swiper-pagination-bullet:last-child .last-number:before {
  content: "/";
}
.banner-wrapper .swiper-pagination-numbers .swiper-pagination-bullet.swiper-pagination-bullet-active .bullet-square {
  display: inline-block;
}
.banner-wrapper .swiper-pagination-numbers .bullet-square {
  display: none;
}
.banner-wrapper .swiper-pagination-numbers .last-number {
  display: none;
}

.header-wrapper {
  padding-top: 23px;
  padding-bottom: 30px;
  z-index: 3;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
}
.header-wrapper.scroll {
  background: #fff;
  border-bottom: 1px solid #D8D8D8;
}
.header-wrapper .section {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
}
.header-wrapper .logo {
  align-self: flex-start;
}
.header-wrapper .logo img {
  vertical-align: middle;
}
.header-wrapper .hamburger {
  display: none;
}
.header-wrapper .menu-menu-en-container {
  align-self: center;
}
.header-wrapper .menu {
  display: flex;
  flex-flow: wrap;
}
.header-wrapper .menu li {
  margin-right: 160px;
  color: #727272;
}
.header-wrapper .menu li:last-child {
  margin-right: 0px;
}
.header-wrapper .menu li.current-menu-item a:before {
  opacity: 1;
}
.header-wrapper .menu a {
  color: #727272;
  text-decoration: none;
  position: relative;
}
.header-wrapper .menu a:before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: #727272;
  bottom: 2px;
  left: 0px;
  transition: 0.25s;
  opacity: 0;
}
.header-wrapper .menu a:hover:before {
  opacity: 1;
}

.header-shop-wrapper {
  padding: 22px 0 0;
  color: #727272;
  position: fixed;
  width: 100%;
  z-index: 2;
}
.header-shop-wrapper.scroll {
  background-color: #fff;
  border-bottom: solid #D8D8D8 1px;
}
.header-shop-wrapper.scroll .top {
  background-color: #fff;
}
.header-shop-wrapper.scroll .bottom {
  background-color: #fff;
}
.header-shop-wrapper .top {
  display: flex;
  flex-flow: wrap;
  align-items: flex-end;
  padding-bottom: 28px;
  z-index: 3;
}
.header-shop-wrapper .top .menu-menu-en-container {
  width: calc(100% - 648px);
}
.header-shop-wrapper .top .menu {
  display: flex;
  flex-flow: wrap;
  justify-content: space-evenly;
}
.header-shop-wrapper .top .menu a {
  color: #727272;
  text-decoration: none;
}
.header-shop-wrapper .bottom {
  border-bottom: solid 1px #D8D8D8;
  transition: 0.25s;
  transform: translate(0, 0);
  position: fixed;
  width: 100%;
  left: 0;
  padding-bottom: 4px;
}
.header-shop-wrapper .bottom.hide {
  transform: translate(0, -100%);
  z-index: -1;
}
.header-shop-wrapper .logo {
  margin-bottom: 6px;
}
.header-shop-wrapper .logo a {
  display: inline-block;
}
.header-shop-wrapper .login a {
  color: #727272;
}
.header-shop-wrapper .basket {
  height: 22px;
  width: 19px;
  position: relative;
  margin-right: 40px;
}
.header-shop-wrapper .basket:before {
  content: "";
  font-family: "icomoon";
  font-size: 22px;
}
.header-shop-wrapper .basket a {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.header-shop-wrapper .basket-count {
  width: 16px;
  height: 16px;
  background-color: #000000;
  border-radius: 50%;
  position: absolute;
  top: -5px;
  right: -12px;
  font-size: 9px;
  line-height: 16px;
  color: #fff;
  font-weight: 600;
  text-align: center;
}
.header-shop-wrapper .woocommerce-product-search {
  max-width: 330px;
  width: 100%;
  margin: 0 9px;
  position: relative;
  top: 6px;
}
.header-shop-wrapper .heart {
  font-size: 0px;
  margin-right: 18px;
  margin-left: 10px;
  line-height: 19px;
  width: 21px;
  height: 21px;
}
.header-shop-wrapper .heart li {
  position: relative;
}
.header-shop-wrapper .wishlist_products_counter_number {
  width: 16px;
  height: 16px;
  background-color: #000000;
  border-radius: 50%;
  position: absolute;
  top: -5px;
  right: -12px;
  font-size: 9px;
  line-height: 16px;
  color: #fff;
  font-weight: 600;
  text-align: center;
}
.header-shop-wrapper span.wishlist_products_counter.top_wishlist-heart.wishlist-counter-with-products:before {
  content: "";
  font-family: "icomoon" !important;
  margin-right: 0px;
}

.menu-products {
  padding-bottom: 6px;
  max-width: 1600px;
  padding: 0 80px;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
}
.menu-products .menu {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
}
.menu-products .menu a, .menu-products .menu span {
  color: #727272;
  text-decoration: none;
  padding: 4px 0;
  display: inline-block;
  font-size: 11px;
  line-height: 20px;
}

.menu-menu-shop-container {
  width: calc(100% / 8 * 5);
}

.footer-wrapper {
  padding-top: 73px;
  padding-bottom: 53px;
  background-color: #F1F1F1;
}
.footer-wrapper .section {
  display: flex;
  flex-flow: wrap;
}
.footer-wrapper .left {
  width: calc(100% / 8 * 3);
}
.footer-wrapper .left img {
  width: 132px;
}
.footer-wrapper .left .textwidget {
  margin-top: 33px;
  color: #727272;
  font-size: 11px;
  line-height: 20px;
}
.footer-wrapper .right {
  width: calc(100% / 8 * 5);
}

.list-widget-menu {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
}
.list-widget-menu h3 {
  font-size: 11px;
  line-height: 20px;
  font-weight: 500;
  color: #727272;
  margin-bottom: 28px;
}
.list-widget-menu > li {
  margin-bottom: 50px;
}
.list-widget-menu .menu li {
  margin-bottom: 6px;
}
.list-widget-menu .menu li:last-child {
  margin-bottom: 0px;
}
.list-widget-menu a {
  color: #727272;
  font-size: 11px;
  line-height: 20px;
  text-decoration: none;
}
.list-widget-menu a:hover {
  color: #000;
}

.page-brand-section-brand {
  padding-bottom: 140px;
  padding-top: 40px;
  position: relative;
}
.page-brand-section-brand:before {
  content: url("../images/png/Mask_Group_12.png");
  position: absolute;
  right: 0px;
  bottom: 0px;
  z-index: -1;
}
.page-brand-section-brand .section {
  display: flex;
  flex-flow: wrap;
}
.page-brand-section-brand .title-section {
  margin-bottom: 26px;
}
.page-brand-section-brand .description {
  color: #727272;
}
.page-brand-section-brand .description p {
  margin-bottom: 20px;
}
.page-brand-section-brand .description p:last-child {
  margin-bottom: 0px;
}
.page-brand-section-brand .left {
  width: 50%;
  padding-right: calc(100% / 8);
  box-sizing: border-box;
  margin-bottom: 60px;
}
.page-brand-section-brand .right {
  width: 50%;
  padding-right: calc(100% / 8);
  box-sizing: border-box;
  margin-bottom: 60px;
}

.breadcrumb-wrapper {
  color: #727272;
  font-size: 11px;
}
.breadcrumb-wrapper a {
  color: #727272;
  margin-right: 26px;
  position: relative;
}
.breadcrumb-wrapper a:before {
  content: "/";
  position: absolute;
  right: -19px;
  transform: rotate(25deg);
}

.heading-page-wrapper {
  margin-bottom: 40px;
  margin-top: 20px;
}
.heading-page-wrapper .breadcrumb-wrapper {
  margin-bottom: 40px;
}

.page-idea .section-1 {
  padding-bottom: 140px;
  padding-top: 40px;
}
.page-idea .section-1 .section {
  display: flex;
  flex-flow: wrap;
  align-items: center;
}
.page-idea .section-1 .left {
  width: 50%;
  box-sizing: border-box;
  padding-right: calc(100% / 8);
  margin-bottom: 60px;
}
.page-idea .section-1 .left .title-section {
  margin-bottom: 20px;
}
.page-idea .section-1 .left .heading-4 {
  margin-bottom: 20px;
  display: inline-block;
}
.page-idea .section-1 .right {
  width: 50%;
  margin-bottom: 60px;
}
.page-idea .section-1 .description {
  color: #727272;
}
.page-idea .list-section .section {
  display: flex;
  flex-flow: wrap;
}
.page-idea .list-section > div {
  padding-bottom: 140px;
}
.page-idea .list-section > div .description {
  padding-top: 60px;
  position: relative;
  color: #727272;
}
.page-idea .list-section > div .description:before {
  content: "";
  height: 28px;
  width: 1px;
  background-color: #000;
  position: absolute;
  top: 0px;
  left: 10px;
  transform: rotate(45deg);
}
.page-idea .list-section > div .left {
  margin-bottom: 60px;
}
.page-idea .list-section > div .right {
  margin-bottom: 60px;
}
.page-idea .list-section > div:nth-child(odd) .left {
  width: 50%;
}
.page-idea .list-section > div:nth-child(odd) .right {
  width: 50%;
  padding-left: calc(100% / 8);
  box-sizing: border-box;
}
.page-idea .list-section > div:nth-child(even) .left {
  width: 50%;
  padding-right: calc(100% / 8);
  box-sizing: border-box;
  text-align: right;
}
.page-idea .list-section > div:nth-child(even) .right {
  width: 50%;
}
.page-idea .list-section > div:nth-child(even) .description:before {
  left: auto;
  right: 10px;
}
.page-idea .list-section > div:nth-child(1) .description {
  width: calc(100% / 3 * 2);
}

.single-product .container-page {
  overflow: visible;
}
.single-product .summary .price {
  display: flex;
  flex-flow: wrap;
  position: relative;
  z-index: 1;
  background: #fff;
  margin-bottom: 0px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E3E3E3;
}
.single-product .summary .price del {
  order: 2;
}
.single-product .summary .price del bdi {
  font-weight: 300;
  color: #727272;
}
.single-product .summary .price ins {
  text-decoration: none;
  order: 1;
  margin-right: 10px;
}
.single-product .summary .price ins bdi {
  color: #FF0000;
}
.single-product .summary .price bdi {
  font-size: 16px;
  color: #000000;
  font-weight: 500;
  line-height: 20px;
}
.single-product .summary .heading-4 {
  font-weight: 300;
  color: #727272;
}

.woocommerce div.product {
  display: flex;
  flex-flow: wrap;
}
.woocommerce div.product form.cart {
  margin-bottom: 30px;
  margin-top: 30px;
}
.woocommerce div.product form.cart.variations_form {
  margin-bottom: 40px;
  margin-top: 0px;
}
.woocommerce div.product form.cart .variations > ul > li {
  padding: 30px 0;
  border-bottom: solid 1px #E3E3E3;
}
.woocommerce div.product form.cart .variations > ul > li:last-child {
  border-bottom: none;
  padding-bottom: 5px;
}
.woocommerce div.product form.cart .variations .label label {
  color: #727272;
  font-weight: 300;
  margin-bottom: 18px;
  display: inline-block;
}
.woocommerce div.product form.cart .variations select, .woocommerce div.product form.cart .variations .selectric-wrapper {
  display: none;
}
.woocommerce div.product .button {
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  padding: 16px 40px;
  background-color: #000000;
  color: #fff;
  transition: 0.25s;
  outline: 0;
  border-radius: 0px;
}
.woocommerce div.product .button:hover {
  background-color: #727272;
}
.woocommerce div.product .button.disabled {
  background-color: rgba(0, 0, 0, 0.4);
}
.woocommerce div.product .button.disabled:hover {
  background-color: #727272;
}
.woocommerce div.product div.images {
  margin-bottom: 40px;
  width: 50%;
}
.woocommerce div.product div.images .flex-control-thumbs li {
  width: 100%;
  margin-top: 40px;
}
.woocommerce div.product div.images .flex-control-thumbs li img {
  opacity: 1;
}
.woocommerce div.product div.summary {
  position: sticky;
  bottom: 50px;
  align-self: flex-end;
  width: 50%;
  padding-left: calc(100% / 8);
  box-sizing: border-box;
  margin-bottom: 0px;
}

.single-action-add-to-cart {
  display: flex;
  flex-flow: wrap;
  position: relative;
  align-items: center;
}
.single-action-add-to-cart .tinv-wraper.tinv-wishlist {
  position: relative;
  margin-left: 18px;
  margin-top: 0px;
}
.single-action-add-to-cart .tinv-wraper.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart {
  width: 46px;
  height: 46px;
  border: 1px solid #E3E3E3;
}

.description-product {
  padding: 30px 0;
  border-top: 1px solid #E3E3E3;
  color: #727272;
}
.description-product span {
  display: block;
  margin-bottom: 20px;
}
.description-product .description {
  font-size: 11px;
}

.product-tab li {
  border-bottom: solid 1px #E3E3E3;
  position: relative;
}
.product-tab li.active {
  padding-bottom: 10px;
}
.product-tab li.active .close:before {
  transform: rotate(-90deg) translate(-50%, 0);
  transform-origin: left;
}
.product-tab li.active .description {
  height: auto;
  overflow: visible;
}
.product-tab .title {
  font-size: 12px;
  font-weight: 400;
  padding: 21px 0px;
  display: block;
  cursor: pointer;
}
.product-tab .description {
  height: 0px;
  overflow: hidden;
  top: -10px;
  position: relative;
  transition: 0.25s;
  padding-right: 25px;
}
.product-tab .close {
  position: absolute;
  width: 16px;
  height: 16px;
  right: 0px;
  top: 23px;
  z-index: -1;
}
.product-tab .close:before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translate(-50%, 0);
  transition: 0.25s;
}
.product-tab .close:after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.product-gallery {
  padding-top: 60px;
}
.product-gallery .heading-3 {
  margin-bottom: 20px;
}
.product-gallery .heading {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  padding-bottom: 60px;
}
.product-gallery .left {
  width: 50%;
  padding-bottom: 40px;
}
.product-gallery .right {
  width: 50%;
  box-sizing: border-box;
  padding-left: calc(100% / 8);
  padding-bottom: 40px;
}
.product-gallery .swiper-container {
  position: relative;
  width: 100vw;
  left: calc((-100vw + 1440px) / 2);
}
.product-gallery .swiper-slide {
  padding-bottom: 25%;
  position: relative;
  overflow: hidden;
}
.product-gallery .swiper-slide:hover .image {
  transform: scale(1.15);
}
.product-gallery .swiper-slide:hover .image:before {
  opacity: 0.85;
}
.product-gallery .swiper-slide:hover .link-arrow {
  bottom: 30px;
}
.product-gallery .swiper-btn {
  display: none;
}
.product-gallery .image {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  transition: 0.25s;
  cursor: pointer;
}
.product-gallery .image:before {
  content: "";
  background-color: #FFF;
  opacity: 0;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  position: absolute;
  transition: 0.25s;
}

.details-product {
  padding: 30px 0px 53px;
  border-top: 1px solid #E3E3E3;
  border-bottom: 1px solid #E3E3E3;
  color: #727272;
}
.details-product span {
  display: block;
  margin-bottom: 20px;
}
.details-product li {
  padding-left: 32px;
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 26px;
  color: #000000;
  position: relative;
}
.details-product li:last-child {
  margin-bottom: 0px;
}
.details-product li:before {
  position: absolute;
  left: 0px;
  top: -4px;
}
.details-product li.biosource-fabric:before {
  content: url("../images/svg/sustainable-production.svg");
}
.details-product li.biodegradable-fabric:before {
  content: url("../images/svg/biodegradable-fabric.svg");
}
.details-product li.vegan:before {
  content: url("../images/svg/biosource-fabric.svg");
}
.details-product li.certified-fabric:before {
  content: url("../images/svg/certified-fabric.svg");
}
.details-product li.eco-finishing-accessories:before {
  content: url("../images/svg/eco-finishing.svg");
}
.details-product li.eco-finishing--accessories-:before {
  content: url("../images/svg/eco-finishing.svg");
}
.details-product li.eco-washing:before {
  content: url("../images/svg/eco-washing.svg");
}
.details-product li.natural-base-button-corozzo-nuts:before {
  content: url("../images/svg/natural-buttons.svg");
}
.details-product li.natural-based-buttons--corozzo-nuts- {
  background-color: red;
}
.details-product li.natural-based-buttons--corozzo-nuts-:before {
  content: url("../images/svg/natural-buttons.svg");
}
.details-product li.zippers-made-of-recycled-material-natulon:before {
  content: url("../images/svg/recycled-zippers.svg");
}
.details-product li.suitainable-production:before {
  content: url("../images/svg/vegan.svg");
}

.variation-radios ul {
  display: flex;
  flex-flow: wrap;
}
.variation-radios li {
  margin-right: 20px;
}
.variation-radios li:last-child {
  margin-bottom: 0px;
}

.similar-products-wrapper {
  padding: 100px 0;
  position: relative;
}
.similar-products-wrapper .title-section {
  margin-bottom: 40px;
}
.similar-products-wrapper .swiper-btn {
  outline: 0;
}
.similar-products-wrapper .swiper-btn.swiper-btn-prev {
  left: -20px;
}
.similar-products-wrapper .swiper-btn.swiper-btn-next {
  right: -20px;
}

.products-list-slider-on-mobile .swiper-slide {
  padding-right: 40px;
  margin-bottom: 40px;
}

.products-list ul {
  display: flex;
  flex-flow: wrap;
}
.products-list > ul > li {
  padding-right: 40px;
  margin-bottom: 40px;
}
.products-list li {
  position: relative;
  outline: 0;
  width: 25%;
  box-sizing: border-box;
}
.products-list li.product-white-details:hover .image .details-wrapper {
  transform: translate(0, 0);
}
.products-list li.product-white-details:hover .discount-wrapper {
  bottom: 66px;
}
.products-list li .image {
  position: relative;
}
.products-list li .image img {
  width: 100%;
}
.products-list a {
  z-index: 1;
  position: relative;
  background: #fff;
  color: #727272;
  text-decoration: none;
  padding-top: 20px;
  padding-bottom: 3px;
  display: block;
}
.products-list .price {
  display: flex;
  flex-flow: wrap;
  position: relative;
  z-index: 1;
  background: #fff;
  margin-bottom: 0px;
}
.products-list .price del {
  order: 2;
}
.products-list .price del bdi {
  font-weight: 300;
  color: #727272;
}
.products-list .price ins {
  text-decoration: none;
  order: 1;
  margin-right: 10px;
}
.products-list .price ins bdi {
  color: #FF0000;
}
.products-list .price bdi {
  font-size: 13px;
  color: #000000;
  font-weight: 500;
  line-height: 20px;
}
.products-list .swiper-btn {
  top: calc(50% - 40px);
}

.products-list.products-list-slider {
  position: relative;
}
.products-list.products-list-slider .swiper-container {
  width: calc(100% + ((100vw - 1440px) / 2));
}
.products-list.products-list-slider ul {
  flex-flow: nowrap;
}
.products-list.products-list-slider li {
  width: calc(25% - 60px);
  margin: 0px;
  padding: 0px;
}

.woocommerce .products ul {
  margin: 0px;
}
.woocommerce .entry-title h1 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  display: inline-block;
  padding-top: 40px;
  position: relative;
}
.woocommerce .entry-title h1:before {
  content: "";
  height: 28px;
  width: 1px;
  background-color: #000;
  position: absolute;
  top: 0px;
  left: 10px;
  transform: rotate(45deg);
}
.woocommerce .entry-title .result-count {
  display: inline-block;
  vertical-align: super;
  font-size: 11px;
  line-height: 20px;
  font-weight: 500;
}
.woocommerce .newsletter-wrapper, .woocommerce .seo-wrapper {
  width: 100vw;
  position: relative;
  left: calc((-100vw + 1440px) / 2);
}

.just-arrived-wrapper {
  padding-top: 40px;
  padding-bottom: 60px;
}
.just-arrived-wrapper .title-section {
  margin-bottom: 30px;
}

.what-interests-you-wrapper {
  padding-bottom: 100px;
}
.what-interests-you-wrapper .title-section {
  margin-bottom: 30px;
}

.list-category-products {
  display: flex;
  flex-flow: wrap;
}
.list-category-products li {
  padding-bottom: 33.33%;
  background-position: center;
  background-size: cover;
  width: 33.33%;
  padding-top: 30px;
  padding-left: 30px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.list-category-products li:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.15);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  transition: 0.25s;
}
.list-category-products li:hover a {
  bottom: 30px;
}
.list-category-products li:hover:before {
  background-color: transparent;
}
.list-category-products span {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  position: relative;
  z-index: 1;
}
.list-category-products a {
  position: absolute;
  right: 30px;
  transition: 0.25s;
  bottom: -30px;
}

.choose-your-style-wrapper {
  padding-bottom: 100px;
}
.choose-your-style-wrapper .title-section {
  margin-bottom: 40px;
}
.choose-your-style-wrapper .banner-category {
  padding-bottom: 26%;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}
.choose-your-style-wrapper .banner-category:before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-135deg);
  z-index: 1;
}
.choose-your-style-wrapper .banner-category:hover .image {
  transform: scale(1.1);
}
.choose-your-style-wrapper .banner-category:hover .link-arrow {
  bottom: 30px;
}
.choose-your-style-wrapper .banner-category .image {
  background-position: center;
  background-size: cover;
  background-image: url(http://notrace-local.pl/wp-content/uploads/2020/12/Mask-Group-14@2x-1024x274.png);
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  transition: 0.25s;
}
.choose-your-style-wrapper .banner-category span {
  font-size: 50px;
  line-height: 48px;
  font-weight: 300;
  letter-spacing: -2px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.choose-your-style-wrapper .banner-category .link-arrow {
  position: absolute;
  bottom: -30px;
  right: 20px;
  transition: 0.25s;
}

.basic-products-wrapper {
  padding-bottom: 100px;
}
.basic-products-wrapper .banner-category {
  padding-bottom: 26%;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}
.basic-products-wrapper .banner-category:before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-135deg);
  z-index: 1;
}
.basic-products-wrapper .banner-category:hover .image {
  transform: scale(1.1);
}
.basic-products-wrapper .banner-category:hover .link-arrow {
  bottom: 30px;
}
.basic-products-wrapper .banner-category .image {
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  transition: 0.25s;
}
.basic-products-wrapper .banner-category span {
  font-size: 50px;
  line-height: 48px;
  font-weight: 300;
  letter-spacing: -2px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.basic-products-wrapper .banner-category .link-arrow {
  position: absolute;
  bottom: -30px;
  right: 20px;
  transition: 0.25s;
}

.smart-products-wrapper {
  padding-bottom: 40px;
}
.smart-products-wrapper .section {
  display: flex;
  flex-flow: wrap;
}
.smart-products-wrapper .left {
  width: calc(50% - 40px);
  margin-right: 40px;
  margin-bottom: 60px;
}
.smart-products-wrapper .left .smart-products-banner {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.smart-products-wrapper .left .smart-products-banner:before {
  content: "";
  width: 1px;
  height: 40%;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-135deg);
  z-index: 1;
}
.smart-products-wrapper .left .smart-products-banner:hover .image {
  transform: scale(1.1);
}
.smart-products-wrapper .left .smart-products-banner:hover .link-arrow {
  bottom: 30px;
}
.smart-products-wrapper .left .smart-products-banner .image {
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  transition: 0.25s;
}
.smart-products-wrapper .left .smart-products-banner span {
  font-size: 50px;
  line-height: 48px;
  font-weight: 300;
  letter-spacing: -2px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.smart-products-wrapper .left .smart-products-banner .link-arrow {
  position: absolute;
  bottom: -30px;
  right: 20px;
  transition: 0.25s;
}
.smart-products-wrapper .right {
  width: 50%;
  margin-bottom: 60px;
}
.smart-products-wrapper .products-list .swiper-wrapper li {
  width: 50%;
}

.tinvwl-product-in-list:before {
  font-size: 21px;
}

.filter-hamburger {
  display: none;
}
.filter-hamburger span {
  padding-left: 30px;
  display: inline-block;
  position: relative;
  font-weight: 500;
  cursor: pointer;
}
.filter-hamburger span:before {
  content: "";
  font-family: icomoon;
  font-size: 20px;
  position: absolute;
  top: 0px;
  left: 0px;
}

.menu-filters-wrapper {
  padding-bottom: 30px;
}
.menu-filters-wrapper .menu-filters > ul {
  width: 100%;
  display: flex;
  flex-flow: wrap;
  list-style: none;
  position: relative;
}
.menu-filters-wrapper .menu-filters > ul > li > a {
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  color: #727272;
  text-decoration: none;
  padding: 20px 0;
  padding-right: 65px;
  display: inline-block;
  position: relative;
}
.menu-filters-wrapper .menu-filters > ul > li > a:before {
  content: "";
  font-family: icomoon;
  position: absolute;
  top: 24px;
  right: 44px;
}
.menu-filters-wrapper .menu-filters > ul > li > a span {
  vertical-align: super;
  font-size: 10px;
}
.menu-filters-wrapper .filters-wrapper {
  display: none;
  width: 100%;
  padding: 40px 0;
  position: absolute;
  background: #fff;
  box-sizing: border-box;
  left: 0px;
  z-index: 2;
}
.menu-filters-wrapper .filters-wrapper:before {
  content: "";
  width: 100vw;
  height: 1px;
  background-color: #E3E3E3;
  position: absolute;
  bottom: 0px;
  left: calc((-100vw + 1440px) / 2);
}
.menu-filters-wrapper .filters-wrapper:after {
  content: "";
  width: 100vw;
  height: 1px;
  background-color: #E3E3E3;
  position: absolute;
  top: 0px;
  left: calc((-100vw + 1440px) / 2);
}

.bapf_button {
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  padding: 16px 40px;
  background-color: #000000;
  color: #fff;
  transition: 0.25s;
  border: none;
  outline: 0;
}
.bapf_button:hover {
  background-color: #727272;
}

.bapf_sfilter {
  font-size: 12px;
  color: #727272;
  line-height: 15px;
  margin-bottom: 0px;
}
.bapf_sfilter ul li {
  margin-bottom: 17px !important;
}
.bapf_sfilter ul li:last-child {
  margin-bottom: 0px !important;
}

.berocket_single_filter_widget .bapf_ckbox {
  margin-bottom: 40px;
}
.berocket_single_filter_widget .bapf_slidr_all {
  margin-bottom: 40px;
}

.reset-filter {
  padding-top: 20px;
  position: relative;
}
.reset-filter:before {
  content: "";
  width: 100vw;
  height: 1px;
  background-color: #E3E3E3;
  position: absolute;
  top: 0px;
  left: calc((-100vw + 1440px) / 2);
}
.reset-filter .berocket_aapf_widget_selected_filter {
  display: flex;
  flex-flow: wrap;
}
.reset-filter .braapf_unselect {
  border: solid 1px #9B9F9E;
  padding: 4px 24px 5px 8px;
  font-size: 10px;
  color: #9B9F9E;
  position: relative;
  display: inline-block;
}
.reset-filter .braapf_unselect:before {
  content: "";
  font-family: icomoon;
  font-size: 12px;
  position: absolute;
  top: 5px;
  right: 5px;
}
.reset-filter .bapf_sfa_unall a {
  border: solid 1px #000;
  padding: 4px 24px 5px 8px;
  font-size: 10px;
  color: #000000;
  position: relative;
  display: inline-block;
}
.reset-filter .bapf_sfa_unall a:before {
  content: "";
  font-family: icomoon;
  font-size: 12px;
  position: absolute;
  top: 5px;
  right: 5px;
  color: #000;
}

.bapf_ckbox_square input[type=checkbox] {
  border: 1px solid #9B9F9E;
  width: 14px;
  height: 14px;
  padding: 3px;
}
.bapf_ckbox_square input[type=checkbox]:checked {
  background-color: #9B9F9E;
}

.tinv-wraper.tinv-wishlist {
  position: absolute;
  top: 0;
  right: 0px;
}

.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt {
  margin-top: 0px;
  width: 40px;
  height: 40px;
  background-color: #fff;
}
.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt:before {
  content: "";
  font-family: "icomoon" !important;
}
.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.tinvwl-product-in-list:before {
  color: red;
}

.woocommerce-ordering {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  display: none;
}
.woocommerce-ordering .orderby-text {
  padding-right: 16px;
}

.woocommerce ul.products {
  display: flex;
  flex-flow: wrap;
  padding-top: 30px;
}
.woocommerce ul.products li.product {
  cursor: pointer;
  width: 25%;
  padding-right: 42px;
  box-sizing: border-box;
  margin: 0px;
  margin-bottom: 20px;
}
.woocommerce ul.products li.product:hover .image .details-wrapper {
  transform: translate(0, 0);
}
.woocommerce ul.products li.product:hover .discount-wrapper {
  bottom: 66px;
}
.woocommerce ul.products li.product .image {
  position: relative;
}
.woocommerce ul.products li.product .image img {
  width: 100%;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  z-index: 1;
  position: relative;
  background: #fff;
  padding-top: 20px;
  padding-bottom: 3px;
}
.woocommerce ul.products li.product .price {
  display: flex;
  flex-flow: wrap;
  position: relative;
  z-index: 1;
  background: #fff;
  margin-bottom: 0px;
}
.woocommerce ul.products li.product .price del {
  order: 2;
}
.woocommerce ul.products li.product .price del bdi {
  font-weight: 300;
  color: #727272;
}
.woocommerce ul.products li.product .price ins {
  text-decoration: none;
  order: 1;
  margin-right: 10px;
}
.woocommerce ul.products li.product .price ins bdi {
  color: #FF0000;
}
.woocommerce ul.products li.product .price bdi {
  font-size: 13px;
  color: #000000;
  font-weight: 500;
  line-height: 20px;
}

.carousel-banner-wrapper {
  padding-top: 135px;
  background-color: #F1F1F1;
}
.carousel-banner-wrapper .section {
  position: relative;
}
.carousel-banner-wrapper .swiper-container {
  height: 100%;
}
.carousel-banner-wrapper .center-content {
  position: absolute;
  top: calc(50% - 60px);
  transform: translate(0, -50%);
  z-index: 1;
}
.carousel-banner-wrapper .heading-1 {
  margin-bottom: 30px;
  display: block;
}
.carousel-banner-wrapper .image {
  width: 560px;
  position: relative;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 0);
}
.carousel-banner-wrapper .description {
  width: calc(100% / 8);
  color: #727272;
  position: absolute;
  right: 80px;
  bottom: 40px;
  z-index: 1;
}
.carousel-banner-wrapper .nav-swiper {
  font-size: 11px;
  color: #727272;
  cursor: pointer;
  position: absolute;
  right: 80px;
  top: 93px;
}
.carousel-banner-wrapper .nav-swiper-wrapper {
  position: relative;
  z-index: 2;
}
.carousel-banner-wrapper .nav-arrow-left {
  margin-right: 50px;
  position: relative;
}
.carousel-banner-wrapper .nav-arrow-left:before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #727272;
  position: absolute;
  right: -10px;
  transform: translate(100%, 0);
  top: 8px;
}
.carousel-banner-wrapper .swiper-pagination-numbers-wrapper {
  position: relative;
}
.carousel-banner-wrapper .swiper-pagination-numbers {
  z-index: 2;
  position: absolute;
  bottom: 40px;
  left: 80px;
}
.carousel-banner-wrapper .swiper-pagination-numbers .swiper-pagination-bullet {
  width: auto;
  height: auto;
  background-color: transparent;
  opacity: 1;
  color: #727272;
  font-size: 11px;
  line-height: 17px;
}
.carousel-banner-wrapper .swiper-pagination-numbers .swiper-pagination-bullet:last-child .last-number {
  display: inline-block;
  position: relative;
}
.carousel-banner-wrapper .swiper-pagination-numbers .swiper-pagination-bullet:last-child .last-number:before {
  content: "/";
}
.carousel-banner-wrapper .swiper-pagination-numbers .swiper-pagination-bullet.swiper-pagination-bullet-active .bullet-square {
  display: inline-block;
}
.carousel-banner-wrapper .swiper-pagination-numbers .bullet-square {
  display: none;
}
.carousel-banner-wrapper .swiper-pagination-numbers .last-number {
  display: none;
}

.woocommerce-info {
  padding: 21px 20px 19px;
  border: solid 1px #000000;
  background-color: transparent;
  color: #000;
  font-weight: 500;
  text-align: center;
}
.woocommerce-info:before {
  display: none;
}
.woocommerce-info a {
  color: #000;
}

.bapf_colorinline input {
  display: block !important;
}

.bapf_sfilter .bapf_clr_span.h2em {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #DBDBDB;
  margin-right: 10px;
}
.bapf_sfilter .bapf_img_span.h2em {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #DBDBDB;
  margin-right: 10px;
}

.bapf_colorinline .bapf_body li {
  text-align: left;
  width: 100%;
}

/* bapf_colorinline checkbox */
.bapf_colorinline [type=checkbox]:not(:checked),
.bapf_colorinline [type=checkbox]:checked {
  position: absolute;
  left: -9999px;
}

.bapf_colorinline [type=checkbox]:not(:checked) + label, .bapf_colorinline [type=checkbox]:checked + label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: block;
}

.bapf_colorinline [type=checkbox]:not(:checked) + label:before,
.bapf_colorinline [type=checkbox]:checked + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 15px;
  height: 15px;
  border: 1px solid #9B9F9E;
  background: transparent;
  box-sizing: border-box;
}

.bapf_colorinline [type=checkbox]:not(:checked) + label:after, .bapf_colorinline [type=checkbox]:checked + label:after {
  content: url(../images/svg/foursquare-check-in.svg);
  position: absolute;
  top: 6px;
  left: 1px;
  transition: all 0.2s;
}

.bapf_colorinline [type=checkbox]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}

.bapf_colorinline [type=checkbox]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}

/* bapf_colorinline checkbox */
.woocommerce-page .breadcrumb-wrapper {
  margin: 20px 0 30px;
}

.irs--flat .irs-bar {
  background-color: #000;
}
.irs--flat .irs-to {
  background-color: #000;
}
.irs--flat .irs-to:before {
  border-top-color: #000;
}
.irs--flat .irs-from {
  background-color: #000;
}
.irs--flat .irs-from:before {
  border-top-color: #000;
}
.irs--flat .irs-handle > i:first-child {
  background-color: #000;
}

.hamburger {
  width: 30px;
  height: 21px;
  text-align: center;
  margin: 0 auto;
  transform: rotate(0);
  transition: 0.5s ease-in-out;
  position: absolute;
  cursor: pointer;
  right: 50px;
  top: 12px;
  display: none;
  z-index: 2;
}
.hamburger.open span:first-child {
  top: 0px;
  width: 0;
  left: 50%;
}
.hamburger.open span:nth-child(2) {
  transform: rotate(45deg);
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
}
.hamburger.open span:nth-child(4) {
  top: 20px;
  width: 0;
  left: 50%;
}
.hamburger span {
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  background: #707070;
  opacity: 1;
  left: 0;
  transform: rotate(0);
  transition: 0.25s ease-in-out;
}
.hamburger span:first-child {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 10px;
}
.hamburger span:nth-child(3) {
  top: 10px;
}
.hamburger span:nth-child(4) {
  top: 20px;
}

.menu-mobile {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  padding-top: 70px;
  z-index: 1;
  display: none;
}
.menu-mobile .menu {
  border-top: solid 1px #E3E3E3;
  height: calc(100vh - 70px);
  overflow: scroll;
}
.menu-mobile .menu > li > a {
  font-size: 15px;
  color: #000;
  font-weight: 500;
  line-height: 23px;
  text-decoration: none;
  padding: 20px 80px 19px;
  display: block;
  border-bottom: solid 1px #E3E3E3;
}
.menu-mobile .menu > li:last-child > a {
  border-bottom: none;
}
.menu-mobile .sub-menu {
  padding: 0 80px;
  box-sizing: border-box;
}
.menu-mobile .sub-menu a {
  color: #727272;
  text-decoration: none;
  padding: 16px 0 15px;
  border-bottom: solid 1px #E3E3E3;
  display: block;
}

.no-results {
  width: 50%;
  padding: 100px 0px;
  height: calc(100vh - 631px);
}
.no-results .heading-1 {
  margin-bottom: 30px;
}
.no-results .woocommerce-product-search {
  margin-top: 30px;
}

@media (min-width: 901px) {
  .menu-filters-wrapper .menu-filters > ul > li:hover .filters-wrapper {
    display: block;
  }

  .not-race-community-wrapper .swiper-slide:hover .image {
    transform: scale(1.15);
  }
  .not-race-community-wrapper .swiper-slide:hover .image:before {
    opacity: 0.85;
  }
  .not-race-community-wrapper .swiper-slide:hover .link-arrow {
    bottom: 30px;
  }
}
@media (min-width: 1601px) {
  .products-list .products-list-slider li {
    width: 320px;
  }
}
@media (max-width: 1600px) {
  .products-list.products-list-slider .swiper-container {
    width: calc(100% + 80px);
  }

  .woocommerce .newsletter-wrapper {
    left: -80px;
  }
  .woocommerce .seo-wrapper {
    left: -80px;
  }

  .product-gallery .swiper-container {
    left: -80px;
  }

  .reset-filter:before {
    left: -80px;
  }

  .menu-filters-wrapper .filters-wrapper:after {
    left: 0px;
  }
  .menu-filters-wrapper .filters-wrapper:before {
    left: -80px;
  }
}
@media (max-width: 1400px) {
  .woocommerce ul.products li.product {
    width: 33.33%;
  }
}
@media (max-width: 1280px) {
  .newsletter-wrapper {
    background-image: url("../images/png/NT_194075.png");
  }
  .newsletter-wrapper .tnp-subscription form {
    width: auto;
    justify-content: center;
  }
  .newsletter-wrapper .tnp-field-email {
    width: 280px;
  }

  .ide-wrapper .left {
    width: 140px;
  }
  .ide-wrapper .right {
    width: calc(100% - 140px);
  }
  .ide-wrapper .square {
    left: calc(49% - 70px);
  }
}
@media (max-width: 1100px) {
  .header-shop-wrapper.open .menu-mobile {
    display: block;
  }
  .header-shop-wrapper .logo {
    margin-right: auto;
  }
  .header-shop-wrapper .top {
    align-items: normal;
  }
  .header-shop-wrapper .top .menu-menu-en-container {
    display: none;
  }
  .header-shop-wrapper .search {
    top: 0px;
  }
  .header-shop-wrapper .bottom {
    display: none;
  }
  .header-shop-wrapper .login {
    display: none;
  }
  .header-shop-wrapper .hamburger {
    display: block;
    top: 23px;
    right: 80px;
  }
  .header-shop-wrapper .basket {
    margin-right: 70px;
  }
}
@media (max-width: 900px) {
  .section, article.page, article.product {
    padding-left: 40px;
    padding-right: 40px;
  }

  .woocommerce .newsletter-wrapper {
    left: -40px;
  }
  .woocommerce .seo-wrapper {
    left: -40px;
  }

  .product-gallery .swiper-container {
    left: -40px;
  }

  .the-brand-wrapper {
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .the-brand-wrapper .left:before {
    display: none;
  }
  .the-brand-wrapper .left .image {
    width: 100%;
    left: 0px;
    transform: translate(0%, 0);
    padding-right: 65px;
    box-sizing: border-box;
  }
  .the-brand-wrapper .right {
    padding-right: 60px;
    padding-left: 0px;
  }
  .the-brand-wrapper .right .description {
    width: 100%;
  }

  .not-race-community-wrapper {
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .not-race-community-wrapper .title-section {
    margin-bottom: 24px;
  }
  .not-race-community-wrapper .text-wrapper {
    padding-bottom: 0px;
  }
  .not-race-community-wrapper .text-wrapper .right .description .col-50 {
    width: 100%;
    padding-right: 0px;
  }
  .not-race-community-wrapper .text-wrapper .right .description .col-50:first-child {
    padding-top: 60px;
  }
  .not-race-community-wrapper .call-to-action-instagram {
    display: inline-block;
    margin-top: 40px;
  }

  .second-life-wrapper {
    padding-top: 50px;
    padding-bottom: 0px;
  }
  .second-life-wrapper .left {
    width: 100%;
  }
  .second-life-wrapper .left .description {
    width: 100%;
  }
  .second-life-wrapper .right {
    width: 100%;
  }
  .second-life-wrapper .right .image {
    left: -40px;
    position: relative;
  }

  .our-support-wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .our-support-wrapper .left {
    width: 100%;
    padding-right: 0px;
    order: 2;
  }
  .our-support-wrapper .left .image {
    left: -40px;
  }
  .our-support-wrapper .right {
    width: 100%;
    order: 1;
  }
  .our-support-wrapper .right .description {
    width: 100%;
  }

  .seo-wrapper .section .left {
    width: 100%;
    padding-right: 0px;
  }
  .seo-wrapper .section .right {
    width: 100%;
    padding-right: 0px;
  }

  .list-widget-menu > li {
    width: 50%;
  }

  .footer-wrapper .left {
    width: 50%;
  }
  .footer-wrapper .right {
    width: 50%;
  }

  .ide-wrapper .square {
    width: 486px;
    height: 343px;
  }

  .page-idea .section-1 {
    padding-bottom: 40px;
  }
  .page-idea .section-1 .left {
    width: 100%;
    padding-right: calc(100% / 4);
  }
  .page-idea .section-1 .right {
    width: 100%;
    padding-right: calc(100% / 4);
  }

  .page-idea .list-section > div {
    padding-bottom: 40px;
  }
  .page-idea .list-section > div:nth-child(odd) .left {
    width: 100%;
    order: 2;
    padding-right: calc(100% / 4);
  }
  .page-idea .list-section > div:nth-child(odd) .right {
    width: 100%;
    padding-left: 0px;
    order: 1;
    padding-right: calc(100% / 4);
  }
  .page-idea .list-section > div:nth-child(odd) .description {
    width: 100%;
  }
  .page-idea .list-section > div:nth-child(even) .left {
    width: 100%;
    padding-right: 0;
    padding-left: calc(100% / 4);
  }
  .page-idea .list-section > div:nth-child(even) .right {
    width: 100%;
    padding-left: calc(100% / 4);
  }

  .page-brand-section-brand {
    padding-bottom: 40px;
  }
  .page-brand-section-brand:before {
    top: -240px;
    bottom: auto;
  }
  .page-brand-section-brand .left {
    width: 100%;
    padding-right: calc(100% / 4);
  }
  .page-brand-section-brand .right {
    width: 100%;
    padding-right: 60px;
  }

  .carousel-banner-wrapper .swiper-pagination-numbers {
    left: 40px;
    bottom: 20px;
  }
  .carousel-banner-wrapper .description {
    display: none;
  }
  .carousel-banner-wrapper .nav-swiper {
    right: auto;
    top: auto;
    position: relative;
  }
  .carousel-banner-wrapper .nav-swiper-wrapper {
    position: absolute;
    bottom: 20px;
    left: 109px;
  }
  .carousel-banner-wrapper .image {
    width: calc(100% / 4 * 2.5);
    left: 100%;
    transform: translate(-100%, 0);
  }
  .carousel-banner-wrapper .swiper-container:before {
    content: "";
    background-color: rgba(255, 255, 255, 0.8);
    position: absolute;
    width: 100%;
    height: 60px;
    left: 0px;
    bottom: 0px;
    z-index: 2;
  }

  .products-list.products-list-slider .swiper-containe {
    width: calc(100% + 40px);
  }
  .products-list > ul > li {
    padding-right: 0px;
    margin-right: 40px;
  }
  .products-list > ul > li:nth-child(even) {
    margin-right: 0px;
  }
  .products-list li {
    width: calc(50% - 20px);
  }

  .choose-your-style-wrapper .banner-category {
    width: calc(100% + 80px);
    left: -40px;
    height: 204px;
    padding-bottom: 0px;
  }
  .choose-your-style-wrapper .banner-category span {
    font-size: 40px;
  }

  .smart-products-wrapper {
    padding-bottom: 20px;
  }
  .smart-products-wrapper .left {
    width: 100%;
    margin-right: 0px;
  }
  .smart-products-wrapper .left .smart-products-banner {
    height: 204px;
    width: calc(100% + 80px);
    position: relative;
    left: -40px;
  }
  .smart-products-wrapper .left .smart-products-banner span {
    font-size: 40px;
  }
  .smart-products-wrapper .left .smart-products-banner .link-arrow {
    right: 40px;
  }
  .smart-products-wrapper .left .smart-products-banner:before {
    height: 100%;
  }
  .smart-products-wrapper .right {
    width: 100%;
  }

  .products-list.products-list-slider-on-mobile {
    position: relative;
  }
  .products-list.products-list-slider-on-mobile ul {
    flex-flow: nowrap;
  }
  .products-list.products-list-slider-on-mobile li.swiper-slide {
    width: calc(50% - 20px);
    margin-bottom: 0px;
  }
  .products-list.products-list-slider-on-mobile .swiper-container {
    width: calc(100% + 40px);
  }

  .basic-products-wrapper .banner-category {
    height: 204px;
    width: calc(100% + 80px);
    position: relative;
    left: -40px;
    padding-bottom: 0px;
  }
  .basic-products-wrapper .banner-category span {
    font-size: 40px;
  }
  .basic-products-wrapper .banner-category .link-arrow {
    right: 40px;
  }
  .basic-products-wrapper .banner-category:before {
    height: 100%;
  }

  .products-list.products-list-slider li {
    width: calc(33.33% - 70px);
  }

  .woocommerce div.product div.summary {
    width: 100%;
    position: relative;
    bottom: 0px;
    padding-left: 0px;
  }
  .woocommerce div.product div.images {
    width: 100%;
  }

  .menu-mobile .menu > li > a {
    padding-left: 40px;
    padding-right: 40px;
  }
  .menu-mobile .sub-menu {
    padding: 0 40px;
  }

  .header-shop-wrapper .hamburger {
    right: 40px;
  }

  .menu-filters-wrapper .filters-wrapper:before {
    left: -40px;
  }

  .woocommerce ul.products li.product {
    width: calc(50% - 20px);
    padding-right: 0px;
    margin-right: 40px;
  }
  .woocommerce ul.products li.product:nth-child(even) {
    margin-right: 0px;
  }

  .menu-filters-wrapper .menu-filters {
    display: none;
  }
  .menu-filters-wrapper .menu-filters.open {
    display: block;
  }
  .menu-filters-wrapper .menu-filters > ul {
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 3;
  }
  .menu-filters-wrapper .menu-filters > ul > li {
    border-bottom: solid 1px #E3E3E3;
    width: 100%;
  }
  .menu-filters-wrapper .menu-filters > ul > li.open .filters-wrapper {
    display: block;
    padding-left: 40px;
    padding-right: 40px;
  }
  .menu-filters-wrapper .menu-filters > ul > li > a {
    display: block;
    padding-left: 40px;
    padding-right: 40px;
  }
  .menu-filters-wrapper .filters-wrapper {
    position: relative;
  }

  .filter-hamburger {
    margin: 30px 0px 20px;
    display: block;
  }

  .no-results {
    width: 100%;
    height: 100%;
  }

  .banner-wrapper .nav-swiper {
    right: auto;
    top: auto;
    position: relative;
  }
  .banner-wrapper .nav-swiper-wrapper {
    position: absolute;
    bottom: 40px;
    left: 120px;
  }
  .banner-wrapper .swiper-slide {
    background-position: 20% center;
  }
  .banner-wrapper .swiper-slide:before {
    content: "";
    background-color: rgba(241, 241, 241, 0.8);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
  }

  .new-is-coming-banner {
    width: calc((100% / 4) + 40px );
  }
}
.woocommerce-loop-product__title {
  font-size: 13px;
  font-weight: 300;
  line-height: 20px;
  color: #727272;
}

.discount-wrapper {
  width: 54px;
  height: 30px;
  background-color: #000000;
  font-weight: 500;
  color: #fff;
  padding: 0 10px;
  box-sizing: border-box;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  position: absolute;
  bottom: 26px;
  left: 0px;
  transition: 0.25s;
}

.details-wrapper {
  padding: 7px 0px;
  position: absolute;
  bottom: 0px;
  background: #fff;
  width: 100%;
  transform: translate(0, 100%);
  transition: 0.25s;
}
.details-wrapper .tooltip {
  position: absolute;
  padding: 5px 8px;
  background-color: #000;
  font-size: 9px;
  font-weight: 500;
  color: #fff;
  opacity: 0;
  transition: 0.25s;
  top: -10px;
  left: 50%;
  transform: translate(-50%, -100%);
  white-space: nowrap;
}
.details-wrapper .tooltip:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: #000 transparent transparent transparent;
  position: absolute;
  bottom: 0px;
  transform: translate(-50%, 100%);
  left: 50%;
}
.details-wrapper ul {
  list-style: none;
  display: flex;
  flex-flow: wrap;
  margin: 0px;
}
.details-wrapper li {
  width: 26px;
  height: 26px;
  margin-right: 10px;
  cursor: pointer;
  position: relative;
}
.details-wrapper li:hover .tooltip {
  opacity: 1;
}
.details-wrapper li:last-child {
  margin-right: 0px;
}
.details-wrapper li.biosource-fabric:before {
  content: url("../images/svg/sustainable-production.svg");
}
.details-wrapper li.biodegradable-fabric:before {
  content: url("../images/svg/biodegradable-fabric.svg");
}
.details-wrapper li.vegan:before {
  content: url("../images/svg/biosource-fabric.svg");
}
.details-wrapper li.certified-fabric:before {
  content: url("../images/svg/certified-fabric.svg");
}
.details-wrapper li.eco-finishing-accessories:before {
  content: url("../images/svg/eco-finishing.svg");
}
.details-wrapper li.eco-finishing--accessories-:before {
  content: url("../images/svg/eco-finishing.svg");
}
.details-wrapper li.eco-washing:before {
  content: url("../images/svg/eco-washing.svg");
}
.details-wrapper li.natural-base-button-corozzo-nuts:before {
  content: url("../images/svg/natural-buttons.svg");
}
.details-wrapper li.natural-based-buttons--corozzo-nuts-:before {
  content: url("../images/svg/natural-buttons.svg");
}
.details-wrapper li.zippers-made-of-recycled-material--natulon-:before {
  content: url("../images/svg/recycled-zippers.svg");
}
.details-wrapper li.suitainable-production:before {
  content: url("../images/svg/vegan.svg");
}
.details-wrapper li.sustainable-production:before {
  content: url("../images/svg/vegan.svg");
}

@media (max-width: 768px) {
  .ide-wrapper {
    background-image: url("../images/png/shutterstock_60090362011@2x.png");
    background-position: bottom center;
  }
  .ide-wrapper .left {
    width: 100%;
    order: 2;
  }
  .ide-wrapper .right {
    width: 100%;
    order: 1;
  }
  .ide-wrapper .square {
    left: 50%;
  }

  .the-brand-wrapper .left {
    width: 100%;
  }
  .the-brand-wrapper .left .image {
    padding-right: 0px;
  }
  .the-brand-wrapper .right {
    width: 100%;
    padding-right: 0px;
  }

  .product-gallery .swiper-container {
    left: -20px;
  }

  .section, article.page, article.product {
    padding-left: 20px;
    padding-right: 20px;
  }

  .woocommerce .newsletter-wrapper {
    left: -20px;
  }
  .woocommerce .seo-wrapper {
    left: -20px;
  }

  .not-race-community-wrapper .text-wrapper .left {
    width: 100%;
  }
  .not-race-community-wrapper .text-wrapper .right {
    width: 100%;
  }
  .not-race-community-wrapper .text-wrapper .right .description .col-50:first-child {
    padding-top: 30px;
  }
  .not-race-community-wrapper .swiper-slide {
    padding-bottom: 100%;
  }

  .newsletter-wrapper .tnp-field-email {
    width: 100%;
    margin-bottom: 20px;
  }

  .footer-wrapper {
    padding-top: 50px;
    padding-bottom: 0px;
  }
  .footer-wrapper .left {
    width: 100%;
    margin-bottom: 50px;
  }
  .footer-wrapper .right {
    width: 100%;
  }

  .page-idea .list-section > div:nth-child(odd) .left {
    padding-right: 0px;
  }
  .page-idea .list-section > div:nth-child(odd) .right {
    padding-right: 0px;
  }
  .page-idea .list-section > div:nth-child(even) {
    padding-left: 0px;
  }
  .page-idea .list-section > div:nth-child(even) .left {
    padding-right: 0px;
  }
  .page-idea .list-section > div:nth-child(even) .right {
    padding-right: 0px;
  }

  .menu-mobile .menu > li > a {
    padding-left: 20px;
    padding-right: 20px;
  }
  .menu-mobile .sub-menu {
    padding: 0 20px;
  }

  .page-idea .section-1 .left {
    padding-right: 0px;
  }
  .page-idea .section-1 .right {
    padding-right: 0px;
  }

  .page-brand-section-brand:before {
    display: none;
  }
  .page-brand-section-brand .left {
    width: 100%;
    padding-right: 0px;
  }
  .page-brand-section-brand .right {
    width: 100%;
    padding-right: 0px;
  }

  .products-list > ul > li {
    margin-right: 0px;
    width: 100%;
  }

  .just-arrived-wrapper .title-section {
    margin-bottom: 20px;
  }

  .list-category-products li {
    width: 100%;
    padding-bottom: 100%;
  }

  .what-interests-you-wrapper .title-section {
    margin-bottom: 20px;
  }

  .products-list.products-list-slider .swiper-container {
    width: calc(100% + 20px);
  }
  .products-list.products-list-slider li {
    width: calc(50% - 60px);
  }

  .product-gallery .swiper-slide {
    padding-bottom: 100%;
  }
  .product-gallery .swiper-btn {
    display: block;
  }

  .product-gallery .left {
    width: 100%;
  }
  .product-gallery .right {
    width: 100%;
    padding-left: 0px;
  }
  .product-gallery .heading {
    padding-bottom: 0px;
  }

  .header-shop-wrapper .search {
    display: none;
  }
  .header-shop-wrapper .hamburger {
    right: 20px;
  }

  .menu-filters-wrapper .filters-wrapper:before {
    left: -20px;
  }

  .woocommerce ul.products li.product {
    width: 100%;
    margin-right: 0px;
  }

  .header-wrapper {
    padding-top: 21px;
    padding-bottom: 21px;
  }
  .header-wrapper.open .menu-menu-en-container {
    display: block;
    height: 100vh;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0px;
    width: 100%;
    padding-top: 69px;
  }
  .header-wrapper.open .menu {
    flex-direction: column;
    border-top: solid 1px #E3E3E3;
  }
  .header-wrapper.open .menu li {
    margin-right: 0px;
  }
  .header-wrapper.open .menu li.current-menu-item a {
    text-decoration: none;
    font-weight: 500;
  }
  .header-wrapper.open .menu li.current-menu-item a:before {
    display: none;
  }
  .header-wrapper.open .menu a, .header-wrapper.open .menu span {
    padding: 20px 20px 19px;
    display: block;
    border-bottom: solid 1px #E3E3E3;
  }
  .header-wrapper .hamburger {
    display: block;
    top: 23px;
    right: 20px;
  }
  .header-wrapper .menu-menu-en-container {
    display: none;
  }
  .header-wrapper .logo img {
    width: 132px;
  }

  .banner-wrapper .nav-swiper {
    right: 20px;
  }
  .banner-wrapper .swiper-slide {
    background-position: 40% center;
  }
  .banner-wrapper .swiper-slide:after {
    width: calc(100% - 40px);
  }
  .banner-wrapper .swiper-container {
    height: calc(100vh - 50px);
  }
  .banner-wrapper .description {
    margin-bottom: 40px;
  }

  .new-is-coming-wrapper {
    display: block;
  }

  .new-is-coming-banner {
    display: none;
  }
}
@media (max-width: 600px) {
  .carousel-banner-wrapper {
    padding-top: 110px;
  }
  .carousel-banner-wrapper .center-content {
    position: relative;
    top: 0;
    transform: translate(0, 0%);
  }
  .carousel-banner-wrapper .image {
    width: 100%;
    left: 0;
    transform: translate(0%, 0);
    margin-top: 40px;
  }
}
.breadcrumbs-wrapper {
  width: 100%;
}

.woocommerce-account .entry-content .woocommerce {
  display: flex;
  flex-flow: wrap;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  width: calc(100% / 12 * 3);
  margin-top: 10px;
  position: relative;
  text-transform: uppercase;
}

.woocommerce-MyAccount-navigation .heading-3 {
  margin-bottom: 20px;
  display: inline-block;
}

.woocommerce-MyAccount-navigation li {
  list-style: none;
  margin-bottom: 10px;
}

.woocommerce-MyAccount-navigation li a {
  text-decoration: none;
  color: #000;
}

.woocommerce-MyAccount-navigation-link.is-active a, .woocommerce-MyAccount-navigation-link a:hover {
  text-decoration: underline;
}

.woocommerce-account .woocommerce-MyAccount-content {
  width: calc(100% / 12 * 9);
  position: relative;
  min-height: 374px;
  padding-bottom: 80px;
}

.woocommerce-MyAccount-content .dashboard {
  width: 66.66%;
}

.woocommerce-account .heading-1 {
  width: 100%;
}

.woocommerce-MyAccount-content .heading-1 {
  margin-bottom: 20px;
  display: block;
  text-transform: uppercase;
}

.woocommerce-MyAccount-content a, .woocommerce-message a {
  text-decoration: underline;
  color: #727272;
}

.woocommerce-MyAccount-content .btn-default {
  color: #fff;
  text-decoration: none;
}

.woocommerce-address-fields label, .woocommerce-EditAccountForm label {
  color: #292A2E;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px !important;
  letter-spacing: 0.56px;
  display: block;
  margin-bottom: 8px;
}

.woocommerce .woocommerce-address-fields .btn-default, .woocommerce .woocommerce-EditAccountForm .btn-default {
  margin-top: 20px;
}

.woocommerce button.button.btn-default {
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  padding: 16px 40px;
  background-color: #000000;
  color: #fff;
  transition: 0.25s;
  outline: 0;
}

.woocommerce form .form-row .required {
  visibility: visible;
  font-size: 0;
  position: relative;
  color: #292A2E;
}

.woocommerce form .form-row .required:before {
  content: "*";
  position: absolute;
  top: -15px;
  left: -3px;
  font-size: 14px;
  line-height: 1;
}

.woocommerce-address-fields input, .woocommerce-EditAccountForm input, .woocommerce-address-fields .selectric-wrapper {
  width: calc(100% / 9 * 4);
}

.d-flex {
  display: flex;
  flex-flow: row wrap;
}

.woocommerce-MyAccount-content .woocommerce-orders-table__header, .woocommerce-orders-table__row .woocommerce-orders-table__cell {
  width: calc(100% / 9 * 2);
  font-family: "poppins";
}

.woocommerce-orders-table__header.woocommerce-orders-table__header-order-actions {
  display: none;
}

.woocommerce-MyAccount-content .woocommerce-orders-table__header:last-child, .woocommerce-orders-table__row .woocommerce-orders-table__cell:last-child {
  width: calc(100% / 9);
}

.woocommerce-orders-table__row {
  padding: 20px 0;
  border-bottom: 1px solid #E7E8F0;
  color: #595C64;
  font-size: 15px;
  line-height: 23px;
  font-family: "Lato";
  position: relative;
}

.woocommerce-orders-table__cell .heading-5 {
  display: none;
}

.woocommerce-orders-table__row a {
  color: #595C64;
  font-size: 15px;
  line-height: 23px;
  text-decoration: none;
  font-family: Poppins;
}

.woocommerce-orders-table__cell-order-status .completed,
.order-status .completed {
  color: #499C2D;
}

.woocommerce-orders-table__cell-order-status .processing,
.order-status .processing {
  color: #FFB800;
}

.woocommerce-orders-table__cell-order-status .error,
.order-status .error {
  color: #FF4B4B;
}

.woocommerce .woocommerce-orders-table__cell-order-actions .button {
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
  float: right;
  background-color: transparent;
  padding: 0px;
}
.woocommerce .woocommerce-orders-table__cell-order-actions .button:hover {
  background-color: transparent;
}

.woocommerce-orders-table__cell-order-actions .button:before {
  content: "";
  font-family: "icomoon";
  position: absolute;
  font-size: 24px;
  top: 0;
  left: 0;
  color: #A4A8BA;
}

.woocommerce-MyAccount-content .back-link {
  align-self: center;
}

.woocommerce-MyAccount-content .order-number.h1-u {
  display: flex;
  flex-flow: wrap;
}

.woocommerce-account .heading-1 {
  width: 100%;
}

.woocommerce-MyAccount-content .order-date {
  margin-right: 40px;
}

.woocommerce-MyAccount-content .order-date span:nth-child(1), .woocommerce-MyAccount-content .order-status span:nth-child(1) {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.32px;
  font-weight: 500;
  color: #292A2E;
  display: inline-block;
  margin-right: 20px;
}

.woocommerce-table--order-details .head {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  margin-bottom: 8px;
  margin-top: 40px;
}

.woocommerce-table--order-details .head .right {
  width: 180px;
  display: flex;
  flex-flow: wrap;
}

.woocommerce-table--order-details .head .right span {
  width: 50%;
}

.address-header {
  padding-bottom: 30px;
  position: relative;
}

.woocommerce-Addresses {
  display: flex;
  flex-flow: wrap;
  margin-top: 40px;
}

.woocommerce-Addresses .u-column1, .woocommerce-Addresses .u-column2 {
  width: calc(100% / 9 * 4);
}

.woocommerce-Address address {
  display: block;
  margin: 20px 0 30px;
}

.address-header:before {
  content: "";
  position: absolute;
  height: 1px;
  background: #E7E8F0;
  width: calc(100% / 9 * 8);
  bottom: 0;
  left: 0;
}

.woocommerce-account .selectric {
  background: transparent;
}
.woocommerce-account .selectric .label {
  color: #000;
  line-height: 48px;
  height: 48px;
  margin-left: 16px;
}
.woocommerce-account .selectric .button {
  width: 48px;
  height: 48px;
  background: transparent;
}

.change-the-password-wrapper {
  padding-top: 20px;
}

.change-the-password-wrapper .heading-4 {
  margin-bottom: 19px;
  display: block;
  text-transform: uppercase;
}

.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
  font-family: Poppins;
  font-size: 13px;
  line-height: 20px;
  font-weight: 300;
}

.woocommerce form .form-row {
  padding: 0px;
  margin: 0px;
}

.woocommerce .woocommerce-address-fields .form-row, .woocommerce .woocommerce-EditAccountForm .form-row {
  margin-bottom: 20px;
}

.woocommerce form .show-password-input, .woocommerce-page form .show-password-input {
  right: 18px;
  top: 18px;
}

.woocommerce .woocommerce-form-login .woocommerce-form-row {
  margin-bottom: 20px;
}

.woocommerce-form .woocommerce-form-login__rememberme {
  margin-bottom: 10px;
}

.woocommerce-LostPassword {
  align-self: center;
}
.woocommerce-LostPassword a {
  color: #000;
}

.info-register .heading-2 {
  margin-bottom: 13px;
  display: block;
}

.info-register-wrapper {
  width: calc(100% / 12 * 8);
  position: relative;
}

.info-register {
  border-radius: 10px;
  border: solid 1px #E7E8F0;
  padding: 24px 38px 40px;
  width: calc(100% / 8 * 6);
  margin-left: calc(100% / 8);
  box-sizing: border-box;
  position: relative;
  margin-top: 58px;
}

.login-register-woocommerce {
  width: 100%;
  padding-bottom: 100px;
  order: 3;
}

.login-woocommerce {
  width: calc(100% / 12 * 4);
  position: relative;
}

.woocommerce-ResetPassword {
  margin-top: 20px;
  width: 100%;
  padding-bottom: 80px;
}

.woocommerce-ResetPassword .f-paragraph-2 {
  width: 50%;
  margin-bottom: 40px;
}

.woocommerce .woocommerce-ResetPassword .woocommerce-form-row {
  margin-bottom: 40px;
}

@media (min-width: 851px) {
  .woocommerce-MyAccount-navigation .swiper-wrapper {
    display: flex;
    flex-flow: row wrap;
    width: auto;
    box-sizing: border-box;
    flex-direction: column;
  }

  .woocommerce-MyAccount-navigation li {
    width: auto;
    height: auto;
    position: relative;
  }
}
@media (max-width: 850px) {
  .woocommerce-MyAccount-content {
    width: calc(100% - 180px - 8%);
  }

  .woocommerce-orders .woocommerce-MyAccount-content {
    width: 100%;
  }

  .woocommerce-MyAccount-navigation.swiper-container {
    padding-right: 0px;
    width: 100%;
    padding-bottom: 13px;
    padding-top: 14px;
    margin-bottom: 20px;
  }

  .header-bottom .menu-categories {
    flex-flow: nowrap;
  }

  .woocommerce-MyAccount-navigation .heading-3 {
    display: none;
  }

  .woocommerce-MyAccount-navigation li {
    margin-right: 30px;
    width: auto;
    height: auto;
    position: relative;
    margin-bottom: 0;
  }

  .woocommerce-MyAccount-navigation li a {
    color: #292A2E;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.56px;
    font-weight: 500;
  }

  .woocommerce-MyAccount-content {
    width: 100%;
    min-height: auto;
    order: 3;
  }

  .woocommerce-account .breadcrumbs-wrapper {
    order: 2;
  }

  .woocommerce-MyAccount-navigation {
    order: 1;
    width: 100%;
    border-bottom: solid 1px #E7E8F0;
    border-top: solid 1px #E7E8F0;
  }

  .woocommerce-account .woocommerce-MyAccount-content {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .woocommerce form .form-row-first, .woocommerce form .form-row-last, .woocommerce-page form .form-row-first, .woocommerce-page form .form-row-last {
    width: 100%;
  }

  .woocommerce-Addresses .u-column1, .woocommerce-Addresses .u-column2 {
    width: 100%;
  }

  .woocommerce-Addresses .u-column1 {
    margin-bottom: 40px;
  }

  .woocommerce-address-fields input, .woocommerce-EditAccountForm input, .woocommerce-address-fields .selectric-wrapper {
    width: 100%;
  }

  .woocommerce-orders-table__cell .heading-5 {
    display: inline-block;
    margin-right: 5px;
    color: #292A2E;
  }

  .woocommerce-orders-table__row .woocommerce-orders-table__cell {
    width: 100%;
    margin-bottom: 2px;
  }

  .woocommerce-orders-table > div:nth-child(1) {
    display: none;
  }

  .woocommerce-MyAccount-content .woocommerce-orders-table__header:last-child, .woocommerce-orders-table__row .woocommerce-orders-table__cell:last-child {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(-100%, -50%);
  }

  .woocommerce-orders-table__row:first-child {
    padding-top: 0;
  }

  .login-woocommerce {
    width: 100%;
  }

  .info-register-wrapper {
    width: 100%;
  }

  .info-register {
    width: 100%;
    margin-left: 0;
  }

  .woocommerce-ResetPassword .f-paragraph-2 {
    width: 100%;
  }
}

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