/* main */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #ffffff inset !important;
  -webkit-text-fill-color: #171717 !important;
}

.delivery-additional__info {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: var(--light-text-2);
  display: none;
}

#header .logo__holder svg{
  width: 100%;
  height: 100%;
}

.fly-social {
  position: fixed;
  bottom: 10px;
  right: clamp(1.25rem, 0.9375rem + 1.5625vw, 2.8125rem);
  z-index: 999;
  opacity: 1;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  width: 50px;
  height: 50px;
  align-items: center;
  place-content: center;
  border-radius: 100px;
  background: var(--primary);
}
.social-holder__outer{
  display: none;
  flex-direction: row;
  align-items: center;
  margin-left: auto;
}
.social-holder__outer > .long-soc__item > .long-soc__item-icon{
	width:30px;
	height:30px;
}
.fly-social:hover {
  background: var(--primary-hover);
}

@media(max-width:450px) {
  .fly-social {
    right: unset;
    left: clamp(1.25rem, 0.9375rem + 1.5625vw, 2.8125rem);
  }
}

.dgwt-wcas-st {
  width: 50% !important;
}

/* thankyou */

.woocommerce table.woocommerce-table.woocommerce-table--order-details .wc-item-meta li {
  display: flex;
  margin-bottom: 0px;
}

.woocommerce-table.woocommerce-table--custom-fields.shop_table.custom-fields {
  display: none;
}

.woocommerce table.woocommerce-table--custom-fields td,
.woocommerce table.woocommerce-table--custom-fields th {
  border: 1px solid var(--primary);
  text-align: left;
  padding: 5px;
  color: #1C1C1C;
}

.woocommerce table.woocommerce-table.woocommerce-table--order-details {
  border-collapse: collapse;
  width: 100%;
  margin-top: 10px;
  background: var(--white);
  text-align: left;
}

.woocommerce table.woocommerce-table.woocommerce-table--order-details td,
.woocommerce table.woocommerce-table.woocommerce-table--order-details th {
  border: 1px solid var(--primary);
  text-align: left;
  padding: 5px;
  color: #1C1C1C;
}

.woocommerce table.woocommerce-table.woocommerce-table--order-details thead th {
  color: white;
}

.woocommerce table.woocommerce-table.woocommerce-table--order-details thead {
  background: var(--primary);
}

.products-list__products {
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.products-list {
  display: flex;
  flex-direction: column;
  gap: var(--twenty);
}

.products-list__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--1614);
  line-height: 170%;
  color: var(--main-text);
  cursor: pointer;
}

.products-list__header svg {
  transform: rotate(180deg);
}

.products-list__header.active svg {
  transform: rotate(0deg);
}

.products-list__products {
  display: flex;
  flex-direction: column;
  gap: var(--twenty);
}

.products-list__product {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: var(--thirty);
  justify-content: space-between;
  flex-wrap: wrap;
}

.products-list__product-total {
  height: fit-content;
  width: fit-content;
  min-width: 85px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  text-align: right;
  color: var(--main-text);
  flex-shrink: 0;
  margin-left: auto;
}

.products-list__product-content {
  width: 100%;
  display: flex;
  max-width: 240px;
  flex-direction: row;
  gap: 10px;
  align-items: flex-start;
}

.products-list__product-photo__holder {
  position: relative;
  overflow: hidden;
  width: 60px;
  height: 60px;
  align-items: flex-end;
  flex-shrink: 0;
  display: flex;
}

.products-list__product-photo {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 5px;
  display: flex;
}

.products-list__product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  border-radius: 5px;
}

.products-list__product-photo__holder .count {
  height: 20px;
  width: 20px;
  position: absolute;
  right: 0;
  top: 0;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 10px;
  line-height: 150%;
  color: var(--primary-hover);
  background: var(--white);
  border: 1px solid var(--primary);
  border-radius: 30px;
  display: flex;
  align-items: center;
  place-content: center;
}

.products-list__product-text__holder {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.products-list__product-name {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--1614);
  line-height: 170%;
  color: var(--main-text);
}

.products-list__product .price {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.products-list__product .price .sale-price {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: var(--1614);
  line-height: 150%;
  text-align: right;
  color: var(--main-text);
}

.products-list__product .price .regular-price {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  text-decoration: line-through;
  color: var(--light-text-2);
}

.products-list__product-content:hover .products-list__product-name {
  color: var(--primary);
}

.woocommerce-checkout-review-order-table .order-total {
  margin-top: var(--twenty);
  padding-top: var(--twenty);
  padding-bottom: var(--twenty);
  border-top: 1px solid var(--light-text-1);
  border-bottom: 1px solid var(--light-text-1);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.order-total__name {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--1614);
  line-height: 170%;
  color: var(--main-text);
}

.order-total__value {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  text-align: right;
  min-width: 135px;
  color: var(--main-text);
  margin-left: auto;
}

.woocommerce-checkout-review-order-table .total-price {
  margin-top: var(--thirty);
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.woocommerce-checkout-review-order-table .total-price__name {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: var(--1614);
  line-height: 150%;
  color: var(--main-text);
}

.woocommerce-checkout-review-order-table .total-price__value {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem);
  line-height: 150%;
  text-align: right;
  color: var(--main-text);
  min-width: 135px;
  margin-left: auto;
}

.delivery-method {
  padding-top: var(--twenty);
  padding-bottom: var(--twenty);
  border-bottom: 1px solid var(--light-text-1);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
}

.cart_totals .delivery-method {
  padding-top: unset;
}

.delivery-method__title-holder {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.delivery-method__name {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 170%;
  color: var(--main-text);
}

.delivery-method__value {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: var(--light-text-2);
}

.delivery-method__price {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  text-align: right;
  color: var(--main-text);
  min-width: 135px;
  margin-left: auto;
}

.woocommerce-checkout-review-order-table {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  padding: var(--fourty);
}

li:has(.flat-rate-label) {
  display: none !important;
}

.checkout-btn__holder {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
  width: 100%;
  padding-top: var(--twenty);
  border-top: 1px solid var(--light-text-1);
}

.checkout-btn__holder .btn {
  height: clamp(2.8125rem, 2.625rem + 0.9375vw, 3.75rem);
  min-width: clamp(12.5rem, 11.25rem + 6.25vw, 18.75rem);
}

.checkout-go__back {
  width: fit-content;
  height: fit-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: var(--1614);
  line-height: 170%;
  color: var(--stroke-2);
}

.checkout-go__back:hover {
  color: var(--light-text-2);
}

.checkout-go__back:hover svg path {
  fill: var(--light-text-2);
}

@media(max-width:700px) {
  .checkout-btn__holder {
    align-items: center;
  }
}

@media(max-width:450px) {
  .checkout-btn__holder {
    flex-direction: column;
    align-items: flex-start;
  }
}

.place-order {
  display: flex;
  flex-direction: column;
  gap: var(--fourty);
}

.additional-privacy,
.additional-privacy a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--1614);
  line-height: 170%;
  color: var(--light-text-2);
}

.additional-privacy a {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.order-comments-toggle {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: fit-content;
  gap: 10px;
  align-items: center;
}

.toggle_order_comments {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--1614);
  line-height: 170%;
  color: var(--main-text);
}

.order-comments-toggle input {
  width: fit-content !important;
}

.styled-checkbox {
  display: none;
}

/* Style the label to create a custom checkbox */
.styled-checkbox+label {
  position: relative;
  padding-left: 35px;
  /* Space for the custom checkbox */
  cursor: pointer;
  user-select: none;
  /* Prevent text selection */
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--1614);
  line-height: 170%;
  color: var(--main-text);
}

/* Create the custom checkbox */
.styled-checkbox+label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  /* Size of the checkbox */
  height: 20px;
  /* Size of the checkbox */
  border: 1px solid var(--stroke-2);
  background: var(--white);
  /* Border color */
  border-radius: 50%;
  /* Round shape */
  background: white;
  /* Background color */
}

/* Style for the checked state */
.styled-checkbox:checked+label::before {
  border-color: var(--accent);
  /* Border color when checked */
}

/* Create the inner filled circle */
.styled-checkbox:checked+label::after {
  content: "";
  position: absolute;
  left: 4px;
  /* Position of the inner circle */
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  /* Size of the inner circle */
  height: 14px;
  /* Size of the inner circle */
  border-radius: 50%;
  /* Round shape */
  background: var(--accent);
  /* Inner circle color */
}

.col-1,
.col-2,
.need__shipping,
.payment-section {
  position: relative;
  padding-left: clamp(1.875rem, 1.75rem + 0.625vw, 2.5rem);
}

.counter-block {
  position: absolute;
  width: 20px;
  height: 100%;
  left: 0;
  top: 0;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--2016);
  line-height: 110%;
  color: var(--main-text);
  gap: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vertical-line {
  height: 100%;
  background: var(--light-text-1);
  width: 1px;
  margin: auto auto;
}

.payment_box.payment_method_cod,
.payment_box.payment_method_bacs {
  display: block !important;
  margin-top: 5px !important;
}

.payment_method_cod p,
.payment_method_bacs p {
  font-family: var(--font-family) !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 120% !important;
  color: var(--light-text-2) !important;
  margin-bottom: 0px !important;
}

.woocommerce form[name=checkout] li input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  display: contents;
}

.woocommerce form[name=checkout] li label:before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--stroke-2);
  background-color: transparent;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  position: absolute;
  left: 20px;
  transition: all .5s;
}

.woocommerce form[name=checkout] li label:after {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--accent);
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  opacity: 0;
  position: absolute;
  margin-top: 3px;
  margin-left: 3px;
  left: 20px;
  transition: all .5s;
}

.woocommerce form[name=checkout] li input:checked+label:before {
  border-color: var(--accent);
}

.woocommerce form[name=checkout] li input:checked+label:after {
  opacity: 1;
}

body.woocommerce-checkout .checkout li:has(input:checked) {
  border-color: var(--accent) !important;
}

body.woocommerce-checkout .checkout li {
  list-style-type: none;
  transition: all .5s;
  margin-bottom: 0px;
  background: var(--white);
  border: 1px solid var(--light-text-1);
  border-radius: 10px;
  min-height: 95px;
  max-width: 250px;
  width: 100%;
}

body.woocommerce-checkout .checkout li bdi {
  color: var(--Main-text, #404450);

  /* P3 */
  font-size: var(--p3);
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 18.2px */
  transition: all .5s;
}


body.woocommerce-checkout .checkout li.checked {
  border-color: var(--accent);
}


body.woocommerce-checkout .checkout li:hover {
  border-color: var(--accent);
}


.woocommerce form[name=checkout] li:hover label:before {
  border-color: var(--accent);
}

.woocommerce-additional-fields {
  margin-top: var(--fourty);
  display: flex;
  flex-direction: column;
  gap: var(--twenty);
}

.woocommerce-additional-fields>*:last-child {
  display: none;
}

body.woocommerce-checkout .checkout li label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  cursor: pointer;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: var(--main-text);
  width: 100%;
  height: 100%;
  padding: var(--twenty);
  padding-left: 55px !important;
}

body.woocommerce-checkout .checkout li label small {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: var(--light-text-2);
  max-width: 90%;
}

.woocommerce form[name=checkout] #customer_details .need__shipping #shipping_method,
.woocommerce form[name=checkout] #customer_details #payment ul.payment_methods {
  display: flex;
  flex-direction: row;
  width: 100%;
  flex-wrap: wrap;
  gap: var(--twenty);
}

.woocommerce-checkout .block-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--2016);
  line-height: 110%;
  color: var(--main-text);
}

.contacts-item__socials {
  display: flex;
  gap: 10px;
}

form.woocommerce-checkout {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  gap: var(--fifty);
}

.woocommerce-checkout .block-holder {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--twenty);
}

.woocommerce-checkout .block-subtitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: var(--light-text-2);
}

.col2-set {
  max-width: 1210px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--fourty);
  padding-top: var(--fourty);
}

#order_review {
  width: 435px;
  flex-shrink: 0;
  height: fit-content;
  background: var(--background-light);
  border-radius: 10px;
  position: sticky;
  top: 220px;
}

.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--twenty);
}

@media(max-width:1200px) {

  .woocommerce-billing-fields__field-wrapper,
  .woocommerce-shipping-fields__field-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .woocommerce form[name=checkout] #customer_details .need__shipping #shipping_method,
  .woocommerce form[name=checkout] #customer_details #payment ul.payment_methods {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
  }

  .woocommerce form[name=checkout] #customer_details .need__shipping #shipping_method>*,
  .woocommerce form[name=checkout] #customer_details #payment ul.payment_methods>* {
    width: 100% !important;
    max-width: unset !important;
  }
}

@media(max-width:1020px) {
  form.woocommerce-checkout {
    flex-direction: column-reverse;
  }

  .products-list__product-content {
    max-width: 70%;
    min-width: 240px;
  }

  #order_review {
    width: 100% !important;
    position: relative !important;
    top: unset !important;
  }

  .col2-set {
    padding-top: unset !important;
  }
}

@media(max-width:600px) {

  .woocommerce-billing-fields__field-wrapper,
  .woocommerce-shipping-fields__field-wrapper {
    grid-template-columns: 1fr !important;
  }

  .woocommerce form[name=checkout] #customer_details .need__shipping #shipping_method,
  .woocommerce form[name=checkout] #customer_details #payment ul.payment_methods {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  body.woocommerce-checkout .checkout li {
    width: 100% !important;
    max-width: unset !important;
  }
}

.woocommerce-checkout input,
.woocommerce-checkout textarea,
.woocommerce-checkout .form-input__holder {
  width: 100%;
}

#ship-to-different-address,
#billing_country_field,
#shipping_country_field,
.form-input__holder:has(#billing_country),
.form-input__holder:has(#shipping_country) {
  display: none;
}

/* cart-page */

.woocommerce-cart .actions {
  display: none;
}

.woocommerce-cart .woocommerce {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  gap: var(--fifty);
}

.woocommerce-cart .woocommerce:has(.wc-empty-cart-message) {
  flex-direction: column;
  width: fit-content;
  gap: var(--thirty);
}

.woocommerce-cart .cart-collaterals {
  height: fit-content;
  width: 435px;
  flex-shrink: 0;
  background: var(--background-light);
  border-radius: 10px;
  display: flex;
  position: sticky;
  top: 220px;
}

.woocommerce-cart .cart-collaterals .cart_totals {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-self: stretch;
  padding: var(--fourty);
  /*   gap: clamp(1.25rem, 1.125rem + 0.625vw, 1.875rem); */
  gap: var(--thirty);
}

.woocommerce-cart .cart-collaterals .cart_totals>h2 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 170%;
  text-transform: uppercase;
  color: var(--light-text-2);
  text-align: right;
}

.woocommerce-cart .cart-collaterals .cart_totals>.shop_table {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: var(--twenty);
  border-top: 1px solid var(--light-text-1);
  border-bottom: 1px solid var(--light-text-1);
  padding-top: var(--twenty);
  padding-bottom: var(--twenty);
}

.woocommerce-cart .cart-collaterals .cart_totals>.shop_table .line {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  gap: 15px;
}

.woocommerce-cart .cart-collaterals .cart_totals>.shop_table .line>div {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--1614);
  line-height: 170%;
  color: var(--main-text);
}

.woocommerce-cart .cart-collaterals .cart_totals>.shop_table .line .total {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  text-align: right;
  color: var(--main-text);
  margin-left: auto;
}

.woocommerce-cart .cart-collaterals .cart_totals>.shop_table>*:not(:last-child) {
  border-bottom: 1px solid var(--light-text-1);
  padding-bottom: var(--twenty);
}

.woocommerce-cart .cart-collaterals .cart_totals .btn {
  width: 100%;
}

.woocommerce-cart .order-total {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
  gap: 15px;
  flex-wrap: wrap;
}

.woocommerce-cart .order-total>div {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: var(--1614);
  line-height: 150%;
  color: var(--main-text);
}

.woocommerce-cart .order-total .total {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem);
  line-height: 150%;
  text-align: right;
  color: var(--main-text);
  margin-left: auto;
}

.woocommerce-cart-form {
  width: 100%;
  max-width: 1210px;
  display: flex;
  flex-direction: column;
}

.woocommerce-cart-form .body {
  display: flex;
  flex-direction: column;
  gap: var(--thirty);
}

.cart_item {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
  padding-bottom: var(--thirty);
  border-bottom: 1px solid var(--light-text-1);
}

.cart_item .product-btns__holder .woo-btn {
  height: 60px !important;
  width: 60px !important;
}

.cart_item .woo-btn.secondary .icon {
  background: var(--background-light) !important;
  height: 60px !important;
}

.cart_item .woo-btn .icon {
  height: 60px !important;
  width: 60px !important;
}

.cart_item .product-name,
.cart_item .product-name>* {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--2016);
  line-height: 110%;
  color: var(--main-text);
  margin-bottom: var(--thirty);
}

.cart_item .product-name:hover a {
  color: var(--primary);
}

