.swiper-slide .product-item-wrapper, .product-item .product-item-wrapper {
  border: 1px solid #ccc;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.swiper-slide .product-item-wrapper .product-item-image, .product-item .product-item-wrapper .product-item-image {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 0;
}
.swiper-slide .product-item-wrapper .product-item-image .image-wrapper, .product-item .product-item-wrapper .product-item-image .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-actions, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-actions {
  position: absolute;
  display: flex;
  flex-direction: column;
}
.swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-favorite, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-favorite {
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid var(--color-link);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: white;
}
.swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-favorite:after, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-favorite:after {
  position: absolute;
  content: "";
  background: url("/local/images/heart_empty.svg");
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-favorite:hover:after, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-favorite:hover:after {
  background: url("/local/images/heart_empty_hover.svg");
}
.swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-favorite.active:after, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-favorite.active:after {
  background: url("/local/images/heart.svg");
}
.swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-favorite.active:hover:after, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-favorite.active:hover:after {
  background: url("/local/images/heart_hover.svg");
}
.swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-compare, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-compare {
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid var(--color-link);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: white;
}
.swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-compare:after, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-compare:after {
  position: absolute;
  content: "";
  background: url("/local/images/arrows.svg");
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-compare:hover, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-compare:hover {
  border: 1px solid var(--color-link-active);
}
.swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-compare:hover:after, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-compare:hover:after {
  background: url("/local/images/arrows_active.svg");
}
.swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-compare.active:after, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-compare.active:after {
  background: url("/local/images/arrows_active.svg");
}
.swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-compare.active:hover, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-compare.active:hover {
  border: 1px solid var(--color-link-active);
}
.swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-compare.active:hover:after, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-compare.active:hover:after {
  background: url("/local/images/arrows_active.svg");
}
.swiper-slide .product-item-wrapper .product-item-image .image-wrapper .slides-specials, .product-item .product-item-wrapper .product-item-image .image-wrapper .slides-specials {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.swiper-slide .product-item-wrapper .product-item-image .image-wrapper .slides-specials .sp-icon, .product-item .product-item-wrapper .product-item-image .image-wrapper .slides-specials .sp-icon {
  font-family: "Montserrat Bold";
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}
.swiper-slide .product-item-wrapper .product-item-image .image-wrapper .slides-specials .sp-icon.sp-hit, .product-item .product-item-wrapper .product-item-image .image-wrapper .slides-specials .sp-icon.sp-hit {
  background: red;
}
.swiper-slide .product-item-wrapper .product-item-image .image-wrapper .slides-specials .sp-icon.sp-new, .product-item .product-item-wrapper .product-item-image .image-wrapper .slides-specials .sp-icon.sp-new {
  background: blue;
}
.swiper-slide .product-item-wrapper .product-item-image .image-wrapper .slides-specials .sp-icon.sp-sale, .product-item .product-item-wrapper .product-item-image .image-wrapper .slides-specials .sp-icon.sp-sale {
  background: green;
}
.swiper-slide .product-item-wrapper .product-item-image .image-wrapper img, .product-item .product-item-wrapper .product-item-image .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-slide .product-item-wrapper .product-item-image .image-wrapper img.image-item, .product-item .product-item-wrapper .product-item-image .image-wrapper img.image-item {
  display: block;
}
.swiper-slide .product-item-wrapper .product-item-image .image-wrapper img.image-item:not(.active), .product-item .product-item-wrapper .product-item-image .image-wrapper img.image-item:not(.active) {
  display: none;
}
.swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-brand, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-brand {
  position: absolute;
  z-index: 2;
}
.swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-brand .text-value, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-brand .text-value {
  height: inherit;
  position: relative;
  display: block;
  background: rgba(255, 255, 255, 0.8901960784);
}
.swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-brand .text-value img, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-brand .text-value img {
  object-fit: cover;
}
.swiper-slide .product-item-wrapper .product-name, .product-item .product-item-wrapper .product-name {
  font-weight: 600;
  text-decoration: none;
  color: var(--color-link);
}
.swiper-slide .product-item-wrapper .product-name:hover, .product-item .product-item-wrapper .product-name:hover {
  color: var(--color-link-hover);
}
.swiper-slide .product-item-wrapper .text-title, .product-item .product-item-wrapper .text-title {
  color: #333333;
}
.swiper-slide .product-item-wrapper .product-article, .product-item .product-item-wrapper .product-article {
  margin-top: auto;
}
.swiper-slide .product-item-wrapper .product-props .text-value, .product-item .product-item-wrapper .product-props .text-value {
  position: relative;
}
.swiper-slide .product-item-wrapper .product-props .text-value img, .product-item .product-item-wrapper .product-props .text-value img {
  height: 100%;
  object-fit: cover;
}
.swiper-slide .product-item-wrapper .product-props a, .product-item .product-item-wrapper .product-props a {
  color: var(--color-link);
  text-decoration: none;
}
.swiper-slide .product-item-wrapper .product-props a:hover, .product-item .product-item-wrapper .product-props a:hover {
  color: var(--color-link-hover);
}
.swiper-slide .product-item-wrapper .product-price, .product-item .product-item-wrapper .product-price {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 5px;
  margin-bottom: 10px;
}
.swiper-slide .product-item-wrapper .product-price .price-block, .product-item .product-item-wrapper .product-price .price-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.swiper-slide .product-item-wrapper .product-price .price-block .old-price, .product-item .product-item-wrapper .product-price .price-block .old-price {
  color: #ccc;
  font-weight: 600;
}
.swiper-slide .product-item-wrapper .product-price .price-block .new-price, .product-item .product-item-wrapper .product-price .price-block .new-price {
  color: black;
  font-weight: 600;
}
.swiper-slide .product-item-wrapper .buy-block, .product-item .product-item-wrapper .buy-block {
  display: flex;
}

@media screen and (min-width: 1400px) {
  .swiper-slide .product-item-wrapper, .product-item .product-item-wrapper {
    border-radius: 10px;
    padding: 10px;
    height: calc(100% - 22px);
  }
  .swiper-slide .product-item-wrapper .product-item-image, .product-item .product-item-wrapper .product-item-image {
    padding-top: 60%;
    border-radius: 10px;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-actions, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-actions {
    top: 10px;
    gap: 10px;
    left: 10px;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-favorite, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-favorite {
    width: 20px;
    height: 20px;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-favorite:after, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-favorite:after {
    height: 15px;
    width: 15px;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-compare, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-compare {
    width: 20px;
    height: 20px;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-compare:after, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-compare:after {
    height: 10px;
    width: 10px;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .slides-specials, .product-item .product-item-wrapper .product-item-image .image-wrapper .slides-specials {
    top: 10px;
    gap: 5px;
    right: 0;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .slides-specials .sp-icon, .product-item .product-item-wrapper .product-item-image .image-wrapper .slides-specials .sp-icon {
    font-size: 12px;
    padding: 3px 5px;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-brand, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-brand {
    max-height: 40px;
    bottom: 20px;
    left: 10px;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-brand .text-value, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-brand .text-value {
    padding: 5px;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-brand .text-value img, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-brand .text-value img {
    max-height: 40px;
  }
  .swiper-slide .product-item-wrapper .product-name, .product-item .product-item-wrapper .product-name {
    margin-top: 10px;
    font-size: 1.2em;
    margin-bottom: 5px;
  }
  .swiper-slide .product-item-wrapper .text-title, .product-item .product-item-wrapper .text-title {
    font-size: 0.8em;
  }
  .swiper-slide .product-item-wrapper .product-props .text-value, .product-item .product-item-wrapper .product-props .text-value {
    max-height: 40px;
  }
  .swiper-slide .product-item-wrapper .product-price, .product-item .product-item-wrapper .product-price {
    margin-top: 15px;
  }
  .swiper-slide .product-item-wrapper .product-price .old-price, .product-item .product-item-wrapper .product-price .old-price {
    font-size: 0.9em;
  }
  .swiper-slide .product-item-wrapper .product-price .new-price, .product-item .product-item-wrapper .product-price .new-price {
    font-size: 1.8em;
  }
  .swiper-slide .product-item-wrapper .product-price .price-amount, .product-item .product-item-wrapper .product-price .price-amount {
    font-size: 13px;
  }
  .swiper-slide .product-item-wrapper .buy-block, .product-item .product-item-wrapper .buy-block {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
@media screen and (max-width: 1399px) {
  .swiper-slide .product-item-wrapper, .product-item .product-item-wrapper {
    border-radius: 10px;
    padding: 10px;
    height: calc(100% - 22px);
  }
  .swiper-slide .product-item-wrapper .product-item-image, .product-item .product-item-wrapper .product-item-image {
    padding-top: 80%;
    border-radius: 10px;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-actions, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-actions {
    top: 10px;
    gap: 10px;
    left: 10px;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-favorite, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-favorite {
    width: 20px;
    height: 20px;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-favorite:after, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-favorite:after {
    height: 15px;
    width: 15px;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-compare, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-compare {
    width: 20px;
    height: 20px;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-compare:after, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-compare:after {
    height: 10px;
    width: 10px;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .slides-specials, .product-item .product-item-wrapper .product-item-image .image-wrapper .slides-specials {
    top: 10px;
    gap: 5px;
    right: 0;
    padding: 0;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .slides-specials .sp-icon, .product-item .product-item-wrapper .product-item-image .image-wrapper .slides-specials .sp-icon {
    font-size: 12px;
    padding: 3px 5px;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-brand, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-brand {
    max-height: 30px;
    bottom: 10px;
    left: 10px;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-brand .text-value, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-brand .text-value {
    padding: 0;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-brand .text-value img, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-brand .text-value img {
    max-height: 30px;
    opacity: 0.7;
  }
  .swiper-slide .product-item-wrapper .product-name, .product-item .product-item-wrapper .product-name {
    margin-top: 10px;
    font-size: 1.2em;
    margin-bottom: 5px;
  }
  .swiper-slide .product-item-wrapper .text-title, .product-item .product-item-wrapper .text-title {
    font-size: 0.8em;
  }
  .swiper-slide .product-item-wrapper .product-props .text-value, .product-item .product-item-wrapper .product-props .text-value {
    max-height: 40px;
  }
  .swiper-slide .product-item-wrapper .product-price .old-price, .product-item .product-item-wrapper .product-price .old-price {
    margin-top: 15px;
    font-size: 0.9em;
  }
  .swiper-slide .product-item-wrapper .product-price .new-price, .product-item .product-item-wrapper .product-price .new-price {
    font-size: 1.8em;
  }
  .swiper-slide .product-item-wrapper .product-price .price-amount, .product-item .product-item-wrapper .product-price .price-amount {
    font-size: 13px;
  }
  .swiper-slide .product-item-wrapper .buy-block, .product-item .product-item-wrapper .buy-block {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
@media screen and (max-width: 1199px) {
  .swiper-slide .product-item-wrapper, .product-item .product-item-wrapper {
    border-radius: 10px;
    padding: 10px;
    height: calc(100% - 22px);
  }
  .swiper-slide .product-item-wrapper .product-item-image, .product-item .product-item-wrapper .product-item-image {
    padding-top: 80%;
    border-radius: 10px;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-actions, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-actions {
    top: 10px;
    gap: 10px;
    left: 10px;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-favorite, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-favorite {
    width: 20px;
    height: 20px;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-favorite:after, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-favorite:after {
    height: 15px;
    width: 15px;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-compare, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-compare {
    width: 20px;
    height: 20px;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-compare:after, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-compare:after {
    height: 10px;
    width: 10px;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .slides-specials, .product-item .product-item-wrapper .product-item-image .image-wrapper .slides-specials {
    top: 10px;
    gap: 5px;
    right: 0;
    padding: 0;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .slides-specials .sp-icon, .product-item .product-item-wrapper .product-item-image .image-wrapper .slides-specials .sp-icon {
    font-size: 11px;
    padding: 3px 5px;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-brand, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-brand {
    max-height: 30px;
    bottom: 10px;
    left: 10px;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-brand .text-value, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-brand .text-value {
    padding: 5px;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-brand .text-value img, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-brand .text-value img {
    max-height: 30px;
  }
  .swiper-slide .product-item-wrapper .product-name, .product-item .product-item-wrapper .product-name {
    margin-top: 10px;
    font-size: 15px;
    margin-bottom: 5px;
  }
  .swiper-slide .product-item-wrapper .text-title, .product-item .product-item-wrapper .text-title {
    font-size: 0.8em;
  }
  .swiper-slide .product-item-wrapper .product-props .text-value, .product-item .product-item-wrapper .product-props .text-value {
    max-height: 40px;
  }
  .swiper-slide .product-item-wrapper .product-price .old-price, .product-item .product-item-wrapper .product-price .old-price {
    font-size: 0.9em;
  }
  .swiper-slide .product-item-wrapper .product-price .new-price, .product-item .product-item-wrapper .product-price .new-price {
    font-size: 24px;
  }
  .swiper-slide .product-item-wrapper .btn, .product-item .product-item-wrapper .btn {
    padding: 4px 10px;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide .product-item-wrapper, .product-item .product-item-wrapper {
    border-radius: 10px;
    padding: 10px;
    height: calc(100% - 22px);
  }
  .swiper-slide .product-item-wrapper .product-item-image, .product-item .product-item-wrapper .product-item-image {
    padding-top: 80%;
    border-radius: 10px;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-actions, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-actions {
    top: 5px;
    gap: 5px;
    left: 5px;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-favorite, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-favorite {
    width: 15px;
    height: 15px;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-favorite:after, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-favorite:after {
    height: 10px;
    width: 10px;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-compare, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-compare {
    width: 15px;
    height: 15px;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-compare:after, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-actions .to-compare:after {
    height: 7px;
    width: 7px;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .slides-specials, .product-item .product-item-wrapper .product-item-image .image-wrapper .slides-specials {
    top: 5px;
    gap: 5px;
    right: 0;
    padding: 3px 5px;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .slides-specials .sp-icon, .product-item .product-item-wrapper .product-item-image .image-wrapper .slides-specials .sp-icon {
    font-size: 8px;
    padding: 3px 5px;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-brand, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-brand {
    max-height: 20px;
    width: 60%;
    bottom: 5px;
    left: 5px;
    padding: 0;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-brand .text-value, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-brand .text-value {
    max-height: 20px;
  }
  .swiper-slide .product-item-wrapper .product-item-image .image-wrapper .product-brand .text-value img, .product-item .product-item-wrapper .product-item-image .image-wrapper .product-brand .text-value img {
    max-height: 20px;
    max-width: 100%;
    object-fit: cover;
  }
  .swiper-slide .product-item-wrapper .product-name, .product-item .product-item-wrapper .product-name {
    margin-top: 5px;
    font-size: 10px;
    margin-bottom: 5px;
  }
  .swiper-slide .product-item-wrapper .text-title, .product-item .product-item-wrapper .text-title {
    font-size: 9px;
  }
  .swiper-slide .product-item-wrapper .product-article, .product-item .product-item-wrapper .product-article {
    line-height: 1;
  }
  .swiper-slide .product-item-wrapper .product-article .text-title, .product-item .product-item-wrapper .product-article .text-title {
    font-size: 8px;
  }
  .swiper-slide .product-item-wrapper .product-article .text-value, .product-item .product-item-wrapper .product-article .text-value {
    font-size: 9px;
  }
  .swiper-slide .product-item-wrapper .product-props, .product-item .product-item-wrapper .product-props {
    line-height: 1;
  }
  .swiper-slide .product-item-wrapper .product-props .text-title, .product-item .product-item-wrapper .product-props .text-title {
    font-size: 8px;
  }
  .swiper-slide .product-item-wrapper .product-props .text-value, .product-item .product-item-wrapper .product-props .text-value {
    max-height: 40px;
    font-size: 9px;
  }
  .swiper-slide .product-item-wrapper .product-props a, .product-item .product-item-wrapper .product-props a {
    font-size: 9px;
  }
  .swiper-slide .product-item-wrapper .product-price, .product-item .product-item-wrapper .product-price {
    margin-top: 10px;
  }
  .swiper-slide .product-item-wrapper .product-price .old-price, .product-item .product-item-wrapper .product-price .old-price {
    font-size: 8px;
  }
  .swiper-slide .product-item-wrapper .product-price .new-price, .product-item .product-item-wrapper .product-price .new-price {
    font-size: 13px;
  }
  .swiper-slide .product-item-wrapper .product-price .price-amount, .product-item .product-item-wrapper .product-price .price-amount {
    font-size: 9px;
  }
  .swiper-slide .product-item-wrapper .buy-block, .product-item .product-item-wrapper .buy-block {
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }
  .swiper-slide .product-item-wrapper .buy-block .btn, .product-item .product-item-wrapper .buy-block .btn {
    width: calc(100% - 20px);
    text-align: center;
    font-size: 10px;
    justify-content: center;
  }
}

/*# sourceMappingURL=products.css.map */
