.ProductItem {
  position: relative;
  display: flex;
  flex-flow: column;
  padding: var(--spaceMd) var(--spaceSm) var(--spaceRg);
  flex-shrink: 0;
  width: 100%;
  transition-property: transform;
  overflow: hidden;
  border: 1px solid var(--colorOutlines);
  box-sizing: border-box;
}

.ProductList-swiper:not(.slider-active) .ProductItem {
  border-top: 1px solid var(--colorOutlines);
  border-bottom: 1px solid var(--colorOutlines);
}

.ProductList-swiper.slider-active .ProductItem.swiper-slide-active {
  border-left: none;
}

.ProductList-swiper:not(.slider-active) .ProductItem:first-of-type {
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

.ProductList-swiper:not(.slider-active) .ProductItem:last-of-type {
  border-right: 1px solid var(--colorOutlines);
  border-bottom-right-radius: 1rem;
  border-top-right-radius: 1rem;
}

.ProductItem-image {
  display: flex;
  justify-content: center;
  text-align: center;
  align-self: center;
  margin-bottom: var(--spaceSm);
  overflow: hidden;
}

.ProductItem-image:hover, .ProductItem-image:active, .ProductItem-image:focus {
  text-decoration: none;
}

.ProductItem .ProductItem-tags {
  position: absolute;
  left: 1rem;
  top: 1rem;
  pointer-events: none;
}

.ProductItem-stock {
  color: var(--colorStockIn);
  font-size: var(--textXs);
  font-weight: 400;
  margin: 0 0 var(--spaceXs);
}

.ProductItem-stock.is-in {
  color: var(--colorStockIn);
}

.ProductItem-stock.is-out {
  color: var(--colorStockOut);
}

.ProductItem-title {
  color: var(--colorText);
  font-size: var(--textRg);
  margin: 0 0 var(--spaceSm);
}

.ProductItem-title a {
  color: inherit;
  text-decoration: none;
}

.ProductItem-title a:hover, .ProductItem-title a:active, .ProductItem-title a:focus {
  text-decoration: underline;
}

.ProductItem-perex {
  font-size: var(--textSm);
  margin-bottom: var(--spaceMd);
  font-weight: 400;
}

.ProductItem-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
}

@media (max-width: 36rem) {
  .ProductItem-box {
    flex-direction: column;
    align-items: unset;
  }
}

.ProductItem-priceWrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  line-height: 1.24;
  white-space: nowrap;
  padding-right: var(--spaceXs);
}

@media (max-width: 36rem) {
  .ProductItem-priceWrap {
    margin-bottom: var(--spaceSm);
  }
}

.ProductItem-price {
  font-weight: 600;
  font-size: var(--textSm);
}

.ProductItem-originPrice {
  text-decoration: line-through;
}

.ProductItem-originPrice, .ProductItem-noVatPrice {
  color: var(--colorTextSubtle);
  font-size: var(--textXs);
}

/*# sourceMappingURL=product-item.min.css.map */