.cart_item .product-image-holder {
  width: 100px;
  height: 100px;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.cart_item .product-image-holder img {
  width: 100%;
  height: 100%;
  display: flex;
  border-radius: 10px;
  object-fit: cover;
}

.cart_item .product-content__holder {
  display: flex;
  flex-direction: row;
  gap: 20px;
  max-width: 900px;
  width: 100%;
  align-items: flex-start;
}

.cart_item .product-price {
  margin-bottom: var(--twenty);
}

.cart_item .product-price,
.cart_item .product-price>* {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: fit-content;
  width: fit-content;
  gap: 10px;
}

.cart_item .product-price .price {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
  line-height: 150%;
  color: var(--light-text-2);
}

.cart_item .product-price .old-price {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--1614);
  line-height: 170%;
  text-decoration: line-through;
  color: var(--light-text-2);
}

.cart_item .product-price>* {
  align-items: flex-end;
}

.cart_item .product-btns__holder {
  display: flex;
  flex-direction: row;
  gap: var(--twenty);
  width: fit-content;
  height: fit-content;
  margin-bottom: var(--twenty);
}

.cart_item .product-remove>* {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: var(--1614);
  line-height: 170%;
  color: var(--stroke-2);
  width: fit-content;
}

.cart_item .product-remove>*:hover {
  color: var(--primary);
}

.cart_item .product-remove>*:hover svg path {
  fill: var(--primary);
}

.cart_item .product-subtotal {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 170px;
  align-items: flex-end;
}

.cart_item .product-subtotal .price-holder {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.cart_item .product-subtotal .price-holder .price {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
  line-height: 150%;
  color: var(--light-text-2);
}

.cart_item .product-subtotal .price-holder .old-price {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--1614);
  line-height: 170%;
  text-decoration: line-through;
  color: var(--light-text-2);
}

.shop_table-head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  padding-top: var(--twenty);
  padding-bottom: var(--twenty);
  margin-bottom: var(--thirty);
  border-bottom: 1px solid var(--light-text-1);
}

.shop_table-head>* {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 170%;
  text-transform: uppercase;
  color: var(--light-text-2);
}

@media(max-width:1020px) {
  .woocommerce-cart .woocommerce {
    flex-direction: column-reverse;
  }

  .woocommerce-cart .cart-collaterals {
    width: 100%;
    position: relative;
    top: unset;
  }
}

@media(max-widtH:580px) {
  .cart_item {
    flex-direction: column;
  }
}

@media(max-width:380px) {
  .cart_item .product-content__holder {
    flex-direction: column;
  }
}

/* favorites-page */
.mainbanner-item__advantage-icon.advantage-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.mainbanner-item__advantage-icon.advantage-icon svg {
  width: 100%;
  height: 100%;
}

.favorites-counter__holder {
  width: 435px;
  height: fit-content;
  flex-shrink: 0;
  background: var(--background-light);
  border-radius: 10px;
  display: flex;
  position: sticky;
  top: 230px;
}

.favorites-counter__holder-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-self: stretch;
  padding: var(--fourty);
  gap: var(--thirty);
}

.favorites-counter {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding-bottom: var(--thirty);
  border-bottom: 1px solid var(--light-text-1);
}

.favorites-counter__name {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--1614);
  line-height: 150%;
  color: var(--main-text);
}

.favorites-counter__value {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: var(--main-text);
}

.clear-favs {
  width: fit-content;
  display: flex;
  flex-direction: row;
  height: fit-content;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  gap: 10px;
}

.clear-favs svg {
  display: flex;
}

.clear-favs__name {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: var(--1614);
  line-height: 170%;
  color: var(--stroke-2);
}

.clear-favs:hover .clear-favs__name {
  color: var(--primary);
}

.clear-favs:hover svg path {
  fill: var(--primary);
}

.favorites-holder {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  gap: 20px;
}

.favorites-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 1210px;
}

.favorite-item {
  width: 100%;
  height: fit-content;
  border: 1px solid var(--light-text-1);
  border-radius: 10px;
  display: flex;
  padding: var(--twenty);
  padding-right: var(--thirty);
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  /* flex-wrap: wrap; */
}

.favorite-item__content-holder {
  display: flex;
  flex-direction: row;
  max-width: 880px;
  width: 100%;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  /* flex-wrap: wrap; */
}

.favorite-item__title-holder {
  max-width: 570px;
  width: 100%;
  align-items: center;
  gap: var(--twenty);
  display: flex;
  flex-direction: row;
  align-items: center;
}

.favorite-item__photo {
  width: 100px;
  height: 100px;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
}

.favorite-item__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  border-radius: 10px;
}

.favorite-item__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--2016);
  line-height: 110%;
  color: var(--main-text);
}

.favorite-item .price {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 280px;
  gap: 10px;
  align-self: center;
}

.favorite-item .sale-price,
.favorite-item .sale-price bdi,
.favorite-item .sale-price bdi>* {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
  line-height: 150%;
  color: var(--light-text-2);
}

.favorite-item .regular-price,
.favorite-item .regular-price bdi,
.favorite-item .regular-price bdi>* {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--1614);
  line-height: 170%;
  text-decoration: line-through;
  color: var(--light-text-2);
}

.favorite-item__btns-holder {
  display: flex;
  flex-direction: row;
  /* flex-wrap: wrap; */
  width: fit-content;
  height: fit-content;
  gap: var(--fifteen);
}

.favorite-item__btns-holder>* {
  height: clamp(3.125rem, 3rem + 0.625vw, 3.75rem) !important;
  width: clamp(3.125rem, 3rem + 0.625vw, 3.75rem) !important;
}

.favorite-item .woo-btn.secondary .icon {
  background: var(--background-light) !important;
  height: clamp(3.125rem, 3rem + 0.625vw, 3.75rem) !important;
}

.favorite-item .woo-btn .icon {
  height: clamp(3.125rem, 3rem + 0.625vw, 3.75rem) !important;
  width: clamp(3.125rem, 3rem + 0.625vw, 3.75rem) !important;
}

.favorite-item__title-holder:hover .favorite-item__title {
  color: var(--primary);
}

@media(max-width:1300px) {
  .favorites-holder {
    flex-direction: column-reverse;
  }

  .favorites-counter__holder {
    position: relative;
    top: unset;
    width: 100%;
  }

  .favorites-items {
    max-width: unset;
  }
}

@media(max-width:900px) {
  .favorite-item__content-holder {
    flex-wrap: wrap;
  }
  #header .logo__holder{
    height: 80px;
  }
  .social-holder__outer{
    display: flex;
  }
  .header-main__content-top{
    display: none;
  }
}

@media(max-width:600px) {
  .favorite-item__title-holder {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media(max-width:390px) {
  .favorite-item {
    flex-wrap: wrap;
  }
}

.single-product .products-block {
  background: transparent;
}

.single-product .products-block .container {
  padding-top: unset;
  padding-bottom: unset;
}

.related-products {
  margin-top: var(--eighty);
  background: var(--background-light);
  padding-top: var(--eighty);
  padding-bottom: var(--eighty);
  width: 100%;
}

.related-products h2 {
  margin-bottom: var(--fourty);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--fourty);
  line-height: 110%;
  color: var(--main-text);
}

.related-products .swiper-slide {
  max-width: 342px;
  display: flex;
  flex-direction: column;
  height: auto;
  align-self: stretch;
}

@media(max-width:430px) {
  .related-products .swiper-slide {
    max-width: unset;
    width: 45%;
  }
}

.woocommerce-notices-wrapper,
#noticer {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10500;
  max-width: calc(100% - 60px);
  display: flex;
  flex-direction: column;
  pointer-events: none;
  align-items: flex-end;
}

@media(max-width:450px) {

  .woocommerce-notices-wrapper,
  #noticer {
    bottom: 10%;
  }
}

.added_to_cart.wc-forward {
  display: none;
}

.woocommerce-message,
.woocommerce-info {
  display: inline-block;
  pointer-events: initial;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0px 0px 5px 0px var(--elements);
  background-color: var(--elements);
  position: relative;
  z-index: 15;
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(10px, 0.00125* 100vw + 9.6px, 12px);
  font-weight: 600;
  line-height: 140%;
  font-weight: 400;
  line-height: 18px;
  transition: unset;
}

#noticer {
  display: inline-block;
  pointer-events: initial;
  width: fit-content;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0px 0px 5px 0px var(--elements);
  background-color: var(--elements);
  z-index: 15;
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(10px, 0.00125* 100vw + 9.6px, 12px);
  font-weight: 600;
  line-height: 140%;
  font-weight: 400;
  line-height: 18px;
  opacity: 0;
  z-index: 1000;
}

#noticer.active {
  opacity: 1;
}

.wc-forward:not(.btn),
.restore-item {
  color: #fff;
  font-size: clamp(10px, 0.00125* 100vw + 9.6px, 12px);
  font-weight: 600;
  line-height: 140%;
  font-weight: 400;
  line-height: 18px;
  text-decoration: underline;
}

.lmp_load_more_button .lmp_button {
  display: flex !important;
  text-align: center !important;
  align-items: center !important;
  width: fit-content !important;
  height: fit-content !important;
  text-align: center !important;
  place-content: center !important;
  cursor: pointer !important;
  padding: clamp(0.75rem, 0.625rem + 0.625vw, 1.375rem) var(--thirty) !important;
  font-family: var(--font-family) !important;
  font-weight: 600 !important;
  font-size: var(--1614) !important;
  line-height: 100% !important;
  color: var(--white) !important;
  border-radius: 100px !important;
  background: var(--primary) !important;
  border: 1px solid var(--primary) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: var(--fourty) !important;
  min-width: clamp(6.25rem, 3.225rem + 15.125vw, 21.375rem) !important;
}

.lmp_load_more_button.br_lmp_button_settings .lmp_button:hover {
  background: var(--primary-hover) !important;
  background-color: var(--primary-hover) !important;
  background-color: unset !important;
}

.br_loading_inside_lmp img.lmp_rotate,
.br_loading_inside_lmp .fa.lmp_rotate:before,
.lmp_products_loading .lmp_rotate,
.lmp_products_loading .fa.lmp_rotate:before,
.lmp_products_loading .lmp_rotate img {
  display: none !important;
}

/* .filters-widget {
  background-color: var(--bg-light);
  padding-top: clamp(30px, 0.625vw + 28px, 40px);
  padding-bottom: clamp(30px, 0.625vw + 28px, 40px);
  margin-bottom: clamp(30px, 0.625vw + 28px, 40px);
} */

.filters-widget .filters-form {
  display: flex;
  flex-direction: row;
  gap: var(--thirty);
  flex-wrap: wrap;
  border-radius: 10px;
  background: var(--background-light);
  padding: 10px;
}

.filters-widget .filters-form .blocks {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
  /* max-width: 65vw; */
  max-width: 80vw;
}

.filters-widget .filters-form .filter-block {
  border-radius: 5px;
  background: var(--elements);
  /* padding: var(--twenty); */
  position: relative;
  transition: all 0.3s ease-in;
  height: fit-content;
}

.filters-widget .filters-form .filter-block .filter-block-header {
  padding: var(--twenty);
  height: 50px;
}

.filters-widget .filters-form .filter-block .filter-block-header:hover {
  background: var(--primary);
  border-radius: 5px;
}

.filters-widget .filters-form .filter-block.disabled {
  display: none;
}

.filters-widget .filters-form .filter-block.opened {
  background: var(--primary);
}

.filters-widget .filters-form .filter-block.opened .filter-block-header .filter-block-title {
  color: var(--white);
}

.filters-widget .filters-form .filter-block.opened .filter-block-header .filter-block-toggler svg {
  transform: scale(1, -1);
}

.filters-widget .filters-form .filter-block .filter-block-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.filters-widget .filters-form .filter-block .filter-block-header .filter-block-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: var(--white);
}

.filters-widget .filters-form .filter-block .filter-block-header .filter-block-toggler svg {
  width: 12px;
  height: 12px;
  object-fit: contain;
  transition: all 0.3s ease-in;
}

.filters-widget .filters-form .filter-block .filter-block-header .filter-block-toggler svg path {
  fill: var(--white);
}

.filters-widget .filters-form .filter-block .filter-block-content {
  position: absolute;
  border: 1px solid var(--light-text-1);
  border-radius: 15px;
  padding: 20px;
  left: 0;
  margin-top: var(--twenty) !important;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 0 10px 0 rgba(24, 24, 24, 0.1);
  z-index: 5;
  overflow: auto;
  max-height: 340px;
  width: 340px;
}

.filters-widget .filters-form .filter-block .filter-block-content .local-search {
  display: none !important;
}

.filters-widget .filters-form .filter-block .filter-block-content .inputs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.filters-widget .filters-form .filter-block .filter-block-content .inputs .group input[type=checkbox] {
  display: none;
}

.filters-widget .filters-form .filter-block .filter-block-content .inputs .group input:checked+label::before {
  /* background-color: var(--primary); */
  border-color: var(--accent);
}

.filters-widget .filters-form .filter-block .filter-block-content .inputs .group input:checked+label::after {
  opacity: 1;
}

.filters-widget .filters-form .filter-block .filter-block-content .inputs .group label {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 5px;
  cursor: pointer;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 170%;
  color: var(--main-text);
  align-items: center;
}

.filters-widget .filters-form .filter-block .filter-block-content .inputs .group label::before {
  content: '';
  width: 21px;
  height: 21px;
  border-radius: 50%;
  border: 1px solid var(--stroke-2);
  transition: all 0.3s ease-in;
  flex-shrink: 0;
}

.filters-widget .filters-form .filter-block .filter-block-content .inputs .group label::after {
  content: '';
  background: var(--accent);
  border-radius: 68%;
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  left: 4px;
  top: 4px;
  width: 15px;
  height: 15px;
  opacity: 0;
  margin-top: auto;
  transition: all 0.3s ease-in;
  margin-bottom: auto;
  top: 0;
  bottom: 0;
}

.filters-widget .filters-form .filter-block-price .inputs.price,
.filters-widget .filters-form .filter-block-price .inputs.custom-range {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.filters-widget .filters-form .filter-block-price .filter-block-content {
  display: flex;
  flex-direction: column;
  margin-top: 0;
  gap: 30px;
  padding-top: 30px;
  width: 340px;
}

.filters-widget .filters-form .filter-block-price .group {
  display: flex;
  gap: 10px;
  cursor: pointer;
}

.filters-widget .filters-form .filter-block-price .group input {
  width: 100%;
  padding: var(--fifteen) var(--twenty);
  background: var(--white);
  text-align: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: var(--light-text-2);
  outline: none;
  border: 1px solid var(--light-text-1);
  border-radius: 5px;
}

.filters-widget .filters-form .filter-block-price .group input::placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: var(--light-text-2);
}

.filters-widget .filters-form .filter-block-price .group input:hover,
.filters-widget .filters-form .filter-block-price .group input:focus {
  border-color: var(--stroke-1);
  color: var(--main-text);
}

.filters-widget .filters-form .filter-block-price .group input:hover::placeholder,
.filters-widget .filters-form .filter-block-price .group input:focus::placeholder {
  color: var(--main-text);
}

.filters-widget .filters-form .filter-block-price .group input::-webkit-outer-spin-button,
.filters-widget .filters-form .filter-block-price .group input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
}

.filters-widget .filters-form .filter-block-price .noUi-target {
  background: var(--stroke);
  height: 2px;
  border: 1px solid var(--stroke);
}

.filters-widget .filters-form .filter-block-price .noUi-horizontal {
  height: 1px;
}

.filters-widget .filters-form .filter-block-price .noUi-target {
  position: relative;
  direction: ltr;
}

.filters-widget .filters-form .filter-block-price .noUi-target,
.filters-widget .filters-form .filter-block-price .noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 96%;
}

.filters-widget .filters-form .filter-block-price .noUi-base,
.filters-widget .filters-form .filter-block-price .noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.filters-widget .filters-form .filter-block-price .noUi-connects {
  border-radius: 3px;
  height: 5px;
  background: var(--light-text-1);
  border-radius: 5px;
  top: -1px;
}

.filters-widget .filters-form .filter-block-price .noUi-connects {
  overflow: hidden;
  z-index: 0;
}

.filters-widget .filters-form .filter-block-price .noUi-connect {
  background: var(--accent);
  height: 100%;
}

.filters-widget .filters-form .filter-block-price .noUi-connect,
.filters-widget .filters-form .filter-block-price .noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 3px;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

.filters-widget .filters-form .filter-block-price html:not([dir=rtl]) .noUi-horizontal .noUi-origin {
  left: auto;
  right: 0;
}

.filters-widget .filters-form .filter-block-price .noUi-handle {
  position: absolute;
}

.filters-widget .filters-form .filter-block-price .noUi-horizontal .noUi-handle {
  cursor: pointer;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  right: -8px;
  top: -6px;
  background: var(--accent);
  box-shadow: unset;
}

.filters-widget .filters-form .filter-block-price .noUi-horizontal .noUi-handle::before {
  content: "";
  background: var(--accent);
  opacity: 0;
  width: 15px;
  height: 15px;
  display: block;
  border-radius: 50%;
  border: 1px solid var(--accent);
  left: -7px;
  top: -7px;
  position: absolute;
  transition: opacity 0.3s ease;
}

.filters-widget .filters-form .tags {
  margin-bottom: clamp(20px, 0.625vw + 18px, 30px);
}

.filters-widget .filters-form .tags .inputs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filters-widget .filters-form .tags .inputs .group input[type=checkbox] {
  display: none;
}

.filters-widget .filters-form .tags .inputs .group input:checked+label::before {
  background-color: var(--primary);
  border-color: var(--primary);
}

