.nice-select {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #e8e8e8;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  height: 38px;
  line-height: 36px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto;
}

.nice-select:hover {
  border-color: #dbdbdb;
}

.nice-select.open, .nice-select:active, .nice-select:focus {
  border-color: #999;
}

.nice-select:after {
  border-bottom: 2px solid #999;
  border-right: 2px solid #999;
  content: "";
  display: block;
  height: 5px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 5px;
}

.nice-select.open:after {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.nice-select.open .nice-select-dropdown {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}

.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}

.nice-select.disabled:after {
  border-color: #ccc;
}

.nice-select.wide {
  width: 100%;
}

.nice-select.wide .nice-select-dropdown {
  left: 0 !important;
  right: 0 !important;
}

.nice-select.right {
  float: right;
}

.nice-select.right .nice-select-dropdown {
  left: auto;
  right: 0;
}

.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}

.nice-select.small:after {
  height: 4px;
  width: 4px;
}

.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}

.nice-select .nice-select-dropdown {
  margin-top: 4px;
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-19px);
  transform: scale(0.75) translateY(-19px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
  opacity: 0;
}

.nice-select .list {
  border-radius: 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  padding: 0;
  max-height: 210px;
  overflow-y: auto;
}

.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.nice-select .option.focus, .nice-select .option.selected.focus, .nice-select .option:hover {
  background-color: #f6f6f6;
}

.nice-select .option.selected {
  font-weight: 700;
}

.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

.no-csspointerevents .nice-select .nice-select-dropdown {
  display: none;
}

.no-csspointerevents .nice-select.open .nice-select-dropdown {
  display: block;
}

.nice-select .list::-webkit-scrollbar {
  width: 0;
}

.nice-select .has-multiple {
  white-space: inherit;
  height: auto;
  padding: 7px 12px;
  min-height: 36px;
  line-height: 22px;
}

.nice-select .has-multiple span.current {
  border: 1px solid #ccc;
  background: #eee;
  padding: 0 10px;
  border-radius: 3px;
  display: inline-block;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 3px;
  margin-right: 3px;
}

.nice-select .has-multiple .multiple-options {
  display: block;
  line-height: 24px;
  padding: 0;
}

.nice-select .nice-select-search-box {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 5px;
  pointer-events: none;
  border-radius: 5px 5px 0 0;
}

.nice-select .nice-select-search {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
  color: #444;
  display: inline-block;
  vertical-align: middle;
  padding: 7px 12px;
  margin: 0 10px 0 0;
  width: 100%;
  min-height: 36px;
  line-height: 22px;
  height: auto;
  outline: 0 !important;
  font-size: 14px;
}

body {
  font-family: "Roboto Slab", serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

body {
  background-color: #FAFAFA;
}

.title-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid #D0D0D0;
  border-bottom: 1px solid #D0D0D0;
  margin-bottom: 16px;
}
.title-section h3 {
  font-weight: 700;
  font-size: 33px;
  line-height: 124%;
  color: #040404;
}
@media (max-width: 600px) {
  .title-section h3 {
    font-size: 20px;
  }
}
.title-section .slider-controls {
  margin-left: 30px;
}
@media (max-width: 600px) {
  .title-section {
    margin-bottom: 0px;
  }
}
.title-section button {
  background: none;
  border: none;
  outline: none;
  padding: none;
  cursor: pointer;
}
.title-section button svg path {
  transition: 300ms all ease;
}
.title-section button.disabled svg path {
  stroke: #a1a1a1 !important;
}
.title-section .slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mille-single-product {
  background-color: #FFFFFF;
  width: 100%;
  max-width: calc(25% - 18px);
  margin-right: 24px;
  transition: 500ms all ease;
  position: relative;
}
@media (max-width: 600px) {
  .mille-single-product {
    width: 280px;
    min-width: 280px;
  }
}
.mille-single-product:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.mille-single-product .content {
  padding: 0px 16px 24px 16px;
}
@media (max-width: 600px) {
  .mille-single-product .content {
    padding: 0px 8px 24px 8px;
  }
}
.mille-single-product .prod-title {
  font-weight: 500;
  font-size: 19px;
  line-height: 124%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 600px) {
  .mille-single-product .prod-title {
    font-size: 17px;
  }
}
.mille-single-product > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mille-single-product .prod-img {
  display: flex;
  margin-bottom: 32px;
}
.mille-single-product .prod-img img {
  width: 100%;
  height: 100%;
  max-height: 262px;
  min-height: 262px;
  object-fit: cover;
  object-position: top;
}
@media (max-width: 600px) {
  .mille-single-product .prod-img img {
    min-height: 262px;
  }
}
.mille-single-product h3 {
  font-weight: 500;
  font-size: 19px;
  line-height: 124%;
  color: #000000;
}
.mille-single-product .prod-price {
  margin-top: 8px;
  font-size: 14px;
  line-height: 120%;
  color: #000000;
}

.wrapper {
  min-height: 70vh;
}

body.single-product main {
  max-width: 1224px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1300px) {
  body.single-product .type-product {
    padding-left: 16px;
    padding-right: 16px;
  }
}

body.woocommerce-wishlist {
  padding-top: 122px;
}
@media (max-width: 1300px) {
  body.woocommerce-wishlist {
    padding-top: 102px;
  }
}
body.woocommerce-wishlist main {
  max-width: 1224px;
  margin-left: auto;
  margin-right: auto;
}
body.woocommerce-wishlist .wishlist_table {
  border: none;
  padding: 0;
  border-collapse: collapse;
}
body.woocommerce-wishlist .wishlist_table thead {
  display: none;
}
body.woocommerce-wishlist .wishlist_table td {
  border-top: none;
  border-bottom: 1px solid #D0D0D0;
  padding-bottom: 16px;
  padding-top: 16px;
}
body.woocommerce-wishlist .wishlist_table td img {
  width: 140px;
  min-width: 140px;
  height: 140px;
  object-fit: cover;
}
body.woocommerce-wishlist .wishlist_table td.product-thumbnail {
  width: 140px;
}
body.woocommerce-wishlist .wishlist_table a.remove {
  width: 20px;
  height: 20px;
  color: #0D0D0D !important;
  font-size: 45px !important;
  line-height: 0 !important;
  font-weight: 300 !important;
  background: none !important;
}
body.woocommerce-wishlist .wishlist_table .product-price {
  text-align: right;
}
body.woocommerce-wishlist .wishlist_table .product-price span {
  font-weight: 400;
  font-size: 16px;
  line-height: 124%;
  color: #040404;
  text-decoration: none;
}
body.woocommerce-wishlist .wishlist_table .product-remove {
  width: 30px;
}
body.woocommerce-wishlist .wishlist_table .product-name a {
  font-weight: 400;
  font-size: 16px;
  line-height: 124%;
  color: #040404;
  text-decoration: none;
}
body.woocommerce-wishlist .wishlist_table .product-name .variation {
  display: flex !important;
  gap: 4px !important;
  margin-top: 5px;
}
body.woocommerce-wishlist .wishlist_table .product-name .variation dt {
  margin-right: 0 !important;
  font-weight: 700;
  font-size: 13px;
  line-height: 150%;
  color: #151515;
}
body.woocommerce-wishlist .wishlist_table .product-name .variation dd {
  margin-right: 4px;
  font-size: 13px;
  line-height: 150%;
  color: #151515;
}
body.woocommerce-wishlist .wishlist_table td.product-thumbnail a {
  width: 140px;
  min-width: 140px;
  max-width: 140px;
}
body.woocommerce-wishlist .wishlist-title {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
  pointer-events: none;
}
body.woocommerce-wishlist .wishlist-title h2 {
  font-weight: 700;
  font-size: 33px;
  line-height: 124%;
  text-align: center;
  color: #040404;
}
@media (max-width: 600px) {
  body.woocommerce-wishlist .wishlist-title h2 {
    font-size: 24px;
  }
}
body.woocommerce-wishlist .show-title-form {
  display: none;
}

