.section-product-block {
  display: block;
  gap: 15px;
  margin-bottom: 30px;
}
.section-product-block__footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 30px;
}

.section-product__container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.section-product__title {
  font-size: 1.9em;
  line-height: 1.3;
  text-align: center;
  font-weight: 500;
  margin-top: 15px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.section-product__footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 30px;
}
.section-product__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.section-product__list .b-catalog__item {
  width: 100%;
  padding: 0;
  margin-bottom: 0;
  margin-right: 0;
}
.section-product__list .b-catalog__item .b-item__label-container {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2px;
  padding: 5px;
}
.section-product__list .b-catalog__item .b-item__label-container .b-item__label {
  padding: 2px 7px 2px;
  margin: 0 2px 4px;
  letter-spacing: normal;
  position: relative;
  display: inline-block;
  color: #fff;
  width: auto;
  font-size: 0.8em;
  line-height: 1.692em;
  border-radius: 2px;
}
.section-product__list .b-catalog__item.hidden--desktop {
  display: none;
}
@media screen and (max-width: 768px) {
  .section-product__list .b-catalog__item.hidden--desktop {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .section-product__list .b-catalog__item.hidden--mobile {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .section-product__list {
    grid-template-columns: 100%;
  }
}
.section-product .btn.btn-show-more.hidden--desktop {
  display: none;
}
@media screen and (max-width: 768px) {
  .section-product .btn.btn-show-more.hidden--desktop {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .section-product .btn.btn-show-more.hidden--mobile.hidden--desktop {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .section-product .btn.btn-show-more.hidden--mobile {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */