

/* Start:/local/templates/teplocom/components/bitrix/catalog.section.list/trn-aside/style.css?17685715463232*/
.catalog-page {
  display: grid;
  grid-template-columns: 300px 1fr;
  grid-gap: 40px 50px;
  gap: 40px 50px;
  margin-bottom: 100px;
  margin-bottom: var(--section-margin);
}
@media (max-width: 980px) {
  .catalog-page {
    grid-template-columns: 1fr;
    grid-gap: 25px 50px;
    gap: 25px 50px;
  }
}

.catalog-page__header {
  grid-column: 1/-1;
  padding: 0 15px;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  grid-gap: 30px;
  gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10px;
}

.products-aside {
  padding: 0 15px 30px 15px;
  box-sizing: border-box;
  width: 100%;
}
@media all and (max-width: 980px) {
  .products-aside {
    display: none;
  }
}

.products-aside__title {
  font-size: var(--font-size-md);
  font-weight: 900;
  margin-bottom: 30px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 15px;
}
.products-aside__title::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #D7D7D7;
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
}

.products-aside__sub-list {
  padding-left: 20px;
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.products-aside__list-item {
  padding: 25px 0;
  box-sizing: border-box;
  position: relative;
  padding-right: 40px;
}
.products-aside__list-item::after {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #D7D7D7;
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
}
.products-aside__list-item:last-child::after {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #D7D7D7;
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
}
.products-aside__list-item.expanded .products-aside__expand {
  transform: rotate(-90deg);
  filter: brightness(1);
}
.products-aside__list-item.expanded .products-aside__sub-list {
  max-height: 1000px;
}
.products-aside__list-item.expanded .products-aside__link {
  color: var(--color-accent);
}

.products-aside__sub-list-item {
  padding: 15px 0;
  box-sizing: border-box;
  position: relative;
  padding-right: 40px;
  opacity: 0.5;
  transition: 0.3s;
}
.products-aside__sub-list-item:first-child {
  margin-top: 20px;
}
.products-aside__sub-list-item:hover {
  opacity: 1;
}

.products-aside__link {
  text-decoration: none;
  color: var(--color-font-main);
  font-size: var(--font-size-main);
  font-family: var(--font-main);
  font-weight: bold;
}
.products-aside__link:hover {
  text-decoration: underline;
}

.products-aside__sub-link {
  text-decoration: none;
  color: var(--color-font-main);
  font-size: var(--font-size-main);
  font-family: var(--font-main);
  font-weight: bold;
}
.products-aside__sub-link:hover {
  text-decoration: underline;
}

.products-aside__expand {
  border: none;
  background-color: transparent;
  background-image: url("/local/templates/teplocom/images/icons/arrow.svg");
  background-size: 8px;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 15px;
  right: -10px;
  transform: rotate(90deg);
  width: 40px;
  height: 40px;
  cursor: pointer;
  filter: brightness(0);
  transition: 0.3s;
}

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

/* End */


/* Start:/local/templates/teplocom/components/bitrix/catalog.section.list/sectionAsProduct/style.css?17685715467603*/
:root {
  --color-default: #ffffff;
  --color-second: #161616;
  --color-accent: #F38A00;
  --color-accent--light: #FFA81E;
  --color-font-main: #161616;
  --color-font-second: #FFFFFF;
  --color-font-third: #A7A8A9;
  --color-bg: #EFEFEF;
  --color-dark: #3C3F44;
  --color-bg-dark: #5c5c5c;
  --color-divider: #D7D7D7;
  --font-main: "Circe";
  --font-size-xs: 10px;
  --font-size-sm: 14px;
  --font-size-main: 16px;
  --font-size-smd: 18px;
  --font-size-md: 20px;
  --font-size-lmd: 32px;
  --font-size-lg: 48px;
  --weight-font-main: 400;
  --section-margin: 100px;
  --section-margin-small: 20px;
  --index: calc(1vh + 1vw);
}

@media (max-width: 768px) {
  :root {
    --font-size-smd: 16px;
    --font-size-md: 18px;
    --font-size-lmd: 28px;
    --font-size-lg: 43px;
    --section-margin: 80px;
  }
}
@media (max-width: 576px) {
  :root {
    --font-size-md: 16px;
    --font-size-lmd: 20px;
    --font-size-lg: 22px;
    --section-margin: 50px;
    --section-margin-small: 10px;
  }
}
.categories-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  align-content: flex-start;
}