.filters-widget .filters-form .tags .inputs .group input:checked+label::after {
  opacity: 1;
}

.filters-widget .filters-form .tags .inputs .group label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  line-height: 170%;
  text-transform: uppercase;
  color: var(--primary);
}

.filters-widget .filters-form .tags .inputs .group label::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1px solid var(--primary);
  transition: all 0.3s ease-in;
  flex-shrink: 0;
}

.filters-widget .filters-form .tags .inputs .group label::after {
  content: '';
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  left: 5px;
  top: 7px;
  width: 12px;
  height: 9px;
  opacity: 0;
  transition: all 0.3s ease-in;
}

.filters-widget .filter__bottom {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  height: fit-content;
  align-items: center;
}

@media (max-width: 600px) {
  .filters-widget .filter__bottom {
    flex-direction: column-reverse;
    align-items: center;
  }
}

.filters-widget .filter__bottom .buttons {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: fit-content;
  height: fit-content;
}

.filters-widget .filter__bottom .buttons .btn {
  border-radius: 5px;
  height: 50px;
}

@media (max-width: 600px) {
  .filters-widget .filter__bottom .buttons {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .filters-widget .filter__bottom .buttons .btn {
    width: 100%;
  }
}

.filters-widget .filter__bottom .buttons .link {
  display: flex;
  gap: 10px;
  background-color: inherit;
  border: none;
  outline: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: fit-content;
  margin: auto auto;
  height: fit-content;
}

.filters-widget .filter__bottom .buttons .link svg {
  width: 12px;
  height: 12px;
}

.filters-widget .filter__bottom .buttons .link span {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: var(--1614);
  line-height: 170%;
  color: var(--stroke-2);
}

.filters-widget .filter__bottom .buttons .link:hover span {
  color: var(--primary);
}

.filters-widget .filter__bottom .buttons .link:hover svg path {
  fill: var(--primary);
}

.filters-widget .filter__bottom .btn-white {
  height: fit-content;
  display: flex;
  gap: 10px;
  align-items: center;
  border-radius: 30px;
  transition: all 0.3s ease-in;
  width: fit-content;
}

@media (max-width: 600px) {
  .filters-widget .filter__bottom .btn-white {
    width: 100%;
    justify-content: center;
  }
}

.filters-widget .filter__bottom .btn-white:hover {
  border-radius: 15px;
}

.filters-widget .filter__bottom .btn-white span {
  font-weight: 500;
  font-size: 20px;
  line-height: 170%;
  color: var(--primary);
}

.filters-widget .filter__bottom .btn-white svg {
  width: 16px;
  height: 16px;
}

@media(max-width:600px) {

  .filters-widget .filters-form .blocks,
  .filters-widget .filters-form .filter-block {
    width: 100%;
  }

  .filters-widget .filters-form .filter-block .filter-block-content {
    margin-top: 10px !important;
  }

  .filters-widget .filters-form .filter-block .filter-block-content {
    width: 100%;
    max-width: unset;
  }

  .filters-widget .filter__bottom {
    width: 100%;
  }

  .filters-widget .filter__bottom .buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media(max-width:900px) {
  .filters-widget .filters-form .blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: unset;
  }

  .filters-widget .filters-form .filter-block .filter-block-content {
    width: 100%;
  }
}

@media(max-width:600px) {
  .filters-widget .filters-form .blocks {
    grid-template-columns: 1fr;
  }
}

/* FILTER START */

.sidebar {
  margin-bottom: var(--fourty);
  position: relative;
}

.sidebar .filter-block-content {
  transition: unset !important;
}

/* .filters-widget .price__block .accordeon-block-header {
  margin-bottom: unset !important;
  padding: 20px !important;
  margin: -20px !important;
}

.filters-widget .accordeon-block-header {
  padding: unset !important;
  margin: unset !important;
  color: var(--white) !important;
}

.filters-widget .filters-form {
  gap: 10px !important;
}

.filters-widget .price__block {
  padding-bottom: 20px !important;
}

.filters-widget .accordeon-block,
.filters-widget .price__block {
  padding: 20px !important;
  background: var(--elements) !important;
  position: relative !important;
}

.filters-widget .accordeon-block-header-title {
  gap: 10px !important;
}

.filters-widget .filters-form,
.filters-widget .buttons {
  flex-direction: row !important;
}

.accordeon-block-header {
  position: relative;
}

.accordeon-block-content {
  display: none;
}

.accordeon-block-content {
  position: absolute;

  pointer-events: none;
  width: 340px;
  background: var(--white);
  border: 1px solid var(--light-text-1);
  border-radius: 10px;
  z-index: 5;
} */



/* FILTER END */

li.active>a:not(.headerCat li.active>a) {
  color: var(--primary-hover) !important;
}

.error404 .error-holder {
  margin-top: var(--fourty);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--fifty);
  align-items: center;
}

.error404 .error-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--h2);
  line-height: 110%;
  text-align: center;
  color: var(--main-text);
  margin-bottom: var(--fifteen);
}

.error404 .error-subtitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--1614);
  line-height: 170%;
  text-align: center;
  color: var(--light-text-2);
  margin-bottom: var(--thirty);
}

.error404 .error-btn {
  margin-left: auto;
  margin-right: auto;
}

.error404 .error-holder .error-number {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 250px;
  line-height: 150%;
  color: var(--accent);
}

.error-number__photo {
  width: 250px;
  height: 245px;
  margin-left: -35px;
  margin-right: -35px;
  display: flex;
}

.error-number__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
}

.error404 .error-holder .error-numbers {
  display: flex;
  flex-direction: row;
  width: fit-content;
}

.error-bread {
  color: var(--primary) !important;
}

.error-text__holder {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

@media(max-width:550px) {
  .error404 .error-holder .error-numbers {
    transform: scale(.8);
    margin-bottom: -20px;
  }
}

@media(max-width:420px) {
  .error404 .error-holder .error-numbers {
    transform: scale(.6);
    margin-bottom: -40px;
  }
}

img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.archive-content__holder {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: var(--thirty);
  width: 100%;
}

.archive-items__holder {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1210px;
}

.archive-tabs__holder {
  border: 1px solid var(--light-text-1);
  border-radius: 10px;
  width: 100% !important;
  padding: 10px;
  margin-bottom: var(--fourty);
}

.post-type-archive-stocks .show-more__btn {
  margin-top: var(--thirty);
}

@media(max-width:400px) {
  .archive-tabs__holder>* {
    width: 100% !important;
  }
}

@media(max-width:1200px) {
  .archive-content__holder {
    flex-direction: column-reverse;
  }

  .block-go {
    position: relative !important;
    top: unset !important;
  }

  .archive-content__holder .block-go {
    width: 100%;
    min-height: unset;
    background: var(--stroke-1) !important;
  }
}

.loader {
  width: 48px;
  height: 48px;
  border: 5px solid var(--stroke-2);
  border-bottom-color: var(--primary);
  border-radius: 50%;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  display: none;
  position: fixed;
  left: 0;
  z-index: 11000;
  top: 0;
  bottom: 0;
  right: 0;
  margin: 0px auto;
  margin-top: auto;
  margin-bottom: auto;
}

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

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

.fancybox__container * {
  transition: unset !important
}

.fancybox__container,
.fancybox__container>* {
  transform: unset !important;
  transition: unset !important
}

.fancybox__container iframe {
  width: 100%;
  height: 100%;
  min-width: 70vw;
  max-height: 90vh;
  aspect-ratio: 16 / 9;
}

.fancybox__content:has(iframe) {
  padding: 10px;
  background: var(--white);
  width: 90%;
}

html.with-fancybox body.hide-scrollbar {
  overflow: hidden;
  /* Prevent scrolling */
}

.fancybox__container *:not(.fancybox__container .theme-modal *) {
  transition: unset;
  --fancybox-bg: rgba(0, 0, 0, 0.8);
}

/* width */
::-webkit-scrollbar {
  width: 3px;
  height: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #efefef;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #a38f70;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #a38f70;
}

input[type="number"] {
  -moz-appearance: textfield;
}

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

:root {
  --transition: all 0.3s ease;

  --ten: clamp(0.5rem, 0.475rem + 0.125vw, 0.625rem);
  /* 10 - 8 */
  --fifteen: clamp(0.5rem, 0.4125rem + 0.4375vw, 0.9375rem);
  /* 15 - 8 */
  --eighteen: clamp(0.625rem, 0.525rem + 0.5vw, 1.125rem);
  /* 18 - 10 */
  --twenty: clamp(0.875rem, 0.8rem + 0.375vw, 1.25rem);
  /* 20 - 14 */
  --twentyFive: clamp(1rem, 0.8875rem + 0.5625vw, 1.5625rem);
  /* 25 - 16 */
  --thirty: clamp(0.75rem, 0.525rem + 1.125vw, 1.875rem);
  /* 30 - 12 */
  --thirtyFive: clamp(1.125rem, 0.9125rem + 1.0625vw, 2.1875rem);
  /* 35 - 18 */
  --fourty: clamp(1.125rem, 0.85rem + 1.375vw, 2.5rem);
  /* 40 - 18 */
  --fourtyFive: clamp(1.25rem, 0.9375rem + 1.5625vw, 2.8125rem);
  /* 45 - 20 */
  --fifty: clamp(1.25rem, 0.875rem + 1.875vw, 3.125rem);
  /* 50 - 20 */
  --sixty: clamp(1.375rem, 0.9rem + 2.375vw, 3.75rem);
  /* 60 - 22 */
  --sixtyFive: clamp(1.375rem, 0.8375rem + 2.6875vw, 4.0625rem);
  --seventy: clamp(1.375rem, 0.775rem + 3vw, 4.375rem);
  /* 70 - 22 */
  --eighty: clamp(1.5rem, 0.8rem + 3.5vw, 5rem);
  /* 80 - 24 */
  --eightyFive: clamp(1.375rem, 0.5875rem + 3.9375vw, 5.3125rem);
  --ninety: clamp(1.125rem, 0.225rem + 4.5vw, 5.625rem);
  /* 90 - 18 */
  --100: clamp(1.75rem, 0.85rem + 4.5vw, 6.25rem);
  /* 100 - 28 */
  --110: clamp(1.375rem, 0.275rem + 5.5vw, 6.875rem);
  /* 110 - 22 */
  --120: clamp(1.375rem, 0.15rem + 6.125vw, 7.5rem);
  /* 120 - 22 */
  --125: clamp(1.375rem, 0.0875rem + 6.4375vw, 7.8125rem);
  /* 125 - 22 */
  --150: clamp(0rem, -1.5625rem + 7.8125vw, 7.8125rem);
  --170: clamp(1.375rem, -0.475rem + 9.25vw, 10.625rem);

  --5040: clamp(2.5rem, 2.375rem + 0.625vw, 3.125rem);
  --2420: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
  --2018: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
  --2016: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
  --2014: clamp(0.875rem, 0.8rem + 0.375vw, 1.25rem);
  --1816: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  --1814: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  --1614: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  --14: 14px;

  --white: #fff;
  --background-light: #f3f3f3;
  --main-text: #171717;
  --light-text-1: #e1e1da;
  --light-text-2: #4e4e4e;
  --primary: #10604e;
  /* --primary: #10604e; */
  /* --primary-hover: #148a70; */
  --primary-hover: #17a888;
  --accent: #b21423;
  --elements: #232323;
  --stroke-1: #3c3c3c;
  --stroke-2: #b0b0b0;
  --stroke-3: #e1e1da;

  --font-family: "Inter", sans-serif;

  --h1: clamp(1.5rem, 1.05rem + 2.25vw, 3.75rem);
  /* 60-24 */
  --h2: clamp(1.375rem, 1.15rem + 1.125vw, 2.5rem);
  /* 40 - 22 */
  --h3: clamp(1.25rem, 1.125rem + 0.625vw, 1.875rem);
  /* 30 - 20 */
  --h4: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
  /* 20 - 18 */
  --h5: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  /* 18 - 16 */
  --h6: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  /* 16 - 14 */
  --stock: clamp(1.125rem, 0.9125rem + 1.0625vw, 2.1875rem);

}

h1 {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: var(--h1);
  line-height: 150%;
  color: #1f1f1f;
}

h2 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--h2);
  line-height: 110%;
  color: #1f1f1f;
}

h3 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--h3);
  line-height: 110%;
  color: #1f1f1f;
}

h4 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--h4);
  line-height: 110%;
  color: #1f1f1f;
}

h5 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--h5);
  line-height: 110%;
  color: #1f1f1f;
}

h6 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--h6);
  line-height: 110%;
  color: #1f1f1f;
}

/* templates */

input,
textarea {
  border: 1px solid var(--light-text-1);
  border-radius: 5px;
  padding: var(--twenty);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--1614);
  line-height: 170%;
  color: var(--main-text);
  background: var(--white);
  display: flex;
  width: fit-content;
  height: fit-content;
  outline: none;
  resize: none;
  transition: var(--transition);
  padding-top: 25px;
  padding-bottom: 15px;
}

textarea {
  min-height: 160px;
  padding: var(--twenty);
}

input::placeholder,
textarea::placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--1614);
  line-height: 170%;
  color: var(--light-text-2);
}

input:hover,
textarea:hover,
input:focus,
textarea:focus {
  border-color: var(--primary);
  color: var(--main-text);
}

input.error,
textarea.error {
  border-color: red !important;
  color: red !important;
}

.form-input__holder:has(input.error) .input-placeholder,
.form-input__holder:has(textarea.error) .input-placeholder,
input.error::placeholder,
textarea.error::placeholder {
  color: red !important;
}

.form-input__holder {
  position: relative;
  width: fit-content;
  height: fit-content;
}

.input-placeholder {
  position: absolute;
  /* left: var(--thirty); */
  /* right: var(--thirty); */
  /* top: var(--thirty); */
  /* bottom: var(--thirty); */
  left: var(--twenty);
  margin-top: auto;
  margin-bottom: auto;
  top: 0;
  bottom: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--1614);
  line-height: 170%;
  color: var(--light-text-2);
  height: fit-content;
  pointer-events: none;
  transition: var(--transition);
}

.input-placeholder.active {
  top: -25px !important;
  font-size: 12px !important;
}

.form-input__holder:hover .input-placeholder {
  top: -25px;
  font-size: 12px;
}


@media(max-width:1300px) {
  .form-input__holder:hover .input-placeholder {
    top: -25px;
    font-size: 10px;
  }

  .form-input__holder .input-placeholder.active {
    top: -25px !important;
    font-size: 10px !important;
  }
}


@media(max-width:1300px) {
  .form-input__holder:hover .input-placeholder {
    top: -25px;
    font-size: 10px;
  }

  .form-input__holder .input-placeholder.active {
    top: -25px !important;
    font-size: 10px !important;
  }
}


/* end templates */

/* components start */

.woocommerce #openFilter {
  position: fixed;
  background: var(--primary);
  border: 1px solid var(--primary);
  color: var(--white);
  padding: 15px 5px;
  cursor: pointer;
  transition: background-color 0.3s ease-in;
  writing-mode: vertical-lr;
  left: 0;
  top: 50%;
  display: none;
  transition: all .5s;
  transform: translateX(270px);
}

.woocommerce .sidebar.active {
  transform: translateX(0px);
  z-index: 5000;
}

@media(max-width:600px) {
  .woocommerce #openFilter {
    display: block !important;
  }

  .woocommerce .sidebar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 270px;
    transform: translateX(-270px);
    transition: transform 0.3s ease-in;
    z-index: 100;
    background-color: #fff;
    padding: 0;
    z-index: 5000;
  }

  .woocommerce .sidebar .filters-widget {
    max-height: 100vh;
    overflow: auto;
    height: 100%;
    background: var(--background-light);
  }
}

.zoom-icon {
  width: clamp(2rem, 1.9rem + 0.5vw, 2.5rem);
  height: clamp(2rem, 1.9rem + 0.5vw, 2.5rem);
  display: flex;
  border-radius: 50%;
  align-items: center;
  place-content: center;
  background: var(--white);
  position: absolute;
  z-index: 3;
  bottom: var(--twenty);
  right: var(--twenty);
  pointer-events: none;
}

.zoom-icon svg {
  display: flex;
  margin: auto auto;
}

/* quantity */

.quantity {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  border: 1px solid var(--primary);
  border-radius: 100px;
  width: 109px;
  justify-content: space-between;
  overflow: hidden;
  height: 60px;
  padding: 15px;
}

.quantity button {
  cursor: pointer;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 3px;
}

.quantity input {
  margin: 0;
  position: relative;
  max-width: 20px;
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  color: var(--main-text);
  text-align: center;
}

.quantity .input-holder {
  display: flex;
}

.quantity svg path {
  transition: all .5s;
}

.quantity button.disabled svg path {
  fill: var(--stroke-2);
}

.quantity button svg path {
  fill: var(--primary);
}

/* single-product */


.single-product__item {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: var(--thirty);
}

.single-product__blocks-nav {
  margin-top: var(--fourty);
  margin-bottom: var(--fourty);
}

.single-product__blocks>* {
  display: none;
  margin-top: unset !important;
  transition: unset;
}

.single-product__blocks>* .container {
  padding: 0 0 !important;
}

.single-product__info-holder {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: var(--thirty);
}

