.ProductItem {
  position: relative;
  display: flex;
  flex-flow: column;
  border-radius: var(--sizeButtonBorderRadius);
  border: 1px solid var(--colorOutlines);
  min-width: 0;
  font-size: var(--textSm);
}

@media (min-width: 48.01rem) {
  .ProductItem {
    font-size: unset;
  }
}

.ProductItem-image {
  position: static;
  display: flex;
  justify-content: center;
  text-align: center;
  align-self: center;
  overflow: hidden;
}

.ProductItem-image picture {
  max-height: 30rem;
}

@media (min-width: 64.01rem) {
  .ProductItem-image {
    position: relative;
  }
}

.ProductItem-hover {
  position: absolute;
  top: auto;
  right: 1rem;
  bottom: 1rem;
  left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  opacity: 1;
  z-index: var(--layerPageZIndex);
  transition: var(--animationBase);
}

@media (min-width: 64.01rem) {
  .ProductItem-hover {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: var(--sizeButtonBorderRadius) var(--sizeButtonBorderRadius) 0 0;
    border: 1px solid var(--colorBrand);
    opacity: 0;
    z-index: var(--layerNullZIndex);
  }
}

.ProductItem-hover:hover {
  opacity: 1;
}

.ProductItem-hoverBtn {
  display: flex;
  align-items: center;
  gap: var(--spaceXs);
  padding: var(--spaceRg) var(--spaceLg);
  color: var(--colorWhite);
  background: var(--colorBrand);
  font-size: var(--textSm);
  text-transform: uppercase;
  font-weight: 600;
  transition: var(--animationBase);
}

.ProductItem-hoverBtn:hover {
  background: hsl(var(--colorBrand-h), calc(var(--colorBrand-s) * 1%), calc(var(--colorBrand-l) * 0.8 * 1%));
}

.ProductItem-tags {
  position: absolute;
  left: var(--spaceRg);
  top: var(--spaceRg);
  pointer-events: none;
}

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

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

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

.ProductItem-title {
  margin-bottom: 0;
  font-size: 1.5rem;
}

.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);
}

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

@media (min-width: 36.01rem) {
  .ProductItem-box {
    flex-direction: row;
    align-items: flex-end;
  }
}

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

@media (min-width: 36.01rem) {
  .ProductItem-priceWrap {
    margin-bottom: 0;
  }
}

.ProductItem-price {
  font-weight: 800;
  font-size: var(--textMd);
}

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

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

.ProductItem-info {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  padding: var(--spaceRg);
  margin-bottom: 1.5rem;
}

@media (min-width: 48.01rem) {
  .ProductItem-info {
    margin-bottom: unset;
  }
}

.ProductItem-infoGeneral {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ProductItem-infoParameters {
  position: absolute;
  background: var(--colorBrand);
  top: -5.5rem;
  right: 0;
  color: var(--colorWhite);
}

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