/*============= ALIGNES ===============*/
.alignwide {
  width: 100%;
}

.alignfull {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 1920px;
}

@media only screen and (min-width: 1920px) {
  .alignfull {
    width: 100vw !important;
    max-width: unset;
  }
}

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

:root {
  --212067: #84c4f5;
  --293990: #e1944c;
  --1297-ee: #84c4f5;
  --edd-608: #84c4f5;
  --141328: #35709c;
  --3-c-3-b-4-f: #3c3b4f;
  --9999-ab: #9999ab;
  --ececec: #ececec;
  --373676: #e1944c;
  --ebf-1-ff: #ebf1ff;
  --dfdffa: #fff;
  --ffffff: #fff;
  --faf-9-fa: #f9f9fa;
  --dfdfdf: #dfdfdf;
  --555555: #555555;
  --0D2547: #0d2547;
  --2530-bf: #e1944c;
  --242-c-91: #e1944c;
  --bf-2525: #bf2525;
  --140-f-14: #140f14;
  --20: calc(20 / 19.2 * 1vw);
  --20to15: max(var(--20), 15px);
  --20s: max(var(--20), 20px);
  --transition: all 0.3s ease-in;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  box-sizing: border-box;
}

body {
  background-color: #f9f9fa;
  overflow-x: hidden;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

@media (max-width: 767px) {
  body {
    padding-bottom: 80px;
  }
}

body.home {
  background-color: #fff;
}

main {
  flex: 1;
}

a {
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 150%;
  color: var(--color, var(--141328));
  transition: var(--transition);
}

@media (min-width: 992px) {
  a:hover {
    --color: var(--212067);
  }
}

ul li {
  list-style-position: inside;
  font-weight: 500;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 150%;
  color: var(--color, var(--141328));
}

ol li {
  list-style-position: inside;
  font-weight: 500;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 150%;
  color: var(--color, var(--141328));
}

strong {
  font-weight: 800;
}

input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

input:focus-visible {
  outline: none;
}

h1.page-title {
  font-weight: 700;
  font-size: clamp(22px, 0.0175 * 100vw + 16.4px, 50px);
  line-height: 130%;
  color: var(--color, var(--141328));
  margin-bottom: clamp(25px, 0.015625 * 100vw + 20px, 50px);
}

.page-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: clamp(25px, 0.015625 * 100vw + 20px, 50px);
}

.page-head .page-title {
  margin-bottom: 0;
}

.breadcrumbs {
  padding: clamp(20px, 0.01875 * 100vw + 14px, 50px) 0 clamp(10px, 0.00625 * 100vw + 8px, 20px);
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--2530-bf);
}

.breadcrumbs a {
  --color: var(--2530-bf);
}

@media (min-width: 992px) {
  .breadcrumbs a:hover span {
    --color: var(---141328);
  }
}

.breadcrumbs span {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--2530-bf);
  transition: var(--transition);
}

.container {
  max-width: 1660px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.container-left {
  padding-left: clamp(20px, 0.5 * 100vw + -810px, 150px);
  max-width: 1920px;
  margin: 0 auto;
}

.container-right {
  padding-right: clamp(20px, 0.5 * 100vw + -810px, 150px);
  max-width: 1920px;
  margin: 0 auto;
}

svg {
  transition: var(--transition);
  width: var(--svgWidth, 24px);
  height: var(--svgHeight, 24px);
  color: var(--svgColor, var(--212067));
}

button {
  border: none;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(5px, 0.003125 * 100vw + 4px, 10px);
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
  padding: clamp(10px, 0.01 * 100vw + 6.8px, 26px) clamp(20px, 0.01875 * 100vw + 14px, 50px);
  background: var(--212067);
  font-weight: 800;
  font-size: 14px;
  line-height: 150%;
  color: var(--color, var(--141328));
  color: var(--ffffff);
}

.btn svg {
  transition: var(--transition);
  --svgColor: var(--ffffff);
}

.btn svg path {
  transition: var(--transition);
}

.btn--secondary {
  padding: clamp(10px, 0.00625 * 100vw + 8px, 20px) clamp(20px, 0.0125 * 100vw + 16px, 40px) clamp(10px, 0.008125 * 100vw + 7.4px, 23px);
}

@media (min-width: 992px) {
  .btn:hover {
    background: var(--293990);
  }
}

.btn--secondary-2 {
  background: var(--faf-9-fa);
  color: var(--212067);
}

.btn--secondary-2 svg {
  --svgColor: var(--212067);
}

@media (min-width: 992px) {
  .btn--secondary-2:hover {
    background-color: var(--ebf-1-ff);
  }
}

h1,
.h1 {
  font-weight: 700;
  font-size: clamp(25px, 0.034375 * 100vw + 14px, 80px);
  line-height: 130%;
  color: var(--color, var(--141328));
}

h2,
.h2 {
  font-weight: 700;
  font-size: clamp(22px, 0.0175 * 100vw + 16.4px, 50px);
  line-height: 130%;
  color: var(--color, var(--141328));
}

h3,
.h3 {
  font-weight: 700;
  font-size: clamp(20px, 0.01125 * 100vw + 16.4px, 38px);
  line-height: 130%;
  color: var(--color, var(--141328));
}

h4,
.h4 {
  font-weight: 700;
  font-size: clamp(18px, 0.00875 * 100vw + 15.2px, 32px);
  line-height: 150%;
  color: var(--color, var(--141328));
}

h5,
.h5 {
  font-weight: 700;
  font-size: clamp(16px, 0.005 * 100vw + 14.4px, 24px);
  line-height: 150%;
  color: var(--color, var(--141328));
}

h6,
.h6 {
  font-weight: 700;
  font-size: clamp(14px, 0.00375 * 100vw + 12.8px, 20px);
  line-height: 150%;
  color: var(--color, var(--141328));
}

.h-16 {
  font-weight: 800;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 150%;
  color: var(--color, var(--141328));
}

.h-14 {
  font-weight: 800;
  font-size: 14px;
  line-height: 150%;
  color: var(--color, var(--141328));
}

.h-10 {
  font-weight: 800;
  font-size: 10px;
  line-height: 150%;
  color: var(--color, var(--141328));
}

p,
.p {
  font-weight: 500;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 150%;
  color: var(--color, var(--141328));
}

.p-32 {
  font-weight: 500;
  font-size: clamp(16px, 0.005 * 100vw + 14.4px, 24px);
  line-height: 150%;
  color: var(--color, var(--141328));
}

.p-20 {
  font-weight: 500;
  font-size: clamp(14px, 0.00375 * 100vw + 12.8px, 20px);
  line-height: 150%;
  color: var(--color, var(--141328));
}

.p-14 {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: var(--color, var(--141328));
}

.p-12 {
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  color: var(--color, var(--141328));
}

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

body.compensate-for-scrollbar {
  overflow: auto !important;
  overflow-x: hidden !important;
}

.block-title {
  font-weight: 700;
  font-size: clamp(20px, 0.01125 * 100vw + 16.4px, 38px);
  line-height: 130%;
  color: var(--color, var(--141328));
  margin-bottom: max(40 / 19.2 * 1vw, 25px);
}

.block-title__wrap {
  display: flex;
  align-items: center;
  gap: clamp(10px, 0.01 * 100vw + 6.8px, 26px);
  margin-bottom: max(40 / 19.2 * 1vw, 25px);
}

.block-title__wrap .block-title {
  margin-bottom: 0;
}

.block-title__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(40px, 0.00875 * 100vw + 37.2px, 54px);
  height: clamp(40px, 0.00875 * 100vw + 37.2px, 54px);
  background: var(--ffffff);
  flex-shrink: 0;
}

.block-title__icon svg {
  width: clamp(20px, 0.0025 * 100vw + 19.2px, 24px);
  height: clamp(20px, 0.0025 * 100vw + 19.2px, 24px);
}

.block-title__icon img {
  width: -webkit-fill-available;
  height: -webkit-fill-available;
  -o-object-fit: contain;
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
}

.block-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: clamp(25px, 0.009375 * 100vw + 22px, 40px);
}

.block-head .block-title {
  margin-bottom: 0;
}

.block__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  margin-top: clamp(15px, 0.009375 * 100vw + 12px, 30px);
}

/*============ SLIDER =================*/
.slider-btn {
  width: clamp(50px, 0.01625 * 100vw + 44.8px, 76px);
  height: clamp(50px, 0.01625 * 100vw + 44.8px, 76px);
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  cursor: pointer;
  background: var(--faf-9-fa);
  transition: var(--transition);
}

.slider-btn svg {
  width: clamp(20px, 0.0025 * 100vw + 19.2px, 24px);
  height: clamp(20px, 0.0025 * 100vw + 19.2px, 24px);
  color: var(--212067);
}

.slider-btn--prev svg {
  transform: rotate(180deg);
}

@media (min-width: 992px) {
  .slider-btn:hover {
    background-color: var(--ebf-1-ff);
  }
}

.slider-btn.swiper-button-disabled {
  opacity: 0.6;
  pointer-events: none !important;
}

.slider-pagination {
  position: static !important;
  text-align: start !important;
  max-width: 65%;
  --swiper-pagination-bullet-horizontal-gap: max(5 / 19.2 * 1vw, 5px);
  --swiper-pagination-color: var(--primary);
  --swiper-pagination-bullet-inactive-color: var(--secondary);
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-width: max(8 / 19.2 * 1vw, 8px);
  --swiper-pagination-bullet-height: max(8 / 19.2 * 1vw, 8px);
}

.swiper-navigation {
  display: flex;
  align-items: center;
  gap: clamp(10px, 0.0125 * 100vw + 6px, 30px);
}

.fancybox__container {
  --svgColor: var(--ffffff);
}

/*============ TABS ===============*/
.tab-wrap {
  display: flex;
  gap: clamp(10px, 0.0125 * 100vw + 6px, 30px);
  border-bottom: 1px solid var(--dfdfdf);
}

.tab-wrap__item {
  padding-bottom: clamp(5px, 0.005 * 100vw + 3.4px, 13px);
  border-bottom: 2px solid transparent;
  font-weight: 800;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--9999-ab);
  transition: var(--transition);
  cursor: pointer;
  text-transform: uppercase;
}

.tab-wrap__item.active {
  border-color: var(--1297-ee);
  --color: var(--1297-ee);
}

@media (min-width: 992px) {
  .tab-wrap__item:hover {
    --color: var(--1297-ee);
  }
}

.tag-item {
  background: var(--1297-ee);
  padding: 4px clamp(5px, 0.006875 * 100vw + 2.8px, 16px);
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--ffffff);
  width: -moz-fit-content;
  width: fit-content;
}

/*============ PAGINATION =================*/
.page-numbers {
  font-weight: 700;
  font-size: clamp(14px, 0.00375 * 100vw + 12.8px, 20px);
  line-height: 150%;
  color: var(--color, var(--141328));
  color: var(--stroke);
  margin: 0 clamp(10px, 0.003125 * 100vw + 9px, 15px);
}

.page-numbers.current {
  color: var(--212067);
}

@media (min-width: 992px) {
  .page-numbers:hover {
    color: var(--212067);
  }
}