.single-product__content-holder {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--fifty);
}

.single-product__item .cart {
  width: fit-content;
  display: flex;
  height: fit-content;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--twenty);
}

.single-product__item .cart .btn {
  height: 60px;
  min-width: 140px;
}

.single-product__item .woo-btn .icon {
  background: var(--background-light) !important;
}

.single-product__item .woo-btn,
.single-product__item .woo-btn .icon {
  height: 60px !important;
  width: 60px !important;
}

.single-product__item .woo-btn .icon svg {
  width: 22px !important;
  height: 22px !important;
}

.single-product__additional-holder {
  display: flex;
  flex-direction: row;
  width: fit-content;
  height: fit-content;
  gap: var(--fourty);
  flex-wrap: wrap;
}

.single-product__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--h2);
  line-height: 110%;
  color: var(--main-text);
}

.single-product__item .price {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: fit-content;
  height: fit-content;
  gap: var(--fifteen);
  align-items: flex-end;
}

.single-product__item .sale-price,
.single-product__item .sale-price bdi,
.single-product__item .sale-price bdi>* {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.125rem, 0.95rem + 0.875vw, 2rem);
  line-height: 130%;
  color: var(--light-text-2);
}

.single-product__item .regular-price,
.single-product__item .regular-price bdi,
.single-product__item .regular-price bdi>* {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-decoration: line-through;
  color: var(--light-text-2);
}

.single-product__attributes {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.woocommerce-product-attributes-item {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 10px;
  height: fit-content;
}

.woocommerce-product-attributes-item>* {
  flex: 1;
  background: var(--background-light);
  border-radius: 5px;
  padding: var(--fifteen);
}

.woocommerce-product-attributes-item__label {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--1614);
  line-height: 170%;
  color: var(--light-text-2);
}

.woocommerce-product-attributes-item__value {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 170%;
  color: var(--main-text);
}

@media(max-width:450px) {
  .woocommerce-product-attributes-item {
    flex-direction: column;
  }
}

/* single-product-swiper */

.single-product__swiper-holder {
  max-width: 745px;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
  height: fit-content;
  position: sticky;
  top: 210px;
}

.single-product__swiper-holder .holder {
  overflow: hidden;
  width: 100%;
  max-width: 605px;
  max-height: 580px;
  height: 100%;
}

.single-product__swiper-holder .holder .swiper {
  height: 100%;
  max-height: 580px;
}

.single-product__swiper-holder .holder .swiper .swiper-slide {
  width: 100%;
  height: auto;
  max-height: 580px;
  display: flex;
  align-self: stretch;
}

.single-product__swiper-holder .thumbs {
  position: relative;
  max-height: 580px;
  height: auto;
  display: flex;
  align-self: stretch;
  flex-direction: column;
  justify-content: space-between;
}

.single-product__swiper-holder .swiper-slide {
  cursor: pointer;
}

.single-product__swiper-holder .thumbs .arrows {
  width: fit-content;
  display: flex;
  flex-direction: row;
  gap: var(--twenty);
  align-self: center;
}

.single-product__swiper-holder .thumbs .arrow {
  background: var(--primary);
}

.single-product__swiper-holder .thumbs .arrows svg path {
  fill: var(--white);
}

.single-product__swiper-holder .thumbs .swiper-button-disabled {
  pointer-events: none;
  background: var(--white);
}

.single-product__swiper-holder .thumbs .swiper-button-disabled svg path {
  fill: var(--primary);
}

.single-product__swiper-holder .thumbs .arrows>* {
  cursor: pointer;
}

.single-product__swiper-holder .thumbs .arrows>*:hover svg path {
  fill: var(--primary);
}

.single-product__swiper-holder .thumbs .arrows>*:hover {
  background: var(--white);
  border-color: var(--white);
}

.single-product__swiper-holder .thumbs .swiper-slide {
  width: 120px;
  height: 120px;
}

.single-product__swiper-holder .thumbs .swiper {
  max-height: 510px;
  height: fit-content;
}

.single-product__swiper-holder .thumbs .swiper-wrapper {
  flex-direction: column !important;
}

.single__product-thumbs__photo {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 10px;
  display: flex;
}

.single__product-thumbs__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  border-radius: 10px;
}

.single__product-main__photo {
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.single__product-main__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  border-radius: 10px;
  max-height: 580px;
}

@media(max-width:1400px) {

  .single-product__swiper-holder {
    position: relative;
    top: unset;
  }

  .single-product__item {
    flex-direction: column;
  }

  .single-product__swiper-holder .holder,
  .single-product__swiper-holder {
    /* max-width: unset; */
    display: flex;
    height: auto;
  }

  .single__product-main__photo img {
    /* max-height: 50vw; */
    * min-height: 350px;
    */
  }

  .single-product__swiper-holder .holder {
    /* height: 60vw; */
    min-height: 350px;
  }

  .single-product__swiper-holder .holder .swiper {
    /* max-height: 50vw; */
    /* min-height: 350px; */
    display: flex;
    align-self: stretch;
    height: 100%;
    width: 100%;
  }

  .single-product__swiper-holder .holder .swiper .swiper-slide {
    /* max-height: 50vw; */
    /* min-height: 350px; */
  }

  .single-product__swiper-holder .thumbs .swiper {
    /* max-height: 47vw; */
    min-height: 350px;
  }

  .single-product__swiper-holder .thumbs {
    gap: 10px;
  }

}

@media(max-width:850px) {

  .single-product__swiper-holder .holder,
  .single-product__swiper-holder {
    max-width: unset !important;
    display: flex;
    height: auto;
  }

}

@media(max-width:700px) {
  .single-product__swiper-holder {
    flex-direction: column;
    gap: 10px;
  }

  .single-product__swiper-holder .thumbs .swiper-slide,
  .single__product-thumbs__photo {
    width: 100px;
    height: 100px;
  }

  .single__product-main__photo img {
    max-height: 78vw;
    min-height: unset;
  }

  .single-product__swiper-holder .holder {
    max-height: 78vw;
    min-height: unset;
  }

  .single-product__swiper-holder .holder .swiper {
    max-height: 78vw;
    min-height: unset;
  }

  .single-product__swiper-holder .holder .swiper .swiper-slide {
    max-height: 78vw;
    min-height: unset;
  }

  .single-product__swiper-holder .thumbs .swiper {
    max-height: 74vw;
    min-height: unset;
  }

  .single-product__swiper-holder .thumbs .arrows>*:first-child {
    transform: rotate(-90deg);
  }

  .single-product__swiper-holder .thumbs .arrows>*:nth-child(2) {
    transform: rotate(270deg);
  }

  .single-product__swiper-holder .thumbs .arrows {
    margin-left: auto;
  }

  .single-product__swiper-holder .thumbs .swiper-wrapper {
    flex-direction: row !important;
  }

  .single-product__swiper-holder .thumbs .swiper {
    width: 100%;
    overflow: hidden;
    margin-left: unset;
  }

  .single-product__swiper-holder .thumbs {
    flex-direction: column;
    gap: 15px;
  }

  .single-product__swiper-holder .holder .swiper {
    height: 100vw;
    width: 100%;
  }
}

@media(max-width:420px) {
  .single__product-main__photo img {
    max-height: 100vw;
  }

  .single-product__swiper-holder .holder {
    max-height: 100vw;
  }

  .single-product__swiper-holder .holder .swiper {
    max-height: 100vw;
  }

  .single-product__swiper-holder .holder .swiper .swiper-slide {
    max-height: 100vw;
  }

  .single-product__swiper-holder .thumbs .swiper {
    max-height: 100vw;
  }
}

/* cat banner */

.cat-banner {
  width: 100%;
  margin-bottom: var(--sixty);
  background: var(--background-light);
  border-radius: 10px;
}

.cat-banner__inner {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 10px;
  max-width: 1890px;
  margin-left: auto;
  gap: var(--thirty);
  padding-left: 15px;
}

.cat-banner__text-holder {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 900px;
  justify-content: space-between;
  padding-top: var(--twenty);
  padding-bottom: var(--twenty);
  gap: 20px;
}

.cat-banner__swiper-holder {
  width: 100%;
  overflow: hidden;
  display: flex;
}

.cat-banner__swiper-holder .swiper {
  width: 100%;
  height: auto;
  align-self: stretch;
  display: flex;
}

.cat-banner__swiper-holder .swiper-slide {
  max-width: 49.5%;
  height: auto;
  align-self: stretch;
  display: flex;
}

.cat-banner__photo {
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
  border-radius: 8px;
}

.cat-banner__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  border-radius: 8px;
}

.cat-banner__title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: var(--h1);
  line-height: 150%;
  color: var(--main-text);
}

.cat-banner__desc {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: var(--1614);
  line-height: 170%;
  color: var(--light-text-2);
}

@media(max-width:900px) {
  .cat-banner__inner {
    flex-direction: column;
    padding: 15px;
  }

  .cat-banner__text-holder {
    padding-bottom: unset;
    padding-top: unset;
  }
}

/* sub-cats */

.sub-cats {
  height: fit-content;
  width: fit-content;
  display: flex;
  flex-direction: row;
  gap: var(--thirty);
  flex-wrap: wrap;
  margin-bottom: var(--sixty);
}


.sub-cat {
  display: flex;
  flex-direction: row;
  width: 280px;
  height: fit-content;
  background: var(--white);
  border: 1px solid var(--light-text-1);
  border-radius: 8px;
}

.sub-cat__inner {
  display: flex;
  flex-direction: row;
  gap: var(--fifteen);
  width: 100%;
  height: 100%;
  align-self: stretch;
  padding: 10px;
  align-items: center;
}

.sub-cat__name {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--2016);
  line-height: 110%;
  color: var(--main-text);
}

.sub-cat__photo {
  width: 60px;
  height: 60px;
  display: flex;
  overflow: hidden;
  border-radius: 5px;
}

.sub-cat__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: flex;
}

.sub-cat:hover {
  border-color: var(--primary);
}

.sub-cat:hover .sub-cat__name {
  color: var(--primary);
}

@media(max-width:1220px) {
  .sub-cats {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 100%;
    display: grid;
  }

  .sub-cats>* {
    width: 100% !important;
  }
}

@media(max-width:1000px) {
  .sub-cats {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media(max-width:700px) {
  .sub-cats {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:460px) {
  .sub-cats {
    grid-template-columns: 1fr 1fr;
  }

  .sub-cat__inner {
    flex-direction: column;
  }
}

.page-banner {
  min-height: clamp(15.625rem, 13.75rem + 9.375vw, 25rem);
  display: flex;
  width: 100%;
  height: fit-content;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center !important;
  border-radius: 10px;
  margin-top: var(--twenty);
}

.page-banner h1 {
  color: var(--white) !important;
  margin-bottom: var(--thirty) !important;
}

@media(max-width:480px) {
  .page-banner h1 {
    font-size: 9vw !important;
  }
}

.page-banner .breadcrumbs {
  padding-top: 20px !important;
}

.page-banner .breadcrumbs span,
.page-banner .breadcrumbs span.current-item {
  color: var(--white) !important;
}

.page-banner-content__holder {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
  height: 100%;
  align-self: stretch;
}

.block-go {
  width: 435px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  height: fit-content;
  min-height: clamp(12.5rem, 10rem + 12.5vw, 25rem);
  background-size: cover !important;
  background-repeat: no-repeat !important;
  border-radius: 20px;
  background-position: bottom !important;
  position: sticky;
  top: 250px;
  cursor: pointer;
}

.block-go__inner {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  width: auto;
  height: 100%;
  padding: var(--fourty);
  gap: var(--twenty);
}

.block-go__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--h3);
  line-height: 110%;
  color: var(--white);
}

@media(max-width:500px) {
  .block-go__btn {
    width: 100% !important;
  }
}

.photo-overlay {
  display: flex;
  margin: auto auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  place-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.photo-overlay>* {
  display: flex;
  margin: auto auto;
}

.show-more__btn {
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--fourty);
  min-width: clamp(6.25rem, 3.225rem + 15.125vw, 21.375rem);
}

.show-more__btn span {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: var(--1614);
  line-height: 150%;
  color: var(--white);
}

.play-btn {
  width: clamp(2.5rem, 2.375rem + 0.625vw, 3.125rem);
  height: clamp(2.5rem, 2.375rem + 0.625vw, 3.125rem);
  display: flex;
  border-radius: 50%;
  background: var(--white);
  align-items: center;
  place-content: center;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto auto;
  z-index: 3;
  pointer-events: none;
}

.play-btn svg {
  display: flex;
  margin: auto auto;
  height: 10px;
  width: 10px;
}

.arrow {
  display: flex;
  width: clamp(2.5rem, 2.375rem + 0.625vw, 3.125rem);
  height: clamp(2.5rem, 2.375rem + 0.625vw, 3.125rem);
  cursor: pointer;
  align-items: center;
  place-content: center;
  border-radius: 5px;
  background: var(--white);
  border: 1px solid var(--white);
}

.arrow svg {
  width: 20px;
  height: 20px;
  display: flex;
}

.arrow svg path {
  fill: var(--primary);
}

.arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.arrow:hover svg path {
  fill: var(--white);
}

.columns-5 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: var(--thirty);
}

@media(max-width:1300px) {
  .columns-5 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media(max-width:1000px) {
  .columns-5 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media(max-width:650px) {
  .columns-5 {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:480px) {
  .columns-5 {
    grid-template-columns: 1fr 1fr;
  }
}

.columns-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--thirty);
}

.columns-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--thirty);
}

@media(max-width:1200px) {
  .columns-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:700px) {
  .columns-2 {
    grid-template-columns: 1fr;
  }
}

@media(max-width:520px) {
  .columns-3 {
    grid-template-columns: 1fr;
  }
}

.swiper-button-disabled {
  opacity: .7 !important;
  pointer-events: none !important;
}

.swiper-nav {
  margin-top: var(--thirty);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.swiper-nav__pag {
  align-items: flex-end;
}

@media(max-width:600px) {
  .swiper-nav__pag {
    align-items: center;
  }
}

.swiper-arrows {
  display: flex;
  flex-direction: row;
  width: fit-content;
  height: fit-content;
  gap: var(--fifteen);
}

.tabs-holder {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  width: fit-content;
  height: fit-content;
}

.tab {
  display: flex;
  width: fit-content;
  height: auto;
  background: var(--white);
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
  gap: 10px;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  color: var(--primary);
  align-self: stretch;
}

.tab-name {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  color: var(--primary);
}

.tab-icon,
.tab-icon>* {
  width: 20px;
  height: 20px;
  display: flex;
}

.tab:hover {
  background: var(--accent);
  color: var(--white);
}

.tab:hover svg path {
  fill: var(--white);
}

.tab:hover .tab-name {
  color: var(--white);
}

.tab.v2 {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem);
  line-height: 150%;
  color: var(--white);
  background: var(--accent);
  pointer-events: none;
  padding: 13px 10px;
}

.tab.v3 {
  display: flex;
  width: fit-content;
  height: fit-content;
  padding: var(--twenty);
  align-items: center;
  place-content: center;
  text-align: center;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: var(--1614);
  line-height: 150%;
  background: var(--white);
  border: 1px solid var(--white);
  color: var(--accent);
}

.tab.v3:hover,
.tab.v3.active {
  color: var(--white);
  background: var(--accent);
  border: 1px solid var(--accent);
}

.tab.v3.active {
  pointer-events: none !important;
}

.tab.v4 {
  padding: 12px 10px;
  background: var(--accent);
  border-color: var(--accent);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: var(--1614);
  line-height: 100%;
  color: var(--white);
}

.tab.v5 {
  padding: 12px 10px;
  background: var(--white);
  border-color: var(--white);
  color: var(--primary);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: var(--1614);
  line-height: 150%;
}

@media(max-width:800px) {
  .tab.v5 {
    font-size: 12px;
  }
}

.woo-btn {
  width: 50px;
  height: 55px;
  display: flex;
  cursor: pointer;
  position: relative;
}

.woo-btn .icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 100px;
  display: flex;
  align-items: center;
  place-content: center;
  margin-top: auto;
}

.woo-btn .icon>* {
  max-width: 20px;
  max-height: 20px;
  width: fit-content;
  height: fit-content;
  display: flex;
  margin: auto auto;
}

.woo-btn .count {
  height: 20px;
  width: 20px;
  position: absolute;
  right: 0;
  top: 0;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 10px;
  line-height: 150%;
  color: var(--primary-hover);
  background: var(--white);
  border: 1px solid var(--primary);
  border-radius: 30px;
  display: flex;
  align-items: center;
  place-content: center;
}

/* .woo-btn.active .icon {
  background: var(--primary-hover);
} */

.woo-btn:hover .icon {
  background: var(--primary-hover);
}

.woo-btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: fit-content;
  height: fit-content;
  gap: var(--fifteen);
}

.woo-btn.secondary .icon {
  border-color: var(--white);
  background: var(--white);
}

.woo-btn.secondary svg {
  max-width: 18px;
  max-height: 19px;
}

.woo-btn.secondary svg path {
  fill: var(--primary);
  transition: var(--transition);
}

.woo-btn .count {
  display: none;
}

.woo-btn.active .count {
  display: flex;
}

.woo-btn.secondary svg path:not(:first-child) {
  fill: transparent;
}

