/* Color styles */
/* Social colors */
/* Effects */
/* Text-size styles */
/* Font family */
/* Effect styles */
/* Grid */
.swiper {
  position: relative;
  overflow: hidden;
  list-style: none;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-scrollbar {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin: 24px 0 0;
  -ms-touch-action: none;
}
.swiper-scrollbar:before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  right: 0;
  height: 1px;
  background: #e6ebf4;
}
.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none;
}
.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  height: 3px;
}
.swiper-vertical > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: auto;
  right: 0;
  top: 0;
  z-index: 50;
  width: 3px;
  height: 100%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: #ccd2e3;
  border-radius: 3px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-pagination-bullets {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 0.5;
  border-radius: 50%;
  background: #9799b1;
  -webkit-transition: width 0.3s, height 0.3s, opacity 0.3s;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  -webkit-box-shadow: 0 10px 40px rgba(11, 11, 15, 0.05);
  box-shadow: 0 10px 40px rgba(11, 11, 15, 0.05);
}
.swiper-pagination-bullet-active {
  opacity: 1;
  width: 12px;
  height: 12px;
  background: #6ba100;
}

.swiper-navigation {
  display: none;
}

.swiper-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 4px;
}

.swiper-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  color: #585b75;
  border: 0;
  width: 36px;
  height: 36px;
  background: #ffffff;
  cursor: pointer;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
}
.swiper-button:hover {
  color: #6ba100;
}
.swiper-button--prev svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.swiper-button svg {
  width: 24px;
  height: 24px;
}

@media all and (min-width: 768px) {
  .swiper-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1px;
    margin: 24px 0 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    overflow: hidden;
    background: #e6ebf4;
    border: 1px solid #e6ebf4;
    border-radius: 4px;
  }
  .swiper-navigation .swiper-scrollbar {
    margin: 0;
  }
}
.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin: 12px 0 16px;
  list-style: none;
  font-size: 14px;
  color: #9799b1;
}
.breadcrumbs__item:not(:nth-last-child(2)) {
  display: none;
}
.breadcrumbs__text {
  gap: 0.25em;
}
.breadcrumbs__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  color: #585b75;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.breadcrumbs__link:hover {
  color: #6ba100;
}
.breadcrumbs__link svg {
  margin: 0.15em 0.25em 0 -0.25em;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  color: #ccd2e3;
  width: 1.25em;
  height: 1.25em;
}