.page-numbers.prev,
.page-numbers.next {
  width: clamp(40px, 0.0125 * 100vw + 36px, 60px);
  height: clamp(40px, 0.0125 * 100vw + 36px, 60px);
  background-color: transparent;
  border-radius: 1.579px;
  border: 1px solid var(--212067);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.page-numbers.prev svg,
.page-numbers.next svg {
  width: clamp(15px, 0.0025 * 100vw + 14.2px, 19px);
  height: clamp(15px, 0.0025 * 100vw + 14.2px, 19px);
  --svgColor: var(--212067);
  transition: var(--transition);
}

@media (min-width: 992px) {

  .page-numbers.prev:hover,
  .page-numbers.next:hover {
    border-color: var(--ebf-1-ff);
    background-color: var(--ebf-1-ff);
  }
}

.page-numbers.next {
  margin-left: clamp(5px, 0.00625 * 100vw + 3px, 15px);
}

.page-numbers.prev {
  margin-right: clamp(5px, 0.00625 * 100vw + 3px, 15px);
}

.page-numbers.prev svg {
  transform: rotate(180deg);
}

span.prev,
span.next {
  opacity: 0.6 !important;
  pointer-events: none !important;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: clamp(20px, 0.0125 * 100vw + 16px, 40px);
}

/* ============== TEMPLATE ============= */
.product-card {
  border: 1px solid var(--dfdfdf);
  background: var(--ffffff);
  height: 100%;
  transition: var(--transition);
}

.product-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition);
}

.product-card a p{
 display: none;
}

.product-card__image {
  position: relative;
  overflow: hidden;
}

.product-card__image:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.product-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: -webkit-fill-available;
  height: -webkit-fill-available;
  -o-object-fit: cover;
  object-fit: contain;
  transition: var(--transition);
}

.product-card__favorite {
  width: clamp(15px, 0.003125 * 100vw + 14px, 20px);
  height: clamp(15px, 0.001875 * 100vw + 14.4px, 18px);
}

.product-card__favorite svg {
  width: 100%;
  height: 100%;
  --svgColor: var(--9999-ab);
}

.product-card__favorite.favorite-remove svg {
  fill: var(--9999-ab);
}

.product-card__head {
  position: absolute;
  z-index: 1;
  top: clamp(10px, 0.00875 * 100vw + 7.2px, 24px);
  left: clamp(10px, 0.0125 * 100vw + 6px, 30px);
  width: calc(100% - clamp(20px, 0.025 * 100vw + 12px, 60px));
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-card__tags {
  flex: 1;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.product-card__info {
  padding: clamp(5px, 0.004375 * 100vw + 3.6px, 12px) clamp(5px, 0.015625 * 100vw + 0px, 30px) clamp(10px, 0.009375 * 100vw + 7px, 25px);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__sku {
  border-radius: 2px;
  background: var(--ebf-1-ff);
  padding: 3px 8px;
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  color: var(--140-f-14);
  --color: var(--9999-ab);
  margin-bottom: 9px;
  width: -moz-fit-content;
  width: fit-content;
}

.product-card__title {
  margin-bottom: clamp(10px, 0.00625 * 100vw + 8px, 20px);
  --color: var(--141328);
}

.product-card__bottom {
  margin-top: auto;
}

.product-card__bottom *:not(del):not(del *):not(.price-discount__value) {
  font-weight: 700;
  font-size: clamp(18px, 0.00875 * 100vw + 15.2px, 32px);
  line-height: 150%;
  color: var(--color, var(--141328));
}

.product-card__bottom del {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--9999-ab);
}

.product-card__bottom del * {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--9999-ab);
}

.product-card__bottom ins,
.product-card__bottom ins * {
  text-decoration: none;
}

.product-card__bottom .price-discount__wrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.product-card__bottom .price-discount__value {
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--ffffff);
  background: var(--293990);
  padding: 2px 6px;
  width: -moz-fit-content;
  width: fit-content;
}

.product-card__bottom .price {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 992px) {
  .product-card:hover {
    box-shadow: 0px 0px 15px 0px rgba(153, 153, 171, 0.2);
    border-color: var(--faf-9-fa);
  }

  .product-card:hover .product-card__image img {
    transform: scale(1.05);
  }
}

.category-card {
  border: 1px solid var(--dfdfdf);
  background: var(--ffffff);
  display: flex;
  flex-direction: column;
  margin-left: -1px;
  margin-top: -1px;
}

.category-card__image {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.category-card__image:after {
  content: "";
  display: block;
  padding-bottom: 56%;
}

.category-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  transition: var(--transition);
}

.category-card__info {
  margin: 0 clamp(10px, 0.025 * 100vw + 2px, 50px) clamp(15px, 0.00625 * 100vw + 13px, 25px);
  padding-top: 10px;
  border-top: 1px solid var(--dfdfdf);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.category-card__title {
  --color: var(--141328);
}

.category-card__description {
  color: var(--9999-ab);
}

@media (min-width: 992px) {
  .category-card:hover .category-card__image img {
    transform: scale(1.05);
  }
}

.news-card:not(.first) {
  border: 1px solid var(--dfdfdf);
  background: var(--ffffff);
  display: flex;
  flex-direction: column;
}

.news-card:not(.first) .news-card__image {
  position: relative;
  overflow: hidden;
}

.news-card:not(.first) .news-card__image:after {
  content: "";
  display: block;
  padding-bottom: 59.6%;
  position: relative;
  opacity: 0;
  z-index: 1;
  transition: var(--transition);
  background: rgba(0, 0, 0, 0.4);
}

.news-card:not(.first) .news-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: var(--transition);
}

.news-card:not(.first) .news-card__categories {
  position: absolute;
  top: clamp(10px, 0.011875 * 100vw + 6.2px, 29px);
  left: clamp(10px, 0.011875 * 100vw + 6.2px, 29px);
  max-width: calc(100% - clamp(20px, 0.025 * 100vw + 12px, 60px));
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  z-index: 2;
}

.news-card:not(.first) .news-card__category {
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px clamp(5px, 0.00625 * 100vw + 3px, 15px);
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--ffffff);
  background-color: var(--242-c-91) !important;
}

.news-card:not(.first) .news-card__info {
  flex: 1;
  padding: clamp(10px, 0.0075 * 100vw + 7.6px, 22px) clamp(10px, 0.0125 * 100vw + 6px, 30px) clamp(15px, 0.009375 * 100vw + 12px, 30px);
}

.news-card:not(.first) .news-card__date {
  border-radius: 2px;
  background: var(--ebf-1-ff);
  padding: 3px 8px;
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  color: var(--140-f-14);
  --color: var(--9999-ab);
  margin-bottom: 5px;
  width: -moz-fit-content;
  width: fit-content;
}

.news-card:not(.first) .news-card__title {
  margin-bottom: 5px;
  --color: var(--141328);
}

.news-card:not(.first) .news-card__bottom {
  display: flex;
  justify-content: space-between;
  gap: clamp(10px, 0.025 * 100vw + 2px, 50px);
}

.news-card:not(.first) .news-card__desc {
  --color: var(--9999-ab);
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card:not(.first) .news-card__btn {
  width: clamp(40px, 0.0125 * 100vw + 36px, 60px);
  height: clamp(40px, 0.0125 * 100vw + 36px, 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.579px;
  background: var(--faf-9-fa);
  flex-shrink: 0;
  transition: var(--transition);
}

.news-card:not(.first) .news-card__btn svg {
  width: clamp(15px, 0.001875 * 100vw + 14.4px, 18px);
  height: clamp(15px, 0.001875 * 100vw + 14.4px, 18px);
}

@media (min-width: 992px) {
  .news-card:not(.first):hover .news-card__image:after {
    opacity: 1;
  }

  .news-card:not(.first):hover .news-card__image img {
    transform: scale(1.05);
  }

  .news-card:not(.first):hover .news-card__btn {
    background: var(--ebf-1-ff);
  }
}

.news-card.first {
  display: flex;
  border: 1px solid var(--ececec);
  background: var(--ffffff);
}

.news-card.first .news-card__image {
  position: relative;
  overflow: hidden;
  width: 66.6%;
  min-height: clamp(200px, 0.186875 * 100vw + 140.2px, 499px);
}

.news-card.first .news-card__image:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: var(--transition);
  background: rgba(0, 0, 0, 0.4);
}

.news-card.first .news-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: var(--transition);
}

.news-card.first .news-card__info {
  flex: 1;
  padding: clamp(10px, 0.01875 * 100vw + 4px, 40px);
  display: flex;
  flex-direction: column;
}

.news-card.first .news-card__categories {
  display: none;
}

.logo__text {
  font-weight: 700;
  font-size: 22px;
  line-height: 130%;
  color: var(--color, var(--141328));
  margin-bottom: max(40 / 19.2 * 1vw, 25px);
  margin-bottom: 0  ;
}
@media (max-width:700px){
  .logo__text{
    display: none;
  }
}

.news-card.first .news-card__date {
  border-radius: 2px;
  background: var(--ebf-1-ff);
  padding: 3px 8px;
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  color: var(--140-f-14);
  --color: var(--9999-ab);
  margin-bottom: 5px;
  width: -moz-fit-content;
  width: fit-content;
}

.news-card.first .news-card__title {
  font-weight: 700;
  font-size: clamp(18px, 0.00875 * 100vw + 15.2px, 32px);
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--141328);
  margin-bottom: 10px;
}

.news-card.first .news-card__btn {
  width: clamp(40px, 0.0125 * 100vw + 36px, 60px);
  height: clamp(40px, 0.0125 * 100vw + 36px, 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.579px;
  background: var(--faf-9-fa);
  transition: var(--transition);
  margin-top: auto;
  margin-left: auto;
}

.news-card.first .news-card__btn svg {
  width: clamp(15px, 0.001875 * 100vw + 14.4px, 18px);
  height: clamp(15px, 0.001875 * 100vw + 14.4px, 18px);
}

.news-card.first .news-card__desc {
  --color: var(--9999-ab);
  -webkit-line-clamp: 7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
}

.news-card.first .news-card__bottom {
  flex: 1;
  display: flex;
  flex-direction: column;
}

@media (min-width: 992px) {
  .news-card.first:hover .news-card__image:after {
    opacity: 1;
  }

  .news-card.first:hover .news-card__image img {
    transform: scale(1.05);
  }

  .news-card.first:hover .news-card__btn {
    background: var(--ebf-1-ff);
  }
}

@media (max-width: 1199px) {
  .news-card.first .news-card__image {
    width: 50%;
  }
}

@media (max-width: 991px) {
  .news-card__btn {
    display: none !important;
  }
}

@media (max-width: 575px) {
  .news-card.first {
    flex-direction: column;
  }

  .news-card.first .news-card__image {
    min-height: auto;
    width: 100%;
  }

  .news-card.first .news-card__image:after {
    position: relative;
    padding-bottom: 59.6%;
  }
}

.employee-card__image {
  position: relative;
  margin-bottom: clamp(15px, 0.009375 * 100vw + 12px, 30px);
}

.employee-card__image:after {
  content: "";
  display: block;
  padding-bottom: 110%;
}

.employee-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.employee-card__title {
  margin-bottom: clamp(5px, 0.003125 * 100vw + 4px, 10px);
}

.employee-card__post {
  --color: var(--9999-ab);
}

/* ============== NOTICE ============= */
.notice {
  position: fixed;
  top: 55px;
  right: -100%;
  z-index: 10500;
  max-width: calc(100% - 60px);
  display: flex;
  align-items: center;
  pointer-events: none;
  padding: clamp(5px, 0.00625 * 100vw + 3px, 15px);
  background: #fff;
  border: 1px solid var(--293990);
  border-radius: 3px;
  transition: all 0.3s;
}

.notice.active {
  right: 30px;
}

.notice svg {
  width: clamp(20px, 0.0125 * 100vw + 16px, 40px);
  height: clamp(20px, 0.0125 * 100vw + 16px, 40px);
  color: var(--293990);
  margin-right: 10px;
  flex-shrink: 0;
}

.notice-text {
  --color: var(--293990);
}

.blockUI.blockOverlay {
  z-index: 10 !important;
}

/* ============== MESSAGE ============= */
.message-error {
  background: var(--ffffff);
  padding: clamp(20px, 0.01875 * 100vw + 14px, 50px) clamp(20px, 0.025 * 100vw + 12px, 60px);
  display: flex;
  align-items: center;
  max-width: 75%;
  margin: 0 auto;
  flex: 1;
  margin-bottom: clamp(45px, 0.028125 * 100vw + 36px, 90px);
}

.message-error svg {
  width: clamp(30px, 0.013125 * 100vw + 25.8px, 51px);
  height: clamp(30px, 0.013125 * 100vw + 25.8px, 51px);
  --svgColor: var(--293990);
  fill: var(--293990);
  margin-right: clamp(15px, 0.003125 * 100vw + 14px, 20px);
}

.message-error .error-btn {
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
}

.message-error .error-title {
  margin-bottom: clamp(10px, 0.003125 * 100vw + 9px, 15px);
}

@media (max-width: 991px) {
  .message-error {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .message-error {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .message-error .error-btn {
    margin: 20px auto 0;
  }

  .message-error svg {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

/* ============== SHOP ============= */
.category-archive .catalog__wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: clamp(30px, 0.0375 * 100vw + 18px, 90px);
}

.products-archive .archive-category__sublist {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(5px, 0.003125 * 100vw + 4px, 10px);
}

.products-archive .archive-category__sublist-wrap {
  margin-bottom: clamp(15px, 0.009375 * 100vw + 12px, 30px);
}

.products-archive .archive-category__sublist-item {
  background: var(--ffffff);
  padding: clamp(10px, 0.005 * 100vw + 8.4px, 18px) clamp(15px, 0.006875 * 100vw + 12.8px, 26px);
  font-weight: 500;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--9999-ab);
  transition: var(--transition);
}

@media (min-width: 992px) {
  .products-archive .archive-category__sublist-item:hover {
    background: var(--ebf-1-ff);
  }
}

.products-archive .archive-category__sublist-open {
  display: none;
  overflow: hidden;
  margin-bottom: 15px;
}

.products-archive .archive-category__product-wrap {
  display: flex;
  margin-bottom: clamp(30px, 0.0375 * 100vw + 18px, 90px);
}

.products-archive .archive-category__products {
  flex: 1;
}

.products-archive .archive-category__products .products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(clamp(160px, 0.1025 * 100vw + 127.2px, 324px), 1fr));
}

.products-archive .archive-category__products .products .product-card {
  margin-left: -1px;
  margin-top: -1px;
}

.products-archive #close-category {
  position: fixed;
  right: -200%;
  top: 10px;
  width: 40px;
  height: 40px;
  background: var(--212067);
  z-index: 99999;
  transition: right 0.3s ease;
  padding: 0px;
  border: none;
  display: none;
}