.woo-btn.secondary:hover svg path:not(:first-child) {
  fill: var(--primary);
  stroke: var(--primary);
}

.favorite-remove svg path:not(:first-child) {
  fill: var(--primary) !important;
  stroke: var(--primary) !important;
}

.favorite-remove:hover svg path:not(:first-child) {
  fill: transparent !important;
}

.long-soc__item {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  cursor: pointer;
  width: fit-content;
  height: fit-content;
}

.long-soc__item-icon {
  display: flex;
  width: 22px;
  height: 22px;
  align-items: center;
}

.long-soc__item-content__holder {
  display: flex;
  flex-direction: row;
  gap: 5px;
  flex-wrap: wrap;
  width: fit-content;
  height: fit-content;
  align-items: center;
}

.long-soc__item-name {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: var(--1614);
  line-height: 120%;
  color: var(--light-text-2);
}

.long-soc__item-prefix {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
  line-height: 150%;
  color: var(--light-text-2);
}

.long-soc__item:hover .long-soc__item-name {
  color: var(--primary);
}

.btn {
  display: flex;
  text-align: center;
  align-items: center;
  width: fit-content;
  height: fit-content;
  text-align: center;
  place-content: center;
  cursor: pointer;
  padding: clamp(0.75rem, 0.625rem + 0.625vw, 1.375rem) var(--thirty);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: var(--1614);
  line-height: 150%;
  color: var(--white);
  border-radius: 100px;
  background: var(--primary);
  border: 1px solid var(--primary);
}

.btn:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}

.btn.small {
  border: 1px solid var(--primary);
  background: transparent;
  padding: clamp(0.625rem, 0.525rem + 0.5vw, 1.125rem) var(--thirty);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  color: var(--primary);
  align-items: center;
  min-width: 100px;
}

.btn.small:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: var(--white);
}

.btn-icon {
  display: flex;
  width: fit-content;
  height: fit-content;
  align-items: center;
  gap: 10px;
  padding: var(--fifteen) var(--twenty);
  border-radius: 5px;
  background: var(--primary);
  border: 1px solid var(--primary);
  cursor: pointer;
  max-height: 50px;
  place-content: center;
}

.btn-icon .text,
.btn-icon a {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: var(--1614);
  line-height: 150%;
  color: var(--white);
}

.btn-icon .icon {
  width: 20px;
  height: 20px;
  display: flex;
}

.btn-icon:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}

.btn-link {
  display: flex;
  width: fit-content;
  height: fit-content;
  align-items: center;
  gap: 10px;
  padding: var(--fifteen) var(--twenty);
  border-radius: 5px;
  background: var(--primary);
  border: 1px solid var(--primary);
  cursor: pointer;
}

.btn-link .text {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: var(--1614);
  line-height: 150%;
  color: var(--white);
}

.btn-link .icon {
  width: 20px;
  height: 20px;
  display: flex;
}

.btn-link:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}

.soc-icon {
  display: flex;
  align-items: center;
  place-content: center;
  cursor: pointer;
  width: clamp(2.8125rem, 2.625rem + 0.9375vw, 3.75rem);
  height: clamp(2.8125rem, 2.625rem + 0.9375vw, 3.75rem);
  border-radius: 5px;
  background: var(--white);
  border: 1px solid var(--white);
}

.soc-icon .icon {
  width: clamp(1.375rem, 1.35rem + 0.125vw, 1.5rem);
  height: clamp(1.375rem, 1.35rem + 0.125vw, 1.5rem);
  display: flex;
}

.soc-icon:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.soc-icon:hover svg path {
  fill: var(--white);
}

.soc-icon.small {
  width: 38px;
  height: 38px;
}

.soc-icon.small .icon {
  width: 18px;
  height: 18px;
}

.link-holder {
  display: flex;
  width: fit-content;
  height: fit-content;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.link-holder .text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--1614);
  line-height: 170%;
  color: var(--primary);
}

.link-holder .icon {
  max-width: 16px;
  max-height: 17px;
  display: flex;
  width: fit-content;
  height: fit-content;
}

.link-holder .icon>* {
  width: fit-content;
  height: fit-content;
  display: flex;
}

.link-holder:hover .text {
  color: var(--primary-hover);
}

.link-holder:hover svg path {
  fill: var(--primary-hover);
}

.arrow-text {
  border: 1px solid var(--light-text-1);
  border-radius: 5px;
  padding: var(--fifteen) var(--twenty);
  display: flex;
  flex-direction: row;
  align-items: center;
  width: fit-content;
  height: fit-content;
  gap: 10px;
}

.arrow-text .text {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: var(--1614);
  line-height: 150%;
  color: var(--main-text);
}

.arrow-text .icon,
.arrow-text .icon>* {
  display: flex;
  width: fit-content;
  height: fit-content;
  max-height: 20px;
  max-width: 20px;
}

.prev .arrow-text {
  flex-direction: row-reverse;
}

.arrow-text:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.arrow-text:hover .text {
  color: var(--white);
}

.arrow-text:hover svg path {
  fill: var(--white);
}

.navigation.pagination {
  display: flex;
  flex-direction: row;
  margin-top: var(--fourty);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  gap: var(--fourty);
}

.navigation.pagination .nav-links {
  display: flex;
  flex-direction: row;
  width: fit-content;
  height: fit-content;
  gap: 10px;
}

.navigation.pagination .nav-links .page-numbers {
  width: clamp(2.5rem, 2.375rem + 0.625vw, 3.125rem);
  height: clamp(2.5rem, 2.375rem + 0.625vw, 3.125rem);
  display: flex;
  align-items: center;
  place-content: center;
  cursor: pointer;
  border: 1px solid var(--light-text-1);
  border-radius: 5px;
  padding: 10px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: var(--1614);
  line-height: 150%;
  color: var(--main-text);
}

.navigation.pagination .nav-links .page-numbers.current,
.navigation.pagination .nav-links .page-numbers:not(.page-numbers.dots):hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

.navigation.pagination .nav-links .page-numbers.current {
  pointer-events: none;
}

.navigation.pagination .nav-links .page-numbers.dots {
  border: transparent;
  pointer-events: none;
  cursor: unset;
}

.page-numbers.disabled {
  pointer-events: none;
}

@media(max-width:550px) {

  /* .navigation.pagination .prev,
  .navigation.pagination .next {
    display: none;
  } */
  .navigation.pagination .nav-links {
    width: 100%;
    order: -1;
    justify-content: center;
  }

  .navigation.pagination {
    flex-wrap: wrap;
    place-content: center;
  }
}

/* comnponents end */

/*============= ALIGNES ===============*/

.alignwide {
  width: 100%;
}

.alignfull {
  margin-left: calc(-100vw / 2 + 100% / 2);
  margin-right: calc(-100vw / 2 + 100% / 2);
  max-width: 1920px;
  width: 100vw !important;
  max-width: unset;
}

@media only screen and (min-width: 1921px) {
  .alignfull {
    width: 100vw !important;
    max-width: unset;
    /*margin-left: calc(-1 * (1920px - 1170px) / 2) !important;*/
    /*margin-right: calc(-1 * (1920px - 1170px) / 2) !important;*/
  }

  .alignfull>* {
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
  }
}

/* =========== BASE CONFIG =========== */
html {
  box-sizing: border-box;
}

body.privacy-policy .content>* {
  overflow-wrap: anywhere;
}

body.privacy-policy h2,
body.privacy-policy h3,
body.privacy-policy h4,
body.privacy-policy h5,
body.privacy-policy h6 {
  margin-bottom: var(--thirty);
}

body.privacy-policy p,
body.privacy-policy li {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: var(--1614);
  line-height: 170%;
  color: var(--light-text-2);
}

.swiper-button-disabled {
  pointer-events: none;
  opacity: .5;
}

.swiper-pagination-bullets {
  width: fit-content !important;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: var(--fifteen) !important;
  align-items: center !important;
}

.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: var(--stroke-2) !important;
  opacity: 0.5 !important;
  border-radius: 100px !important;
  margin: unset !important;
}

.swiper-pagination-bullet-active {
  width: 30px !important;
  background: var(--accent) !important;
  opacity: 1 !important;
}

.compensate-for-scrollbar {
  margin: 0 auto !important;
}

.fancybox-container * {
  transition: unset !important;
}

* {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  font-weight: 400;
  box-sizing: inherit;
  transition: var(--transition);
}

body {
  background: var(--white);
  max-width: 1920px;
  overflow-x: hidden;
  margin: 0 auto;
  width: auto;
  /*-webkit-box-shadow: 0 0 20px 5px #747474;*/
  /*box-shadow: 0 0 20px 5px #747474;*/
}

a {
  text-decoration: none;
  color: #121212;
}

/* a:hover {
  color: #F6C4DF;
} */

ul li {
  list-style-position: inside;
  color: #121212;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px;
  list-style: none;
  /* Remove default list styling */
}

ul li::marker {
  color: var(--accent);
  width: 10px;
  height: 10px;

}

ul li.custom,
.accordion-item ul li,
.text-block ul li,
.degrees-block ul li,
.textTwoCol-block ul li,
.seo-block ul li,
.woocommerce-order ul li,
.woocommerce-error li {
  padding-left: var(--fifteen);
  /* Add padding to the left to create space for the marker */
  position: relative;
  /* Positioning context for the marker */
}

li.custom::marker,
.accordion-item ul li::marker,
.text-block ul li::marker,
.degrees-block ul li::marker,
.textTwoCol-block ul li::marker,
.seo-block ul li::marker,
.woocommerce-order ul li::marker,
.woocommerce-error li::marker {
  content: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='5' cy='5' r='5' fill='%23B21423'/%3E%3C/svg%3E");
  margin-right: 15px;
}

.woocommerce-error {
  padding-left: 15px;
}

.woocommerce-order ul {
  padding-left: 10px;
}

ol li {
  list-style-position: inside;
  color: #121212;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px;
}

p {
  margin-bottom: 10px;
  color: #121212;
  font-size: 18px;
  line-height: 26px;
}

h1.page-title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: var(--h1);
  line-height: 150%;
  color: var(--main-text);
  margin-bottom: var(--fourty);
}

main.foned {
  position: relative;
  overflow: hidden;
  z-index: 999;
}

main.foned:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.breadcrumbs {
  padding: var(--twenty);
  padding-top: var(--fourty);
  padding-left: 0px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 5px;
  line-height: 170%;
  color: var(--stroke-2);
  display: flex;
  flex-direction: row;
  align-items: center;
  width: fit-content;
  flex-wrap: wrap;
  gap: 10px;
}

.single-product .breadcrumbs {
  padding-bottom: var(--fourty);
}

.breadcrumbs span {
  font-family: inherit;
  font-size: 14px;
  line-height: inherit;
  color: var(--light-text-2);
}

.breadcrumbs span.current-item {
  color: var(--primary);
}

.container {
  max-width: 1830px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0;
  position: relative;
}

@media(max-width:1850px) {
  .container {
    padding: 0 15px;
  }
}

#main,
#primary {
  min-height: 40vh;
}

.swiper-slide {
  cursor: grab;
}

/*============ HEADER =================*/

#header {
  border-bottom: 1px solid var(--light-text-1);
  border-left: 1px solid var(--light-text-1);
  border-right: 1px solid var(--light-text-1);
  border-radius: 0 0 20px 20px;
  width: 100%;
  background: var(--white);
  position: sticky;
  top: 0px;
  z-index: 1000;
}

.header-main {
  width: 100%;
}

.header-main__inner {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: row;
  gap: var(--fourty);
  padding-left: var(--fourtyFive);
}

.header-main__content-holder {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.header-main__content-top {
  border-radius: 0 0 0 5px;
  width: 100%;
  background: var(--background-light);
}

.header-main__content-top__inner {
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  flex-direction: row;
  width: 100%;
  height: fit-content;
  flex-wrap: wrap;
  padding-left: var(--fourtyFive);
  padding-right: var(--fourtyFive);
  justify-content: flex-end;
}

.logo-holder__outer {
  margin: auto auto;
  width: fit-content;
  height: fit-content;
  display: flex;
  max-height: 500px;
}

.header-main .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0px;
  width: 300px;
  height: fit-content;
  opacity: 0;
  transform: translate(55px);
  transition: all 0.2s ease;
  border-radius: 10px;
  transition-delay: 0.15s;
  visibility: hidden;
  z-index: -100;
  padding: var(--twenty);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  background: var(--background-light);
  top: 62px;
  display: grid;
  gap: var(--fifteen);
}

.header-main .sub-menu a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--black);
}

.header-main .sub-menu a:hover {
  color: var(--primary);
}

.header-main .sub-menu.active {
  opacity: 1;
  transform: translate(0, 0);
  visibility: visible;
  z-index: 100;
}

.header-main .sub-menu li {
  margin-bottom: 0px;
}

.header-main .sub-menu li a {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 170%;
  text-transform: uppercase;
  color: var(--light-text-2);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.sub-menu li:hover>a,
.sub-menu li.active>a {
  color: var(--primary) !important;
}

.header-main li {
  list-style: none;
  margin-bottom: 0px;
}

.header-main__content-bot-search__holder {
  display: flex;
  flex-direction: row;
  gap: 15px;
  width: 100%;
  height: fit-content;
  max-width: 667px;
}

.header-main__content-bot-search__holder>* {
  height: 50px;
}

.dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input,
.dgwt-wcas-search-form,
.dgwt-wcas-sf-wrapp {
  height: 100% !important;
  font-family: var(--font-family) !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 120% !important;
  color: var(--light-text-2) !important;
}

.dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
  padding: var(--fifteen) var(--fifteen) !important;
  border: 1px solid var(--light-text-1) !important;
  border-radius: 5px !important;
  padding-right: 90px !important;
}

.dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input::placeholder {
  font-family: var(--font-family) !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  font-style: unset !important;
  line-height: 120% !important;
  color: var(--light-text-2) !important;
}

.dgwt-wcas-sf-wrapp .dgwt-wcas-search-submit {
  top: 5px !important;
  bottom: 5px !important;
  right: 5px !important;
  height: 40px !important;
  width: 40px !important;
  min-height: 40px !important;
  min-width: 40px !important;
}

.dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
  transition: var(--transition) !important;
}

.dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input:focus,
.dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input:hover {
  border-color: var(--stroke-1) !important;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: var(--main-text) !important;
}

.dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input:focus::placeholder,
.dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input:hover::placeholder {
  color: var(--main-text) !important;
}

.dgwt-wcas-preloader {
  right: 50px !important;
}

.dgwt-wcas-sf-wrapp .dgwt-wcas-search-submit:before {
  content: unset !important;
}

.dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
  padding: unset !important;
  background: var(--primary) !important;
  text-shadow: unset !important;
  border-radius: 3px !important;
  display: flex;
  place-content: center;
  align-items: center;
}

.dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit:hover {
  background: var(--primary-hover) !important;
  opacity: 1 !important;
}

.dgwt-wcas-suggestions-wrapp {
  border: 1px solid var(--stroke-1) !important;
  border-color: var(--stroke-1) !important;
  border-radius: 3px !important;
  margin-top: 10px !important;
}

.header-main__content-bot {
  display: flex;
  flex-direction: row;
  gap: 15px var(--sixty);
  align-items: center;
  width: 100%;
  padding-bottom: var(--twenty);
  padding-right: var(--fourtyFive);
}

.header-main .headerMenu {
  display: flex;
  flex-direction: row;
  width: fit-content;
  align-items: center;
  gap: var(--twenty);
  margin-right: auto;
  flex-shrink: 0;
}

.headerCat {
  position: relative;
}

.header-main .headerMenu a {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 170%;
  text-transform: uppercase;
  color: var(--light-text-2);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.header-main .headerMenu a:hover {
  color: var(--primary) !important;
}

.header-main .headerMenu a svg {
  display: flex;
}

@media(max-width:1550px) {
  .header-main__content-bot {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .dgwt-wcas-search-wrapp {
    max-width: unset !important;
  }

  .header-main .headerMenu {
    order: 1;
  }

  .header-main__content-bot-search__holder {
    max-width: 70%;
  }
}

@media(max-width:1000px) {
  .header-main .headerMenu {
    display: none;
  }

  .header-main__content-bot {
    padding-right: 15px;
    padding-left: 15px;
  }

  .header-main__content-bot {
    flex-wrap: nowrap;
  }

  .header-main__content-bot-search__holder {
    max-width: 100%;
  }

  .header-main__inner {
    padding-left: unset;
  }

  .logo-holder__outer {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media(max-width:900px) {
  .header-main__inner {
    flex-direction: column;
    gap: 10px;
  }

  .logo-holder__outer {
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
}

@media(max-width:800px) {
  .headerCat .sub-menu {
    display: none;
  }
}

@media(max-width:650px) {
  .headerCat.btn-icon {
    display: none;
  }
}

@media(max-width:450px) {
  .header-main .woo-btns {
    position: fixed;
    /*     bottom: clamp(1.25rem, .8125rem + 2.1875vw, 3.4375rem); */
    bottom: 10px;
    right: clamp(1.25rem, .8125rem + 2.1875vw, 3.4375rem);
    z-index: 1000;
    opacity: 1;
    flex-direction: row;
  }
}

/*================ MOBILE MNU =============*/
#header .burger.open_menu {
  display: none !important;
  flex-direction: column;
  background-color: var(--primary);
  height: 40px;
  width: 40px;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 2px;
  flex-shrink: 0;
}

@media(max-width:900px) {
  #header .menu-open {
    display: none;
  }

  #header .burger.open_menu {
    display: flex !important;
  }
}

#header .burger.open_menu svg {
  pointer-events: none;
}

#header .burger.open_menu.clicked {
  background-color: var(--primary-hover);
}