.woocommerce-message,
.woocommerce-info {
  border-top-color: #040404;
  background-color: #ffffff;
  color: #040404;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.woocommerce-message:before,
.woocommerce-info:before {
  color: #040404;
}
.woocommerce-message a,
.woocommerce-info a {
  color: #040404;
}
.woocommerce-message .button,
.woocommerce-info .button {
  border-radius: 0 !important;
  background: #040404 !important;
  color: #ffffff !important;
  font-weight: 400 !important;
  transition: 300ms all ease;
}
.woocommerce-message .button:hover,
.woocommerce-info .button:hover {
  background: #222222 !important;
}

.wishlist-empty {
  font-size: 22px;
}

body.single-product {
  padding-top: 100px;
}
@media (max-width: 1300px) {
  body.single-product {
    padding-top: 80px;
  }
  body.single-product .product-type-simple {
    padding-left: 16px;
    padding-right: 16px;
  }
}
body.single-product .recent-products .container {
  padding: 0 !important;
}

.woocommerce-product-gallery__trigger {
  display: none;
}

.woocommerce-product-gallery--with-images {
  display: flex;
  flex-direction: row-reverse;
  gap: 16px;
}
@media (max-width: 1300px) {
  .woocommerce-product-gallery--with-images {
    flex-direction: column;
  }
}

.woocommerce-product-gallery .flex-control-nav {
  display: flex;
  flex-direction: column;
  min-width: 106px;
  max-width: unset;
  margin-right: 16px;
  gap: 16px;
}
@media (max-width: 1300px) {
  .woocommerce-product-gallery .flex-control-nav {
    flex-direction: row;
  }
}
.woocommerce-product-gallery li {
  min-width: 106px;
}
.woocommerce-product-gallery li img.flex-active {
  border: 2px solid #737373;
}

.woocommerce-product-gallery__wrapper {
  display: flex;
  width: 100%;
}
.woocommerce-product-gallery__wrapper > div {
  width: 100%;
}
.woocommerce-product-gallery__wrapper img {
  height: 100% !important;
  object-fit: cover;
}

.woocommerce div.product div.images .flex-control-thumbs li img {
  opacity: 1;
}

.single-product .entry-summary h2 {
  font-weight: 700;
  font-size: 28px;
  line-height: 124%;
  color: #151515;
  margin-bottom: 12.5px;
}
.single-product .price {
  margin-bottom: 16px;
}
.single-product .woocommerce-product-details__short-description {
  margin-bottom: 24px;
}
.single-product .woocommerce-product-details__short-description p {
  font-family: "Mulish";
  font-weight: 400;
  font-size: 13px;
  line-height: 150%;
  color: #151515;
}

.single-product .variations {
  margin-bottom: 0 !important;
}
.single-product .variations .label {
  display: flex !important;
}
.single-product .variations .label label {
  font-weight: 400 !important;
}
.single-product .variations th {
  font-weight: 400;
  font-size: 16px;
  line-height: 124%;
}
.single-product .variations tr {
  display: block;
  margin-bottom: 24px;
}
.single-product .variations .button-variable-items-wrapper li {
  padding: 8px 16px !important;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  text-align: center;
  color: #151515;
  border: 1px solid #D0D0D0 !important;
  background: transparent;
  border-radius: 0 !important;
  transition: 300ms all ease;
  outline: none !important;
  box-shadow: none !important;
}
.single-product .variations .button-variable-items-wrapper li span {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
}
.single-product .variations .button-variable-items-wrapper li.selected {
  color: #ffffff !important;
  border: 1px solid #151515 !important;
  background: #151515 !important;
}
.single-product .variations .reset_variations {
  display: none !important;
}

.single-product .woocommerce-variation-price {
  margin-bottom: 24px;
}

.quantity {
  margin-right: 0px !important;
}
.quantity input {
  font-weight: 500;
  font-size: 19px;
  line-height: 124%;
  color: #444444;
  outline: none;
  border: none;
  background: transparent;
}
@media (max-width: 600px) {
  .quantity input {
    pointer-events: none;
  }
}

.quantity__holder {
  margin-right: 16px;
}

.quantity__holder .quantity {
  border: 1px solid #D0D0D0;
  width: 137px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single_product_flex_container {
  display: flex;
  gap: 12px 0px;
}
@media (max-width: 768px) {
  .single_product_flex_container {
    flex-wrap: wrap;
  }
}
.single_product_flex_container .quantity__holder,
.single_product_flex_container .add_to_cart_container {
  display: flex;
}
.single_product_flex_container .quantity__holder {
  display: flex;
  align-items: center;
  position: relative;
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}
.single_product_flex_container .quantity__holder .minus,
.single_product_flex_container .quantity__holder .plus {
  display: flex;
  position: absolute;
  cursor: pointer;
  z-index: 99;
}
.single_product_flex_container .quantity__holder .minus {
  left: 10px;
}
.single_product_flex_container .quantity__holder .plus {
  right: 10px;
}
.single_product_flex_container .quantity__holder input::-webkit-outer-spin-button,
.single_product_flex_container .quantity__holder input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.single_product_flex_container .quantity__holder input[type=number] {
  -moz-appearance: textfield;
}

.single_add_to_cart_button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px !important;
  background: #040404 !important;
  border-radius: 2px !important;
  min-width: 304px !important;
  height: 56px !important;
  transition: 300ms all ease;
}
.single_add_to_cart_button:hover {
  background: #222222 !important;
}

.wc-tab .woocommerce-product-attributes.shop_attributes {
  margin-top: 10px;
  border: none;
}
.wc-tab .woocommerce-product-attributes.shop_attributes th, .wc-tab .woocommerce-product-attributes.shop_attributes td {
  padding: 0 !important;
  border: none;
  background: none !important;
  text-align: left;
  font-style: normal;
}

.product_breadcrumb {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
}
.product_breadcrumb div {
  font-family: "Mulish";
  font-weight: 400;
  font-size: 13px;
  line-height: 150%;
  color: #737373;
}
.product_breadcrumb div a {
  font-family: "Mulish";
  font-weight: 400;
  font-size: 13px;
  line-height: 150%;
  color: #737373;
  text-decoration: none;
  transition: 300ms all ease;
}
.product_breadcrumb div a:hover {
  color: #151515;
}
.product_breadcrumb div.current {
  color: #151515;
}

body.single-product .related-products {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 80px;
}
@media (max-width: 600px) {
  body.single-product .related-products {
    margin-top: 40px;
  }
}

.woocommerce-Tabs-panel h2, .woocommerce-Tabs-panel h3, .woocommerce-Tabs-panel h4, .woocommerce-Tabs-panel h5, .woocommerce-Tabs-panel h6 {
  font-weight: 500;
}
.woocommerce-Tabs-panel p {
  font-family: "Mulish";
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #040404;
  margin: 16px 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after {
  display: none;
}

.wc-tabs {
  padding: 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: none !important;
  padding: 5px 0px;
  margin: 0 !important;
  margin-right: 20px !important;
  border: none;
  border-bottom: 3px solid transparent;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  transition: 300ms all ease;
  font-weight: 500 !important;
  font-size: 19px !important;
  line-height: 124% !important;
  color: #737373 !important;
  font-family: "Roboto Slab" !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  border-bottom: 3px solid #040404;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: #040404 !important;
}

.product_meta {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  display: none;
}

.wc-tab .woocommerce-product-attributes.shop_attributes th {
  font-family: "Mulish";
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #040404;
}

.single_add_to_cart_button + .yith-wcwl-add-to-wishlist {
  display: flex;
  align-items: center;
  margin-top: 0;
}
.single_add_to_cart_button + .yith-wcwl-add-to-wishlist a {
  margin-left: 16px;
}
.single_add_to_cart_button + .yith-wcwl-add-to-wishlist a span {
  display: none;
}
.single_add_to_cart_button + .yith-wcwl-add-to-wishlist a i {
  color: #040404;
  font-size: 18px;
  font-weight: 700;
}
.single_add_to_cart_button + .yith-wcwl-add-to-wishlist [data-title="Browse wishlist"] {
  display: none;
}
.single_add_to_cart_button + .yith-wcwl-add-to-wishlist .feedback {
  display: flex;
  align-items: center;
  margin-left: 15px;
  height: 56px;
}
.single_add_to_cart_button + .yith-wcwl-add-to-wishlist .feedback:not(i) {
  color: transparent;
}
.single_add_to_cart_button + .yith-wcwl-add-to-wishlist .feedback i {
  color: #040404;
}

body.woocommerce-cart {
  padding-top: 100px;
}
@media (max-width: 1300px) {
  body.woocommerce-cart {
    padding-top: 80px;
  }
  body.woocommerce-cart .product-remove {
    width: auto !important;
  }
  body.woocommerce-cart .cart-collaterals tr th, body.woocommerce-cart .cart-collaterals tr td {
    width: 100%;
    text-align: left !important;
  }
}
@media (max-width: 768px) {
  body.woocommerce-cart .shop_table td {
    border: none !important;
    padding: 8px 0;
  }
  body.woocommerce-cart .quantity__holder input[type=number] {
    pointer-events: none;
  }
  body.woocommerce-cart .woocommerce-cart-form__cart-item.cart_item {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #040404;
  }
  body.woocommerce-cart .woocommerce table.shop_table_responsive tr, body.woocommerce-cart .woocommerce-page table.shop_table_responsive tr {
    display: flex;
    flex-wrap: wrap;
  }
  body.woocommerce-cart .woocommerce table.shop_table_responsive tr .product-remove, body.woocommerce-cart .woocommerce-page table.shop_table_responsive tr .product-remove {
    width: 100% !important;
    padding-bottom: 0;
  }
  body.woocommerce-cart .woocommerce table.shop_table_responsive tr .product-remove a, body.woocommerce-cart .woocommerce-page table.shop_table_responsive tr .product-remove a {
    background: #040404 !important;
    padding: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px !important;
    line-height: 0 !important;
    color: #ffffff !important;
    padding-bottom: 14px;
  }
  body.woocommerce-cart .woocommerce table.shop_table_responsive tr .product-quantity, body.woocommerce-cart .woocommerce-page table.shop_table_responsive tr .product-quantity {
    width: fit-content;
    margin-top: auto;
    margin-bottom: auto;
  }
  body.woocommerce-cart .woocommerce table.shop_table_responsive tr .product-subtotal, body.woocommerce-cart .woocommerce-page table.shop_table_responsive tr .product-subtotal {
    padding: 0;
    margin-top: auto;
    margin-bottom: auto;
  }
  body.woocommerce-cart .woocommerce table.shop_table_responsive tr .product-subtotal *, body.woocommerce-cart .woocommerce-page table.shop_table_responsive tr .product-subtotal * {
    font-weight: 700;
    font-size: 20px;
  }
  body.woocommerce-cart .woocommerce table.shop_table_responsive tr .product-thumbnail, body.woocommerce-cart .woocommerce-page table.shop_table_responsive tr .product-thumbnail {
    width: fit-content;
  }
  body.woocommerce-cart .woocommerce table.shop_table_responsive tr .product-thumbnail a,
body.woocommerce-cart .woocommerce table.shop_table_responsive tr .product-thumbnail img, body.woocommerce-cart .woocommerce-page table.shop_table_responsive tr .product-thumbnail a,
body.woocommerce-cart .woocommerce-page table.shop_table_responsive tr .product-thumbnail img {
    width: 100px;
    min-width: 100px;
    max-width: 100px;
    max-height: 100px;
  }
  body.woocommerce-cart .woocommerce table.shop_table_responsive tr .product-name, body.woocommerce-cart .woocommerce-page table.shop_table_responsive tr .product-name {
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 20px;
    margin-right: 20px;
  }
}
body.woocommerce-cart main {
  max-width: 1224px;
  margin-left: auto;
  margin-right: auto;
}
body.woocommerce-cart .woocommerce #content table.cart .product-thumbnail, body.woocommerce-cart .woocommerce table.cart .product-thumbnail, body.woocommerce-cart .woocommerce-page #content table.cart .product-thumbnail, body.woocommerce-cart .woocommerce-page table.cart .product-thumbnail {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  body.woocommerce-cart .product-name,
body.woocommerce-cart .product-subtotal {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}
body.woocommerce-cart .woocommerce table.shop_table_responsive tr:nth-child(2n) td, body.woocommerce-cart .woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
  background-color: transparent;
}
body.woocommerce-cart .woocommerce table.shop_table_responsive tr td::before, body.woocommerce-cart .woocommerce-page table.shop_table_responsive tr td::before {
  display: none !important;
}
@media (max-width: 1300px) {
  body.woocommerce-cart .woocommerce {
    padding-left: 13px;
    padding-right: 13px;
  }
  body.woocommerce-cart .woocommerce .recent-products {
    margin-top: 60px;
  }
  body.woocommerce-cart .woocommerce .recent-products .container {
    padding: 0 !important;
  }
  body.woocommerce-cart .woocommerce .mille-single-product {
    max-width: calc(50% - 18px);
  }
  body.woocommerce-cart .woocommerce .title-section {
    margin-bottom: 0;
  }
}
@media (max-width: 600px) {
  body.woocommerce-cart .woocommerce .mille-single-product {
    max-width: calc(80% - 18px);
  }
}
body.woocommerce-cart .shop_table {
  border: none;
  padding: 0;
  border-collapse: collapse;
}
@media (max-width: 1300px) {
  body.woocommerce-cart .shop_table {
    margin-bottom: 0 !important;
  }
}
body.woocommerce-cart .shop_table .hidden {
  display: none;
}
body.woocommerce-cart .shop_table th {
  text-align: left !important;
  border-bottom: 1px solid #D0D0D0;
}
body.woocommerce-cart .shop_table td {
  border-top: none;
  border-bottom: 1px solid #D0D0D0;
  padding-bottom: 16px;
  padding-top: 16px;
  text-align: left !important;
}
body.woocommerce-cart .shop_table td img {
  width: 140px;
  min-width: 140px;
  height: 140px;
  object-fit: cover;
}
body.woocommerce-cart .shop_table td.product-thumbnail {
  width: 140px;
}
body.woocommerce-cart .shop_table a.remove {
  width: 20px;
  height: 20px;
  color: #0D0D0D !important;
  font-size: 45px !important;
  line-height: 0 !important;
  font-weight: 300 !important;
  background: none !important;
}
body.woocommerce-cart .shop_table .product-price {
  text-align: right;
}
body.woocommerce-cart .shop_table .product-price span {
  font-weight: 400;
  font-size: 16px;
  line-height: 124%;
  color: #040404;
  text-decoration: none;
}
body.woocommerce-cart .shop_table .product-remove {
  width: 30px;
}
body.woocommerce-cart .shop_table .product-name a {
  font-weight: 400;
  font-size: 16px;
  line-height: 124%;
  color: #040404;
  text-decoration: none;
}
body.woocommerce-cart .shop_table .product-name .variation {
  display: flex !important;
  gap: 4px !important;
  margin-top: 5px;
}
body.woocommerce-cart .shop_table .product-name .variation dt {
  margin-right: 0 !important;
  font-weight: 700;
  font-size: 13px;
  line-height: 150%;
  color: #151515;
}
body.woocommerce-cart .shop_table .product-name .variation dd {
  margin-right: 4px;
  font-size: 13px;
  line-height: 150%;
  color: #151515;
}
body.woocommerce-cart .shop_table td.product-thumbnail a {
  width: 140px;
  min-width: 140px;
  max-width: 140px;
}
body.woocommerce-cart .quantity__holder {
  display: flex;
  align-items: center;
  width: fit-content;
  position: relative;
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}
body.woocommerce-cart .quantity__holder .minus,
body.woocommerce-cart .quantity__holder .plus {
  display: flex;
  position: absolute;
  cursor: pointer;
  z-index: 99;
}
body.woocommerce-cart .quantity__holder .minus {
  left: 10px;
}
body.woocommerce-cart .quantity__holder .plus {
  right: 10px;
}
body.woocommerce-cart .quantity__holder input::-webkit-outer-spin-button,
body.woocommerce-cart .quantity__holder input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
body.woocommerce-cart .quantity__holder input[type=number] {
  -moz-appearance: textfield;
}
body.woocommerce-cart .cart-title-container {
  margin-top: 16px;
  margin-bottom: 57px;
}
body.woocommerce-cart .cart-title-container h5 {
  font-weight: 700;
  font-size: 19px;
  line-height: 124%;
  text-align: center;
  color: #040404;
}
@media (max-width: 768px) {
  body.woocommerce-cart .cart-title-container {
    margin-bottom: 10px;
    margin-top: 40px;
  }
}
body.woocommerce-cart .cart_flex_container {
  display: flex;
  justify-content: center;
  gap: 23px;
}
@media (max-width: 1300px) {
  body.woocommerce-cart .cart_flex_container {
    flex-wrap: wrap;
  }
}
body.woocommerce-cart .cart_flex_container > div {
  width: 100%;
}
body.woocommerce-cart .cart_flex_container .right_col {
  max-width: 392px;
}
@media (max-width: 768px) {
  body.woocommerce-cart .cart_flex_container .right_col {
    max-width: 100%;
  }
}
body.woocommerce-cart .cart_flex_container .cart_totals {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #A1A1A1;
}
body.woocommerce-cart .cart_flex_container .cart_totals table {
  margin-bottom: 0 !important;
}
body.woocommerce-cart .cart_flex_container .cart_totals th, body.woocommerce-cart .cart_flex_container .cart_totals td {
  vertical-align: middle;
  font-weight: 400;
  font-size: 16px;
  line-height: 124%;
  color: #151515;
  padding: 20px 24px;
  border-bottom: 1px solid #D0D0D0 !important;
  border-top: none !important;
}
body.woocommerce-cart .cart_flex_container .cart_totals td {
  text-align: right !important;
}
@media (max-width: 768px) {
  body.woocommerce-cart .cart_flex_container .cart_totals td {
    text-align: left !important;
  }
}
body.woocommerce-cart .cart_flex_container .cart_totals .order-total th,
body.woocommerce-cart .cart_flex_container .cart_totals .order-total td {
  font-weight: 500;
  font-size: 19px;
  line-height: 124%;
  color: #151515;
}
body.woocommerce-cart .related-products {
  margin-top: 120px;
}
body.woocommerce-cart .actions {
  border-bottom: none !important;
  padding-top: 24px !important;
}
body.woocommerce-cart .actions_flex_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  align-items: center;
  gap: 12px 24px;
}
@media (max-width: 600px) {
  body.woocommerce-cart .actions_flex_container > div {
    width: 100%;
  }
}
body.woocommerce-cart .actions_flex_container a,
body.woocommerce-cart .actions_flex_container button {
  min-width: 288px;
  height: 56px;
  font-family: "Mulish";
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #444444;
  transition: 300ms all ease;
  text-decoration: none;
  background: #FFFFFF;
  border: 1px solid #444444;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.woocommerce-cart .actions_flex_container a:hover,
body.woocommerce-cart .actions_flex_container button:hover {
  background: #040404;
  color: #ffffff;
}
body.woocommerce-cart .woocommerce-remove-coupon {
  margin-left: 10px;
  color: #040404;
}
body.woocommerce-cart .wc-proceed-to-checkout {
  padding: 16px;
}
body.woocommerce-cart .wc-proceed-to-checkout a {
  font-family: "Mulish";
  font-weight: 400;
  font-size: 16px !important;
  line-height: 150%;
  color: #FFFFFF !important;
  background: #040404 !important;
  border-radius: 2px;
  margin-bottom: 0 !important;
  transition: 300ms all ease;
  padding-top: 16px !important;
  padding-bottom: 16px !important;
  margin-bottom: 16px !important;
}
body.woocommerce-cart .wc-proceed-to-checkout a:hover {
  background: #222222 !important;
}
body.woocommerce-cart .discount_dropdown {
  background: #FFFFFF;
  border: 1px solid #A1A1A1;
  border-radius: 2px;
  width: 100%;
  padding: 22px;
  text-align: center;
  margin-bottom: 16px;
  transition: 500ms all ease;
  overflow-y: hidden;
  height: 68px;
}
body.woocommerce-cart .discount_dropdown.active {
  height: 240px;
}
body.woocommerce-cart .discount_dropdown .dropdown_btn {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
body.woocommerce-cart .discount_dropdown .dropdown_btn svg {
  transition: 300ms all ease;
  transform-origin: center;
}
body.woocommerce-cart .discount_dropdown.active svg {
  transform: rotate(180deg);
}
body.woocommerce-cart .discount_dropdown .fake_input_btn {
  margin-top: 30px;
}
body.woocommerce-cart .discount_dropdown .fake_input_btn input {
  width: 100%;
  display: block;
  padding: 12px;
  font-family: "Mulish";
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #040404;
}
body.woocommerce-cart .discount_dropdown .fake_input_btn input:placeholder {
  color: #737373;
}
body.woocommerce-cart .discount_dropdown .fake_input_btn button {
  width: 100%;
  border: none;
  margin-top: 16px;
  font-family: "Mulish";
  font-weight: 400;
  font-size: 16px !important;
  line-height: 150%;
  color: #FFFFFF;
  background: #040404 !important;
  border-radius: 2px;
  margin-bottom: 0 !important;
  transition: 300ms all ease;
  padding-top: 16px !important;
  padding-bottom: 16px !important;
  margin-bottom: 16px !important;
  cursor: pointer;
}
body.woocommerce-cart .discount_dropdown .fake_input_btn button:hover {
  background: #222222 !important;
}
body.woocommerce-cart .hidden {
  opacity: 0;
  height: 0;
  overflow: hidden;
  border: none !important;
}

body.woocommerce-checkout {
  padding-top: 100px;
}
body.woocommerce-checkout main {
  max-width: 1224px;
  margin-left: auto;
  margin-right: auto;
}

.best-selling-products .mille-single-product .yith-wcwl-add-to-wishlist,
.recent-products .mille-single-product .yith-wcwl-add-to-wishlist {
  margin: 0 !important;
}

.woocommerce-product-gallery__wrapper img {
  height: auto !important;
}

body.woocommerce-shop,
body.tax-product_cat {
  padding-top: 82px;
}
@media (max-width: 1300px) {
  body.woocommerce-shop,
body.tax-product_cat {
    padding-top: 62px;
  }
}
body.woocommerce-shop main,
body.tax-product_cat main {
  max-width: 1224px;
  margin-left: auto;
  margin-right: auto;
}

body.woocommerce-shop {
  padding-top: 122px;
}
@media (max-width: 1300px) {
  body.woocommerce-shop {
    padding-top: 102px;
  }
}

.woocommerce ul.products::before {
  display: none !important;
}

ul.products {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-right: -24px !important;
  margin-bottom: 60px !important;
}
@media (max-width: 600px) {
  ul.products {
    gap: 10px;
    margin-right: -10px;
  }
}
ul.products .mille-single-product {
  margin: 0;
  width: calc(25% - 24px);
}
@media (max-width: 992px) {
  ul.products .mille-single-product {
    width: calc(50% - 12px);
    max-width: calc(50% - 12px);
    min-width: unset;
  }
}
@media (max-width: 600px) {
  ul.products .mille-single-product {
    width: calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}
ul.products .mille-single-product .add_to_wishlist {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 999;
}
ul.products .mille-single-product .add_to_wishlist span {
  display: none;
}
ul.products .mille-single-product .add_to_wishlist i {
  color: #040404;
  font-size: 20px;
  transition: 300ms all ease;
  opacity: 0;
  transform: translateY(10px);
}
@media (max-width: 1200px) {
  ul.products .mille-single-product .add_to_wishlist i {
    opacity: 1;
    transform: translateY(0px);
  }
}
ul.products .mille-single-product .feedback {
  display: flex;
  margin: 10px !important;
  position: absolute;
  top: 10px;
  left: 10px;
}
ul.products .mille-single-product .feedback:not(i) {
  color: transparent;
}
ul.products .mille-single-product .yith-wcwl-add-to-wishlist {
  margin: 0px !important;
}
ul.products .mille-single-product .yith-wcwl-add-to-wishlist i {
  color: #040404;
  font-size: 20px;
}
ul.products .mille-single-product [data-title="Browse wishlist"] {
  display: none;
}
ul.products .mille-single-product:hover i {
  opacity: 1;
  transform: translateY(0px);
}

.woocommerce-ordering {
  margin-bottom: 30px !important;
}
@media (max-width: 600px) {
  .woocommerce-ordering {
    margin-bottom: 0px !important;
  }
}
.woocommerce-ordering select {
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 16px;
  font-family: "Roboto Slab", serif;
  -webkit-appearance: none;
  /** for the dropdown indicator */
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 1em;
}

.woocommerce-pagination {
  margin-bottom: 60px !important;
}

.woocommerce nav.woocommerce-pagination ul {
  border: 1px solid #040404 !important;
}

.woocommerce nav.woocommerce-pagination ul li {
  border-right: 1px solid #040404 !important;
}
.woocommerce nav.woocommerce-pagination ul li:last-child {
  border-right: 0 !important;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  padding: 10px 15px !important;
  color: #040404 !important;
  transition: 300ms all ease !important;
}
.woocommerce nav.woocommerce-pagination ul li span {
  color: #ffffff !important;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  background: #040404;
  color: #ffffff;
}

.woocommerce-breadcrumb {
  font-family: "Mulish" !important;
  font-weight: 400 !important;
  font-size: 13px !important;
  line-height: 150% !important;
  color: #151515 !important;
  text-decoration: none;
  margin-bottom: 0 !important;
  display: flex;
  align-items: center;
}
.woocommerce-breadcrumb a {
  font-family: "Mulish";
  font-weight: 400;
  font-size: 13px;
  line-height: 150%;
  color: #737373;
  text-decoration: none;
  transition: 300ms all ease;
}
.woocommerce-breadcrumb a:hover {
  color: #151515;
}

.woocommerce div.product p.price,
.price,
.woocommerce div.product span.price {
  font-weight: 700;
  font-size: 19px;
  line-height: 124%;
  color: #151515;
}
.woocommerce div.product p.price *,
.price *,
.woocommerce div.product span.price * {
  font-weight: 700;
  font-size: 19px;
  line-height: 124%;
  color: #151515;
}

.flex-control-nav.flex-control-thumbs {
  max-height: 472px;
  overflow-y: auto !important;
  /* Hide scrollbar for Chrome, Safari and Opera */
  /* Hide scrollbar for IE, Edge and Firefox */
}
.flex-control-nav.flex-control-thumbs ::-webkit-scrollbar {
  display: none;
}
.flex-control-nav.flex-control-thumbs {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

#kco-extra-checkout-fields {
  display: none;
}

body.woocommerce-checkout {
  padding-top: 122px;
}
@media (max-width: 1300px) {
  body.woocommerce-checkout {
    padding-top: 102px;
  }
}

.sb_instagram_header,
#sbi_load {
  display: none;
}

#sbi_images {
  padding: 0 !important;
  margin-right: -24px !important;
  display: flex;
  gap: 24px;
  /* Hide scrollbar for Chrome, Safari and Opera */
  /* Hide scrollbar for IE, Edge and Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
@media (max-width: 768px) {
  #sbi_images {
    overflow-x: auto;
  }
}
#sbi_images::-webkit-scrollbar {
  display: none;
}

#sb_instagram.sbi_col_4 #sbi_images .sbi_item {
  width: calc(25% - 18px);
}

.instagram-feeds {
  margin-bottom: 104px;
}
@media (max-width: 1300px) {
  .instagram-feeds .container {
    padding: 0;
  }
}
.instagram-feeds .title-section {
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 12px;
}
.instagram-feeds .btn-container {
  text-align: center;
  margin-top: 24px;
  display: flex;
  justify-content: center;
}
.instagram-feeds .btn-container .btn {
  font-family: "Mulish";
  font-size: 16px;
  line-height: 150%;
  color: #FFFFFF;
  background: #040404;
  border-radius: 2px;
  padding: 16px 60px;
  transition: 300ms all ease;
}

.woocommerce a.button {
  font-family: "Mulish";
  font-size: 16px;
  line-height: 150%;
  color: #FFFFFF !important;
  background: #040404 !important;
  border-radius: 2px;
  padding: 16px 60px;
  transition: 300ms all ease;
}

body.archive .woocommerce-breadcrumb {
  margin-bottom: 30px !important;
}
@media (max-width: 600px) {
  body.archive .woocommerce-breadcrumb {
    margin-bottom: 0px !important;
  }
}

.generic-cat-banner {
  width: 100%;
  min-height: 298px;
  position: relative;
  padding-top: 40px;
  margin-bottom: 40px;
}
.generic-cat-banner .bg_img {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
}
.generic-cat-banner .bg_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.generic-cat-banner .container {
  position: relative;
  z-index: 9;
}
.generic-cat-banner .content h1 {
  font-weight: 700;
  font-size: 28px;
  line-height: 124%;
  color: #FFFFFF;
  margin-bottom: 10px;
}
.generic-cat-banner .content p {
  font-family: "Mulish";
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #FFFFFF;
}

.products-category-loop .button-container {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}
.products-category-loop .button-container .btn {
  cursor: pointer;
  width: 198px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 1px solid #D0D0D0;
  border-radius: 2px;
  font-weight: 400;
  font-family: "Mulish";
  font-size: 13px;
  line-height: 150%;
  color: #040404;
}

.woocommerce-form-coupon-toggle {
  display: none;
}

.woocommerce .shop_table.woocommerce-checkout-review-order-table {
  border-radius: 0 !important;
  margin-bottom: 0;
}

@media (max-width: 1300px) {
  .woocommerce-breadcrumb {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

.container .container {
  padding: 0 !important;
}

body.woocommerce-checkout {
  padding-top: 100px;
}
@media (max-width: 1300px) {
  body.woocommerce-checkout {
    padding-top: 80px;
  }
}
body.woocommerce-checkout .checkout {
  padding: 0 16px;
}
body.woocommerce-checkout .checkout td {
  font-size: 14px;
}

@media (max-width: 600px) {
  .woocommerce-message {
    display: flex;
    flex-direction: column-reverse;
  }
  .woocommerce-message a {
    text-align: left;
    margin-top: 20px !important;
    display: block !important;
    float: unset !important;
  }
  .woocommerce-message .button {
    text-align: center;
  }
}

.wishlist_table.mobile li .item-wrapper {
  width: 100% !important;
}

.wishlist_table.mobile .product-remove {
  width: 100% !important;
  padding-right: 16px !important;
}
.wishlist_table.mobile .product-remove i {
  color: #040404 !important;
}
.wishlist_table.mobile li {
  padding-bottom: 16px;
  border-bottom: 1px solid #040404;
  margin: 0 16px;
  margin-bottom: 16px;
}
.wishlist_table.mobile .item-details-table {
  width: 100%;
}
.wishlist_table.mobile .item-details-table td {
  width: 50% !important;
  padding: 4px 0 !important;
}
.wishlist_table.mobile .item-details-table td:last {
  text-align: right !important;
}

.woocommerce-notice--success,
.woocommerce-thankyou-order-details,
.woocommerce-checkout .woocommerce-order-details,
.woocommerce-checkout .woocommerce-customer-details {
  display: none;
}

#klarna-checkout-container {
  margin-bottom: 20px;
}

@media (max-width: 1300px) {
  .tax-product_cat .recent-products {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 1300px) {
  body.woocommerce-shop {
    padding-top: 84px;
  }
  body.woocommerce-shop .woocommerce-result-count {
    padding-left: 16px;
    padding-right: 16px;
    margin-top: 30px;
  }
  body.woocommerce-shop .woocommerce-ordering {
    float: unset;
    margin-bottom: 30px !important;
    width: 100% !important;
    margin-left: 16px;
    margin-right: 16px;
  }
  body.woocommerce-shop .woocommerce-ordering select {
    width: calc(100% - 32px);
  }
  body.woocommerce-shop .products.columns-4 {
    padding-left: 16px;
    padding-right: 16px;
    margin-right: -10px !important;
  }
}

.woocommerce-info {
  margin-top: 30px;
}

@media (max-width: 1300px) {
  .products-category-loop {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .products-category-loop #recent-products {
    padding: 0 !important;
  }
}

.upsells.products {
  display: none;
}

#kco-wrapper .product-name .quantity input {
  pointer-events: none;
  font-size: 14px;
  font-weight: 700;
  font-family: "Roboto Slab", serif;
}

.lmp_products_loading {
  display: none;
}

select.orderby {
  padding-top: 16px;
  padding-bottom: 16px;
  color: #040404;
}

.additional_info_mille {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 20px;
  padding: 20px 18px;
  border-top: 1px solid #D0D0D0;
  border-bottom: 1px solid #D0D0D0;
}
.additional_info_mille > div {
  font-size: 16px;
  font-weight: 500;
  font-family: "Mulish";
}
.additional_info_mille > div a {
  font-size: inherit;
  color: inherit;
  font-family: inherit;
  text-decoration: none;
}
.additional_info_mille > div a:hover {
  text-decoration: underline;
}

html {
  scroll-behavior: smooth;
  -webkit-scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}
html.freeze {
  overflow-y: hidden;
}

body {
  overflow-x: hidden;
  max-width: 100%;
}

.container {
  margin: auto;
  width: 100%;
}
@media (min-width: 576px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1224px;
  }
}
@media (max-width: 1300px) {
  .container {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.language-switcher {
  display: flex;
  align-items: center;
  position: relative;
}
.language-switcher .globe-icon {
  display: flex;
}
.language-switcher .flex-container {
  display: flex;
  align-items: center;
}
.language-switcher .custom-selection {
  display: flex;
  gap: 8px;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.language-switcher .custom-selection * {
  font-family: "Roboto Slab", serif;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.03em;
}
.language-switcher .hidden {
  display: none;
}

.custom-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(5px);
  left: -9px;
  width: 100%;
  cursor: pointer;
  transition: 500ms all cubic-bezier(0.24, 0.88, 0.44, 1);
  z-index: 999;
}
.custom-dropdown .dropdown-item {
  text-align: center;
  color: #151515;
  transition: 500ms all cubic-bezier(0.24, 0.88, 0.44, 1);
  cursor: pointer;
}
.custom-dropdown.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.custom-placeholder {
  color: #151515;
  width: 25px;
}
.custom-placeholder + svg {
  transform-origin: center;
  transition: 500ms all cubic-bezier(0.24, 0.88, 0.44, 1);
}
.custom-placeholder.active + svg {
  transform: rotate(180deg);
}

.header-desktop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: 500ms all ease;
  border-bottom: 1px solid transparent;
  padding: 15px 0;
}
.header-desktop .flex_container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 108px;
}
@media (max-width: 1600px) {
  .header-desktop .flex_container {
    padding: 0 50px;
  }
}
.header-desktop .flex_container .site-logo {
  display: flex;
  justify-content: center;
}
.header-desktop .flex_container .site-logo a {
  display: flex;
}
.header-desktop .flex_container .site-logo svg {
  transition: 500ms all ease;
}
.header-desktop .flex_container .site-logo svg path {
  transition: 500ms all ease;
}
.header-desktop .flex_container > div {
  text-align: center;
}
.header-desktop .flex_container > div:nth-child(1) {
  width: 40%;
  padding-bottom: 7px;
}
.header-desktop .flex_container > div:nth-child(2) {
  width: 20%;
}
.header-desktop .flex_container > div:nth-child(3) {
  width: 40%;
  padding-bottom: 7px;
}
.header-desktop .flex_container .left-col nav > ul > li > a {
  padding-right: 20px;
}
.header-desktop .flex_container .left-col nav > ul > li.menu-item-has-children {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-desktop .flex_container .left-col nav > ul > li.menu-item-has-children > a {
  padding-bottom: 10px;
  margin-bottom: -10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-desktop .flex_container .left-col nav > ul > li.menu-item-has-children > a:after {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSI2IiB2aWV3Qm94PSIwIDAgOCA2IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNNi41ODY2NSAxLjE5MzA1TDMuOTk5OTkgMy43Nzk3MUwxLjQxMzMyIDEuMTkzMDVDMS4xNTMzMiAwLjkzMzA0NyAwLjczMzMyIDAuOTMzMDQ3IDAuNDczMzIgMS4xOTMwNUMwLjIxMzMyIDEuNDUzMDUgMC4yMTMzMiAxLjg3MzA1IDAuNDczMzIgMi4xMzMwNUwzLjUzMzMyIDUuMTkzMDVDMy43OTMzMiA1LjQ1MzA1IDQuMjEzMzIgNS40NTMwNSA0LjQ3MzMyIDUuMTkzMDVMNy41MzMzMiAyLjEzMzA1QzcuNzkzMzIgMS44NzMwNSA3Ljc5MzMyIDEuNDUzMDUgNy41MzMzMiAxLjE5MzA1QzcuMjczMzIgMC45Mzk3MTQgNi44NDY2NSAwLjkzMzA0NyA2LjU4NjY1IDEuMTkzMDVWMS4xOTMwNVoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=");
  margin-left: 10px;
  margin-top: 3px;
}
.header-desktop .flex_container .left-col ul {
  list-style: none;
  display: flex;
}
.header-desktop .flex_container .left-col ul li a {
  font-size: 16px;
  line-height: 124%;
  color: #ffffff;
  transition: 300ms all ease;
  text-decoration: none;
}
.header-desktop .flex_container .left-col ul li {
  position: relative;
}
.header-desktop .flex_container .left-col ul li:hover > .sub-menu {
  opacity: 1;
  transform: translateY(0px);
  pointer-events: all;
}
.header-desktop .flex_container .left-col ul li .sub-menu {
  box-shadow: 0px 4px 2px rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  background: #ffffff;
  display: block;
  min-width: 253px;
  opacity: 0;
  transform: translateY(10px);
  transition: 300ms all ease;
  pointer-events: none;
}
.header-desktop .flex_container .left-col ul li .sub-menu .sub-menu {
  transform: translateX(10px);
  top: 0;
  left: 100%;
}
.header-desktop .flex_container .left-col ul li .sub-menu li {
  display: flex;
  text-align: left;
  padding: 8px 0;
  padding-left: 32px;
  padding-right: 32px;
}
.header-desktop .flex_container .left-col ul li .sub-menu li:first-child {
  padding-top: 32px;
}
.header-desktop .flex_container .left-col ul li .sub-menu li:last-child {
  padding-bottom: 32px;
}
.header-desktop .flex_container .left-col ul li .sub-menu li:last-child {
  margin-bottom: 0;
}
.header-desktop .flex_container .left-col ul li .sub-menu li.menu-item-has-children:after {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTMuMzMzNSA4SDEyLjY2NjhNMTIuNjY2OCA4TDguNjY2ODMgMTJNMTIuNjY2OCA4TDguNjY2ODMgNCIgc3Ryb2tlPSIjMDQwNDA0IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==");
  position: absolute;
  right: 32px;
  transform: translateY(3px);
}
.header-desktop .flex_container .left-col ul li .sub-menu li a {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #151515;
  text-align: left;
  padding-bottom: 0;
  border-bottom: 1px solid transparent;
  transition: 300ms all ease;
}
.header-desktop .flex_container .left-col ul li .sub-menu li a:hover {
  border-bottom: 1px solid #151515;
}
.header-desktop .flex_container .left-col ul li .sub-menu li:hover > .sub-menu {
  opacity: 1;
  transform: translateX(0px);
  pointer-events: all;
}
.header-desktop .flex_container .right-col {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 25px;
}
.header-desktop .flex_container .right-col svg {
  transition: 300ms all ease;
}
.header-desktop .flex_container .right-col svg path {
  transition: 300ms all ease;
}
.header-desktop .flex_container .favorite-icon a svg path {
  transition: 300ms all ease;
  fill: transparent;
}
.header-desktop .flex_container .favorite-icon:hover a svg path {
  fill: #ffffff;
  stroke: #ffffff !important;
}
.header-desktop .flex_container .favorite-icon.filled svg path {
  stroke: red !important;
  fill: red;
}
.header-desktop.headroom--not-top, .header-desktop.white__bg {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(4, 4, 4, 0.15);
}
.header-desktop.headroom--not-top .site-logo svg path, .header-desktop.white__bg .site-logo svg path {
  fill: #040404;
  stroke: #040404 !important;
}
.header-desktop.headroom--not-top ul li a, .header-desktop.white__bg ul li a {
  color: #040404 !important;
}
.header-desktop.headroom--not-top .favorite-icon svg path,
.header-desktop.headroom--not-top .search_icon svg path, .header-desktop.white__bg .favorite-icon svg path,
.header-desktop.white__bg .search_icon svg path {
  stroke: #040404 !important;
}
.header-desktop.headroom--not-top .favorite-icon a svg path, .header-desktop.white__bg .favorite-icon a svg path {
  transition: 300ms all ease;
  fill: #ffffff;
}
.header-desktop.headroom--not-top .favorite-icon:hover a svg path, .header-desktop.white__bg .favorite-icon:hover a svg path {
  fill: #040404;
  stroke: #040404 !important;
}
.header-desktop.headroom--not-top #selected-lang-caret path, .header-desktop.white__bg #selected-lang-caret path {
  stroke: #040404 !important;
}
.header-desktop.headroom--not-top .cart-icon, .header-desktop.white__bg .cart-icon {
  position: relative;
}
.header-desktop.headroom--not-top .cart-icon svg path, .header-desktop.white__bg .cart-icon svg path {
  fill: #040404 !important;
}
.header-desktop.headroom--not-top .left-col nav > ul > li.menu-item-has-children > a:after, .header-desktop.white__bg .left-col nav > ul > li.menu-item-has-children > a:after {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSI2IiB2aWV3Qm94PSIwIDAgOCA2IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNNi41ODY2NSAxLjE5MzA1TDMuOTk5OTkgMy43Nzk3MUwxLjQxMzMyIDEuMTkzMDVDMS4xNTMzMiAwLjkzMzA0NyAwLjczMzMyIDAuOTMzMDQ3IDAuNDczMzIgMS4xOTMwNUMwLjIxMzMyIDEuNDUzMDUgMC4yMTMzMiAxLjg3MzA1IDAuNDczMzIgMi4xMzMwNUwzLjUzMzMyIDUuMTkzMDVDMy43OTMzMiA1LjQ1MzA1IDQuMjEzMzIgNS40NTMwNSA0LjQ3MzMyIDUuMTkzMDVMNy41MzMzMiAyLjEzMzA1QzcuNzkzMzIgMS44NzMwNSA3Ljc5MzMyIDEuNDUzMDUgNy41MzMzMiAxLjE5MzA1QzcuMjczMzIgMC45Mzk3MTQgNi44NDY2NSAwLjkzMzA0NyA2LjU4NjY1IDEuMTkzMDVaIiBmaWxsPSIjMTUxNTE1Ii8+Cjwvc3ZnPgo=");
}

body {
  min-height: 1000px;
}

.cart-icon,
.favorite-icon {
  position: relative;
}
.cart-icon .item_count,
.favorite-icon .item_count {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -15px;
  right: -15px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #E02424;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  font-family: "Mulish";
}

.search-field {
  width: 24px;
  height: 36px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  transition: 500ms width ease;
}
.search-field form {
  width: 100%;
}
.search-field svg {
  transition: 500ms all ease;
}
.search-field svg path {
  transition: 500ms all ease;
}
.search-field .search_icon,
.search-field .close_icon {
  display: flex;
  position: absolute;
  z-index: 999;
  cursor: pointer;
}
.search-field .close_icon {
  display: none;
  right: 8px;
}
.search-field .search_icon {
  left: 0px;
}
.search-field input {
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 124%;
  transition: 100ms all ease;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.search-field input::placeholder {
  color: transparent;
}
.search-field.active {
  width: 252px;
}
.search-field.active input {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #D0D0D0;
  color: #040404;
  padding-left: 32px;
  padding-right: 32px;
  opacity: 1;
}
.search-field.active input::placeholder {
  color: #A1A1A1;
}
.search-field.active .search_icon {
  left: 8px;
  pointer-events: none;
}
.search-field.active .search_icon svg {
  width: 20px;
  height: 20px;
}
.search-field.active .search_icon svg path {
  stroke: #444444;
}
.search-field.active .close_icon {
  display: block;
}
.search-field.active .close_icon svg path {
  stroke: #737373;
}

.header-mobile {
  display: none;
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: 300ms all ease;
}
@media (max-width: 1300px) {
  .header-mobile {
    display: block;
  }
}
.header-mobile .cart-icon {
  position: relative;
  display: flex;
  width: fit-content;
}
.header-mobile .flex-container {
  display: flex;
  align-items: center;
  padding-right: 20px;
}
.header-mobile .flex-container > div {
  display: flex;
  width: 33.33%;
}
.header-mobile .flex-container > div.middle-col {
  justify-content: center;
}
.header-mobile .flex-container > div.middle-col svg {
  max-width: 163px;
  height: auto;
}
.header-mobile .flex-container > div.right-col {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.header-mobile.headroom--not-top, .header-mobile.white__bg {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(4, 4, 4, 0.15);
}
.header-mobile.headroom--not-top .hamburger path, .header-mobile.white__bg .hamburger path {
  stroke: #040404;
}
.header-mobile.headroom--not-top .site-logo svg path, .header-mobile.white__bg .site-logo svg path {
  fill: #040404;
}
.header-mobile.headroom--not-top ul li a, .header-mobile.white__bg ul li a {
  color: #040404 !important;
}
.header-mobile.headroom--not-top .favorite-icon svg path,
.header-mobile.headroom--not-top .search_icon svg path, .header-mobile.white__bg .favorite-icon svg path,
.header-mobile.white__bg .search_icon svg path {
  stroke: #040404 !important;
}
.header-mobile.headroom--not-top .favorite-icon a svg path, .header-mobile.white__bg .favorite-icon a svg path {
  transition: 300ms all ease;
  fill: #ffffff;
}
.header-mobile.headroom--not-top .favorite-icon:hover a svg path, .header-mobile.white__bg .favorite-icon:hover a svg path {
  fill: #040404;
}
.header-mobile.headroom--not-top #selected-lang-caret path, .header-mobile.white__bg #selected-lang-caret path {
  stroke: #040404 !important;
}
.header-mobile.headroom--not-top .cart-icon, .header-mobile.white__bg .cart-icon {
  position: relative;
}
.header-mobile.headroom--not-top .cart-icon svg path, .header-mobile.white__bg .cart-icon svg path {
  fill: #040404 !important;
}
.header-mobile.headroom--not-top .left-col nav > ul > li.menu-item-has-children > a:after, .header-mobile.white__bg .left-col nav > ul > li.menu-item-has-children > a:after {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSI2IiB2aWV3Qm94PSIwIDAgOCA2IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNNi41ODY2NSAxLjE5MzA1TDMuOTk5OTkgMy43Nzk3MUwxLjQxMzMyIDEuMTkzMDVDMS4xNTMzMiAwLjkzMzA0NyAwLjczMzMyIDAuOTMzMDQ3IDAuNDczMzIgMS4xOTMwNUMwLjIxMzMyIDEuNDUzMDUgMC4yMTMzMiAxLjg3MzA1IDAuNDczMzIgMi4xMzMwNUwzLjUzMzMyIDUuMTkzMDVDMy43OTMzMiA1LjQ1MzA1IDQuMjEzMzIgNS40NTMwNSA0LjQ3MzMyIDUuMTkzMDVMNy41MzMzMiAyLjEzMzA1QzcuNzkzMzIgMS44NzMwNSA3Ljc5MzMyIDEuNDUzMDUgNy41MzMzMiAxLjE5MzA1QzcuMjczMzIgMC45Mzk3MTQgNi44NDY2NSAwLjkzMzA0NyA2LjU4NjY1IDEuMTkzMDVaIiBmaWxsPSIjMTUxNTE1Ii8+Cjwvc3ZnPgo=");
}

@media (max-width: 1300px) {
  .header-desktop {
    display: none;
  }
}

.main-navigation-mobile {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 99999;
}
.main-navigation-mobile ul {
  list-style: none;
  padding-left: 0;
}

@keyframes revealSlowly {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#cross-svg,
#ham-svg {
  -webkit-animation: revealSlowly;
  animation: revealSlowly;
  animation-duration: 500ms;
}

#cross-svg {
  display: none;
}

.main-navigation-mobile {
  background: #ffffff;
  transform: translateX(100%);
  transition: 500ms all ease !important;
}
@media (min-width: 1200px) {
  .main-navigation-mobile {
    display: none;
  }
}
.main-navigation-mobile .menu-item {
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 15px 0;
  margin-left: 30px;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.01em;
  color: #45515c;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(184, 196, 219, 0.5);
  margin-left: 0;
}
.main-navigation-mobile .menu-item * {
  color: #000000;
}
.main-navigation-mobile .menu-item a {
  width: 100%;
  text-decoration: none;
  font-family: "Mulish";
}
.main-navigation-mobile .menu-item-has-children {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDggMTIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik02LjgyOTk0IDUuMjkwMDJMMi41ODk5NCAxLjA1MDAyQzIuNDk2OTggMC45NTYyOTcgMi4zODYzOCAwLjg4MTkwMiAyLjI2NDUyIDAuODMxMTMzQzIuMTQyNjYgMC43ODAzNjUgMi4wMTE5NSAwLjc1NDIyNyAxLjg3OTk0IDAuNzU0MjI3QzEuNzQ3OTMgMC43NTQyMjcgMS42MTcyMyAwLjc4MDM2NSAxLjQ5NTM3IDAuODMxMTMzQzEuMzczNTEgMC44ODE5MDIgMS4yNjI5MSAwLjk1NjI5NyAxLjE2OTk0IDEuMDUwMDJDMC45ODM2OTIgMS4yMzczOSAwLjg3OTE1IDEuNDkwODQgMC44NzkxNSAxLjc1NTAyQzAuODc5MTUgMi4wMTkyMSAwLjk4MzY5MiAyLjI3MjY2IDEuMTY5OTQgMi40NjAwMkw0LjcwOTk0IDYuMDAwMDJMMS4xNjk5NCA5LjU0MDAyQzAuOTgzNjkyIDkuNzI3MzkgMC44NzkxNSA5Ljk4MDg0IDAuODc5MTUgMTAuMjQ1QzAuODc5MTUgMTAuNTA5MiAwLjk4MzY5MiAxMC43NjI3IDEuMTY5OTQgMTAuOTVDMS4yNjMzOCAxMS4wNDI3IDEuMzc0MiAxMS4xMTYgMS40OTYwNCAxMS4xNjU4QzEuNjE3ODcgMTEuMjE1NiAxLjc0ODM0IDExLjI0MDggMS44Nzk5NCAxMS4yNEMyLjAxMTU1IDExLjI0MDggMi4xNDIwMSAxMS4yMTU2IDIuMjYzODUgMTEuMTY1OEMyLjM4NTY5IDExLjExNiAyLjQ5NjUgMTEuMDQyNyAyLjU4OTk0IDEwLjk1TDYuODI5OTQgNi43MTAwMkM2LjkyMzY3IDYuNjE3MDYgNi45OTgwNyA2LjUwNjQ2IDcuMDQ4ODMgNi4zODQ2QzcuMDk5NiA2LjI2Mjc0IDcuMTI1NzQgNi4xMzIwNCA3LjEyNTc0IDYuMDAwMDJDNy4xMjU3NCA1Ljg2ODAxIDcuMDk5NiA1LjczNzMxIDcuMDQ4ODMgNS42MTU0NUM2Ljk5ODA3IDUuNDkzNTkgNi45MjM2NyA1LjM4Mjk5IDYuODI5OTQgNS4yOTAwMloiIGZpbGw9IiNFNTI1MTMiLz4KPC9zdmc+Cg==");
  background-repeat: no-repeat;
  background-position-y: center;
  background-position-x: calc(100% - 10px);
  padding-right: 60px !important;
}
.main-navigation-mobile .sub-menu {
  position: fixed;
  width: 100%;
  height: 100%;
  flex-direction: column;
  top: 0;
  left: 0;
  background: #F0EFEF;
  padding: 0 25px;
  box-sizing: border-box;
  -webkit-animation: fromRight;
  animation: fromRight;
  animation-duration: 300ms;
  z-index: 999;
  display: none;
  overflow-y: auto;
  padding-bottom: 150px !important;
}
.main-navigation-mobile .back-menu-item {
  width: calc(100% + 50px);
  padding-left: 40px;
  border-left: 4px solid #E52513;
  margin-left: -25px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDggMTIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xLjE3MDA2IDUuMjlMNS40MTAwNiAxLjA1QzUuNTAzMDIgMC45NTYyODEgNS42MTM2MiAwLjg4MTg4NiA1LjczNTQ4IDAuODMxMTE3QzUuODU3MzQgMC43ODAzNDkgNS45ODgwNSAwLjc1NDIxMSA2LjEyMDA2IDAuNzU0MjExQzYuMjUyMDcgMC43NTQyMTEgNi4zODI3NyAwLjc4MDM0OSA2LjUwNDYzIDAuODMxMTE3QzYuNjI2NDkgMC44ODE4ODYgNi43MzcwOSAwLjk1NjI4MSA2LjgzMDA2IDEuMDVDNy4wMTYzMSAxLjIzNzM3IDcuMTIwODUgMS40OTA4MiA3LjEyMDg1IDEuNzU1QzcuMTIwODUgMi4wMTkxOSA3LjAxNjMxIDIuMjcyNjQgNi44MzAwNiAyLjQ2TDMuMjkwMDYgNkw2LjgzMDA2IDkuNTRDNy4wMTYzMSA5LjcyNzM3IDcuMTIwODUgOS45ODA4MiA3LjEyMDg1IDEwLjI0NUM3LjEyMDg1IDEwLjUwOTIgNy4wMTYzMSAxMC43NjI3IDYuODMwMDYgMTAuOTVDNi43MzY2MiAxMS4wNDI3IDYuNjI1OCAxMS4xMTYgNi41MDM5NiAxMS4xNjU4QzYuMzgyMTMgMTEuMjE1NiA2LjI1MTY2IDExLjI0MDggNi4xMjAwNiAxMS4yNEM1Ljk4ODQ1IDExLjI0MDggNS44NTc5OSAxMS4yMTU2IDUuNzM2MTUgMTEuMTY1OEM1LjYxNDMxIDExLjExNiA1LjUwMzUgMTEuMDQyNyA1LjQxMDA2IDEwLjk1TDEuMTcwMDYgNi43MUMxLjA3NjMzIDYuNjE3MDQgMS4wMDE5MyA2LjUwNjQ0IDAuOTUxMTY5IDYuMzg0NThDMC45MDAzOTkgNi4yNjI3MiAwLjg3NDI1OSA2LjEzMjAyIDAuODc0MjU5IDZDMC44NzQyNTkgNS44Njc5OSAwLjkwMDM5OSA1LjczNzI5IDAuOTUxMTY5IDUuNjE1NDNDMS4wMDE5MyA1LjQ5MzU3IDEuMDc2MzMgNS4zODI5NyAxLjE3MDA2IDUuMjlaIiBmaWxsPSIjRTUyNTEzIi8+Cjwvc3ZnPgo=");
  background-repeat: no-repeat;
  background-position-y: center;
  background-position-x: 15px;
}
.main-navigation-mobile .back-menu-item a {
  color: #E52513;
  font-weight: 700;
}
.main-navigation-mobile ul {
  position: relative;
  z-index: 1;
}
.main-navigation-mobile ul ul {
  z-index: 2;
}
.main-navigation-mobile.active {
  transform: translateX(0%);
}

.main-navigation-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 9999;
}
.main-navigation-mobile a {
  font-weight: 400;
}
.main-navigation-mobile ul {
  list-style: none;
  padding-left: 0;
}

@keyframes revealSlowly {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#cross-svg,
#ham-svg {
  -webkit-animation: revealSlowly;
  animation: revealSlowly;
  animation-duration: 500ms;
}

#cross-svg {
  display: none;
}

.main-navigation-mobile {
  background: #ffffff;
  transform: translateX(100%);
}
@media (min-width: 1200px) {
  .main-navigation-mobile {
    display: none;
  }
}
.main-navigation-mobile .menu-item {
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 15px 0;
  margin-left: 30px;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.01em;
  color: #040404;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(184, 196, 219, 0.5);
  margin-left: 0;
}
.main-navigation-mobile .menu-item * {
  color: #000000;
}
.main-navigation-mobile .menu-item a {
  width: 100%;
}
.main-navigation-mobile .menu-item-has-children {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDggMTIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik02LjgyOTk0IDUuMjkwMDJMMi41ODk5NCAxLjA1MDAyQzIuNDk2OTggMC45NTYyOTcgMi4zODYzOCAwLjg4MTkwMiAyLjI2NDUyIDAuODMxMTMzQzIuMTQyNjYgMC43ODAzNjUgMi4wMTE5NSAwLjc1NDIyNyAxLjg3OTk0IDAuNzU0MjI3QzEuNzQ3OTMgMC43NTQyMjcgMS42MTcyMyAwLjc4MDM2NSAxLjQ5NTM3IDAuODMxMTMzQzEuMzczNTEgMC44ODE5MDIgMS4yNjI5MSAwLjk1NjI5NyAxLjE2OTk0IDEuMDUwMDJDMC45ODM2OTIgMS4yMzczOSAwLjg3OTE1IDEuNDkwODQgMC44NzkxNSAxLjc1NTAyQzAuODc5MTUgMi4wMTkyMSAwLjk4MzY5MiAyLjI3MjY2IDEuMTY5OTQgMi40NjAwMkw0LjcwOTk0IDYuMDAwMDJMMS4xNjk5NCA5LjU0MDAyQzAuOTgzNjkyIDkuNzI3MzkgMC44NzkxNSA5Ljk4MDg0IDAuODc5MTUgMTAuMjQ1QzAuODc5MTUgMTAuNTA5MiAwLjk4MzY5MiAxMC43NjI3IDEuMTY5OTQgMTAuOTVDMS4yNjMzOCAxMS4wNDI3IDEuMzc0MiAxMS4xMTYgMS40OTYwNCAxMS4xNjU4QzEuNjE3ODcgMTEuMjE1NiAxLjc0ODM0IDExLjI0MDggMS44Nzk5NCAxMS4yNEMyLjAxMTU1IDExLjI0MDggMi4xNDIwMSAxMS4yMTU2IDIuMjYzODUgMTEuMTY1OEMyLjM4NTY5IDExLjExNiAyLjQ5NjUgMTEuMDQyNyAyLjU4OTk0IDEwLjk1TDYuODI5OTQgNi43MTAwMkM2LjkyMzY3IDYuNjE3MDYgNi45OTgwNyA2LjUwNjQ2IDcuMDQ4ODMgNi4zODQ2QzcuMDk5NiA2LjI2Mjc0IDcuMTI1NzQgNi4xMzIwNCA3LjEyNTc0IDYuMDAwMDJDNy4xMjU3NCA1Ljg2ODAxIDcuMDk5NiA1LjczNzMxIDcuMDQ4ODMgNS42MTU0NUM2Ljk5ODA3IDUuNDkzNTkgNi45MjM2NyA1LjM4Mjk5IDYuODI5OTQgNS4yOTAwMloiIGZpbGw9IiNFNTI1MTMiLz4KPC9zdmc+Cg==");
  background-repeat: no-repeat;
  background-position-y: center;
  background-position-x: calc(100% - 10px);
}
.main-navigation-mobile .sub-menu {
  position: fixed;
  width: 100%;
  height: 100%;
  flex-direction: column;
  top: 0;
  left: 0;
  background: #ffffff;
  padding: 0 25px;
  box-sizing: border-box;
  -webkit-animation: fromRight;
  animation: fromRight;
  animation-duration: 500ms;
  z-index: 999;
  display: none;
}
.main-navigation-mobile .back-menu-item {
  width: calc(100% + 50px);
  padding-left: 40px;
  border-left: 4px solid #E52513;
  margin-left: -25px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDggMTIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xLjE3MDA2IDUuMjlMNS40MTAwNiAxLjA1QzUuNTAzMDIgMC45NTYyODEgNS42MTM2MiAwLjg4MTg4NiA1LjczNTQ4IDAuODMxMTE3QzUuODU3MzQgMC43ODAzNDkgNS45ODgwNSAwLjc1NDIxMSA2LjEyMDA2IDAuNzU0MjExQzYuMjUyMDcgMC43NTQyMTEgNi4zODI3NyAwLjc4MDM0OSA2LjUwNDYzIDAuODMxMTE3QzYuNjI2NDkgMC44ODE4ODYgNi43MzcwOSAwLjk1NjI4MSA2LjgzMDA2IDEuMDVDNy4wMTYzMSAxLjIzNzM3IDcuMTIwODUgMS40OTA4MiA3LjEyMDg1IDEuNzU1QzcuMTIwODUgMi4wMTkxOSA3LjAxNjMxIDIuMjcyNjQgNi44MzAwNiAyLjQ2TDMuMjkwMDYgNkw2LjgzMDA2IDkuNTRDNy4wMTYzMSA5LjcyNzM3IDcuMTIwODUgOS45ODA4MiA3LjEyMDg1IDEwLjI0NUM3LjEyMDg1IDEwLjUwOTIgNy4wMTYzMSAxMC43NjI3IDYuODMwMDYgMTAuOTVDNi43MzY2MiAxMS4wNDI3IDYuNjI1OCAxMS4xMTYgNi41MDM5NiAxMS4xNjU4QzYuMzgyMTMgMTEuMjE1NiA2LjI1MTY2IDExLjI0MDggNi4xMjAwNiAxMS4yNEM1Ljk4ODQ1IDExLjI0MDggNS44NTc5OSAxMS4yMTU2IDUuNzM2MTUgMTEuMTY1OEM1LjYxNDMxIDExLjExNiA1LjUwMzUgMTEuMDQyNyA1LjQxMDA2IDEwLjk1TDEuMTcwMDYgNi43MUMxLjA3NjMzIDYuNjE3MDQgMS4wMDE5MyA2LjUwNjQ0IDAuOTUxMTY5IDYuMzg0NThDMC45MDAzOTkgNi4yNjI3MiAwLjg3NDI1OSA2LjEzMjAyIDAuODc0MjU5IDZDMC44NzQyNTkgNS44Njc5OSAwLjkwMDM5OSA1LjczNzI5IDAuOTUxMTY5IDUuNjE1NDNDMS4wMDE5MyA1LjQ5MzU3IDEuMDc2MzMgNS4zODI5NyAxLjE3MDA2IDUuMjlaIiBmaWxsPSIjRTUyNTEzIi8+Cjwvc3ZnPgo=");
  background-repeat: no-repeat;
  background-position-y: center;
  background-position-x: 15px;
}
.main-navigation-mobile .back-menu-item a {
  color: #E52513;
  font-weight: 700;
}
.main-navigation-mobile ul {
  position: relative;
  z-index: 1;
}
.main-navigation-mobile ul ul {
  z-index: 2;
}
.main-navigation-mobile.active {
  transform: translateX(0%);
}

.main-navigation-mobile {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 9999;
}
.main-navigation-mobile > .container:first-child {
  padding-top: 10px;
  padding-bottom: 10px;
  background: #040404;
}
.main-navigation-mobile > .container:first-child .logo {
  max-width: 125px;
}
.main-navigation-mobile > .container:first-child .logo img {
  width: 100%;
  height: auto;
}
.main-navigation-mobile > .container:first-child svg path {
  stroke: #ffffff;
}
.main-navigation-mobile .container:last-child {
  max-height: 80vh;
  overflow-y: auto;
  height: 100%;
}
.main-navigation-mobile ul {
  list-style: none;
  padding-left: 0;
}

@keyframes revealSlowly {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#cross-svg,
#ham-svg {
  -webkit-animation: revealSlowly;
  animation: revealSlowly;
  animation-duration: 500ms;
}

#cross-svg {
  display: none;
}

.main-navigation-mobile {
  background: #ffffff;
  transform: translateX(100%);
}
@media (min-width: 1200px) {
  .main-navigation-mobile {
    display: none;
  }
}
.main-navigation-mobile .menu-item {
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 15px 0;
  margin-left: 30px;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.01em;
  color: #45515c;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(184, 196, 219, 0.5);
  margin-left: 0;
}
.main-navigation-mobile .menu-item * {
  color: #000000;
}
.main-navigation-mobile .menu-item a {
  width: 100%;
}
.main-navigation-mobile .menu-item-has-children {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEwLjM1MjMgNy40NTM3Mkw1LjE2MDEyIDEyLjY0NThDNC45MDk3MSAxMi44OTYzIDQuNTAzNzMgMTIuODk2MyA0LjI1MzM0IDEyLjY0NThMMy42NDc3NiAxMi4wNDAzQzMuMzk3NzggMTEuNzkwMyAzLjM5NzMgMTEuMzg1MSAzLjY0NjcgMTEuMTM0Nkw3Ljc2MTU3IDcuMDAwMzFMMy42NDY3IDIuODY2MDlDMy4zOTczIDIuNjE1NTIgMy4zOTc3OCAyLjIxMDM3IDMuNjQ3NzYgMS45NjAzOEw0LjI1MzM0IDEuMzU0OEM0LjUwMzc2IDEuMTA0MzkgNC45MDk3NCAxLjEwNDM5IDUuMTYwMTIgMS4zNTQ4TDEwLjM1MjMgNi41NDY5NEMxMC42MDI3IDYuNzk3MzIgMTAuNjAyNyA3LjIwMzMgMTAuMzUyMyA3LjQ1MzcyWiIgZmlsbD0iIzYyNjI2MiIvPgo8L3N2Zz4K");
  background-repeat: no-repeat;
  background-position-y: center;
  background-position-x: calc(100% - 10px);
}
.main-navigation-mobile .sub-menu {
  position: fixed;
  width: 100%;
  height: 100%;
  flex-direction: column;
  top: 50px;
  left: 0;
  background: #ffffff;
  padding: 0 25px;
  box-sizing: border-box;
  -webkit-animation: fromRight;
  animation: fromRight;
  animation-duration: 300ms;
  z-index: 999;
  display: none;
}
.main-navigation-mobile .back-menu-item {
  width: calc(100% + 50px);
  padding-left: 40px;
  border-left: 0;
  margin-left: -25px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTMuNjQ3NzEgNi41NDYyOEw4LjgzOTg4IDEuMzU0MTVDOS4wOTAyOSAxLjEwMzc0IDkuNDk2MjcgMS4xMDM3NCA5Ljc0NjY2IDEuMzU0MTVMMTAuMzUyMiAxLjk1OTczQzEwLjYwMjIgMi4yMDk3MSAxMC42MDI3IDIuNjE0ODcgMTAuMzUzMyAyLjg2NTQ0TDYuMjM4NDMgNi45OTk2OUwxMC4zNTMzIDExLjEzMzlDMTAuNjAyNyAxMS4zODQ1IDEwLjYwMjIgMTEuNzg5NiAxMC4zNTIyIDEyLjAzOTZMOS43NDY2NiAxMi42NDUyQzkuNDk2MjQgMTIuODk1NiA5LjA5MDI2IDEyLjg5NTYgOC44Mzk4OCAxMi42NDUyTDMuNjQ3NzQgNy40NTMwNkMzLjM5NzMzIDcuMjAyNjggMy4zOTczMyA2Ljc5NjcgMy42NDc3MSA2LjU0NjI4WiIgZmlsbD0iIzRCNEI0QiIvPgo8L3N2Zz4K");
  background-repeat: no-repeat;
  background-position-y: center;
  background-position-x: 15px;
}
.main-navigation-mobile .back-menu-item a {
  color: #4B4B4B;
  font-weight: 700;
}
.main-navigation-mobile ul {
  position: relative;
  z-index: 1;
}
.main-navigation-mobile ul ul {
  z-index: 2;
}
.main-navigation-mobile.active {
  transform: translateX(0%);
  background: #ffffff;
}
.main-navigation-mobile .language-switcher {
  overflow: visible;
}
.main-navigation-mobile .language-switcher svg path {
  stroke: #040404;
}
.main-navigation-mobile .language-switcher .custom-dropdown {
  z-index: 99999;
}

#main-nav-holder {
  transition: transform 300ms ease;
}
#main-nav-holder * {
  transition: transform 300ms ease;
}

#search-icon {
  display: inline-flex;
}

#mobile-search-container {
  display: none;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: #ffffff;
  z-index: 99999;
  padding: 30px 20px;
  transition: 500ms all ease;
  transform: translateY(-120%);
}
@media (max-width: 1080px) {
  #mobile-search-container {
    display: block;
  }
}
#mobile-search-container.active {
  transform: translateY(0%);
}
#mobile-search-container input {
  color: #040404;
  border: 1px solid #35353549;
  padding: 12px !important;
  font-size: 14px;
  padding-bottom: 8px;
  -webkit-appearance: none;
}
#mobile-search-container input::placeholder {
  color: #353535;
}
#mobile-search-container input,
#mobile-search-container button {
  width: 100%;
}
#mobile-search-container button {
  margin-top: 15px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  background: #151515;
  border: none;
  outline: none;
  width: 150px;
}
@media (max-width: 600px) {
  #mobile-search-container button {
    width: 100%;
  }
}
#mobile-search-container .search-close-holder {
  width: 100%;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}
#mobile-search-container #mobile-search-close {
  margin-top: -10px;
  display: flex;
}

.lan_changer_favorites {
  margin-top: 32px !important;
}
.lan_changer_favorites .flex-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  font-family: "Mulish";
  font-size: 13px;
  line-height: 150%;
  color: #040404;
}
.lan_changer_favorites .flex-item.fav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Mulish";
  font-size: 13px;
  line-height: 150%;
  color: #040404;
  text-decoration: none;
  width: 100%;
  font-weight: 400 !important;
}

.main-navigation-mobile a {
  font-size: 14px;
  line-height: 124%;
  font-weight: 700;
}

.woocommerce-currency-switcher-form {
  width: 68px;
}
.woocommerce-currency-switcher-form .chosen-container {
  min-width: unset;
}
.woocommerce-currency-switcher-form .chosen-single {
  background: none !important;
  box-shadow: none !important;
  border: none !important;
  font-family: "Mulish";
  font-weight: 400;
  font-size: 13px;
  line-height: 150%;
  color: #FFFFFF;
}
.woocommerce-currency-switcher-form .chosen-single span {
  font-family: "Mulish";
  font-weight: 400;
  font-size: 13px;
  line-height: 150%;
  color: #FFFFFF;
}
.woocommerce-currency-switcher-form .chosen-drop {
  border-radius: 0 !important;
}
.woocommerce-currency-switcher-form .chosen-container-single .chosen-single div b {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iNiIgdmlld0JveD0iMCAwIDEwIDYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xIDFMNSA1TDkgMSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==") !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  width: 8px;
  height: 10px;
}
.woocommerce-currency-switcher-form .chosen-container-single .chosen-single div {
  display: flex;
  align-items: center;
}

.headroom--not-top .woocommerce-currency-switcher-form .chosen-single,
.white__bg .woocommerce-currency-switcher-form .chosen-single,
.main-navigation-mobile .woocommerce-currency-switcher-form .chosen-single {
  color: #040404;
}
.headroom--not-top .woocommerce-currency-switcher-form .chosen-single span,
.white__bg .woocommerce-currency-switcher-form .chosen-single span,
.main-navigation-mobile .woocommerce-currency-switcher-form .chosen-single span {
  color: #040404;
}
.headroom--not-top .woocommerce-currency-switcher-form .chosen-container-single .chosen-single div b,
.white__bg .woocommerce-currency-switcher-form .chosen-container-single .chosen-single div b,
.main-navigation-mobile .woocommerce-currency-switcher-form .chosen-container-single .chosen-single div b {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iNiIgdmlld0JveD0iMCAwIDEwIDYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xIDFMNSA1TDkgMSIgc3Ryb2tlPSIjMDQwNDA0IiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K") !important;
}

.main-navigation-mobile .woocommerce-currency-switcher-form {
  width: 63px;
  margin-right: -10px;
}

.footer {
  background-color: #151515;
  padding: 64px 0;
  padding-bottom: 24px;
}
@media (max-width: 600px) {
  .footer {
    padding-top: 24px;
  }
}
.footer .flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 46px;
  color: #ffffff;
  font-family: "Mulish", sans-serif;
}
.footer .flex-container > div:first-child {
  max-width: 496px;
  margin-right: 239px;
}
@media (max-width: 600px) {
  .footer .flex-container > div:first-child {
    max-width: 100%;
    margin-right: 0;
  }
}
.footer .flex-container > div:first-child .footer-logo {
  margin-bottom: 24px;
}
@media (max-width: 600px) {
  .footer .flex-container > div:first-child .footer-logo {
    display: flex;
    justify-content: center;
  }
}
.footer .flex-container > div:first-child p {
  font-size: 13px;
  line-height: 150%;
  color: #E4E4E7;
  margin-bottom: 16px;
}
.footer .flex-container > div:last-child {
  margin-left: 158px;
}
@media (max-width: 600px) {
  .footer .flex-container > div:last-child {
    margin-left: 0;
    width: calc(50% - 60px);
  }
}
@media (max-width: 600px) {
  .footer .flex-container .col-2,
.footer .flex-container .col-3 {
    width: calc(50% - 60px);
  }
}
.footer .flex-container .col-2 .col-title,
.footer .flex-container .col-3 .col-title {
  font-family: "Roboto Slab";
  font-weight: 700;
  font-size: 19px;
  line-height: 124%;
  color: #FFFFFF;
  margin-bottom: 24px;
}
.footer .flex-container .col-2 .links a,
.footer .flex-container .col-3 .links a {
  font-size: 16px;
  line-height: 124%;
  color: #FFFFFF;
  margin-bottom: 16px;
  display: block;
  text-decoration: none;
}
.footer .flex-container .social-icons {
  display: flex;
  gap: 16px;
}
.footer .copyright-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  color: #D0D0D0;
  margin-top: 28px;
}
.footer .telefone_nr {
  font-size: 16px !important;
  line-height: 150% !important;
}

.recent-products {
  padding-bottom: 36px;
}
@media (max-width: 1300px) {
  .recent-products .container {
    padding: 0;
  }
}
.recent-products .mille-single-product {
  margin: 24px 12px;
}
.recent-products .mille-single-product .add_to_wishlist {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 999;
}
.recent-products .mille-single-product .add_to_wishlist span {
  display: none;
}
.recent-products .mille-single-product .add_to_wishlist i {
  color: #040404;
  font-size: 20px;
  transition: 300ms all ease;
  opacity: 0;
  transform: translateY(10px);
}
@media (max-width: 1200px) {
  .recent-products .mille-single-product .add_to_wishlist i {
    opacity: 1;
    transform: translateY(0px);
  }
}
.recent-products .mille-single-product .feedback {
  display: flex;
  margin: 10px !important;
  position: absolute;
  top: 10px;
  left: 10px;
}
.recent-products .mille-single-product .feedback:not(i) {
  color: transparent;
}
.recent-products .mille-single-product .yith-wcwl-add-to-wishlist {
  margin: 0px !important;
}
.recent-products .mille-single-product .yith-wcwl-add-to-wishlist i {
  color: #040404;
  font-size: 20px;
}
.recent-products .mille-single-product [data-title="Browse wishlist"] {
  display: none;
}
.recent-products .mille-single-product:hover i {
  opacity: 1;
  transform: translateY(0px);
}
@media (max-width: 600px) {
  .recent-products .products-carousel {
    margin: 0 -20px;
    padding-left: 20px;
  }
  .recent-products .products-carousel .mille-single-product {
    width: calc(80% - 10px);
    max-width: calc(80% - 10px);
  }
}

.best-selling-products,
.products-category-loop {
  padding: 80px 0;
  padding-bottom: 0px;
}
@media (max-width: 1300px) {
  .best-selling-products,
.products-category-loop {
    padding: 40px 0;
    padding-bottom: 0;
  }
  .best-selling-products .container,
.products-category-loop .container {
    padding: 0;
  }
}
.best-selling-products .title-section,
.products-category-loop .title-section {
  margin-bottom: 40px;
}
@media (max-width: 600px) {
  .best-selling-products .title-section,
.products-category-loop .title-section {
    margin-bottom: 20px;
  }
}
.best-selling-products .products-holder,
.products-category-loop .products-holder {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 600px) {
  .best-selling-products .products-holder,
.products-category-loop .products-holder {
    gap: 10px;
    margin-right: -10px;
  }
}
.best-selling-products .mille-single-product,
.products-category-loop .mille-single-product {
  margin: 0;
}
@media (max-width: 992px) {
  .best-selling-products .mille-single-product,
.products-category-loop .mille-single-product {
    width: calc(50% - 12px);
    max-width: calc(50% - 12px);
    min-width: unset;
  }
}
@media (max-width: 600px) {
  .best-selling-products .mille-single-product,
.products-category-loop .mille-single-product {
    width: calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}
.best-selling-products .mille-single-product .add_to_wishlist,
.products-category-loop .mille-single-product .add_to_wishlist {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 999;
}
.best-selling-products .mille-single-product .add_to_wishlist span,
.products-category-loop .mille-single-product .add_to_wishlist span {
  display: none;
}
.best-selling-products .mille-single-product .add_to_wishlist i,
.products-category-loop .mille-single-product .add_to_wishlist i {
  color: #040404;
  font-size: 20px;
  transition: 300ms all ease;
  opacity: 0;
  transform: translateY(10px);
}
@media (max-width: 1200px) {
  .best-selling-products .mille-single-product .add_to_wishlist i,
.products-category-loop .mille-single-product .add_to_wishlist i {
    opacity: 1;
    transform: translateY(0px);
  }
}
.best-selling-products .mille-single-product .feedback,
.products-category-loop .mille-single-product .feedback {
  display: flex;
  margin: 10px !important;
  position: absolute;
  top: 10px;
  left: 10px;
}
.best-selling-products .mille-single-product .feedback:not(i),
.products-category-loop .mille-single-product .feedback:not(i) {
  color: transparent;
}
.best-selling-products .mille-single-product .yith-wcwl-add-to-wishlist,
.products-category-loop .mille-single-product .yith-wcwl-add-to-wishlist {
  margin: 0px !important;
}
.best-selling-products .mille-single-product .yith-wcwl-add-to-wishlist i,
.products-category-loop .mille-single-product .yith-wcwl-add-to-wishlist i {
  color: #040404;
  font-size: 20px;
}
.best-selling-products .mille-single-product [data-title="Browse wishlist"],
.products-category-loop .mille-single-product [data-title="Browse wishlist"] {
  display: none;
}
.best-selling-products .mille-single-product:hover i,
.products-category-loop .mille-single-product:hover i {
  opacity: 1;
  transform: translateY(0px);
}

.products-category-loop {
  padding-top: 24px;
  padding-bottom: 80px;
}
.products-category-loop .recent-products {
  margin-top: 80px;
}
@media (max-width: 600px) {
  .products-category-loop .recent-products {
    margin-top: 40px;
  }
}
.products-category-loop .products-carousel .mille-single-product {
  margin-right: 24px !important;
}

@media (max-width: 600px) {
  .best-selling-products .prod-img img {
    min-height: 165px;
    max-height: 165px;
  }
}

#wpadminbar {
  position: fixed !important;
  top: unset !important;
  bottom: 0 !important;
}

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