.products-archive #close-category svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}

.products-archive .page-title {
  margin-bottom: clamp(10px, 0.00625 * 100vw + 8px, 20px);
}

@media (max-width: 767px) {
  .category-archive .catalog__wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 375px) {
  .category-archive .catalog__wrap {
    grid-template-columns: 1fr;
  }
}

/* ============== SINGLE PRODUCT ============= */
.products-related {
  background: var(--ffffff);
  padding-top: clamp(30px, 0.0375 * 100vw + 18px, 90px);
  padding-bottom: clamp(30px, 0.0375 * 100vw + 18px, 90px);
  margin-top: clamp(30px, 0.0375 * 100vw + 18px, 90px);
}

.products-related .swiper-navigation {
  justify-content: end;
  margin-top: clamp(15px, 0.013125 * 100vw + 10.8px, 36px);
}

.products-related .swiper-slide {
  height: auto !important;
}

.products-related .swiper-slide .product-card {
  height: calc(100% - 3px);
}

.products-related .swiper-slide:not(:first-child) {
  margin-left: -1px;
}

.single-product__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: clamp(25px, 0.015625 * 100vw + 20px, 50px);
}

.single-product__head .page-title {
  margin-bottom: 0;
}

.single-product__info {
  display: flex;
  align-items: center;
  gap: clamp(10px, 0.013125 * 100vw + 5.8px, 31px);
  flex-shrink: 0;
}

.single-product__sku {
  border-radius: 2px;
  background: var(--ebf-1-ff);
  padding: 3px 8px;
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--9999-ab);
}

.single-product__favorite {
  display: flex;
  align-items: center;
  gap: clamp(10px, 0.003125 * 100vw + 9px, 15px);
  font-weight: 500;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--9999-ab);
  cursor: pointer;
  transition: var(--transition);
}

.single-product__favorite svg {
  width: clamp(15px, 0.003125 * 100vw + 14px, 20px);
  height: clamp(15px, 0.003125 * 100vw + 14px, 20px);
  --svgColor: var(--9999-ab);
  transition: var(--transition);
}

@media (min-width: 992px) {
  .single-product__favorite:hover {
    --color: var(--212067);
  }

  .single-product__favorite:hover svg {
    --svgColor: var(--212067);
  }
}

.single-product__top {
  display: flex;
  margin-bottom: clamp(15px, 0.0125 * 100vw + 11px, 35px);
}

.single-product__top .summary {
  flex: 1;
  border: 1px solid var(--ececec);
  background: var(--faf-9-fa);
  padding: clamp(20px, 0.0125 * 100vw + 16px, 40px) clamp(20px, 0.0125 * 100vw + 16px, 40px) clamp(15px, 0.011875 * 100vw + 11.2px, 34px);
}

.single-product__gallery {
  width: 41.6%;
}

.single-product__delivery-container {
  width: 23.6%;
  border: 1px solid var(--ececec);
  background: var(--ffffff);
  padding: clamp(15px, 0.009375 * 100vw + 12px, 30px) clamp(15px, 0.010625 * 100vw + 11.6px, 32px) clamp(15px, 0.0175 * 100vw + 9.4px, 43px) clamp(15px, 0.015625 * 100vw + 10px, 40px);
}

.single-product__gallery-swiper {
  position: relative;
  border: 1px solid var(--ececec);
}

.single-product__tags {
  position: absolute;
  top: clamp(15px, 0.01125 * 100vw + 11.4px, 33px);
  left: clamp(15px, 0.01125 * 100vw + 11.4px, 33px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  z-index: 1;
}

.single-product__gallery-slide {
  position: relative;
  cursor: pointer;
}

.single-product__gallery-slide:after {
  content: "";
  display: block;
  padding-bottom: 81.9%;
}

.single-product__gallery-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.single-product__gallery-thumbnails {
  position: relative;
  display: flex;
}

.single-product__gallery-thumbnails .gallery-thumbnails {
  flex: 1;
  margin: 0 auto;
  width: calc(100% - 40px);
}

.single-product__gallery-thumbnails .gallery-thumbnails__slide {
  position: relative;
  cursor: pointer;
}

.single-product__gallery-thumbnails .gallery-thumbnails__slide:after {
  content: "";
  display: block;
  padding-bottom: 80.7%;
  border: 1px solid var(--ececec);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.single-product__gallery-thumbnails .gallery-thumbnails__slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (min-width: 992px) {
  .single-product__gallery-thumbnails .gallery-thumbnails__slide:hover::after {
    border-color: var(--212067);
  }
}

.single-product__gallery-thumbnails .gallery-thumbnails__slide.swiper-slide-thumb-active::after {
  border-color: var(--212067);
}

.single-product__gallery-btn {
  width: clamp(100px, 0.0075 * 100vw + 97.6px, 112px);
  border-radius: 1.579px;
  background: var(--ebf-1-ff);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.single-product__gallery-btn svg {
  width: clamp(15px, 0.0025 * 100vw + 14.2px, 19px);
  height: clamp(15px, 0.0025 * 100vw + 14.2px, 19px);
}

@media (min-width: 992px) {
  .single-product__gallery-btn:hover {
    background: var(--ffffff);
  }
}

.single-product .delivery-container__title {
  margin-bottom: clamp(10px, 0.00625 * 100vw + 8px, 20px);
}

.single-product .delivery-container__delivery:not(:last-child) {
  margin-bottom: clamp(10px, 0.00625 * 100vw + 8px, 20px);
}

.single-product .delivery-container__delivery-title {
  margin-bottom: clamp(5px, 0 * 100vw + 5px, 5px);
}

.single-product .delivery-container__delivery-text p,
.single-product .delivery-container__delivery-text li {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: var(--color, var(--141328));
}

.single-product .delivery-container__payment:not(:last-child) {
  margin-bottom: clamp(15px, 0.009375 * 100vw + 12px, 30px);
}

.single-product .delivery-container__payment-title {
  margin-bottom: clamp(5px, 0 * 100vw + 5px, 5px);
}

.single-product .delivery-container__payment-text p,
.single-product .delivery-container__payment-text li {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: var(--color, var(--141328));
}

.single-product .delivery-container__link {
  display: flex;
  align-items: center;
  gap: clamp(5px, 0.003125 * 100vw + 4px, 10px);
  font-weight: 800;
  font-size: 14px;
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--1297-ee);
}

.single-product .delivery-container__link:not(:first-child) {
  margin-top: clamp(10px, 0.00625 * 100vw + 8px, 20px);
}

.single-product .delivery-container__link svg {
  width: clamp(15px, 0.0025 * 100vw + 14.2px, 19px);
  height: clamp(15px, 0.0025 * 100vw + 14.2px, 19px);
  --svgColor: var(--1297-ee);
}

@media (min-width: 992px) {
  .single-product .delivery-container__link:hover {
    --color: var(--293990);
  }

  .single-product .delivery-container__link:hover svg {
    --svgColor: var(--293990);
  }
}

.single-product .delivery-container__file {
  display: flex;
  align-items: center;
  gap: clamp(5px, 0.003125 * 100vw + 4px, 10px);
  font-weight: 800;
  font-size: 14px;
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--293990);
}

.single-product .delivery-container__file:not(:first-child) {
  margin-top: clamp(20px, 0.0125 * 100vw + 16px, 40px);
}

.single-product .delivery-container__file svg {
  --svgColor: var(--293990);
}

@media (min-width: 992px) {
  .single-product .delivery-container__file:hover {
    --color: var(--1297-ee);
  }

  .single-product .delivery-container__file:hover svg {
    --svgColor: var(--1297-ee);
  }
}

.single-product .delivery-container__guarantee-text p,
.single-product .delivery-container__guarantee-text li {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: var(--color, var(--141328));
}

.single-product .woocommerce-tabs .tabs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  background: var(--ffffff);
}

.single-product .woocommerce-tabs .tabs>li a {
  font-weight: 700;
  font-size: clamp(14px, 0.00375 * 100vw + 12.8px, 20px);
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--9999-ab);
  padding: clamp(15px, 0.0125 * 100vw + 11px, 35px) clamp(20px, 0.03625 * 100vw + 8.4px, 78px);
  border-bottom: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .single-product .woocommerce-tabs .tabs>li a:hover {
    --color: var(--141328);
  }
}

.single-product .woocommerce-tabs .tabs>li.active a {
  border-color: var(--293990);
  --color: var(--141328);
}

.single-product .woocommerce-tabs .woocommerce-Tabs-panel {
  padding: clamp(20px, 0.0125 * 100vw + 16px, 40px) clamp(15px, 0.01875 * 100vw + 9px, 45px) clamp(15px, 0.021875 * 100vw + 8px, 50px);
}

.single-product .woocommerce-product-attributes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(10px, 0.00625 * 100vw + 8px, 20px) clamp(25px, 0.015625 * 100vw + 20px, 50px);
}

.single-product .woocommerce-product-attributes .single-product__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: clamp(5px, 0.00625 * 100vw + 3px, 15px);
  border-bottom: 1px solid var(--dfdfdf);
}

.single-product .woocommerce-product-attributes .single-product__row-value {
  text-align: end;
  --color: var(--293990);
}

.single-product .woocommerce-product-attributes .single-product__row-value * {
  font-weight: 500;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--293990);
}

.single-product .woocommerce-product-attributes .single-product__row-title {
  flex-shrink: 0;
  --color: var(--9999-ab);
}

.single-product table.variations {
  margin: 0;
  width: 100%;
}