#header .burger.open_menu.clicked span {
  background-color: #fff;
}

#header .burger.open_menu:hover {
  background: var(--primary-hover);
}

#header .burger.open_menu .close-svg {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto auto;
  transition: var(--transition);
}

#header .burger.open_menu .open-svg {
  opacity: 1;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: var(--transition);
  margin: auto auto;
}

#header .burger.open_menu svg {
  display: flex;
  margin: auto auto;
  pointer-events: none;
}

#header .burger.open_menu.clicked .open-svg {
  opacity: 0;
}

#header .burger.open_menu.clicked .close-svg {
  opacity: 1;
}

#header .burger.open_menu span {
  background-color: var(--white);
  width: 30px;
  height: 4px;
  transition: all .3s ease-in
}

#header #mobile-mnu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 320px;
  background: var(--elements);
  padding: 30px;
  transition: all 0.3s ease-in;
  transform: translateX(-350px);
  z-index: 9999;
  overflow: auto;
}

#header #mobile-mnu #close-mnu {
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
  display: block;
  color: var(--action);
}

#header #mobile-mnu #close-mnu svg {
  width: 20px;
  height: 20px;
}

#header #mobile-mnu #close-mnu svg path {
  stroke: var(--action);
}

#header #mobile-mnu a {
  font-size: 16px;
  line-height: 1;
  color: var(--text);
  font-weight: 450;
}

#header #mobile-mnu a:hover {
  color: var(--action);
}

#header #mobile-mnu .logo__holder {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: var(--h4);
  line-height: 170%;
  color: var(--text);
  margin-bottom: 20px;
  filter: unset;
}

#header #mobile-mnu .logo__holder svg {
  filter: unset;
}



#header .logo__holder,
#header .logo__holder svg {
  transition: var(--transition);
}

/* #header.painted .logo__holder svg {
  filter: invert(1);
} */

#header.painted .logo-holder__outer {
  max-height: 0 !important;
  opacity: 0 !important;
  transition: all .2s;
  pointer-events: none;
  position: relative;
  z-index: -100;
}

#header #mobile-mnu .menuTop {
  list-style-type: none;
  margin-bottom: 10px;
}

#header #mobile-mnu .menuTop li {
  margin-bottom: 10px;
}

#header #mobile-mnu .menuTop li a {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 170%;
  color: var(--white);
}

#header #mobile-mnu .nav-menu-element.has-childs .sub-menu {
  all: initial;
}

#header #mobile-mnu .menuTop>li.has-childs li {
  padding-left: 15px !important;
}

#header #mobile-mnu .menuTop>li.has-childs li::after {
  content: unset;
}

#header #mobile-mnu .menuTop>li.has-childs li a {
  font-size: 14px;
}

#header #mobile-mnu .menuTop li:first-child {
  padding-top: 10px !important;
}

#header #mobile-mnu .nav-menu-element.has-childs>a::before,
#header #mobile-mnu .nav-menu-element.has-childs>a::after {
  content: none;
}

/* #header #mobile-mnu .menuTop li a:hover {
  color: var(--action);
}

#header #mobile-mnu .menuTop li.active a {
  color: var(--action);
} */

#header #mobile-mnu .adresses__holder {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 20px;
  width: 100%;
}

#header #mobile-mnu .adresses__holder p {
  font-size: 16px;
  line-height: 150%;
  color: var(--white);
  font-weight: 450;
}

#header #mobile-mnu .adresses__holder p:first-child {
  margin-bottom: var(--thirty);
}

#header #mobile-mnu .adresses__holder p:not(:first-child) {
  font-size: 14px;
}

#header #mobile-mnu .email__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}

#header #mobile-mnu .email__holder .email__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  color: var(--white);
  font-weight: 450;
}

#header #mobile-mnu .email__holder .email__item:hover {
  color: var(--primary-hover);
}

#header #mobile-mnu .email__holder .email__item svg {
  margin-right: 10px;
}

#header #mobile-mnu .phones__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 10px;
}

#header #mobile-mnu .phones__holder .phone__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  color: var(--white);
  font-weight: 450;
}

#header #mobile-mnu .phones__holder .phone__item:hover {
  color: var(--primary-hover);
}

#header #mobile-mnu .phones__holder .phone__item svg {
  margin-right: 10px;
}

#header #mobile-mnu .soc__holder {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
}

#header #mobile-mnu .soc__holder .soc__item {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #3A899A;
  transition: background-color .3s ease-in;
}

#header #mobile-mnu .soc__holder .soc__item:hover {
  background-color: #609FA8;
}

#header #mobile-mnu.opened {
  transform: translateX(0px);
}

@media(max-width:480px) {
  h1.page-title {
    font-size: 6.5vw;
  }
}

/*============ FOOTER ===============*/

#footer {
  width: 100%;
  margin-top: var(--eighty);
}

.footer-top {
  background: var(--elements);
  width: 100%;
  border-radius: 20px;
}

.footer-top__inner {
  padding-top: var(--sixty);
  padding-bottom: var(--sixty);
  padding-left: clamp(0.9375rem, -0.8125rem + 8.75vw, 9.6875rem);
  padding-right: clamp(0.9375rem, -0.8125rem + 8.75vw, 9.6875rem);
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: var(--fourty);
  justify-content: space-between;
}

.footer-contacts__holder {
  width: 230px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: var(--twenty);
}

#footer .logo__holder,
#mobile-mnu .logo__holder {
  display: block;
  background: var(--white);
  border-radius: 10px;
  width: fit-content;
  padding: 10px;
}

#footer .logo__holder-outer {
  padding-bottom: var(--twenty);
  border-bottom: 1px solid var(--stroke-1);
}

.footer-socials__holder {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-socials__title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--1614);
  line-height: 170%;
  color: var(--white);
}

.footer-socials {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
  width: fit-content;
  height: fit-content;
}

#footer .soc-item {
  width: 38px;
  height: 38px;
}

.footer-top__content-holder {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--fourty);
  max-width: 1010px;
}

.footer-top__nav-holder {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: var(--thirty);
}

.footer-top__nav-holder li {
  margin-bottom: 0px;
}

.footer-top__nav-holder ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px var(--thirty);
}

.footer-top__nav-holder>*:first-child ul {
  grid-template-columns: 1fr !important;
}

.footer-top__nav-holder li a {
  width: fit-content;
  color: var(--white);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  color: var(--light-text-1);
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: var(--twenty);
  width: 100%;
}

.footer-menu__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: var(--white);
}

.footer-top__additional-contacts {
  width: fit-content;
  display: flex;
  flex-direction: row;
  gap: var(--thirty);
  flex-wrap: wrap;
}

.footer-contacts__item {
  display: flex;
  flex-direction: column;
  width: fit-content;
  height: fit-content;
  gap: var(--fifteen);
}

.footer-contacts__item-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: var(--light-text-1);
}

.footer-contacts__item-value {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--2016);
  line-height: 110%;
  color: var(--white);
}

.footer-contacts__item-value:hover {
  color: var(--primary) !important;
}

.footer-top__nav-holder a:hover {
  color: var(--primary) !important;
}

.footer-bot__inner {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-left: clamp(0.9375rem, -0.8125rem + 8.75vw, 9.6875rem);
  padding-right: clamp(0.9375rem, -0.8125rem + 8.75vw, 9.6875rem);
}

.footer-bot .privacy,
.footer-bot .privacy>* {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-align: center;
  color: var(--light-text-2);
}

#footer .dev {
  display: flex;
  width: fit-content;
  height: fit-content;
  gap: 10px;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  text-align: center;
  color: var(--light-text-2);
}

#footer .dev svg {
  display: flex;
}

#footer .dev svg path {
  fill: var(--light-text-2);
}

#footer .copyRight {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  text-align: center;
  color: var(--light-text-2);
}

.footer-bot .privacy:hover,
.footer-bot .privacy:hover>* {
  color: var(--primary) !important;
}

#footer .dev:hover {
  color: var(--primary) !important;
}

#footer .dev:hover svg path {
  fill: var(--primary) !important;
}

@media(max-width:1600px) {

  .footer-top__inner,
  .footer-bot__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media(max-width:1000px) {
  .footer-top__nav-holder ul {
    grid-template-columns: 1fr;
  }
}

@media(max-width:900px) {
  .footer-bot__inner {
    flex-direction: column;
    align-items: center;
    place-content: center;
    text-align: center;
  }
}

@media(max-width:770px) {
  .footer-top__inner {
    flex-direction: column;
  }
}

@media(max-width:500px) {
  .footer-top__nav-holder {
    flex-wrap: wrap;
  }
}

/* ============== MODAL ============= */
.wpcf7 .wpcf7-response-output,
.wpcf7 .wpcf7-not-valid-tip {
  display: none;
}

.wpcf7 .ajax-loader {
  display: none;
}

.wpcf7 .wpcf7-spinner {
  display: none;
}

.theme-modal {
  display: none
}

.theme-modal .age-check-btn-holder {
  display: flex;
  gap: 40px;
}

.theme-modal .form__holder {
  width: 100%
}

.theme-modal.fancybox__content {
  width: 600px;
  border: 1px solid var(--light-text-1);
  border-radius: 10px;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: unset;
}

.theme-modal.fancybox__content>.f-button.is-close-btn {
  top: 20px !important;
  right: 20px !important;
  padding: 0;
  width: 24px;
  height: 24px;
  opacity: 1 !important;
  background: unset !important;
  /* color:var(--accent); */
}

.theme-modal .f-button svg {
  fill: unset !important;
  stroke: var(--accent) !important
}

@media(max-width: 1100px) {
  .theme-modal.fancybox__content>.f-button.is-close-btn {
    top: 16px !important;
    right: 16px !important
  }
}

@media(max-width: 500px) {
  .theme-modal.fancybox__content>.f-button.is-close-btn {
    top: 5px !important;
    right: 5px !important
  }
}

#modal-success .btn,
#modal-error .btn {
  width: 100%;
  place-content: center;
  margin-top: var(--twenty);
}

#modal-success .form-title,
#modal-error .form-title {
  margin-bottom: var(--thirty);
}

#modal-success .form-subtitle,
#modal-error .form-subtitle {
  margin-bottom: var(--twenty);
}

.theme-modal .form__holder {
  padding: var(--sixty) var(--fourty);
  width: 100%;
  height: 100%;
}

.theme-modal .form-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--h2);
  line-height: 110%;
  text-align: center;
  color: var(--main-text);
  margin-bottom: 10px;
}

.theme-modal .form-subtitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--1614);
  line-height: 170%;
  text-align: center;
  color: var(--light-text-2);
  margin-bottom: var(--thirty);
}

.theme-modal .form-input__holder,
.theme-modal input,
.theme-modal textarea {
  width: 100%;
  transition: var(--transition);
}

.theme-modal * {
  transition: var(--transition) !important;
}

.form-input__holder:has(textarea) .input-placeholder {
  margin-top: unset;
  margin-bottom: unset;
  top: var(--twenty);
}

.form-input__holder:has(textarea):hover .input-placeholder,
.form-input__holder:has(textarea):hover .input-placeholder.active {
  top: 7px !important;
  font-size: 12px !important;
}

.theme-modal .btn {
  width: 100%;
  height: clamp(3.125rem, 3rem + 0.625vw, 3.75rem);
}

.theme-modal .privacy,
.theme-modal .privacy>* {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: var(--light-text-2);
}

.theme-modal .form {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: var(--twenty);
}

.theme-modal .form-row {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}

#modal-review .form__holder {
  padding: unset;
}

/* WOOCOMMERCE */

.cat-card {
  width: 100%;
  height: auto;
  align-self: stretch;
  display: flex;
  border: 1px solid var(--light-text-1);
  border-radius: 10px;
}

.cat-card__content-holder {
  width: 100%;
  height: auto;
  align-self: stretch;
  display: flex;
  flex-direction: row;
  gap: var(--twenty) 10px;
  padding: 10px;
  padding-left: var(--twenty);
  justify-content: space-between;
}

.cat-card__content-holder>* {
  width: 100%;
}

.cat-card__photo-holder {
  display: flex;
  width: 100%;
  max-width: 270px;
  min-height: clamp(10.625rem, 9.375rem + 6.25vw, 16.875rem);
  height: auto;
  max-height: 100vw;
  border-radius: 8px;
  background: var(--background-light);
  position: relative;
  overflow: hidden;
}

.cat-card__photo {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
}

.cat-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: flex;
  max-width: 270px;
  max-height: 270px;
  margin: auto auto;
  min-width: 130px;
}

.cat-card__text-holder {
  /* height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px; */
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  align-self: stretch;
}

.cat-card__desc {
  padding-bottom: 10px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: var(--1614);
  line-height: 150%;
  color: var(--light-text-2);
}

.cat-card__title-holder {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: clamp(4.125rem, 3.875rem + 1.25vw, 5.375rem);
}

.cat-card__icon,
.cat-card__icon>* {
  width: 30px;
  height: 30px;
  display: flex;
}

.cat-card__name {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.125rem, 0.975rem + 0.75vw, 1.875rem);
  line-height: 110%;
  color: var(--main-text);
  /* overflow-wrap: anywhere; */
}

.cat-card__btn-go {
  position: absolute;
  width: auto;
  height: fit-content;
  left: 10px;
  right: 10px;
  bottom: 10px;
  opacity: 0;
}

.cat-card:hover {
  border-color: var(--primary);
}

.cat-card:hover .btn-go {
  opacity: 1;
}

@media(max-width: 700px) {
  .cat-card__content-holder {
    flex-direction: column-reverse;
  }

  .cat-card__photo-holder {
    max-width: unset;
    max-height: 200px;
  }
}

@media(max-width:520px) {
  .cat-card__content-holder {
    flex-direction: row;
  }

  .cat-card__photo-holder {
    max-width: unset;
  }
}

@media(max-width:360px) {
  .cat-card__content-holder {
    flex-direction: column-reverse;
  }

  .cat-card__text-holder {
    height: auto;
  }
}

/* blocks css */

/* seo-block */

.seo-block {
  width: 100%;
  margin-top: var(--eighty);
}

.seo-block .seo-holder {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: var(--thirty);
}

.seo-block .seo-photo {
  max-width: 900px;
  height: auto;
  align-self: stretch;
  display: flex;
  max-height: 580px;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}

.seo-block .seo-photo img {
  width: 100%;
  height: 100%;
  display: flex;
  border-radius: 10px;
  object-fit: cover;
}

.seo-block .seo-text__holder {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--thirty);
}

.seo-block .seo-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--h2);
  line-height: 110%;
  color: var(--main-text);
}

.seo-block .seo-text {
  max-height: 418px;
  overflow-y: auto;
  width: 100%;
  padding-right: var(--fifty);
}

.seo-block .seo-text p,
.seo-block .seo-text li {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--1614);
  line-height: 170%;
  color: var(--light-text-2);
  margin-bottom: 10px;
}

.seo-block ul {
  padding-left: 10px;
  margin-bottom: var(--twenty);
}

.seo-block .seo-text p:first-child {
  margin-bottom: var(--twenty);
}

@media(max-width:900px) {
  .seo-block .seo-holder {
    flex-direction: column;
  }
}

/* companies-block */

.companies-block {
  width: 100%;
  margin-top: var(--eighty);
  background: var(--background-light);
  border-radius: 20px;
}

.companies-block .companies-inner {
  padding-top: var(--eighty);
  padding-bottom: var(--eighty);
}

.companies-block .companies-title__holder {
  display: flex;
  flex-direction: column;
  gap: var(--twenty);
  margin-bottom: var(--fourty);
}

.companies-block .companies-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--h2);
  line-height: 110%;
  color: var(--main-text);
}

.companies-block .companies-subtitle {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: var(--1614);
  line-height: 170%;
  color: var(--light-text-2);
  max-width: 900px;
  width: 100%;
}

.companies-block .companies-holder {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: var(--thirty);
}

.companies-block .company-item {
  background: var(--white);
  border-radius: 10px;
  width: 100%;
  max-height: 100%;
  height: 150px;
  display: flex;
  place-content: center;
  align-items: center;
}

.companies-block .company-item img {
  max-width: 280px;
  max-height: 150px;
  width: fit-content;
  height: fit-content;
  display: flex;
  margin: auto auto;
  object-fit: contain;
}