.categories-list__category {
  display: block;
  padding: 25px 15px;
  box-sizing: border-box;
  text-decoration: none;
  background-color: var(--color-default);
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: max-content 1fr;
  gap: 25px;
  position: relative;
  overflow: hidden;
}
.categories-list__category:after {
  content: "";
  display: block;
  width: 110%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -5%;
  background-color: rgba(0, 0, 0, 0.063);
  transform: translateY(120%);
  transition: 0.3s;
}
.categories-list__category:hover:after {
  transform: translateY(0);
}

.categories-list__name {
  text-align: center;
  font-weight: bold;
  line-height: 120%;
  font-family: var(--font-main);
  font-size: var(--font-size-md);
  color: var(--color-font-main);
}

.categories-list__img-wrapper {
  width: 100%;
}

.categories-list__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 1500px) {
  .categories-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 1270px) {
  .categories-list {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}
@media (max-width: 576px) {
  .categories-list {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .categories-list__category {
    padding: 15px 5px;
  }
}
.aquatect-cont {
  background: #F6F8FA;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 40px;
}
@media (min-width: 1440px) {
  .aquatect-cont {
    width: 90%;
    padding: 45px 0 45px 110px;
  }
}
@media (min-width: 768px) and (max-width: 1440px) {
  .aquatect-cont {
    width: 100%;
    padding: 45px 0 45px 110px;
  }
}
@media (max-width: 768px) {
  .aquatect-cont {
    padding: 0 20px 20px;
    width: 100%;
  }
}
.aquatect-cont img.aqua {
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 0;
}
@media (max-width: 768px) {
  .aquatect-cont img.aqua {
    opacity: 0.5;
  }
}
.aquatect-cont img.pr {
  max-width: 580px;
  position: absolute;
  z-index: 1;
  top: -17px;
  right: 6%;
  transform: rotate(-4deg);
}
@media (min-width: 1440px) {
  .aquatect-cont img.pr {
    height: 110%;
    right: 6%;
  }
}
@media (min-width: 1024px) and (max-width: 1440px) {
  .aquatect-cont img.pr {
    height: 100%;
    right: 0;
  }
}
@media (max-width: 1024px) {
  .aquatect-cont img.pr {
    display: none;
  }
}
.aquatect-cont .stand-text {
  border-radius: 7px;
  background: #6e6e6e;
  font-family: Circe;
  font-weight: 700;
  line-height: 135%;
  text-transform: uppercase;
  color: #fff;
  z-index: 2;
  width: max-content;
}
@media (min-width: 1440px) {
  .aquatect-cont .stand-text {
    transform: translate(-39%, -50%) rotate(-90deg);
    position: absolute;
    top: 50%;
    padding: 34px 22px 22px;
    left: 0;
    font-size: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1440px) {
  .aquatect-cont .stand-text {
    transform: translate(-39%, -50%) rotate(-90deg);
    position: absolute;
    top: 50%;
    padding: 25px 22px 15px;
    left: 0;
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .aquatect-cont .stand-text {
    padding: 25px 20px 14px;
    position: relative;
    margin-top: -5px;
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.aquatect-cont .text-cont {
  display: flex;
  flex-direction: column;
  z-index: 3;
  position: relative;
}
.aquatect-cont .text-cont .head-text {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 43px;
}
@media (min-width: 768px) {
  .aquatect-cont .text-cont .head-text {
    width: min-content;
  }
}
@media (max-width: 768px) {
  .aquatect-cont .text-cont .head-text {
    max-width: 100%;
    box-sizing: border-box;
  }
}
.aquatect-cont .text-cont .head-text span {
  font-family: Circe;
  font-weight: 700;
  line-height: 135%;
  text-transform: uppercase;
  color: #6e6e6e;
}
@media (min-width: 1440px) {
  .aquatect-cont .text-cont .head-text span {
    font-size: 28px;
    width: max-content;
  }
}
@media (min-width: 768px) and (max-width: 1440px) {
  .aquatect-cont .text-cont .head-text span {
    font-size: 20px;
    width: max-content;
  }
}
@media (max-width: 768px) {
  .aquatect-cont .text-cont .head-text span {
    font-size: 20px;
  }
}
.aquatect-cont .text-cont .head-text img {
  max-width: 100%;
}
.aquatect-cont .text-cont .desc-cont {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}
.aquatect-cont .text-cont .desc-cont .time {
  font-family: Circe;
  font-weight: 800;
  line-height: 135%;
  text-transform: uppercase;
  color: #ff9700;
}
@media (min-width: 1440px) {
  .aquatect-cont .text-cont .desc-cont .time {
    font-size: 34px;
  }
}
@media (min-width: 768px) and (max-width: 1440px) {
  .aquatect-cont .text-cont .desc-cont .time {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .aquatect-cont .text-cont .desc-cont .time {
    font-size: 24px;
  }
}
.aquatect-cont .text-cont .desc-cont .place {
  font-family: Circe;
  font-weight: 400;
  line-height: 135%;
  color: #6e6e6e;
  margin-top: -8px;
}
@media (min-width: 1440px) {
  .aquatect-cont .text-cont .desc-cont .place {
    font-size: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1440px) {
  .aquatect-cont .text-cont .desc-cont .place {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .aquatect-cont .text-cont .desc-cont .place {
    font-size: 18px;
  }
}
.aquatect-cont .text-cont a.btn {
  text-decoration: none;
  padding: 4px 23px 2px;
  background: #ff9700;
  border-radius: 7px;
  display: flex;
  align-items: center;
  font-family: Circe;
  font-weight: 400;
  line-height: 135%;
  text-transform: uppercase;
  color: #fff;
}
@media (min-width: 1440px) {
  .aquatect-cont .text-cont a.btn {
    font-size: 28px;
    width: max-content;
    gap: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1440px) {
  .aquatect-cont .text-cont a.btn {
    font-size: 20px;
    gap: 25px;
    width: max-content;
  }
}
@media (max-width: 768px) {
  .aquatect-cont .text-cont a.btn {
    font-size: 18px;
    gap: 20px;
    max-width: max-content;
  }
}
@media (min-width: 1440px) {
  .aquatect-cont .text-cont a.btn img {
    width: 26px;
    height: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1440px) {
  .aquatect-cont .text-cont a.btn img {
    width: 22px;
    height: 26px;
  }
}
@media (max-width: 768px) {
  .aquatect-cont .text-cont a.btn img {
    width: 20px;
    height: 20px;
  }
}

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

/* End */


/* Start:/local/components/trn/section.product.card/templates/.default/style.css?176857154812784*/
:root {
  --color-default: #ffffff;
  --color-second: #161616;
  --color-accent: #F38A00;
  --color-accent--light: #FFA81E;
  --color-font-main: #161616;
  --color-font-second: #FFFFFF;
  --color-font-third: #A7A8A9;
  --color-bg: #EFEFEF;
  --color-dark: #3C3F44;
  --color-bg-dark: #5c5c5c;
  --color-divider: #D7D7D7;
  --font-main: "Circe";
  --font-size-xs: 10px;
  --font-size-sm: 14px;
  --font-size-main: 16px;
  --font-size-smd: 18px;
  --font-size-md: 20px;
  --font-size-lmd: 32px;
  --font-size-lg: 48px;
  --weight-font-main: 400;
  --section-margin: 100px;
  --section-margin-small: 20px;
  --index: calc(1vh + 1vw);
}

@media (max-width: 768px) {
  :root {
    --font-size-smd: 16px;
    --font-size-md: 18px;
    --font-size-lmd: 28px;
    --font-size-lg: 43px;
    --section-margin: 80px;
  }
}
@media (max-width: 576px) {
  :root {
    --font-size-md: 16px;
    --font-size-lmd: 20px;
    --font-size-lg: 22px;
    --section-margin: 50px;
    --section-margin-small: 10px;
  }
}
.products-list {
  width: 100%;
}

.products-list__list {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  padding-bottom: 20px;
  padding-top: 20px;
}

@media (max-width: 1500px) {
  .products-list__list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 1270px) {
  .products-list__list {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}
@media (max-width: 1000px) {
  .products-list__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .products-list__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .products-list__list {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .products-list__product {
    grid-template-rows: 200px 1fr max-content;
  }
}
.product-card {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 300px max-content 1fr max-content;
  overflow: hidden;
  box-sizing: border-box;
  transition: 0.3s;
  background-color: #ffffff;
  background-color: var(--color-default);
  position: relative;
  padding: 20px;
  height: 100%;
}
@media (max-width: 576px) {
  .product-card {
    padding: 10px;
  }
}
.product-card:after {
  content: "";
  display: block;
  width: 110%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -5%;
  background-color: rgba(0, 0, 0, 0.063);
  transform: translateY(120%);
  transition: transform 0.3s;
  pointer-events: none;
  z-index: 10;
}
.product-card:hover:after {
  transform: translateY(0);
}
.product-card.trn-product-card-modified {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px #999C9D solid;
  border-radius: 7px;
}
.product-card.trn-product-card-modified:hover {
  box-shadow: 0 0 3px #333;
}
.product-card.trn-product-card-modified:hover:after {
  display: none;
}
.product-card.trn-product-card-modified .product-card__tags {
  position: static;
  order: 2;
  margin-top: -25px;
}
@media all and (max-width: 768px) {
  .product-card.trn-product-card-modified .product-card__tags {
    margin-bottom: 5px;
  }
}
.product-card.trn-product-card-modified .product-card__tags .products-tags__tag {
  background-color: #6d6e71;
  transform: none;
  height: auto;
  padding: 5px 9px;
  border-radius: 3px;
  margin-bottom: 0;
}
.product-card.trn-product-card-modified .product-card__tags .products-tags__tag .products-tags__tag-content {
  margin-top: 3px;
  transform: none;
}
.product-card.trn-product-card-modified .product-card__news {
  position: absolute;
  top: 5px;
  right: 5px;
}
.product-card.trn-product-card-modified .product-card__news .products-tags__new {
  background-color: var(--color-accent);
  transform: none;
  height: auto;
  padding: 5px 9px;
  border-radius: 3px;
  margin-right: 0;
  margin-bottom: 0;
}
.product-card.trn-product-card-modified .product-card__news .products-tags__new .products-tags__tag-content {
  margin-top: 3px;
  transform: none;
}
.product-card.trn-product-card-modified .product-card__img-wrapper {
  order: 1;
  aspect-ratio: 1/1;
  height: auto;
  margin-bottom: 25px;
}
.product-card.trn-product-card-modified .product-card__item-number {
  order: 3;
  min-height: 60px;
  margin-bottom: 4px;
}
.product-card.trn-product-card-modified .product-card__name {
  color: #999C9D;
  order: 4;
}
.product-card.trn-product-card-modified .product-card__info {
  order: 5;
}
.product-card.trn-product-card-modified .product-card__button {
  border-radius: 3px;
  border: 2px var(--color-accent) solid;
  background-color: transparent;
  background-image: url("/local/components/trn/section.product.card/templates/.default/images/arrow-2_orange.svg");
  background-position: center;
  background-size: 30px;
  background-repeat: no-repeat;
  transition: all ease-in-out 0.3s;
}
.product-card.trn-product-card-modified .product-card__button img {
  display: none;
}
.product-card.trn-product-card-modified .product-card__button:hover {
  background-color: var(--color-accent);
  background-image: url("/local/components/trn/section.product.card/templates/.default/images/arrow-2.svg");
}
@media (max-width: 768px) {
  .product-card.trn-product-card-modified .product-card__tags {
    margin-top: -25px;
    margin-bottom: 5px;
  }
  .product-card.trn-product-card-modified .product-card__tags .products-tags__tag {
    font-weight: normal;
    font-size: 12px;
    padding: 5px 8px;
    margin-right: 2px;
  }
  .product-card.trn-product-card-modified .product-card__news .products-tags__new {
    font-weight: normal;
    font-size: 12px;
  }
  .product-card.trn-product-card-modified .product-card__name {
    min-height: 50px;
  }
}
@media (min-width: 768px) {
  .product-card.trn-product-card-modified {
    border-radius: 3px;
  }
}

.product-card__name,
.product-card__item-number {
  font-weight: bold;
  font-size: var(--font-size-md);
  color: var(--color-font-main);
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  line-height: 120%;
}

.product-card__name {
  min-height: 70px;
}

.product-card__item-number {
  opacity: 0.7;
}
@media all and (min-width: 1400px) {
  .product-card__item-number {
    margin-top: 10px;
  }
}

.product-card__info {
  color: inherit;
  transition: 0.3s;
  display: grid;
  grid-template-columns: 1fr max-content;
  gap: 10px;
  align-items: center;
}

.product-card__price {
  font-size: var(--font-size-md);
  font-weight: bold;
  white-space: nowrap;
}

.product-card__img-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  background-color: var(--color-default);
  border-radius: 10px;
}

.product-card__tags {
  position: absolute;
  width: calc(100% + 18px);
  top: 0;
  left: -18px;
  z-index: 11;
  pointer-events: none;
}

.product-card__news {
  position: absolute;
  width: fit-content;
  top: 45%;
  right: -23px;
  z-index: 11;
  pointer-events: none;
}
@media screen and (max-width: 576px) {
  .product-card__news {
    top: 37%;
  }
}
@media all and (min-width: 1200px) {
  .product-card__news {
    top: 49.5%;
  }
}
@media all and (min-width: 1400px) {
  .product-card__news {
    top: 52.5%;
  }
}

.products-index-list .product-card__news {
  top: 50%;
}
@media screen and (max-width: 576px) {
  .products-index-list .product-card__news {
    top: 37%;
  }
}

.products-list__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.products-list__image--no-image {
  object-fit: contain;
  object-position: center;
  width: 60%;
  height: 60%;
  opacity: 0.6;
}

.product-card__button {
  border: none;
  background-color: var(--color-accent);
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: 0.3;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 11;
  position: relative;
}
.product-card__button img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  object-position: center;
}
.product-card__button:hover {
  background-color: var(--color-second);
}

@media (max-width: 576px) {
  .product-card {
    grid-template-rows: 200px 1fr max-content;
    padding-bottom: 15px;
  }
  .product-card__full_photo {
    width: 40px;
    height: 40px;
  }
  .product-card__name {
    margin-bottom: 15px;
  }
}
.trn-not-available {
  text-decoration: none;
  color: var(--color-font-third);
  cursor: not-allowed;
}

.trn-basket-popup.alert {
  display: block;
  padding: 55px 30px;
  box-sizing: border-box;
  background-color: var(--color-default);
  position: fixed !important;
  top: auto !important;
  left: auto !important;
  bottom: 15px !important;
  right: 15px !important;
  border: 1px solid var(--color-divider);
  z-index: 100;
}
.trn-basket-popup.alert .popup-window-buttons .btn {
  display: block;
  width: 300px;
  margin: 20px auto 0;
  border: 0;
  background-color: #f38a00;
  background-color: var(--color-accent);
  padding: 15px 25px;
  text-transform: uppercase;
  color: #fff;
  font-size: 16px;
  font-size: var(--font-size-main);
  line-height: 95%;
  font-family: "Circe";
  font-family: var(--font-main);
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media all and (max-width: 480px) {
  .trn-basket-popup.alert {
    top: calc(50vh - 160px) !important;
    left: 15px !important;
    bottom: auto !important;
  }
}
@media all and (min-width: 480px) {
  .trn-basket-popup.alert + .popup-window-overlay {
    opacity: 0;
  }
}

.alert__icon-wrapper {
  margin-bottom: 20px;
  width: 48px;
}
.alert__icon-wrapper img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  object-position: center;
}

.alert__body {
  font-size: var(--font-size-smd);
  font-weight: bold;
  line-height: 120%;
}

.popup-window-close-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  border: none;
  background-color: transparent;
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-color 0.1s;
}
.popup-window-close-icon:after, .popup-window-close-icon:before {
  content: "";
  width: 100%;
  max-width: 30px;
  height: 1px;
  background-color: var(--color-second);
  display: block;
  transform: rotate(45deg);
  position: absolute;
  top: 25px;
  left: 10px;
}
.popup-window-close-icon:before {
  transform: rotate(-45deg);
}
.popup-window-close-icon:hover {
  background-color: var(--color-bg);
}

.products-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-decoration: none;
}
.products-tags__tags {
  position: absolute;
  width: calc(100% + 18px);
  top: 0;
  left: -18px;
  z-index: 11;
  pointer-events: none;
}

.products-tags__tag {
  background: #F38A00;
  background: var(--color-accent);
  padding: 5px 25px;
  height: 35px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  color: #FFFFFF;
  color: var(--color-font-second);
  text-align: center;
  margin-right: 7px;
  margin-bottom: 5px;
  font-size: 14px;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: skewX(-45deg);
  -ms-transform: skewX(-45deg);
  transform: skewX(-45deg);
}
.products-tags__tag-content {
  -webkit-transform: skewX(45deg);
  -ms-transform: skewX(45deg);
  transform: skewX(45deg);
}

.products-tags__new {
  background: rgb(112, 111, 111);
  padding: 5px 25px;
  height: 35px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  color: #FFFFFF;
  color: var(--color-font-second);
  text-align: center;
  margin-right: 7px;
  margin-bottom: 5px;
  font-size: 14px;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: skewX(-45deg);
  -ms-transform: skewX(-45deg);
  transform: skewX(-45deg);
}

@media (max-width: 576px) {
  .products-index-list .products-list__list {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .products-index-list .products-list__list .product-item-container {
    width: calc(50% - 5px);
  }
}

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

/* End */
/* /local/templates/teplocom/components/bitrix/catalog.section.list/trn-aside/style.css?17685715463232 */
/* /local/templates/teplocom/components/bitrix/catalog.section.list/sectionAsProduct/style.css?17685715467603 */
/* /local/components/trn/section.product.card/templates/.default/style.css?176857154812784 */