.single-product table.variations tr {
  display: flex;
  align-items: center;
  gap: 3px;
  border-top: 0;
}

.single-product table.variations tr:not(:last-child) {
  margin-bottom: clamp(10px, 0.00625 * 100vw + 8px, 20px);
}

.single-product table.variations tr .label {
  text-align: left;
  margin-bottom: 0;
  width: 34%;
}

.single-product table.variations tr .label label {
  font-weight: 800;
  font-size: 14px;
  line-height: 150%;
  color: var(--color, var(--141328));
  word-wrap: break-word;
}

.single-product table.variations tr td {
  padding: 0;
  flex: 1;
}

.single-product table.variations tr td select {
  width: 100%;
  padding: clamp(10px, 0.005 * 100vw + 8.4px, 18px) clamp(5px, 0.003125 * 100vw + 4px, 10px) clamp(10px, 0.005 * 100vw + 8.4px, 18px) clamp(10px, 0.0125 * 100vw + 6px, 30px);
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--212067);
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("./../images/arrow-2.svg") 97%/11% no-repeat var(--ffffff);
}

.single-product table.variations tr td select::-ms-expand {
  display: none;
}

.single-product .stock {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(10px, 0.00375 * 100vw + 8.8px, 16px);
  font-weight: 500;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--9999-ab);
}

.single-product .stock:not(:first-child) {
  margin-top: clamp(15px, 0.0125 * 100vw + 11px, 35px);
}

.single-product .stock.out-of-stock::before {
  content: "";
  width: clamp(15px, 0.005 * 100vw + 13.4px, 23px);
  height: clamp(15px, 0.005 * 100vw + 13.4px, 23px);
  background-image: url("./../images/out-stock.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.single-product .stock.in-stock::before {
  content: "";
  width: clamp(15px, 0.005 * 100vw + 13.4px, 23px);
  height: clamp(15px, 0.005 * 100vw + 13.4px, 23px);
  background-image: url("./../images/in-stock.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.single-product .button-variable-item .variable-item-span {
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--212067);
  padding: clamp(10px, 0.005 * 100vw + 8.4px, 18px) clamp(5px, 0.003125 * 100vw + 4px, 10px) clamp(10px, 0.005 * 100vw + 8.4px, 18px) clamp(10px, 0.0125 * 100vw + 6px, 30px) !important;
  text-align: left !important;
}

.single-product .button-variable-item {
  min-width: 100% !important;
  max-width: 100% !important;
  box-shadow: none !important;
  background: var(--ffffff);
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

.single-product .reset_variations {
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--212067);
}

.single-product .variation-cart__price {
  margin-top: clamp(20px, 0.02 * 100vw + 13.6px, 52px);
}

.single-product .variation-cart__price .woocommerce-variation-add-to-cart {
  display: flex;
  align-items: flex-end;
  gap: clamp(15px, 0.009375 * 100vw + 12px, 30px) 10px;
  flex-wrap: wrap;
}

.single-product .variation-cart__price .woocommerce-variation-add-to-cart.woocommerce-variation-add-to-cart-disabled {
  pointer-events: none;
  opacity: 0.5;
}

.single-product .variation-cart__price .single_add_to_cart_button {
  flex: 0 0 100%;
  width: 100%;
}

.single-product .variation-cart__price .variation-price-holder {
  flex: 1;
}

.single-product__quantity-title {
  margin-bottom: clamp(5px, 0.00625 * 100vw + 3px, 15px);
}

.single-product__quantity .qty-wrapper {
  display: flex;
  width: clamp(175px, 0.025 * 100vw + 167px, 215px);
}

.single-product__quantity .qty-button {
  width: clamp(50px, 0.014375 * 100vw + 45.4px, 73px);
  height: clamp(50px, 0.014375 * 100vw + 45.4px, 73px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 1.921px;
  border: 1.217px solid var(--212067);
}

.single-product__quantity .qty-button svg {
  --svgColor: var(--212067);
}

.single-product__quantity .qty-button:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.single-product__quantity [qty-decrease] svg {
  transform: rotate(180deg);
}

.single-product__quantity .quantity {
  flex: 1;
  display: flex;
}

.single-product__quantity .quantity input {
  background: transparent;
  outline: none;
  border: none;
  width: 100%;
  font-weight: 700;
  font-size: clamp(14px, 0.00375 * 100vw + 12.8px, 20px);
  line-height: 150%;
  color: var(--color, var(--141328));
  text-align: center;
  padding: 0;
  border-top: 1px solid var(--ececec);
  border-bottom: 1px solid var(--ececec);
}

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

.single-product .variation-price-holder *:not(del):not(del *):not(.price-discount__value),
.single-product__price *:not(del):not(del *):not(.price-discount__value) {
  font-weight: 700;
  font-size: clamp(22px, 0.0175 * 100vw + 16.4px, 50px);
  line-height: 130%;
  color: var(--color, var(--141328));
}

.single-product .variation-price-holder del,
.single-product__price del {
  font-weight: 500;
  font-size: clamp(14px, 0.00375 * 100vw + 12.8px, 20px);
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--9999-ab);
}

.single-product .variation-price-holder del *,
.single-product__price del * {
  font-weight: 500;
  font-size: clamp(14px, 0.00375 * 100vw + 12.8px, 20px);
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--9999-ab);
}

.single-product .variation-price-holder ins,
.single-product .variation-price-holder ins *,
.single-product__price ins,
.single-product__price ins * {
  text-decoration: none;
}

.single-product .variation-price-holder .price-discount__wrap,
.single-product__price .price-discount__wrap {
  display: flex;
  flex-direction: row-reverse;
  gap: clamp(5px, 0.005625 * 100vw + 3.2px, 14px);
}

.single-product .variation-price-holder .price-discount__value,
.single-product__price .price-discount__value {
  font-weight: 500;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--ffffff);
  background: var(--293990);
  padding: 2px 6px;
  width: -moz-fit-content;
  width: fit-content;
}

.single-product .variation-price-holder .price,
.single-product__price .price {
  display: flex;
  flex-direction: column;
  align-items: end;
}

.single-product__cart-wrap .cart {
  display: flex;
  align-items: flex-end;
  gap: clamp(15px, 0.009375 * 100vw + 12px, 30px) 10px;
  flex-wrap: wrap;
}

.single-product__cart-wrap .cart .single-product__cart-btn {
  flex: 0 0 100%;
  width: 100%;
}

.single-product__cart-wrap .cart .single-product__cart-btn .btn {
  width: 100%;
}

.single-product__cart-wrap .cart .single-product__price {
  flex: 1;
}

.single-product__price {
  display: flex;
  flex-direction: column;
  align-items: end;
}

.single-product__cart:not(:first-child) {
  margin-top: clamp(20px, 0.02 * 100vw + 13.6px, 52px);
}

.single-product__subterms {
  background: var(--212067);
  --color: var(--ffffff);
  padding: clamp(30px, 0.0375 * 100vw + 18px, 90px) 0;
}

.single-product__subterms-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.single-product__subterms-item {
  background: var(--ffffff);
  padding: clamp(10px, 0.005 * 100vw + 8.4px, 18px) clamp(15px, 0.006875 * 100vw + 12.8px, 26px);
  font-weight: 500;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--9999-ab);
  transition: var(--transition);
}

@media (min-width: 992px) {
  .single-product__subterms-item:hover {
    background: var(--ebf-1-ff);
  }
}

.single-product__subterms-title {
  font-weight: 700;
  font-size: clamp(20px, 0.01125 * 100vw + 16.4px, 38px);
  line-height: 130%;
  color: var(--color, var(--141328));
  --color: var(--ffffff);
  margin-bottom: clamp(20px, 0.0125 * 100vw + 16px, 40px);
}

@media (max-width: 1199px) {
  .single-product__top {
    flex-wrap: wrap;
  }

  .single-product__delivery-container {
    width: 100%;
    flex: 0 0 100%;
  }

  .single-product__gallery-btn {
    width: 80px;
  }

  .single-product__gallery {
    width: 40%;
  }
}

@media (max-width: 767px) {
  .single-product__top {
    flex-direction: column;
  }

  .single-product__gallery {
    width: 70%;
    margin: 0 auto;
  }

  .single-product__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .single-product .woocommerce-product-attributes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .single-product__gallery {
    width: 100%;
  }

  .single-product table.variations tr {
    flex-direction: column;
    align-items: flex-start;
  }

  .single-product table.variations tr .label {
    width: 100%;
  }

  .single-product table.variations tr td {
    width: 100%;
  }

  .single-product table.variations tr td select {
    background: url("./../images/arrow-2.svg") 97%/7% no-repeat var(--ffffff);
  }

  .single-product__gallery-btn {
    width: 50px;
  }

  .single-product .variation-cart__price .woocommerce-variation-add-to-cart {
    flex-direction: column;
    align-items: flex-start;
  }

  .single-product .variation-cart__price .woocommerce-variation-add-to-cart .price {
    align-items: flex-start;
  }

  .single-product__cart-wrap .cart {
    flex-direction: column;
    align-items: flex-start;
  }

  .single-product__price {
    align-items: flex-start;
  }
}

@media (max-width: 375px) {
  .single-product__gallery {
    width: 100%;
  }
}

/*============ FILTER ===============*/
.filters-widget {
  width: 324px;
  flex-shrink: 0;
}

.filters-widget .filters-form__head {
  border: 1px solid var(--ececec);
  background: var(--ffffff);
  display: flex;
  align-items: center;
  gap: clamp(5px, 0.00625 * 100vw + 3px, 15px);
  padding: clamp(15px, 0.001875 * 100vw + 14.4px, 18px) clamp(15px, 0.009375 * 100vw + 12px, 30px);
  font-weight: 700;
  font-size: clamp(14px, 0.00375 * 100vw + 12.8px, 20px);
  line-height: 150%;
  color: var(--color, var(--141328));
}

.filters-widget .filters-form__head svg {
  --svgColor: #14181f;
}

.filters-widget .filter-block {
  padding: clamp(15px, 0.009375 * 100vw + 12px, 30px);
  border: 1px solid var(--ececec);
  background: var(--ffffff);
}

.filters-widget .filter-block:not(:last-child) {
  margin-bottom: -1px;
}

.filters-widget .filter-block.filter-block-price .filter-block-header {
  pointer-events: none;
}

.filters-widget .filter-block.opened:not(.filter-block-price) .filter-block-toggler {
  transform: rotate(180deg);
}

.filters-widget .filter-block-title {
  font-weight: 800;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 150%;
  color: var(--color, var(--141328));
}

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

.filters-widget .filter-block-content {
  margin-top: clamp(10px, 0.001875 * 100vw + 9.4px, 13px);
}

.filters-widget .filter-block-content .list {
  max-height: clamp(250px, 0.025625 * 100vw + 241.8px, 291px);
  overflow: auto;
}

.filters-widget .filter-block-content .list::-webkit-scrollbar {
  width: 3px;
}

.filters-widget .filter-block-content .list::-webkit-scrollbar-thumb {
  background: var(--ececec);
  border-radius: 1px;
}

.filters-widget .filter-block-content .list::-webkit-scrollbar-track {
  background-color: var(--ececec);
  border-radius: 2px;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  background-clip: padding-box;
}

.filters-widget .filter-block-content .noUi-target {
  background-color: var(--9999-ab);
}

.filters-widget .filter-block-content .range-slider {
  margin-bottom: 21px;
}

.filters-widget .filter-block-content .noUi-horizontal .noUi-handle {
  background: var(--ffffff);
  border: 4px solid var(--293990);
  border-radius: 50%;
  cursor: pointer;
}

.filters-widget .filter-block-content .noUi-connect {
  background: var(--293990);
}