@media screen and (min-width: 768px) {
  .breadcrumbs {
    margin: 16px 0 24px;
  }
}
@media screen and (min-width: 1004px) {
  .breadcrumbs {
    font-size: 15px;
  }
}
@media screen and (min-width: 1260px) {
  .breadcrumbs {
    margin: 20px 0 28px;
  }
  .breadcrumbs__item:not(:nth-last-child(2)) {
    display: block;
  }
  .breadcrumbs__link {
    display: inline;
  }
  .breadcrumbs__link svg {
    display: inline-block;
    vertical-align: top;
    margin: 0.15em 0.25em 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.service-item {
  position: relative;
  height: 100%;
}
.service-item--default:hover .service-item__img, .service-item--small:hover .service-item__img {
  -webkit-box-shadow: 0 0 0 1px #7dc623;
  box-shadow: 0 0 0 1px #7dc623;
}
.service-item--large {
  overflow: hidden;
  background: #fafafa;
  border-radius: 12px;
}
.service-item__title {
  display: block;
  font-weight: 700;
  color: #21222c;
  line-height: 1.3;
}
.service-item__title--default, .service-item__title--small {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.service-item__title--default:hover, .service-item__title--small:hover {
  color: #6ba100;
}
.service-item__title--default:before, .service-item__title--small:before {
  content: "";
  position: absolute;
  inset: 0;
}
.service-item__title--small {
  font-size: 14px;
}
.service-item__img {
  display: block;
  width: 100%;
}
.service-item__img--small, .service-item__img--default {
  margin: 0 0 0.75em;
  border-radius: 12px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.service-item__img--small {
  aspect-ratio: 1/1;
}
.service-item__img--default {
  aspect-ratio: 16/9;
}
.service-item__info {
  padding: 16px 5vw 20px;
}
.service-item__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  margin: 0.7em 0 0;
  list-style: none;
  line-height: 1.3;
  font-size: 14px;
}
.service-item__list-link {
  color: #585b75;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.service-item__list-link:hover {
  color: #6ba100;
}

@media screen and (min-width: 768px) {
  .service-item__info {
    padding: 20px 20px 20px 0;
  }
  .service-item__title--small {
    font-size: inherit;
  }
}
@media screen and (min-width: 1004px) {
  .service-item__info {
    padding: 24px 24px 24px 0;
  }
  .service-item__list {
    font-size: 16px;
  }
}
@media screen and (min-width: 1900px) {
  .service-item__info {
    padding: 28px 28px 28px 0;
  }
  .service-item__list {
    font-size: 18px;
  }
}
.product-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  line-height: 1.3;
  overflow: hidden;
}
.product-item--white {
  background: #ffffff;
  border-radius: 12px;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.product-item--white:hover {
  -webkit-box-shadow: 0 0 0 1px #7dc623;
  box-shadow: 0 0 0 1px #7dc623;
}
.product-item--clear .product-item__img {
  border-radius: 12px;
}
.product-item__img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.product-item__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.product-item__inner--white {
  padding: 12px 16px 20px;
}
.product-item__inner--clear {
  padding: 12px 0 0;
}
.product-item__category {
  margin: 0 0 4px;
  font-size: 0.9em;
  color: #9799b1;
}
.product-item__title {
  font-weight: 700;
  color: #21222c;
  margin: 0 0 auto;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.product-item__title:hover {
  color: #6ba100;
}
.product-item__title:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}
.product-item__title--small {
  font-size: 0.875em;
}
.product-item__size {
  font-weight: 700;
}
.product-item__action {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.product-item__action--default {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 16px 0 0;
  margin: 16px 0 0;
  border-top: 1px solid #e6ebf4;
}
.product-item__action--small {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 0;
  padding: 0;
  margin: 8px 0 0;
}
.product-item__action--small .button {
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.product-item__price {
  font-weight: 700;
  color: #6ba100;
  white-space: nowrap;
}
.product-item__price--default {
  font-size: 20px;
}
.product-item__price--small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 16px;
}
.product-item__metr {
  color: #9799b1;
  line-height: 1;
  background: #f6f8fb;
  border-radius: 4px;
  white-space: nowrap;
}
.product-item__metr--small {
  padding: 0.4em 0.5em;
  font-size: 12px;
}
.product-item__metr span:first-child:after {
  content: "";
  display: inline-block;
  height: 1em;
  width: 1px;
  margin: 0 4px;
  vertical-align: middle;
  background: #ccd2e3;
}
.product-item__badge {
  position: absolute;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 36px;
  padding: 0 16px;
  font-size: 0.8em;
  border-radius: 12px 0 12px 0;
}
.product-item__badge--small {
  height: 32px;
  padding: 0 12px;
  font-size: 0.7em;
}
.product-item__badge--hit {
  color: #ffffff;
  background: #7dc623;
}

@media screen and (min-width: 768px) {
  .product-item__inner--white {
    padding: 16px 20px 20px;
  }
  .product-item__inner--clear {
    padding: 16px 0 0;
  }
  .product-item__action--default {
    padding: 20px 0 0;
    margin: 20px 0 0;
  }
  .product-item__price--small {
    font-size: 20px;
  }
  .product-item__metr--small {
    font-size: 13px;
  }
}
@media screen and (min-width: 1004px) {
  .product-item__inner--white {
    padding: 16px 24px 24px;
  }
  .product-item__inner--clear {
    padding: 16px 0 0;
  }
  .product-item__category {
    margin: 0 0 8px;
  }
  .product-item__badge {
    height: 40px;
    padding: 0 20px;
    font-size: 0.9em;
  }
  .product-item__price--default {
    font-size: 22px;
  }
}
@media screen and (min-width: 1260px) {
  .product-item__inner--white {
    padding: 20px 28px 28px;
  }
  .product-item__inner--clear {
    padding: 20px 0 0;
  }
  .product-item__action--small {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 16px 0 0;
  }
  .product-item__price--default {
    font-size: 24px;
  }
  .product-item__price--small {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    font-size: 20px;
  }
}
@media screen and (min-width: 1900px) {
  .product-item__inner--white {
    padding: 20px 32px 32px;
  }
  .product-item__inner--clear {
    padding: 20px 0 0;
  }
  .product-item__price--small {
    font-size: 24px;
  }
  .product-item__metr--small {
    font-size: 14px;
  }
}
.popular-products {
  overflow: visible;
}
.popular-products .swiper-slide {
  max-width: 300px;
}

@media screen and (max-width: 359px) {
  .popular-products .swiper-slide {
    max-width: 292px;
  }
}
@media screen and (min-width: 768px) {
  .popular-products .swiper-wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 24px;
  }
  .popular-products .swiper-slide {
    max-width: none;
  }
  .popular-products .swiper-scrollbar {
    display: none;
  }
}
@media screen and (min-width: 1260px) {
  .popular-products .swiper-wrapper {
    row-gap: 30px;
  }
}
.page__thumb {
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 12px;
}
.page__thumb--full-height {
  height: 100%;
}

.catalog-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: rgba(88, 91, 117, 0.75);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 0.3s 0.15s, opacity 0.3s 0.15s;
  transition: visibility 0.3s 0.15s, opacity 0.3s 0.15s;
}
.catalog-sidebar.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
.catalog-sidebar.is-active .catalog-sidebar__inner {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 0.3s 0.15s, -webkit-transform 0.3s 0.15s;
  transition: opacity 0.3s 0.15s, -webkit-transform 0.3s 0.15s;
  transition: transform 0.3s 0.15s, opacity 0.3s 0.15s;
  transition: transform 0.3s 0.15s, opacity 0.3s 0.15s, -webkit-transform 0.3s 0.15s;
}
.catalog-sidebar__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 320px;
  height: 100%;
  background: #f6f8fb;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}
.catalog-sidebar__back {
  padding: 0;
  margin: 0 0 0 -0.3em;
  line-height: 1;
  font-size: inherit;
  background: none;
  border: 0;
}
.catalog-sidebar__back svg {
  display: block;
  width: 1.4em;
  height: 1.4em;
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}
.catalog-sidebar__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  height: 60px;
  padding: 0 5vw;
  color: #21222c;
  font-size: 1.15em;
  font-weight: 500;
  background: #ffffff;
}
.catalog-sidebar__menu {
  padding: 0;
  margin: 0;
  list-style: none;
  overflow: auto;
}
.catalog-sidebar__menu ul {
  display: none;
  background: #e6ebf4;
}
.catalog-sidebar__menu li {
  border-top: 1px solid #ccd2e3;
}
.catalog-sidebar__menu li.has-children > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.catalog-sidebar__link {
  position: relative;
  display: block;
  padding: 16px 5vw;
  line-height: 1.3;
  font-size: 0.875em;
  color: #585b75;
  font-weight: 500;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.catalog-sidebar__link.current {
  color: #6ba100;
}
.catalog-sidebar__link.current:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: #6ba100;
}
.catalog-sidebar__link.is-active svg {
  -webkit-transform: translateX(0.3em) rotate(90deg);
  -ms-transform: translateX(0.3em) rotate(90deg);
  transform: translateX(0.3em) rotate(90deg);
}
.catalog-sidebar__link svg {
  width: 1.4em;
  height: 1.4em;
  -webkit-transform: translateX(0.4em);
  -ms-transform: translateX(0.4em);
  transform: translateX(0.4em);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.catalog-sidebar__link:hover {
  color: #6ba100;
}

.catalog-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-width: 0;
  padding: 0 12px;
  margin: 0 0 16px;
  background: #f6f8fb;
  border-radius: 4px;
}
.catalog-head__sortable {
  min-width: 0;
}
.catalog-head__toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  height: 36px;
  padding: 0;
  border: 0;
  color: #585b75;
  line-height: 1;
  background: none;
  white-space: nowrap;
}
.catalog-head__toggle svg {
  width: 20px;
  height: 20px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  color: #9799b1;
}

@media screen and (min-width: 768px) {
  .catalog-sidebar__title {
    padding: 0 24px;
  }
  .catalog-sidebar__link {
    padding: 16px 24px;
  }
}
@media screen and (min-width: 1004px) {
  .catalog-sidebar {
    position: static;
    height: auto;
    border: 1px solid #ccd2e3;
    border-radius: 8px;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    -webkit-transition: none;
    transition: none;
  }
  .catalog-sidebar__inner {
    display: block;
    width: 100%;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: none;
    transition: none;
  }
  .catalog-sidebar__title {
    padding: 20px;
  }
  .catalog-sidebar__title svg {
    display: none;
  }
  .catalog-sidebar__link {
    padding: 16px 20px;
  }
  .catalog-head {
    padding: 0 16px;
    margin: 0 0 24px;
    border-radius: 8px;
  }
  .catalog-head__toggle {
    display: none;
  }
}
@media screen and (min-width: 1900px) {
  .catalog-sidebar__title {
    padding: 24px;
  }
  .catalog-sidebar__link {
    padding: 20px 24px;
  }
  .catalog-head {
    padding: 0 20px;
    margin: 0 0 30px;
  }
}
/*# sourceMappingURL=catalog.css.map */