@media(max-width:1300px) {
  .companies-block .companies-holder {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}

@media(max-width:1100px) {
  .companies-block .companies-holder {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media(max-width:850px) {
  .companies-block .companies-holder {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media(max-width:650px) {
  .companies-block .companies-holder {
    grid-template-columns: 1fr 1fr;
  }
}

/* chars-block */

.chars-block {
  width: 100%;
  margin-top: var(--sixty);
  position: relative;
}

.chars-block .chars-holder {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: var(--thirty);
  width: 100%;
}

.chars-block .char-item {
  border: 1px solid var(--light-text-1);
  border-radius: 15px;
  width: 100%;
  height: 100%;
  display: flex;
  min-height: clamp(8.125rem, 6.95rem + 5.875vw, 14rem);
}

.chars-block .char-item .tab {
  pointer-events: none;
}

.chars-block .char-item__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
  padding: var(--twenty);
  align-self: stretch;
  width: 100%;
  height: 100%;
}

.chars-block .char-item__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  place-content: center;
  border-radius: 5px;
  background: var(--accent);
}

.chars-block .char-item__icon>* {
  display: flex;
  margin: auto auto;
  max-width: 20px;
  max-height: 20px;
  width: fit-content;
  height: fit-content;
}

.chars-block .char-item__head-holder {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: fit-content;
  flex-wrap: wrap;
}

.chars-block .char-item__value {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: var(--1614);
  line-height: 150%;
  color: var(--light-text-2);
}

@media(max-width:1500px) {
  .chars-block .chars-holder {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media(max-width:1100px) {
  .chars-block .chars-holder {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:700px) {
  .chars-block .chars-holder {
    grid-template-columns: 1fr;
  }

  .chars-block .char-item__name {
    font-size: clamp(0.75rem, 0.6447rem + 0.5263vw, 0.875rem);
  }
}

/* textTwoCol block */

.textTwoCol-block {
  margin-top: var(--sixty);
  width: 100%;
  position: relative;
}

.textTwoCol-block ul {
  padding-left: 10px;
  margin-bottom: var(--twenty);
}

.textTwoCol-block h1,
.textTwoCol-block h2,
.textTwoCol-block h3,
.textTwoCol-block h4,
.textTwoCol-block h5,
.textTwoCol-block h6 {
  margin-bottom: var(--twenty);
  color: var(--main-text);
}

.textTwoCol-block .textTwoCol-inner {
  display: flex;
  flex-direction: row;
  gap: var(--thirty);
  width: 100%;
}

.textTwoCol-block .text-left,
.textTwoCol-block .text-right {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.textTwoCol-block p,
.textTwoCol-block li {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--1614);
  line-height: 170%;
  color: var(--main-text);
  margin-bottom: 10px;
}

.textTwoCol-block .text-right *:last-child {
  margin-bottom: 0px;
}

@media(max-width:700px) {
  .textTwoCol-block .textTwoCol-inner {
    flex-direction: column;
    gap: unset;
  }
}

.form-block {
  margin-top: var(--eighty);
  position: relative;
  width: 100%;
  padding-top: var(--eighty);
}

.form-block h2,
.form-block h2>* {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--h2);
  line-height: 110%;
  color: var(--main-text);
}

.form-block h2>* {
  color: var(--accent);
}

.form-block .form-text__holder {
  margin-bottom: var(--fifty);
  display: flex;
  flex-direction: column;
  gap: var(--thirty);
  max-width: 900px;
  width: 100%;
}

.form-block .form-text__holder h2 {
  max-width: 745px;
  width: 100%;
}

.form-block .form-text__holder .form-subtitle {
  max-width: 435px;
  width: 100%;
}

.form-block .form-top__inner,
.form-block .form-bot__inner {
  padding-left: clamp(0.9375rem, -0.8125rem + 8.75vw, 9.6875rem);
  padding-right: clamp(0.9375rem, -0.8125rem + 8.75vw, 9.6875rem);
  position: relative;
}

.form-block .form-bot {
  border-radius: 20px;
  width: 100%;
  background: var(--elements);
  mix-blend-mode: multiply;
}

.form-block .form-bot__inner {
  padding-top: var(--eighty);
  padding-bottom: var(--eighty);
  display: flex;
  flex-direction: row;
  width: 100%;
}

.form-block .form-bot__inner .form-holder {
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: var(--thirty);
}

.form-block .form {
  max-width: 435px;
  width: 100%;
  display: flex;
  flex-direction: column;
  height: fit-content;
  gap: var(--twenty);
}

.form-block .form .btn {
  width: 100%;
  height: 60px;
}

.form-block .privacy,
.form-block .privacy>* {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: var(--light-text-1);
  max-width: 357px;
}

.form-block .form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.form-block .form-input__holder,
.form-block .form-input__holder input {
  width: 100%;
}

.form-block .form-photo {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  width: fit-content;
  height: fit-content;
  display: flex;
  max-width: 40vw;
  min-width: 450px;
  padding-right: clamp(0.9375rem, -0.8125rem + 8.75vw, 9.6875rem);
}

.form-block .form-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: flex;
}

.form-block .form-additional {
  max-width: 435px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--thirty);
}

.form-block .form-additional__text {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: var(--white);
}

@media(max-width:1600px) {
  .form-block .form-photo {
    padding-right: unset;
  }

  .form-block .form-photo {
    width: 29vw;
    min-width: unset;
  }

  .form-block {
    padding-top: unset;
  }

  .form-block .form-top__inner,
  .form-block .form-bot__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media(max-width:1200px) {
  .form-block .form-photo {
    width: 20vw;
    min-width: unset;
  }
}

@media(max-width:1000px) {
  .form-block .form-photo {
    display: none;
  }

  .form-block .form {
    max-width: unset;
  }

  .form-block .form-additional {
    max-width: unset;
  }

  .form-block .form-bot__inner .form-holder {
    max-width: unset;
  }
}

@media(max-width:800px) {
  .form-block .unique-container {
    padding-left: unset;
    padding-right: unset;
  }
}

@media(max-width:700px) {

  .form-block .form-top__inner,
  .form-block .form-bot__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .form-block .form-additional__text {
    font-size: 14px;
  }

  .form-block .form {
    max-width: unset;
  }

  .form-block .form-additional {
    max-width: unset;
  }

  .form-block .form-additional__pseudo {
    display: none;
  }

  .form-block .privacy,
  .form-block .privacy>* {
    max-width: unset;
  }

  .form-block .form-bot__inner .form-holder {
    flex-direction: column;
  }
}

/* partner-block */

.partner-block {
  border-radius: 20px;
  width: 100%;
  background: var(--background-light);
  margin-top: var(--eighty);
}

.partner-block .partner-inner {
  padding-top: var(--eighty);
  padding-bottom: var(--eighty);
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: var(--thirty);
}

.partner-content__holder {
  display: flex;
  flex-direction: column;
  max-width: 590px;
  width: 100%;
  gap: var(--thirty);
  height: fit-content;
}

.partner-text__holder {
  display: flex;
  flex-direction: column;
  max-width: 550px;
  width: 100%;
  gap: var(--twenty);
}

.partner-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--h2);
  line-height: 110%;
  color: var(--main-text);
}

.partner-subtitle {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: var(--1614);
  line-height: 170%;
  color: var(--light-text-2);
}

.partner-photo {
  width: 100%;
  height: auto;
  max-height: 100%;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
}

.partner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  max-height: 600px;
}

.partner-chars__holder {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--thirty);
}

.partner-char {
  background: var(--white);
  border-radius: 10px;
  width: 100%;
  height: 100%;
  display: flex;
}

.partner-char__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  align-self: stretch;
  padding: var(--thirty);
  gap: var(--fourty);
}

.partner-char__icon {
  width: var(--5040);
  height: var(--5040);
  display: flex;
  border-radius: 5px;
  background: var(--accent);
  align-items: center;
  place-content: center;
}

.partner-char__icon>* {
  display: flex;
  max-width: 30px;
  max-height: 30px;
  width: fit-content;
  height: fit-content;
  margin: auto auto;
}

.partner-char__text-holder {
  display: flex;
  flex-direction: column;
  gap: var(--fifteen);
}

.partner-char__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--2016);
  line-height: 110%;
  color: var(--main-text);
}

.partner-char__subtitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--1614);
  line-height: 170%;
  color: var(--light-text-2);
}

@media(max-width:1350px) {
  .partner-block .partner-inner {
    flex-direction: row;
  }

  .partner-chars__holder {
    grid-template-columns: 1fr;
  }

  .partner-content__holder {
    position: sticky;
    top: 250px;
  }
}


@media(max-width:800px) {
  .partner-chars__holder {
    grid-template-columns: 1fr;
  }

  .partner-block .partner-inner {
    flex-direction: column;
  }

  .partner-content__holder {
    max-width: unset;
  }

  .partner-content__holder {
    position: relative;
    top: unset;
  }
}

/* optovikam-block */

.optovikam-content__holder {
  display: flex;
  flex-direction: row;
  gap: var(--thirty);
  width: 100%;
}

.optovikam-values__holder {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: var(--fifty);
}

.optovikam-swiper__holder {
  overflow: hidden;
  width: 100%;
  max-width: 900px;
  display: flex;
}

.optovikam-swiper__holder .swiper {
  width: 100%;
  height: auto;
  align-self: stretch;
  display: flex;
}

.optovikam-swiper__holder .swiper-slide {
  max-width: 435px;
  height: auto;
  display: flex;
  align-self: stretch;
}

.optovikam-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: var(--1614);
  line-height: 170%;
  color: var(--main-text);
}

.optovikam-chars__holder {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--thirty);
}

.optovikam-item__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--thirty);
  width: 100%;
}

.optovikam-item__pair:not(:last-child) {
  border-bottom: 1px solid var(--light-text-1);
  padding-bottom: var(--thirty);
}

.optovikam-item {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--fifteen);
}

.optovikam-item__title-holder {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: var(--fifteen);
  align-items: center;
  max-width: 405px;
}

.optovikam-item__subtitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: var(--light-text-2);
  max-width: 415px;
  width: 100%;
}

.optovikam-photo__item {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 8px;
  height: auto;
  align-self: stretch;
}

.optovikam-photo {
  width: 100%;
  height: 100%;
  display: flex;
  border-radius: 8px;
}

.optovikam-photo img {
  width: 100%;
  height: 100%;
  display: flex;
  object-fit: cover;
  aspect-ratio: 4 / 4;
}

.optovikam-photo__item-tab {
  position: absolute;
  top: var(--twenty);
  left: var(--twenty);
  right: var(--twenty);
  bottom: var(--twenty);
  display: flex;
  height: fit-content;
  width: fit-content;
  z-index: 3;
  pointer-events: none;
}

@media(max-width:1300px) {
  .optovikam-content__holder {
    flex-direction: column-reverse;
  }

  .optovikam-swiper__holder,
  .optovikam-item__title-holder,
  .optovikam-item__subtitle {
    max-width: unset;
  }

  .optovikam-swiper__holder .swiper-slide {
    max-width: 48%;
  }
}

@media(max-width:800px) {
  .optovikam-swiper__holder .swiper-slide {
    max-width: 47.5%;
  }
}

@media(max-width:700px) {
  .optovikam-item__pair {
    grid-template-columns: 1fr;
  }
}

@media(max-width:600px) {
  .optovikam-swiper__holder .swiper-slide {
    max-width: 100%;
  }
}

/* degrees-block */

.degrees-block {
  margin-top: var(--eighty);
  position: relative;
  width: 100%;
}

.degrees-title__holder {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: var(--fourty);
}

.degrees-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--h2);
  line-height: 110%;
  color: var(--main-text);
  max-width: 745px;
  width: 100%;
}

.degrees-subtitle {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: var(--1614);
  line-height: 170%;
  color: var(--light-text-2);
  max-width: 745px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.degrees-card {
  display: none;
  transition: unset;
}

.degrees-card.active {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: var(--thirty);
  max-width: 1675px;
}

.degrees-card__photo {
  border-radius: 15px;
  overflow: hidden;
  max-width: 745px;
  width: 100%;
  height: auto;
  align-self: stretch;
  display: flex;
  min-height: clamp(15rem, 12.75rem + 11.25vw, 26.25rem);
  max-height: 700px;
}

.degrees-card__photo img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
  display: flex;
  border-radius: 15px;
}

.degrees-card__content-holder {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.degrees-card__text p,
.degrees-card__text li {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--1614);
  line-height: 170%;
  color: var(--main-text);
  margin-bottom: 10px;
}

.degrees-card__text p>* {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--h3);
  margin-bottom: var(--twenty);
  line-height: 110%;
  color: var(--main-text);
}

.degrees-card__text h1,
.degrees-card__text h2,
.degrees-card__text h3,
.degrees-card__text h4,
.degrees-card__text h5,
.degrees-card__text h6,
.degrees-card__text p:has(*) {
  margin-bottom: var(--twenty);
}

.degrees-card__text>*:last-child {
  margin-bottom: 0px;
}

.degrees-card__dop-holder {
  width: 100%;
  display: flex;
  flex-direction: row;
  max-width: 745px;
  gap: var(--thirty);
}

.degrees-card__dop-photo {
  width: 125px;
  height: 97px;
  overflow: hidden;
  display: flex;
  border: 1px solid var(--light-text-1);
  border-radius: 10px;
}

.degrees-card__dop-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  border-radius: 10px;
}

.degrees-card__dop-text {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.degrees-card__dop-text p,
.degrees-card__dop-text li {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: var(--light-text-2);
  margin-bottom: 5px;
}

.degrees-card__dop-text p>* {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: var(--2016);
  line-height: 150%;
  color: var(--main-text);
  margin-bottom: var(--twenty);
}

.degrees-card__dop-text p:has(*) {
  margin-bottom: var(--twenty);
}

.degrees-card__dop-text>*:last-child {
  margin-bottom: 0px;
}

@media(max-width:1600px) {
  .degrees-title__holder {
    flex-direction: column;
  }

  .degrees-subtitle {
    margin-left: unset;
    margin-right: unset;
    max-width: unset;
  }
}

@media(max-width:1300px) {
  .degrees-card.active {
    flex-direction: column;
  }
}

@media(max-width:700px) {
  .degrees-card__dop-holder {
    flex-direction: column;
  }
}

/* grading-block */

.grading-block {
  margin-top: var(--eighty);
  width: 100%;
  position: relative;
  border-radius: 20px;
  background: var(--background-light);
}

.grading-block .grading-inner {
  padding-top: var(--eighty);
  padding-bottom: var(--eighty);
  width: 100%;
}

.grading-block .grading-title {
  margin-bottom: var(--fourty);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--h2);
  line-height: 110%;
  color: var(--main-text);
}

.grading-item {
  display: flex;
  flex-direction: row;
  width: fit-content;
  gap: var(--twenty);
}

.grading-item__photo {
  width: 230px;
  height: 230px;
  display: flex;
  border-radius: 10px;
  background: var(--white);
  flex-shrink: 0;
}

.grading-item__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  border-radius: 10px;
}

.grading-item__text-holder {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: auto;
  align-self: stretch;
  justify-content: space-between;
  gap: 15px;
}

.grading-item__name {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--h3);
  line-height: 110%;
  color: var(--main-text);
}

.grading-item__value {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--1614);
  line-height: 170%;
  color: var(--light-text-2);
}

@media(max-width:1650px) {
  .grading-item {
    flex-direction: column;
  }
}

@media(max-width:1200px) {
  .grading-item {
    flex-direction: row;
  }
}

@media(max-width:1060px) {
  .grading-item {
    flex-direction: column;
  }
}

/* roadmap-block */

.roadmap-block {
  margin-top: var(--sixty);
  width: 100%;
  position: relative;
}

.roadmap-title {
  margin-bottom: var(--fourty);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--h2);
  line-height: 110%;
  color: var(--main-text);
}

.roadmap-content__holder {
  display: flex;
  flex-direction: row;
  gap: var(--thirty);
  width: 100%;
}

.roadmap-photo__holder {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 745px;
  height: fit-content;
  position: sticky;
  top: 250px;
  gap: var(--fifteen);
}

.roadmap-photo {
  border: 1px solid var(--light-text-1);
  border-radius: 10px;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.roadmap-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  border-radius: 10px;
}

.roadmap-photo__sub {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: var(--light-text-2);
}

.roadmap-sections {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 0.8125rem + 2.1875vw, 3.4375rem);
}

.roadmap-section {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: var(--twenty);
}

.roadmap-section .tab {
  pointer-events: none;
}

.roadmap-item__head-holder {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: fit-content;
  height: fit-content;
  gap: 10px;
}

.roadmap-value {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.roadmap-value p,
.roadmap-value li {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--1614);
  line-height: 170%;
  color: var(--main-text);
  margin-bottom: 0px;
}

.roadmap-value p>* {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: var(--main-text);
}

.roadmap-value p:has(>*) {
  margin-bottom: 10px;
}