.filters-widget .filter-block-content .price.range {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filters-widget .filter-block-content .price.range .group {
  display: flex;
  align-items: center;
  justify-content: center;
}

.filters-widget .filter-block-content .price.range .group input {
  padding: 0 10px;
  width: clamp(70px, 0.0275 * 100vw + 61.2px, 114px);
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--ececec);
  background: var(--ffffff);
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: var(--color, var(--141328));
  color: var(--3-c-3-b-4-f);
}

.filters-widget .filter-block-content .price.range .group input::-webkit-outer-spin-button,
.filters-widget .filter-block-content .price.range .group input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.filters-widget .filter-block-content .price.range .group input::-moz-placeholder {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: var(--color, var(--141328));
  color: var(--3-c-3-b-4-f);
}

.filters-widget .filter-block-content .price.range .group input::placeholder {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: var(--color, var(--141328));
  color: var(--3-c-3-b-4-f);
}

.filters-widget .filter-block-content .price.range .separator {
  width: 16px;
  height: 1px;
  background: #6c625f;
}

.filters-widget .filter-block-content .checkboxes input {
  display: none;
}

.filters-widget .filter-block-content .checkboxes input:checked+label:after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 7px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.filters-widget .filter-block-content .checkboxes input:checked+label::before {
  background-color: var(--293990);
  border-color: var(--293990);
}

.filters-widget .filter-block-content .checkboxes label {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--3-c-3-b-4-f);
  transition: var(--transition);
}

.filters-widget .filter-block-content .checkboxes label:before {
  content: "";
  background-color: transparent;
  border: 1px solid var(--293990);
  padding: 9px;
  border-radius: 2px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
  height: 100%;
}

.filters-widget .filter-block-content .checkboxes .group:not(:last-child) {
  margin-bottom: clamp(5px, 0.00625 * 100vw + 3px, 15px);
}

.filters-widget .filter-block-toggler {
  transition: all 0.3s;
  display: flex;
}

.filters-widget .filter-block-toggler svg {
  width: 8px;
  height: 5px;
  flex-shrink: 0;
  --svgColor: var(--141328);
}

.filters-widget .buttons {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.filters-widget .buttons .button.link {
  margin-top: 10px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--293990);
  cursor: pointer;
  display: flex;
  gap: 10px;
  align-items: center;
}

.filters-widget .buttons .button.link svg {
  width: 10px;
  height: 10px;
  --svgColor: var(--293990);
}

@media (min-width: 992px) {
  .filters-widget .buttons .button.link:hover {
    --color: var(--1297-ee);
  }

  .filters-widget .buttons .button.link:hover svg {
    --svgColor: var(--1297-ee);
  }
}

.local-search {
  margin-bottom: clamp(6px, 0.004375 * 100vw + 4.6px, 13px);
  border: 1px solid var(--ececec);
  background: var(--ffffff);
  display: flex;
  align-items: center;
}

.local-search input {
  height: 100%;
  width: 100%;
  padding: clamp(5px, 0.00375 * 100vw + 3.8px, 11px) clamp(5px, 0.006875 * 100vw + 2.8px, 16px);
  border: none;
  background: transparent;
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--9999-ab);
  transition: var(--transition);
  cursor: pointer;
}

.local-search input::-moz-placeholder {
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--9999-ab);
}

.local-search input::placeholder {
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--9999-ab);
}

.local-search input:focus-visible {
  outline: none;
}

.filters-widget #open-filter,
.filters-widget #close-filter {
  display: none;
}

@media (max-width: 767px) {
  .filters-widget {
    position: fixed;
    left: -200%;
    top: 0;
    width: 100%;
    max-width: 260px;
    height: 100%;
    z-index: 6000;
    display: flex;
    flex-direction: column;
    transition: left 0.3s ease;
    background-color: #ffffff;
    overflow-y: auto;
    overflow-x: hidden;
    margin-left: 0;
    border-radius: 0;
    padding: 20px 10px;
  }

  .filters-widget.active {
    left: 0px;
  }

  .filters-widget.active #close-filter {
    right: 10px;
  }

  .filters-widget.active #open-filter {
    left: -70px;
  }

  .filters-widget #close-filter {
    position: fixed;
    right: -200%;
    top: 10px;
    width: 40px;
    height: 40px;
    background: var(--293990);
    z-index: 500;
    display: block;
    transition: right 0.3s ease;
    padding: 0px;
    border: none;
  }

  .filters-widget #close-filter svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
  }

  .filters-widget #open-filter {
    position: fixed;
    right: 10px;
    bottom: 85px;
    width: 40px;
    height: 40px;
    background: var(--293990);
    z-index: 10;
    display: block;
    padding: 0px;
    --svgWidth: 30px;
    --svgHeight: 30px;
    border: none;
  }

  .filters-widget .filters-form {
    position: static;
  }
}

/*============ CONTENT CATEGORY ===============*/
.seo-block {
  background: var(--ffffff);
  margin-top: clamp(30px, 0.0375 * 100vw + 18px, 90px);
  margin-bottom: clamp(30px, 0.0375 * 100vw + 18px, 90px);
}

.seo-block .container-left {
  display: flex;
}

.seo-block__text {
  flex: 1;
  padding: clamp(30px, 0.0375 * 100vw + 18px, 90px) clamp(20px, 0.025 * 100vw + 12px, 60px) clamp(30px, 0.0375 * 100vw + 18px, 90px) 0;
}

.seo-block__gallery {
  width: 46.45%;
  position: relative;
}

.seo-block__gallery-image {
  position: relative;
  cursor: pointer;
}

.seo-block__gallery-image:after {
  content: "";
  display: block;
  padding-bottom: 80.3%;
}

.seo-block__gallery-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.seo-block__title {
  margin-bottom: clamp(15px, 0.009375 * 100vw + 12px, 30px);
}

.seo-block__text-wrap {
  height: clamp(250px, 0.0425 * 100vw + 236.4px, 318px);
  overflow: auto;
  padding-right: clamp(20px, 0.03125 * 100vw + 10px, 70px);
  position: relative;
}

.seo-block__text-wrap::-webkit-scrollbar {
  width: 5px;
}

.seo-block__text-wrap::-webkit-scrollbar-thumb {
  background: var(--9999-ab);
  border-radius: 50px;
}

.seo-block__text-wrap::-webkit-scrollbar-track {
  background-color: var(--dfdfdf);
  border-radius: 0px;
  background-clip: padding-box;
}

.seo-block__text-wrap p {
  --color: var(--3-c-3-b-4-f);
}

.seo-block__navigation {
  position: absolute;
  right: clamp(20px, 0.0125 * 100vw + 16px, 40px);
  bottom: clamp(20px, 0.0125 * 100vw + 16px, 40px);
  z-index: 2;
}

@media (max-width: 767px) {
  .seo-block .container-left {
    flex-direction: column;
  }

  .seo-block__gallery {
    width: 60%;
  }
}

@media (max-width: 575px) {
  .seo-block__gallery {
    width: 80%;
  }
}

@media (max-width: 375px) {
  .seo-block__gallery {
    width: calc(100% + 20px);
    margin-left: -20px !important;
  }
}

.links-block {
  margin-top: clamp(30px, 0.0375 * 100vw + 18px, 90px);
  margin-bottom: clamp(30px, 0.0375 * 100vw + 18px, 90px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.links-block__card {
  position: relative;
  min-height: clamp(200px, 0.15625 * 100vw + 150px, 450px);
}

.links-block__card:nth-child(even) {
  background-color: var(--293990);
}

.links-block__card:nth-child(odd) {
  background-color: var(--212067);
}

.links-block__card-image {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 50%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: right bottom;
  object-position: right bottom;
}

.links-block__card-info {
  padding: clamp(20px, 0.025 * 100vw + 12px, 60px) 20px clamp(20px, 0.03125 * 100vw + 10px, 70px) clamp(20px, 0.03125 * 100vw + 10px, 70px);
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  max-width: 70%;
}

.links-block__card-title {
  --color: var(--ffffff);
}

.links-block__card-btn {
  width: clamp(50px, 0.01625 * 100vw + 44.8px, 76px);
  height: clamp(50px, 0.01625 * 100vw + 44.8px, 76px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  background: var(--faf-9-fa);
  transition: var(--transition);
}

@media (min-width: 992px) {
  .links-block__card:hover .links-block__card-btn {
    background: var(--ebf-1-ff);
  }
}

@media (max-width: 767px) {
  .links-block__card-info {
    max-width: 100%;
  }

  .links-block__card-image {
    display: none;
  }
}

@media (max-width: 575px) {
  .links-block {
    grid-template-columns: 1fr;
  }
}

/*============ CART ===============*/
.products-order {
  background: var(--212067);
  width: 266px;
  padding: clamp(15px, 0.009375 * 100vw + 12px, 30px);
  --color: var(--ffffff);
  height: -moz-fit-content;
  height: fit-content;
}

.products-order__total-items {
  display: flex;
  justify-content: space-between;
  gap: 5px;
}

.products-order__total-items:first-child {
  padding-bottom: clamp(5px, 0.003125 * 100vw + 4px, 10px);
  border-bottom: 1px dashed #f9fcff;
  margin-bottom: clamp(5px, 0.003125 * 100vw + 4px, 10px);
}

.products-order__total-title {
  flex: 1;
}

.products-order__total-value {
  flex-shrink: 0;
}

.products-order__total-value.price * {
  font-weight: 800;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 150%;
  color: var(--color, var(--141328));
}

.woocommerce-cart .woocommerce-message,
.woocommerce-cart .woocommerce-error {
  padding: clamp(10px, 0.003125 * 100vw + 9px, 15px);
  background: var(--ffffff);
  margin-bottom: clamp(5px, 0.00625 * 100vw + 3px, 15px);
  font-weight: 500;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 150%;
  color: var(--color, var(--141328));
}

.woocommerce-cart .woocommerce-message a,
.woocommerce-cart .woocommerce-error a {
  --color: var(--293990);
}

.woocommerce-cart .wc-empty-cart-message,
.woocommerce-cart .cart-empty {
  display: none;
}

.woocommerce-cart .message-error svg {
  fill: transparent;
}

.woocommerce-cart .checkout-button {
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
  text-transform: uppercase;
}

.woocommerce-cart .clear-cart-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--ffffff);
  margin: clamp(10px, 0.0075 * 100vw + 7.6px, 22px) 0;
}

.woocommerce-cart .clear-cart-btn svg {
  width: clamp(10px, 0.0025 * 100vw + 9.2px, 14px);
  height: clamp(10px, 0.0025 * 100vw + 9.2px, 14px);
  --svgColor: var(--ffffff);
}

@media (min-width: 992px) {
  .woocommerce-cart .clear-cart-btn:hover {
    --color: var(--1297-ee);
  }

  .woocommerce-cart .clear-cart-btn:hover svg {
    --svgColor: var(--1297-ee);
  }
}

.cart__holder {
  display: flex;
  justify-content: space-between;
  gap: 5px;
}

.cart__holder .woocommerce-cart-form {
  flex: 1;
}

.cart .actions__holder {
  display: none;
}

.cart-product__holder {
  border-radius: 2px;
  background: var(--ffffff);
  padding: 0 clamp(5px, 0.0624133148 * 100vw + -69.8335644938px, 50px) 0 clamp(5px, 0.0208044383 * 100vw + -19.9445214979px, 20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(15px, 0.009375 * 100vw + 12px, 30px);
  transition: var(--transition);
  border: 1px solid var(--ececec);
}

.cart-product__holder .product-remove a {
  width: clamp(35px, 0.009375 * 100vw + 32px, 50px);
  height: clamp(35px, 0.009375 * 100vw + 32px, 50px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--faf-9-fa);
  transition: var(--transition);
}

.cart-product__holder .product-remove a svg {
  width: clamp(10px, 0.00375 * 100vw + 8.8px, 16px);
  height: clamp(10px, 0.00375 * 100vw + 8.8px, 16px);
}

@media (min-width: 992px) {
  .cart-product__holder .product-remove a:hover {
    background: var(--ebf-1-ff);
  }
}

.cart-product__item:not(:first-child) {
  margin-top: -1px;
}

.cart-product__wrap {
  display: flex;
  align-items: center;
  gap: clamp(15px, 0.009375 * 100vw + 12px, 30px);
  width: 50%;
  padding: 10px 0;
}

.cart-product__thumbnail {
  width: clamp(80px, 0.02375 * 100vw + 72.4px, 118px);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.cart-product__thumbnail:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.cart-product__thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cart-product__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(5px, 0.003125 * 100vw + 4px, 10px);
}

.cart-product__price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  text-align: start;
  flex-direction: column;
}

.cart-product__price *:not(del):not(del *):not(.price-discount__value) {
  font-weight: 700;
  font-size: clamp(20px, 0.01125 * 100vw + 16.4px, 38px);
  line-height: 130%;
  color: var(--color, var(--141328));
  --color: var(--141328);
}

.cart-product__price del {
  font-weight: 500;
  font-size: clamp(14px, 0.00375 * 100vw + 12.8px, 20px);
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--9999-ab);
}

