<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/*
.product-list {
  display: grid;
  grid-gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  justify-content: center;
}


@media (max-width: 767.98px) {
  .product-list {
    grid-gap: 16px;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }

  .product{font-size: 85%;}
  .product-price{font-size: 110%;}

}

.product{
  width: 100%;
  word-break: break-word;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.product hr{border-width: 4px;}



.product .media-wrapper{
  position: relative;
  width: 100%;
  overflow: hidden;
}

 .product .media-wrapper{
  height: 0;
  padding-bottom: 120%;
}

.product.hit::before{
  content: 'С…РёС‚';
  position: absolute;
  z-index: 1;
  top: -10px;
  left: -6px;
  background: #000;
  color: #fff;
  padding: 1px 8px;
  border-radius: 50%;
  transform: rotate(-20deg);
  -webkit-transform: rotate(-20deg);
}

.img{
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  height: 100%;
  width: 100%;
  height: auto;
  width: auto;
  max-width: 200%;
  max-height: 100%;
  margin: 0 auto;
  display: block;
}

.photo{
  width: 100%;
  margin-bottom: 10px;
  height: 250px;
  justify-content: center;
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .photo{height: 200px;}
}


.banner{background: #fff;border-radius: 10px;}


#filters{
  max-width:250px;
  width:100%;
}

.product.disabled{
  cursor: default;
}
.product.disabled img{
  opacity: .5;
  filter: blur(1px);
}

.product.disabled .desc{
  opacity: .3;
}
*/</pre></body></html>