@media(max-width:1300px) {
  .roadmap-content__holder {
    flex-direction: column;
  }

  .roadmap-photo__holder {
    position: relative;
    top: unset;
  }

  .roadmap-sections {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media(max-width:1000px) {
  .roadmap-sections {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:500px) {
  .roadmap-sections {
    grid-template-columns: 1fr;
  }
}

/* text-block */

.text-block {
  margin-top: var(--thirty);
  width: 100%;
  position: relative;
}

.text-block li,
.text-block p,
.text-block p>* {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: var(--1614);
  line-height: 170%;
  color: var(--light-text-2);
}

.text-block__text {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* reqs-block */

.reqs-block {
  margin-top: var(--eighty);
  width: 100%;
}

.reqs-block .reqs-title {
  margin-bottom: var(--fourty);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--h2);
  line-height: 110%;
  color: var(--main-text);
}

.reqs-block .reqs-holder {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: var(--thirty);
}

.reqs-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  height: fit-content;
}

.reqs-item__name {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--1614);
  line-height: 170%;
  color: var(--light-text-2);
}

.reqs-item__value {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: var(--2016);
  line-height: 150%;
  color: var(--main-text);
}

@media(max-width:1400px) {
  .reqs-block .reqs-holder {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media(max-width:900px) {
  .reqs-block .reqs-holder {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:500px) {
  .reqs-block .reqs-holder {
    grid-template-columns: 1fr;
  }
}

/* contacts-block */

.contacts-block {
  width: 100%;
  position: relative;
}

.contacts-block .contacts-inner {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: var(--thirty);
}

.contacts-block .contacts-holder {
  display: flex;
  flex-direction: column;
  max-width: 590px;
  width: 100%;
  gap: 10px;
}

.contacts-block .contacts-item {
  border-radius: 15px;
  width: 100%;
  height: fit-content;
  display: flex;
  background: var(--background-light);
}

.contacts-block .contacts-item__inner {
  display: flex;
  flex-direction: column;
  gap: var(--twenty);
  align-self: stretch;
  height: auto;
  width: 100%;
  padding: var(--thirty);
}

.contacts-item__name {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: var(--2016);
  line-height: 150%;
  color: var(--main-text);
}

.contacts-item__value,
.contacts-item__value>* {
  margin-bottom: 0px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--1614);
  line-height: 170%;
  color: var(--light-text-2);
  width: fit-content;
}

.contacts-item.email-item .contacts-item__name {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--1614);
  line-height: 170%;
  color: var(--light-text-2);
}

.contacts-item.email-item .contacts-item__value {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: var(--2016);
  line-height: 150%;
  color: var(--main-text);
}

.contacts-block a:hover {
  color: var(--primary) !important;
}

.soc-item {
  width: clamp(2.5rem, 2.25rem + 1.25vw, 3.75rem);
  height: clamp(2.5rem, 2.25rem + 1.25vw, 3.75rem);
  display: flex;
  align-items: center;
  place-content: center;
  background: var(--white);
  border-radius: 5px;
}

.soc-item>*,
.soc-item>*>* {
  display: flex;
  max-width: 24px;
  max-height: 24px;
  width: fit-content;
  height: fit-content;
  margin: auto auto;
}

.soc-item:hover {
  background: var(--primary);
}

.soc-item:hover svg path {
  fill: var(--white);
}

.contacts-block .map {
  height: auto;
  align-self: stretch;
  max-height: 100vw;
  border-radius: 20px;
  overflow: hidden;
  max-width: 1210px;
  width: 100%;
}

.contacts-block .map-holder {
  height: 100%;
  align-self: stretch;
  max-height: 100vw;
  border-radius: 20px;
  overflow: hidden;
  max-width: 1210px;
}

@media(max-width:900px) {
  .contacts-block .contacts-inner {
    flex-direction: column;
  }

  .contacts-block .contacts-holder {
    max-width: unset;
  }

  .contacts-block .map {
    height: 100vw;
    max-height: 600px;
  }
}

/* accordions-block */

.accordions-holder {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--thirty);
}

.accordion-column {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--twenty);
}

@media(max-width:1000px) {
  .accordions-holder {
    grid-template-columns: 1fr;
  }
}

/* reviews-block */

.reviews-block {
  margin-top: var(--eighty);
  position: relative;
  width: 100%;
}

.reviews-block .reviews-title {
  margin-bottom: var(--fourty);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--h2);
  line-height: 110%;
  color: var(--main-text);
}

.reviews-block .reviews-btn {
  margin-top: var(--thirty);
}

@media(max-width:700px) {
  .reviews-block .columns-3 {
    grid-template-columns: 1fr;
  }
}

.videos-block {
  margin-top: var(--eighty);
  width: 100%;
  position: relative;
}

.videos-block iframe {
  display: none;
}

.videos-block .videos-title {
  margin-bottom: var(--fourty);
}

/* know-block */

.know-block {
  margin-top: var(--eighty);
  width: 100%;
  display: flex;
}

.know-holder {
  min-height: clamp(21.875rem, 20rem + 9.375vw, 31.25rem);
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: right !important;
  height: 100%;
}

.know-holder__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
  height: 100%;
  width: 100%;
  align-self: stretch;
  padding: var(--fourty);
  padding-bottom: var(--thirty);
}

.know-holder__icon {
  width: 40px;
  height: 40px;
  display: flex;
}

.know-holder__content-holder {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.know-holder__title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: clamp(1.25rem, 0.85rem + 2vw, 3.25rem);
  line-height: 150%;
  color: var(--white);
  max-width: 580px;
  width: 100%;
}

.know-holder__text-holder {
  display: flex;
  flex-direction: column;
  gap: var(--thirty);
  margin-left: auto;
  margin-right: auto;
}

.know-holder__chars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--fifteen) var(--thirty);
}

.know-holder__char {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--2016);
  line-height: 110%;
  color: var(--white);
  margin-bottom: 0px;
}

@media(max-width:1350px) {
  .know-holder__content-holder {
    flex-direction: column;
  }

  .know-holder__text-holder {
    margin-left: unset;
    margin-right: unset;
  }

  .know-holder__chars {
    margin-left: 15px;
  }
}

@media(max-width:700px) {
  .know-holder__chars {
    grid-template-columns: 1fr;
  }
}

.products-block {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--background-light);
  margin-top: var(--eighty);
}

.products-inner {
  padding-top: var(--eighty);
  padding-bottom: var(--eighty);
}

.products-title__holder {
  display: flex;
  flex-direction: row;
  width: fit-content;
  align-items: center;
  gap: var(--twenty);
  height: fit-content;
  margin-bottom: var(--fourty);
}

.products-title__icon,
.products-title__icon>* {
  display: flex;
  width: clamp(1.875rem, 1.75rem + 0.625vw, 2.5rem);
  height: clamp(1.875rem, 1.75rem + 0.625vw, 2.5rem);
}

.products-block .swiper-slide {
  max-width: 342px;
  display: flex;
  flex-direction: column;
  height: auto;
  align-self: stretch;
}

@media(max-width:430px) {
  .products-block .swiper-slide {
    max-width: unset;
    width: 45%;
  }
}

.advantages-block {
  margin-top: var(--thirty);
  width: 100%;
  position: relative;
}

.advantages-block .advantages-holder {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: var(--thirty);
  width: 100%;
}

@media(max-width:1600px) {
  .advantages-block .advantages-holder {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media(max-width:1200px) {
  .advantages-block .advantages-holder {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:600px) {
  .advantages-block .advantages-holder {
    grid-template-columns: 1fr;
  }
}

.categories-block {
  margin-top: var(--eighty);
  position: relative;
  width: 100%;
}

.categories-block .categories-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--h2);
  line-height: 110%;
  color: var(--main-text);
  margin-bottom: var(--thirty);
}

.categories-block .categories-holder {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--thirty);
}

.categories-block .categories-btn {
  margin-top: var(--thirty);
}

@media(max-width:1200px) {
  .categories-block .categories-holder {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:520px) {
  .categories-block .categories-holder {
    grid-template-columns: 1fr;
  }
}

.mainbanner-block {
  width: 100%;
  margin-top: var(--fourty);
  position: relative;
  display: flex;
  overflow: hidden;
}

.mainbanner-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

@media(max-width:900px) {
  .mainbanner-block .swiper-arrows {
    right: unset;
    left: var(--fourtyFive);
  }
}

.stocks-block {
  margin-top: var(--eighty);
  width: 100%;
  position: relative;
}

.stocks-block .swiper-slide {
  max-width: 900px;
  width: 100%;
}

@media(max-width:930px) {
  .stocks-block .swiper-slide {
    max-width: unset;
    width: 100%;
  }
}


/* items components */

/* accordion item */

.accordion-item {
  width: 100%;
  height: fit-content;
}

.accordion-item ul {
  padding-left: 10px;
  margin-top: var(--twenty);
}

.accordion-item ul li {
  margin-bottom: 10px;
}

.accordion-item ul li:last-child {
  margin-bottom: 0px;
}

.accordion-item p,
.accordion-item li {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--1614);
  line-height: 170%;
  color: var(--main-text);
  margin-bottom: 10px;
}

.accordion-item p>*,
.accordion-item li>* {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: var(--main-text);
}

.accordion-item p:has(*) {
  margin-bottom: var(--twenty);
  margin-top: var(--twenty);
}

.accordion-header {
  width: 100%;
  padding: var(--thirty);
  height: fit-content;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: var(--background-light);
  border: 1px solid var(--background-light);
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  z-index: 4;
}

.accordion-header svg {
  flex-shrink: 0;
  width: clamp(0.9375rem, 0.85rem + 0.4375vw, 1.375rem);
  display: flex;
  height: clamp(0.9375rem, 0.85rem + 0.4375vw, 1.375rem);
}

.accordion-header.active svg {
  transform: rotate(45deg);
}

.accordion-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--2016);
  line-height: 110%;
  color: var(--main-text);
}

.accordion-content {
  background: var(--background-light);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.accordion-content__inner {
  display: flex;
  flex-direction: column;
  gap: var(--twenty);
  width: 100%;
  height: auto;
  align-self: stretch;
  padding: var(--thirty);
  padding-top: 0px;
}

.accordion-item .accordion-content {
  overflow: hidden;
  max-height: 0;
  margin-top: -20px;
  padding-top: 20px;
}

.accordion-gal {
  display: flex;
  flex-direction: row;
  gap: var(--fifteen);
  width: fit-content;
  height: fit-content;
  flex-wrap: wrap;
}

.accordion-gal__item {
  width: 85px;
  height: 50px;
  display: flex;
  border: 1px solid var(--light-text-1);
  border-radius: 3px;
  background: var(--white);
  overflow: hidden;
}

.accordion-gal__item img {
  width: 100%;
  height: 100%;
  display: flex;
  object-fit: cover;
}

/* video-item */

.video-item {
  width: 100%;
  height: auto;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: var(--fifteen);
  cursor: pointer;
  transition: unset;
}

.video-item__photo {
  width: 100%;
  height: clamp(14.375rem, 12.4375rem + 9.6875vw, 24.0625rem);
  max-height: 100vw;
  display: flex;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.video-item__photo img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  display: flex;
}

.video-item__tabs {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 3;
  pointer-events: none;
}

.video-item__tab {
  display: flex;
  width: fit-content;
  height: fit-content;
  border-radius: 2px;
  padding: 5px;
  background: var(--main-text);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  color: var(--white);
}

.video-item__text-holder {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.video-item__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--2016);
  line-height: 110%;
  color: var(--main-text);
}

.video-item__subtitle {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: var(--1614);
  line-height: 170%;
  color: var(--light-text-2);
}

/* mainbanner-item */
.mainbanner-item {
  width: 100%;
  height: 100%;
  min-height: clamp(21.875rem, 20rem + 9.375vw, 31.25rem);
  display: flex;
  align-self: stretch;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  border-radius: 10px;
  overflow: hidden;
  background-position: 30% !important;
}

.mainbanner-item__inner {
  max-width: 700px;
  width: 100%;
  height: auto;
  align-self: stretch;
  padding: var(--fourty) var(--fourtyFive);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
}

.mainbanner-item__text-holder {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: var(--thirty);
}

.mainbanner-item__advantages {
  display: flex;
  flex-direction: row;
  gap: var(--thirty);
  align-items: center;
  flex-wrap: wrap;
  width: fit-content;
  height: fit-content;
}

.mainbanner-item__advantage {
  display: flex;
  flex-direction: row;
  width: fit-content;
  height: fit-content;
  gap: 10px;
  align-items: center;
}

.mainbanner-item__advantage-name {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: var(--1614);
  line-height: 150%;
  color: var(--light-text-1);
}

.mainbanner-item__title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: var(--h1);
  line-height: 150%;
  color: var(--white);
}

.mainbanner-block .swiper-arrows {
  position: absolute;
  z-index: 3;
  bottom: var(--fourty);
  right: var(--fourtyFive);
}

.mainbanner-item__btns-holder {
  display: flex;
  flex-direction: row;
  gap: 15px;
  flex-wrap: wrap;
  width: fit-content;
  height: fit-content;
}

@media(max-width:900px) {
  .mainbanner-item__inner {
    padding-bottom: 100px;
  }
}

@media(max-width:500px) {
  .mainbanner-item__advantage-name {
    color: var(--white);
  }
}

/* advantage-item */

.advantage-item {
  width: 100%;
  height: 100%;
  border: 1px solid var(--stroke-1);
  border-radius: 10px;
  display: flex;
}

.advantage-item__inner {
  width: 100%;
  height: auto;
  display: flex;
  align-self: stretch;
  padding: 7px;
  align-items: center;
  gap: var(--twenty);
}

.advantage-item__icon {
  width: clamp(2.5rem, 2.175rem + 1.625vw, 4.125rem);
  height: clamp(2.5rem, 2.175rem + 1.625vw, 4.125rem);
  display: flex;
  background: var(--accent);
  border-radius: 8px;
  align-items: center;
  place-content: center;
  flex-shrink: 0;
}

.advantage-item__icon>* {
  width: clamp(1.875rem, 1.75rem + 0.625vw, 2.5rem);
  height: clamp(1.875rem, 1.75rem + 0.625vw, 2.5rem);
  display: flex;
}

.advantage-item__text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: var(--1614);
  line-height: 170%;
  color: var(--light-text-2);
}

/* review-card */

.review-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  border: 1px solid var(--light-text-1);
  border-radius: 10px;
  background: var(--white);
}

.review-card__inner {
  display: flex;
  flex-direction: column;
  width: auto;
  height: 100%;
  align-self: stretch;
  padding: var(--twenty);
}

.review-card__head-holder {
  display: flex;
  flex-direction: row;
  height: fit-content;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: var(--fourty);
}

.review-card__title-holder {
  display: flex;
  flex-direction: column;
  width: fit-content;
  height: fit-content;
  gap: 5px;
}

.review-card__title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 170%;
  color: var(--main-text);
}

.review-card__subtitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: var(--light-text-2);
}

.review-card__date {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: var(--light-text-2);
}

.review-card__text-holder {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: var(--twentyFive);
}

.review-card__text p,
.review-card__text p>* {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--1614);
  line-height: 150%;
  color: var(--light-text-2);
}

.review-card__text p>* {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: var(--main-text);
}

.review-card__text>* {
  margin-bottom: var(--fifteen);
}

.review-card__text>*:last-child {
  margin-bottom: unset;
}

.review-card__gal {
  margin-top: var(--twenty);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: fit-content;
  height: fit-content;
  gap: 10px;
}

.review-card__gal-item {
  width: clamp(2.5rem, 2rem + 2.5vw, 5rem);
  height: clamp(2.5rem, 2rem + 2.5vw, 5rem);
  display: flex;
  align-items: center;
  place-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  cursor: pointer;
}

.review-card__gal-item:hover .photo-overlay {
  opacity: 1;
}

#modal-review .review-card .link-holder {
  display: none;
}

#modal-review .review-card__head-holder {
  margin-bottom: var(--thirty);
}

#modal-review .review-card__date {
  display: none;
}

/* stock-item */

.stock-item {
  width: 100%;
  min-height: clamp(18.75rem, 17.5rem + 6.25vw, 25rem);
  max-height: 100vw;
  height: 100%;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: 30% !important;
  transition: unset;
}

.stock-item.archive {
  filter: grayscale(1);
}

.stock-item.archive .stock-tab {
  background: var(--stroke-2);
}

.stock-item__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  height: auto;
  align-self: stretch;
  padding: var(--thirty);
  padding-bottom: var(--twenty);
}

.stock-text__holder {
  display: flex;
  flex-direction: column;
  gap: var(--twenty);
  max-width: 330px;
  width: 100%;
}

.stock-title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: var(--stock);
  line-height: 150%;
  color: var(--white);
}

.stock-desc {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: var(--1614);
  line-height: 170%;
  color: var(--light-text-1);
}

.stock-bot__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: var(--white);
}

/* product-card */
.product-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  overflow: hidden;
  gap: var(--twenty);
  justify-content: space-between;
  padding-bottom: 1px;
}

.product-card__title-holder {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: var(--twenty);
}

.product-card__photo {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  height: auto;
  align-self: stretch;
  flex-shrink: 0;
  max-height: 342px;
}

.product-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 342px;
  border-radius: 10px;
  aspect-ratio: 1/1;
}

.product-card .fav-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
}

.product-card__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: var(--2016);
  line-height: 110%;
  color: var(--main-text);
}

.product-card .price {
  width: fit-content;
  height: fit-content;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--fifteen);
  align-items: center;
}

.product-card .sale-price,
.product-card .sale-price bdi,
.product-card .sale-price span {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: var(--main-text);
}

.product-card .regular-price,
.product-card .regular-price bdi,
.product-card .regular-price span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  text-decoration: line-through;
  color: var(--light-text-2);
}

.product-card__price-holder {
  display: flex;
  flex-direction: column;
  gap: var(--thirty);
}

.product-card__btns-holder {
  display: flex;
  flex-direction: row;
  width: fit-content;
  height: fit-content;
  gap: var(--fifteen);
  flex-wrap: wrap;
}

.woo-btn__card,
.product-card__btn {
  margin-top: unset;
  height: auto;
}

.product-card:hover img {
  transform: scale(1.1);
}

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