.cart-product__price del * {
  font-weight: 500;
  font-size: clamp(14px, 0.00375 * 100vw + 12.8px, 20px);
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--9999-ab);
}

.cart-product__price ins,
.cart-product__price ins * {
  text-decoration: none;
}

.cart-product__price .price-discount__wrap {
  display: flex;
  flex-direction: row-reverse;
  gap: clamp(5px, 0.005625 * 100vw + 3.2px, 14px);
}

.cart-product__price .price-discount__value {
  font-weight: 500;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--ffffff);
  background: var(--293990);
  padding: 2px 6px;
  width: -moz-fit-content;
  width: fit-content;
}

.cart-product__sku {
  --color: var(--9999-ab);
}

.cart-product__quantity .qty-wrapper {
  display: flex;
  width: clamp(120px, 0.030625 * 100vw + 110.2px, 169px);
}

.cart-product__quantity .qty-button {
  width: clamp(35px, 0.009375 * 100vw + 32px, 50px);
  height: clamp(35px, 0.009375 * 100vw + 32px, 50px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 1.921px;
  border: 1.217px solid var(--212067);
}

.cart-product__quantity .qty-button svg {
  --svgColor: var(--212067);
}

.cart-product__quantity .qty-button:disabled {
  pointer-events: none;
  opacity: 0.5;
}

@media (min-width: 992px) {
  .cart-product__quantity .qty-button:hover {
    background-color: var(--212067);
  }

  .cart-product__quantity .qty-button:hover svg {
    --svgColor: var(--ffffff);
  }
}

.cart-product__quantity [qty-decrease] svg {
  transform: rotate(180deg);
}

.cart-product__quantity .quantity {
  flex: 1;
  display: flex;
}

.cart-product__quantity .quantity input {
  background: transparent;
  outline: none;
  border: none;
  width: 100%;
  font-weight: 700;
  font-size: clamp(14px, 0.00375 * 100vw + 12.8px, 20px);
  line-height: 150%;
  color: var(--color, var(--141328));
  text-align: center;
  padding: 0;
}

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

@media (min-width: 992px) {
  .cart-product:hover {
    background: var(--ebf-1-ff);
  }
}

@media (max-width: 1199px) {
  .cart-product__holder {
    flex-wrap: wrap;
    padding: 0 20px 15px 15px;
    position: relative;
  }

  .cart-product__holder .product-remove {
    position: absolute;
    top: 10px;
    right: 10px;
  }

  .cart-product__holder .product-remove a {
    width: 30px;
    height: 30px;
  }

  .cart-product__wrap {
    flex: 0 0 100%;
  }

  .cart-product__info {
    padding-right: 20px;
  }
}

@media (max-width: 767px) {
  .products-order {
    width: 100%;
  }

  .cart__holder {
    flex-direction: column;
  }
}

/* ============== CHECKOUT ============= */
.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.woocommerce-billing-fields__field-wrapper h5,
.woocommerce-shipping-fields__field-wrapper h5 {
  margin-bottom: clamp(10px, 0.00625 * 100vw + 8px, 20px);
}

.woocommerce-billing-fields__field-wrapper #billing_title_field,
.woocommerce-billing-fields__field-wrapper #shipping_title_field,
.woocommerce-shipping-fields__field-wrapper #billing_title_field,
.woocommerce-shipping-fields__field-wrapper #shipping_title_field {
  grid-column: span 3;
}

.woocommerce-billing-fields__field-wrapper .form-row-textarea,
.woocommerce-shipping-fields__field-wrapper .form-row-textarea {
  grid-column: span 3;
}

.woocommerce-billing-fields__field-wrapper .hidden_field,
.woocommerce-shipping-fields__field-wrapper .hidden_field {
  display: none;
}

.woocommerce-billing-fields__field-wrapper .screen-reader-text,
.woocommerce-shipping-fields__field-wrapper .screen-reader-text {
  height: auto;
  position: static;
  width: auto;
  -webkit-clip-path: none;
  clip-path: none;
}

.woocommerce-billing-fields__field-wrapper .form-row .required,
.woocommerce-shipping-fields__field-wrapper .form-row .required {
  display: none;
}

.woocommerce-shipping-methods,
.payment_methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: max(10 / 19.2 * 1vw, 10px);
  margin-bottom: 0;
}

.woocommerce-shipping-methods li,
.payment_methods li {
  list-style: none;
  width: 100%;
  list-style-type: none;
  height: 100%;
  display: flex;
  align-items: center;
  min-height: clamp(80px, 0.00625 * 100vw + 78px, 90px);
}

.woocommerce-shipping-methods li::before,
.payment_methods li::before {
  display: none !important;
}

.woocommerce-shipping-methods li input,
.payment_methods li input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  display: contents;
}

.woocommerce-shipping-methods li input:checked+label,
.payment_methods li input:checked+label {
  background-color: var(--212067);
  color: #fff;
}

.woocommerce-shipping-methods li input:checked+label:before,
.payment_methods li input:checked+label:before {
  background-image: url("./../images/check.svg");
}

.woocommerce-shipping-methods li input:checked+label span,
.payment_methods li input:checked+label span {
  color: #fff;
}

.woocommerce-shipping-methods li label,
.payment_methods li label {
  display: flex !important;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  width: 100%;
  padding: clamp(10px, 0.00625 * 100vw + 8px, 20px) clamp(10px, 0.009375 * 100vw + 7px, 25px);
  background: var(--faf-9-fa);
  transition: var(--transition);
  border-radius: 5px;
  font-weight: 800;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 150%;
  color: var(--color, var(--141328));
  cursor: pointer;
  height: 100%;
  position: relative;
}

.woocommerce-shipping-methods li label:before,
.payment_methods li label:before {
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--ffffff);
  background-image: none;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  transition: var(--transition);
}

.woocommerce-shipping-methods li label span,
.payment_methods li label span {
  display: none;
}

@media (min-width: 992px) {

  .woocommerce-shipping-methods li label:hover,
  .payment_methods li label:hover {
    background-color: var(--212067);
    color: #fff;
  }
}

form.woocommerce-checkout {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5px;
}

form.woocommerce-checkout label {
  display: none;
}

form.woocommerce-checkout .woocommerce-NoticeGroup-checkout {
  flex: 0 0 100%;
}

form.woocommerce-checkout .col2-set {
  flex: 1;
  display: flex;
  flex-direction: column;
}

form.woocommerce-checkout .col2-set>*:not(:last-child) {
  margin-bottom: clamp(20px, 0.0125 * 100vw + 16px, 40px);
}

form.woocommerce-checkout .checkout__btn {
  width: 100%;
}

form.woocommerce-checkout .checkout__btn .btn {
  width: 100%;
}

form.woocommerce-checkout .checkout-title {
  margin-bottom: clamp(10px, 0.00625 * 100vw + 8px, 20px);
}

form.woocommerce-checkout .checkout__warning {
  border-radius: 5px;
  background: rgba(33, 32, 103, 0.05);
  padding: clamp(10px, 0.00375 * 100vw + 8.8px, 16px) clamp(10px, 0.00625 * 100vw + 8px, 20px);
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: clamp(10px, 0.001875 * 100vw + 9.4px, 13px);
  font-weight: 500;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--212067);
  margin-top: clamp(10px, 0.00625 * 100vw + 8px, 20px);
}

form.woocommerce-checkout .checkout__warning svg {
  width: 16px;
  height: 16px;
  --svgColor: var(--293990);
  flex-shrink: 0;
}

#customer_details {
  border: 1px solid var(--ececec);
  background: var(--ffffff);
  padding: clamp(20px, 0.028125 * 100vw + 11px, 65px) clamp(20px, 0.0506465517 * 100vw + -30.2413793103px, 67px);
}

.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
  display: none;
}

.woocommerce-checkout .content .woocommerce-NoticeGroup-checkout strong {
  font-weight: 700;
}

.woocommerce-checkout .content .woocommerce-invalid input {
  color: var(--bf-2525) !important;
  border-color: var(--bf-2525) !important;
}

.woocommerce-checkout .content .woocommerce-invalid input::-moz-placeholder {
  color: var(--bf-2525) !important;
}

.woocommerce-checkout .content .woocommerce-invalid input::placeholder {
  color: var(--bf-2525) !important;
}

.products-order__edit-order {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--ffffff);
  margin-top: clamp(15px, 0.004375 * 100vw + 13.6px, 22px);
  margin-bottom: clamp(15px, 0.004375 * 100vw + 13.6px, 22px);
}

.products-order__edit-order svg {
  width: 14px;
  height: 14px;
  --svgColor: var(--ffffff);
  flex-shrink: 0;
}

@media (min-width: 992px) {
  .products-order__edit-order:hover {
    --color: var(--1297-ee);
  }

  .products-order__edit-order:hover svg {
    --svgColor: var(--1297-ee);
  }
}

.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-error {
  padding: clamp(10px, 0.003125 * 100vw + 9px, 15px);
  background: var(--ffffff);
  margin-bottom: clamp(5px, 0.00625 * 100vw + 3px, 15px);
  font-weight: 500;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 150%;
  color: var(--color, var(--141328));
}

.woocommerce-checkout .woocommerce-message a,
.woocommerce-checkout .woocommerce-error a {
  --color: var(--293990);
}

@media (max-width: 991px) {

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

  .woocommerce-billing-fields__field-wrapper #billing_title_field,
  .woocommerce-billing-fields__field-wrapper #shipping_title_field,
  .woocommerce-billing-fields__field-wrapper .form-row-textarea,
  .woocommerce-shipping-fields__field-wrapper #billing_title_field,
  .woocommerce-shipping-fields__field-wrapper #shipping_title_field,
  .woocommerce-shipping-fields__field-wrapper .form-row-textarea {
    grid-column: span 2;
  }

  .woocommerce-shipping-methods,
  .payment_methods {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {

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

  .woocommerce-billing-fields__field-wrapper #billing_title_field,
  .woocommerce-billing-fields__field-wrapper #shipping_title_field,
  .woocommerce-billing-fields__field-wrapper .form-row-textarea,
  .woocommerce-shipping-fields__field-wrapper #billing_title_field,
  .woocommerce-shipping-fields__field-wrapper #shipping_title_field,
  .woocommerce-shipping-fields__field-wrapper .form-row-textarea {
    grid-column: span 1;
  }

  .woocommerce-shipping-methods,
  .payment_methods {
    grid-template-columns: 1fr;
  }

  form.woocommerce-checkout .checkout__warning {
    flex-direction: column;
  }
}

.woocommerce-order ul.order_details li {
  display: flex;
  flex-wrap: wrap;
}

.woocommerce-order ul.order_details li p {
  font-weight: 700;
}

.woocommerce-order ul.order_details li p * {
  font-weight: 700;
}

.woocommerce-order .order_details.shop_table {
  width: 50%;
}

.woocommerce-order .order_details.shop_table .order_item {
  display: flex;
  justify-content: space-between;
  gap: clamp(15px, 0.009375 * 100vw + 12px, 30px);
  border: 1px solid var(--ececec);
  background: var(--ffffff);
  padding: clamp(5px, 0.0208044383 * 100vw + -19.9445214979px, 20px) clamp(5px, 0.0624133148 * 100vw + -69.8335644938px, 50px) clamp(5px, 0.0208044383 * 100vw + -19.9445214979px, 20px) clamp(5px, 0.0208044383 * 100vw + -19.9445214979px, 20px);
}

.woocommerce-order .order_details.shop_table .order_item:not(:first-child) {
  margin-top: -1px;
}

.woocommerce-order .order_details.shop_table .order_item .wc-item-meta {
  margin-top: 10px;
}

.woocommerce-order .order_details.shop_table .order_item .wc-item-meta li {
  display: flex;
  flex-wrap: wrap;
}

.woocommerce-order .order_details.shop_table .product-name {
  max-width: 50%;
}

.woocommerce-order .woocommerce-order-details__title {
  margin-bottom: clamp(10px, 0.00625 * 100vw + 8px, 20px);
}

@media (max-width: 767px) {
  .woocommerce-order .order_details.shop_table {
    width: 100%;
  }
}

.lk-modal .logged__btn-wrap {
  display: flex;
}

.lk-modal .logged__btn-wrap * {
  flex: 1;
  text-align: center;
}

.lk-modal .logged__title {
  margin-bottom: 10px;
}

.lk-form__input {
  margin-bottom: clamp(10px, 0.00625 * 100vw + 8px, 20px);
}

.lk-form__label {
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--9999-ab);
  display: block;
  margin-bottom: clamp(5px, 0.003125 * 100vw + 4px, 10px);
}

.lk-form__password {
  background: var(--faf-9-fa);
  position: relative;
  display: block;
  padding-right: clamp(25px, 0.0125 * 100vw + 21px, 45px);
  border: 1px solid transparent;
  transition: var(--transition);
}

@media (min-width: 992px) {

  .lk-form__password:hover,
  .lk-form__password:focus {
    border-color: var(--293990);
  }
}

.lk-form__password input {
  padding-right: 0 !important;
  border: none !important;
}

.lk-form__password .password-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: clamp(8px, 0.00625 * 100vw + 6px, 18px);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lk-form__password .password-control svg {
  width: 12px;
  height: 8px;
  pointer-events: none;
}

.lk-form__password .password-control.view svg path.line {
  display: none;
}

@media (min-width: 992px) {
  .lk-form__password .password-control:hover {
    opacity: 0.8;
  }
}

.lk-form__link-pass {
  font-weight: 800;
  font-size: 14px;
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--293990);
  padding-bottom: 5px;
  border-bottom: 1px dashed var(--293990);
  margin-top: clamp(15px, 0.009375 * 100vw + 12px, 30px);
  margin-bottom: clamp(20px, 0.0125 * 100vw + 16px, 40px);
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  transition: var(--transition);
}

@media (min-width: 992px) {
  .lk-form__link-pass:hover {
    --color: var(--1297-ee);
    border-color: var(--1297-ee);
  }
}

.lk-form__submit {
  width: 100% !important;
}

.lk-form__submit .btn {
  width: 100%;
}

.page-auth .notice-container {
  padding: clamp(10px, 0.003125 * 100vw + 9px, 15px);
  background: var(--ffffff);
  margin-bottom: clamp(5px, 0.00625 * 100vw + 3px, 15px);
  font-weight: 500;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 150%;
  color: var(--color, var(--141328));
}

.page-auth .notice-container a {
  --color: var(--293990);
}

.page-auth .lk-modal__container {
  background: var(--ffffff);
  padding: clamp(20px, 0.028125 * 100vw + 11px, 65px) clamp(20px, 0.029375 * 100vw + 10.6px, 67px);
}

.page-auth__container {
  max-width: 570px;
  margin: 0 auto;
  padding-top: clamp(20px, 0.01875 * 100vw + 14px, 50px);
}

.account__main-wrapper {
  display: flex;
  align-items: flex-start;
  grid-column-gap: clamp(20px, 0.0125 * 100vw + 16px, 40px);
}

.account__main-wrapper .woocommerce-notices-wrapper .woocommerce-message,
.account__main-wrapper .woocommerce-notices-wrapper .woocommerce-error {
  background: var(--ffffff);
  padding: clamp(15px, 0.009375 * 100vw + 12px, 30px);
  font-weight: 500;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 150%;
  color: var(--color, var(--141328));
  max-width: 570px;
  margin: 0 auto clamp(10px, 0.00625 * 100vw + 8px, 20px);
  text-align: center;
}

.account__navigation {
  width: clamp(277px, 0.0771899393 * 100vw + 217.7953165655px, 366px);
  background: var(--ffffff);
}

.account__user {
  display: flex;
  align-items: center;
  gap: clamp(5px, 0.004375 * 100vw + 3.6px, 12px);
  margin-bottom: clamp(15px, 0.008125 * 100vw + 12.4px, 28px);
}

.account__user-head {
  border: 1px solid var(--ececec);
  padding: clamp(20px, 0.0125 * 100vw + 16px, 40px) clamp(10px, 0.0125 * 100vw + 6px, 30px) clamp(10px, 0.0125 * 100vw + 6px, 30px);
}

.account__user-head .user-orders {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border-radius: 2px;
  background: var(--293990);
}

.account__user-head .user-orders__text {
  padding: clamp(10px, 0.01 * 100vw + 6.8px, 26px) 10px clamp(10px, 0.01 * 100vw + 6.8px, 26px) clamp(15px, 0.009375 * 100vw + 12px, 30px);
  flex: 1;
  font-weight: 800;
  font-size: 14px;
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--ffffff);
}

.account__user-head .user-orders__value {
  padding: 0 clamp(10px, 0.01625 * 100vw + 4.8px, 36px);
  border-radius: 2px;
  background: var(--212067);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--ffffff);
}

.account__user .user__icon {
  width: clamp(60px, 0.0125 * 100vw + 56px, 80px);
  height: clamp(60px, 0.0125 * 100vw + 56px, 80px);
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--faf-9-fa);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.account__user .user__icon svg {
  width: clamp(25px, 0.009375 * 100vw + 22px, 40px);
  height: clamp(25px, 0.009375 * 100vw + 22px, 40px);
}

.account__user .user__name {
  --color: var(--293990);
}

.account__user .user__logout {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--9999-ab);
}

.account__user .user__logout svg {
  width: clamp(15px, 0.003125 * 100vw + 14px, 20px);
  height: clamp(15px, 0.003125 * 100vw + 14px, 20px);
  --svgColor: var(--9999-ab);
}

@media (min-width: 992px) {
  .account__user .user__logout:hover {
    --color: var(--1297-ee);
  }

  .account__user .user__logout:hover svg {
    --svgColor: var(--1297-ee);
  }
}

.account__menu {
  border: 1px solid var(--ececec);
  border-top: none;
  padding: clamp(10px, 0.0125 * 100vw + 6px, 30px);
}

.account__menu li {
  list-style: none;
}

.account__menu li.active a {
  background: var(--faf-9-fa);
}

.account__menu li:not(:last-child) {
  margin-bottom: 5px !important;
}

.account__menu a {
  display: flex;
  align-items: center;
  gap: clamp(10px, 0.00375 * 100vw + 8.8px, 16px);
  padding: 10px;
  font-weight: 500;
  font-size: clamp(14px, 0.00375 * 100vw + 12.8px, 20px);
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--9999-ab);
  border-radius: 3px;
}

@media (min-width: 992px) {
  .account__menu a:hover {
    background: var(--faf-9-fa);
  }
}

.account__menu-icon {
  width: clamp(20px, 0.0025 * 100vw + 19.2px, 24px);
  height: clamp(20px, 0.0025 * 100vw + 19.2px, 24px);
}

.account__menu-icon svg {
  width: 100%;
  height: 100%;
}

.account__menu-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.account__wrap {
  border: 1px solid var(--ececec);
  background: var(--ffffff);
  padding: clamp(10px, 0.01875 * 100vw + 4px, 40px);
}

.account__wrap .woocommerce-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.woocommerce-MyAccount-content {
  flex: 1;
}

.dashboard-head {
  display: flex;
  justify-content: space-between;
  gap: 5px 20px;
  flex-wrap: wrap;
  margin-bottom: clamp(15px, 0.009375 * 100vw + 12px, 30px);
}

.dashboard-head__rate {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: clamp(15px, 0.009375 * 100vw + 12px, 30px);
}

.dashboard-head__rate-wrap {
  display: flex;
  align-items: center;
  gap: clamp(5px, 0.003125 * 100vw + 4px, 10px);
}

.dashboard-head__rate-icon {
  width: clamp(20px, 0.00625 * 100vw + 18px, 30px);
  height: clamp(20px, 0.00625 * 100vw + 18px, 30px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ececec);
}

.dashboard-head__rate-icon img {
  width: clamp(15px, 0.005625 * 100vw + 13.2px, 24px);
  height: clamp(10px, 0.001875 * 100vw + 9.4px, 13px);
  -o-object-fit: contain;
  object-fit: contain;
}

.dashboard-head__rate-container {
  display: flex;
  align-items: center;
  gap: clamp(5px, 0.003125 * 100vw + 4px, 10px);
}

.dashboard-head__rate-container .dashboard-head__rate-block>*:not(:first-child) {
  display: none;
}

.dashboard-head__rate-container.reverse .dashboard-head__rate-block>*:not(:last-child) {
  display: none;
}

.dashboard-head__rate-container.reverse .dashboard-head__rate-block>*:not(:first-child) {
  display: flex;
}

.dashboard-head__rate-reverse {
  cursor: pointer;
}

.dashboard-head__rate-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--0D2547);
}

.dashboard-head__title {
  flex: 1;
  --color: var(--0D2547);
}

.dashboard {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(15px, 0.009375 * 100vw + 12px, 30px) 5px;
}

.dashboard__item {
  display: flex;
  border: 1px solid var(--ececec);
  border-left: 3px solid var(--2530-bf);
  background: var(--ffffff);
}

.dashboard__item.orders .dashboard__item-content {
  padding-bottom: clamp(10px, 0.01875 * 100vw + 4px, 40px);
  padding-right: clamp(15px, 0.0762829404 * 100vw + -76.4632454924px, 70px);
}

.dashboard__item-icon {
  padding: clamp(20px, 0.01375 * 100vw + 15.6px, 42px) clamp(10px, 0.008125 * 100vw + 7.4px, 23px) clamp(20px, 0.01375 * 100vw + 15.6px, 42px) clamp(7px, 0.008125 * 100vw + 4.4px, 20px);
  background: var(--faf-9-fa);
}

.dashboard__item-icon svg,
.dashboard__item-icon img {
  width: clamp(20px, 0.0025 * 100vw + 19.2px, 24px);
  height: clamp(20px, 0.0025 * 100vw + 19.2px, 24px);
}

.dashboard__item-content {
  padding: clamp(20px, 0.0125 * 100vw + 16px, 40px) clamp(15px, 0.009375 * 100vw + 12px, 30px) clamp(10px, 0.00625 * 100vw + 8px, 20px);
  flex: 1;
}

.dashboard__item-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(15px, 0.009375 * 100vw + 12px, 30px);
}

.dashboard__item-link {
  display: flex;
  align-items: center;
  gap: 3px;
  font-weight: 800;
  font-size: 14px;
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--293990);
}

.dashboard__item-link svg {
  width: clamp(15px, 0.005625 * 100vw + 13.2px, 24px);
  height: clamp(15px, 0.005625 * 100vw + 13.2px, 24px);
  --svgColor: var(--293990);
}

@media (min-width: 992px) {
  .dashboard__item-link:hover {
    --color: var(--212067);
  }

  .dashboard__item-link:hover svg {
    --svgColor: var(--212067);
  }
}

.dashboard__notifications-sign {
  border: 1px solid var(--ececec);
  background: var(--ffffff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: clamp(69px, 0.00625 * 100vw + 67px, 79px);
  height: clamp(69px, 0.00625 * 100vw + 67px, 79px);
  top: -19px;
  right: -37px;
}

.dashboard__notifications-sign svg {
  width: clamp(25px, 0.004375 * 100vw + 23.6px, 32px);
  height: clamp(25px, 0.004375 * 100vw + 23.6px, 32px);
  --svgColor: var(--9999-ab);
}

.dashboard__notifications-counter {
  position: absolute;
  top: clamp(10px, 0.00625 * 100vw + 8px, 20px);
  right: clamp(10px, 0.00625 * 100vw + 8px, 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--1297-ee);
  width: 21px;
  height: 21px;
  font-weight: 800;
  font-size: 10px;
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--ffffff);
}

.dashboard__notifications-item {
  display: flex;
  position: relative;
  min-height: clamp(100px, 0.014375 * 100vw + 95.4px, 123px);
  width: calc(100% - clamp(20px, 0.010625 * 100vw + 16.6px, 37px));
  background: var(--faf-9-fa);
}

.dashboard__notifications-item.hidden {
  opacity: 0.4;
  margin-left: auto;
}

.dashboard__notifications-image {
  width: clamp(100px, 0.0225 * 100vw + 92.8px, 136px);
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}

.dashboard__notifications-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 3px;
}

.dashboard__notifications-content {
  flex: 1;
  padding: clamp(10px, 0.01125 * 100vw + 6.4px, 28px) clamp(25px, 0.015625 * 100vw + 20px, 50px) clamp(10px, 0.006875 * 100vw + 7.8px, 21px) clamp(10px, 0.0075 * 100vw + 7.6px, 22px);
  border-radius: 0 3px 3px 0;
}

.dashboard__notifications-title:not(:last-child) {
  margin-bottom: 7px;
}

.order-table__head {
  display: grid;
  grid-template-columns: 13.4% 10.2% 1fr 11.7%;
  gap: clamp(15px, 0.009375 * 100vw + 12px, 30px);
  margin-bottom: clamp(10px, 0.00625 * 100vw + 8px, 20px);
}

.order-table__th {
  font-weight: 500;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: #898789;
}

.order-table__th.col-2 {
  display: grid;
  grid-template-columns: 1fr 92px;
  gap: clamp(15px, 0.009375 * 100vw + 12px, 30px);
}

.order-table__row {
  display: grid;
  grid-template-columns: 13.4% 10.2% 1fr 11.7%;
  gap: clamp(15px, 0.009375 * 100vw + 12px, 30px);
  border-radius: 3px;
  background: var(--faf-9-fa);
  padding: clamp(5px, 0.005 * 100vw + 3.4px, 13px) 0;
}

.order-table__row:not(:last-child) {
  margin-bottom: 5px;
}

.order-table__td.center {
  text-align: center;
  padding: 0 5px;
  font-weight: 500;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: #140f14;
}

.order-table__td.price *:not(.order-table__caption) {
  font-weight: 500;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: #140f14;
}

.order-table__caption {
  display: none;
}

.order-table__items {
  display: grid;
  grid-template-columns: 1fr 92px;
  gap: clamp(15px, 0.009375 * 100vw + 12px, 30px);
}

.order-table__items:not(:last-child) {
  margin-bottom: clamp(5px, 0.003125 * 100vw + 4px, 10px);
}

.order-table__order {
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: #140f14;
}

.order-table__order.item-quantity {
  text-align: center;
}

.managers-page__wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(clamp(250px, 0.094375 * 100vw + 219.8px, 401px), 1fr));
  gap: 5px;
}

.managers-page__item {
  border: 1px solid var(--ececec);
  background: var(--ffffff);
  padding: clamp(15px, 0.009375 * 100vw + 12px, 30px) clamp(15px, 0.009375 * 100vw + 12px, 30px) clamp(20px, 0.014375 * 100vw + 15.4px, 43px);
}

.managers-page__item-head {
  display: flex;
  align-items: center;
  gap: clamp(5px, 0.00625 * 100vw + 3px, 15px);
  margin-bottom: clamp(15px, 0.008125 * 100vw + 12.4px, 28px);
}

.managers-page__item-image {
  width: clamp(40px, 0.0125 * 100vw + 36px, 60px);
  height: clamp(40px, 0.0125 * 100vw + 36px, 60px);
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  flex-shrink: 0;
}

.managers-page__item-title {
  --color: var(--140-f-14);
}

.managers-page__item-post {
  --color: var(--3-c-3-b-4-f);
}

.managers-page__item-phones:not(:last-child) {
  margin-bottom: 10px;
}

.managers-page__item-emails:not(:last-child) {
  margin-bottom: 10px;
}

.managers-page__item-link {
  --color: var(--212067);
}

@media (min-width: 992px) {
  .managers-page__item-link:hover {
    --color: var(--1297-ee);
  }
}

.managers-page__item-social-title {
  margin-bottom: 5px;
  --color: var(--9999-ab);
}

.managers-page__item-socials {
  margin-top: clamp(15px, 0.009375 * 100vw + 12px, 30px);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(5px, 0.003125 * 100vw + 4px, 10px);
}

.managers-page__item-social {
  width: clamp(25px, 0.008125 * 100vw + 22.4px, 38px);
  height: clamp(25px, 0.008125 * 100vw + 22.4px, 38px);
}

.managers-page__item-social svg {
  width: 100%;
  height: 100%;
}

.managers-page__item-social img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.notifications-page__item {
  border-radius: 3px;
  background: var(--faf-9-fa);
  padding: clamp(15px, 0.009375 * 100vw + 12px, 30px);
}

.notifications-page__item:not(:last-child) {
  margin-bottom: 5px;
}

.notifications-page__item-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.notifications-page__item-date {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  --color: var(--9999-ab);
}

.notifications-page__item-separation {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--9999-ab);
  display: block;
}

.notifications-page__item-title {
  --color: var(--140-f-14);
}

.notifications-page__item-text {
  --color: var(--3-c-3-b-4-f);
}

.notifications-page__item-text p,
.notifications-page__item-text li {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: var(--color, var(--141328));
}

.edit-account__block {
  margin-bottom: clamp(25px, 0.015625 * 100vw + 20px, 50px);
}

.edit-account__title {
  margin-bottom: clamp(10px, 0.00625 * 100vw + 8px, 20px);
}

.edit-account__block-wrap {
  display: grid;
  gap: 5px;
}

.edit-account__block-wrap.person {
  grid-template-columns: repeat(2, 1fr);
}

.edit-account__block-wrap.person .form__input.email {
  pointer-events: none;
  opacity: 0.6;
}

.edit-account__block-wrap.organization {
  grid-template-columns: repeat(2, 1fr);
}

.edit-account__block-wrap.organization .form__input.textarea {
  grid-row: 2 span;
}

.edit-account__block-wrap.address-organization {
  grid-template-columns: repeat(3, 1fr);
}

.edit-account__btn {
  width: 100%;
}

.account__notice {
  padding: clamp(10px, 0.003125 * 100vw + 9px, 15px);
  background: var(--faf-9-fa);
  margin-bottom: clamp(5px, 0.00625 * 100vw + 3px, 15px);
  font-weight: 500;
  font-size: clamp(14px, 0.00125 * 100vw + 13.6px, 16px);
  line-height: 150%;
  color: var(--color, var(--141328));
}

@media (max-width: 1199px) {
  .order-table__head {
    display: none;
  }

  .order-table__row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 20px;
    padding-right: 10px;
  }

  .order-table__td.center {
    padding-left: 0;
    padding-right: 0;
    text-align: left;
  }

  .order-table__caption {
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
  }
}

@media (max-width: 991px) {
  .dashboard-head {
    flex-direction: column;
  }

  .notifications-page__item-head {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .edit-account__block-wrap.person,
  .edit-account__block-wrap.organization,
  .edit-account__block-wrap.address-organization {
    grid-template-columns: 1fr;
  }

  .edit-account__block-wrap.organization .form__input.textarea {
    grid-row: 5;
  }
}

@media (max-width: 767px) {
  .woocommerce-MyAccount-navigation {
    position: fixed;
    right: -270px;
    min-width: 270px;
    max-width: 270px;
    top: 0;
    z-index: 2000;
    transition: right 0.3s ease;
    border-radius: 5px 0px 0px 5px;
    max-height: 100vh;
    height: 100%;
    background: #ffffff;
  }

  .woocommerce-MyAccount-navigation.active {
    right: 0px;
  }

  .woocommerce-MyAccount-navigation .open-button-acc {
    display: block;
    width: 15px;
    height: 100px;
    position: absolute;
    left: -15px;
    top: 50px;
    background: var(--293990);
    border-radius: 5px 0px 0px 5px;
  }

  .account__navigation-wrap {
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
  }
}

@media (max-width: 575px) {
  .dashboard__notifications-sign {
    width: 55px;
    height: 55px;
    right: -26px;
  }

  .dashboard__notifications-counter {
    top: 6px;
    right: 6px;
  }

  .dashboard__notifications-image {
    display: none;
  }

  .dashboard-head__rate {
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
  }
}

/* ============== PAGE ABOUT ============= */
.page-banner {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  min-height: clamp(250px, 0.15625 * 100vw + 200px, 500px);
  padding-bottom: clamp(20px, 0.0125 * 100vw + 16px, 40px);
}

.page-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(90deg, #1e1e1e 37.66%, rgba(30, 30, 30, 0) 69.71%);
}

.page-banner .container {
  position: relative;
  z-index: 1;
}

.page-banner__title {
  --color: var(--ffffff);
  width: 55%;
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .page-banner::before {
    background: rgba(0, 0, 0, 0.5);
  }

  .page-banner__title {
    width: 100%;
  }
}

.page-menu {
  background: var(--ffffff);
  margin-top: -50px;
  position: relative;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: clamp(25px, 0.015625 * 100vw + 20px, 50px);
}

.page-menu__item {
  padding: clamp(20px, 0.009375 * 100vw + 17px, 35px) clamp(10px, 0.0425 * 100vw + -3.6px, 78px);
  border-bottom: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: clamp(14px, 0.00375 * 100vw + 12.8px, 20px);
  line-height: 150%;
  color: var(--color, var(--141328));
  --color: var(--9999-ab);
}

.page-menu__item.active {
  border-color: var(--293990);
  --color: var(--141328);
}

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



.policy-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;

  border: 1px solid #ccc;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  position: relative;
  vertical-align: middle;
  border: 1px solid #000000;
  padding: 0;
}

/* Стиль для отмеченного чекбокса */
.policy-checkbox input[type="checkbox"]:checked {
  background-color: #007bff !important;
  border-color: #007bff !important;
}

/* Галочка внутри чекбокса */
.policy-checkbox input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  color: white;
  font-size: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Стиль для ошибки (только чекбокс) */
.policy-checkbox input[type="checkbox"].error {
  border-color: red;
  box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.2);
}

.policy-checkbox {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 15px;
  padding-top: 20px;
  align-items: center;
}

#consent-checkbox {
  width: 20px !important;
  height: 20px !important;
  border: 1px solid #000000 !important;
  padding: 0 !important;
}

.policy-checkbox label {
  width: 90% !important;
}


@media (max-width:600px) {
  .btn {
    width: 100% !important;
  }
}

.swiper-button-disabled {
  pointer-events: none
}