

/* Start:/local/templates/main2025/styles/catalog.css?17727151746925*/
.catalog {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 24px 20px;
}

.catalog__header {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
}

.catalog__header h1 {
    width: 100%;
    font-weight: 900;
    font-size: 24px;
    line-height: 130%;
    color: #00050f;
}

.catalog__header-select {
    flex: 1;
}

.catalog__views {
    display: flex;
}

.catalog__wrapper {
    display: flex;
    flex-direction: column;
    margin-top: 24px;
}

.catalog__menu {
    display: none;
}

.catalog[data-view="list"] .catalog__list,
.catalog[data-view="cards"] .catalog__cards {
    display: flex;
}

.catalog__cards {
    display: none;
    flex-direction: column;
    flex: 1;
    position: relative;
}

.catalog__cards .catalog__cards-back {
    display: none;
}

.catalog__cards-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.catalog__card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
}

.catalog__card img {
    transition: all 0.5s;
}

.catalog__card img:hover {
    transform: scale(1.1);
}

.catalog__card:hover {
    background: #FFFFFF;
}

.catalog__card picture {
    display: flex;
    aspect-ratio: 1;
    overflow: hidden;
}

.catalog__card-name {
    font-weight: 600;
    font-size: 18px;
    line-height: 130%;
    /* padding: 8px; */
    margin: 8px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.catalog__list {
    display: none;
    flex-direction: column;
    gap: 23px;
    flex: 1;
}

.catalog__list-title {
    display: none;
}

.catalog__list-groups {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.catalog__group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.catalog__group-header {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 700;
    font-size: 14px;
    line-height: 130%;
    color: #00050F;
}

.catalog__group-header img {
    width: 40px;
    height: 40px;
}

.catalog__group-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.catalog__group .catalog__group-list > :nth-child(n + 4) {
    display: none;
}

.catalog__group.open .catalog__group-list > :nth-child(n + 4) {
    display: block;
}

.catalog__group-list-item {
    font-size: 16px;
    line-height: 130%;
    color: #717179;
}

.catalog__group-list-item:hover {
    color: #161B4F;
}

.catalog__group-more,
.catalog__group-collapse {
    display: none;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 130%;
    color: #AEAEB3;
    cursor: pointer;
}

.catalog__group.open .catalog__group-collapse {
    display: flex;
}

.catalog__group:not(.open) .catalog__group-more {
    display: flex;
}

@media (min-width: 768px) {
    .catalog__card {
        padding: 8px 8px 16px;
    }

    .catalog h1 {
        font-size: 36px;
    }

    .catalog__header {
        flex-wrap: nowrap;
    }

    .catalog__header h1 {
        width: auto;
    }

    .catalog__header-select {
        display: none;
    }

    .catalog__wrapper {
        flex-direction: row;
        gap: 20px;
        margin-top: 24px;
    }

    .catalog__menu {
        display: flex;
        flex-direction: column;
        width: 200px;
    }

    .catalog__menu-item {
        padding: 11px;
        color: #C2C2C6;
        border-bottom: 1px solid #C2C2C6;
        line-height: 130%;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .catalog__menu-item:hover {
        color: #00050F;
    }

    .catalog__menu-item.active {
        color: #00050F;
        border-color: #00050F;
    }

    .catalog__cards .catalog__cards-back {
        display: flex;
        height: 50px;
        position: absolute;
        top: -60px;
    }

    .catalog__card-name {
        font-size: 22px;
        /* padding: 8px;
        margin: 0; */
    }

    .catalog__list-title {
        font-weight: 900;
        font-size: 24px;
        line-height: 130%;
        text-transform: uppercase;
    }

    .catalog__list-groups {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 32px;
    }
}

@media (min-width: 1440px) {
    .catalog {
        padding: 50px 50px 100px;
    }

    .catalog__header h1 {
        font-size: 36px;
    }

    .catalog__wrapper {
        margin-top: 32px;
        gap: 50px;
    }

    .catalog__menu {
        width: 320px;
    }

    .catalog__menu-item {
        padding: 16px;
    }

    .catalog__cards-list {
        grid-template-columns: repeat(5, 1fr);
        gap: 23px;
    }

    .catalog__list-groups {
        grid-template-columns: repeat(3, 1fr);
        gap: 56px 64px;
    }
}

.category-objects__result-sort {
    position: relative;
}

.filter-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    font-size: 14px;
    font-weight: 400;
    line-height: 15px;
    text-align: center;
    vertical-align: middle;

    padding: 16px 32px;
    background: #fff;
    color: #000000;
    border: 1px solid #fff;

    cursor: pointer;
}

.filter-button:hover {
    border: 1px solid #d6d6d9;
}

.filter-button-sort {
    display: flex;
    align-items: center;
    height: fit-content;
    font-size: 14px;
    font-weight: 400;
    line-height: 15px;
    text-align: center;
    vertical-align: middle;

    padding: 12px;
    background: #fff;
    color: #000000;
    border: 1px solid #fff;

    cursor: pointer;
}

.filter-button-sort:hover {
    border: 1px solid #d6d6d9;
}

.sort-button {
    display: inline-flex;
    align-items: center;
    gap: 16px;

    font-size: 14px;
    font-weight: 400;
    line-height: 15px;
    text-align: center;
    vertical-align: middle;

    padding: 16px 32px;
    background: #fff;
    color: #000000;
    border: 1px solid #fff;

    cursor: pointer;
}

.sort-button:hover {
    border: 1px solid #d6d6d9;
}


/* dropdown */
.sort-dropdown {
    position: absolute;
    top: 100%;
    right: 0;

    display: none;
    flex-direction: column;

    background: #fff;
    border: 1px solid #e6e6e6;
    margin-top: 4px;
    z-index: 10;
}

.sort-dropdown a {
    padding: 16px 32px;
    font-size: 14px;
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

.sort-dropdown a:hover {
    background: #f5f5f5;
}

/* показать dropdown */
.category-objects__result-sort.open .sort-dropdown {
    display: flex;
}


/* End */


/* Start:/local/templates/main2025/styles/category.css?177262597110878*/
.main {
    background: #f5f5f5;
}

.category {
    width: 100%;
    padding: 24px 20px;
}

.category a:hover{
    color: #00050F;
    text-decoration: none;
}

.category-objects {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.category-objects h1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-weight: 900;
    font-size: 24px;
    line-height: 130%;
    color: #00050f;
}

.category-objects .category-objects__back-button {
    padding: 10px;
}

.category-objects__h1 {
    flex: 1;
    text-align: center;
    text-transform: uppercase;
}

.category-objects__list {
    display: flex;
    gap: 8px;
    margin: 16px -20px;
    padding: 0 20px;
    -ms-overflow-style: none;
}

.category-objects__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 16px;
    background-color: #ffffff;
    border: 1px solid transparent;
}

.category-objects__item--active,
.category-objects__item:hover {
    border: 1px solid #161B4F;
}

.category-objects__item-picture {
    width: 45px;
    height: 45px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.category-objects__item-name {
    font-size: 14px;
    line-height: 15px;
    color: #000000;
    white-space: nowrap;
}

.category-objects__item-count {
    padding: 2px 12px;
    background: #F5F5F5;
    font-size: 14px;
    line-height: 130%;
    color: #00050F;
}

.category-objects__wrapper {
    display: flex;
    flex-direction: column;
    margin-top: 8px;
}

.category-objects__filters {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.category-objects__filters .category-objects__filters-mobile {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 10px;
}

.category-objects__filters-mobile .category-objects__sort {
    background-color: #ffffff;
}

.category-objects__filters-desktop {
    display: none;
}

.category-objects__filter {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.category-objects__filters-desktop h5 {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
}

.category-objects__filter-inputs {
    display: flex;
    gap: 12px;
}

.category-objects__result {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.category-objects__result-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.category-objects__result-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.category-objects__result-item {
    background-color: #ffffff;
}

.category-objects__result-count {
    font-size: 14px;
    line-height: 130%;
    color: #717179;
}

.category-objects__result-sort {
    display: none;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    line-height: 130%;
    color: #717179;
}

.category-objects__result-sort-mobile {
    display: flex;
    align-items: center;
    position: relative;
}

.category-objects__result-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.category-objects__result-empty-text {
    width: 100%;
    text-align: center;
    max-width: 406px;
    font-size: 15px;
    line-height: 150%;
    color: #21242c;
}

.category-objects__result-empty-button {
    width: 100%;
    padding: 0 20px;
}

.category-objects__button {
    margin: 24px auto 0;
}

.retail-application {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.retail-application a {
    text-decoration: underline;
    color: #0085ae;
}

.retail-application__input {
    width: 100%;
}

.retail-application__button {
    margin: 12px 0;
}

.input-error {
    display: none;
    padding: 8px 0;
    margin-top: 4px;
    font-size: 12px;
    line-height: 120%;
    color: #c02222;
}

.categoryal-application {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.categoryal-application a {
    text-decoration: underline;
    color: #0085ae;
}

.categoryal-application__input {
    width: 100%;
}

.categoryal-application__button {
    margin: 12px 0;
}

.input-error {
    display: none;
    padding: 8px 0;
    margin-top: 4px;
    font-size: 12px;
    line-height: 120%;
    color: #c02222;
}

.category-objects__actions {
    display: flex;
    justify-content: center;
    padding-top: 48px;
}

@media (min-width: 768px) {
    .category-objects h1 {
        font-size: 36px;
    }

    .category-objects .category-objects__back-button {
        display: none;
    }

    .category-objects__h1 {
        text-align: left;
    }

    .category-objects__list {
        gap: 10px;
        margin: 24px 0 18px;
        padding: 0;
    }

    .category-objects__item {
        gap: 16px;
    }

    .category-objects__item-picture {
        width: 70px;
        height: 70px;
    }

    .category-objects__item-name {
        font-size: 16px;
        line-height: 130%;
    }

    .category-objects__item-count {
        padding: 8px 16px;
    }

    .category-objects__wrapper {
        flex-direction: row;
        gap: 40px;
        margin-top: 24px;
    }

    .category-objects__filters {
        width: 151px;
    }

    .category-objects__filters .category-objects__filters-mobile {
        display: none;
    }

    .category-objects__filters-desktop {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 24px;
    }

    .category-objects__result-sort {
        display: flex;
    }
    
    .category-objects__result-sort-mobile {
        display: none;
    }

    .category-objects__filter-inputs {
        flex-direction: column;
    }

    .category-objects__result-empty-text {
        font-size: 18px;
    }

    .category-objects__result-empty-button {
        width: auto;
    }

    .category-objects__result-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .category-objects__button {
        margin-top: 32px;
    }

    .retail-application {
        gap: 16px;
    }

    .retail-application__button {
        margin: 16px 0 8px;
    }

    .categoryal-application {
        gap: 16px;
    }

    .categoryal-application__button {
        margin: 16px 0 8px;
    }

    .category-objects__actions {
        padding-top: 40px;
    }
}

@media (min-width: 1440px) {
    .category {
        padding: 50px 50px 100px;
    }

    .category-objects__wrapper {
        margin-top: 32px;
    }

    .category-objects__filters {
        width: 255px;
    }

    .category-objects__filter-inputs {
        flex-direction: row;
    }

    .category-objects__result-empty {
        gap: 24px;
    }

    .category-objects__result-empty-text {
        max-width: 550px;
    }

    .category-objects__result-list {
        grid-template-columns: repeat(4, 1fr);
    }

    .category-objects__result-item {
        background-color: transparent;
    }
}

.catalog-card.astro-liuybmbj {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px;
    overflow: hidden;
}
.catalog-card.astro-liuybmbj:hover .catalog-card__brand.astro-liuybmbj{
    opacity: 1;
}
.catalog-card.astro-liuybmbj:hover {
    background-color: #ffffff;
    cursor: pointer;
}
.catalog-card__picture.astro-liuybmbj {
    width: 100%;
}
.catalog-card__picture.astro-liuybmbj picture.astro-liuybmbj {
    display: flex;
}

.catalog-card__picture picture {
    height: 200px;
    display: block;
}

@media (min-width: 768px) {
    .catalog-card__picture picture {
        height: 344px;
    }
}


.catalog-card__picture picture img {
    background-color: white;
    object-fit: contain;
}

.catalog-card__content.astro-liuybmbj {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 8px;
}
.catalog-card__title.astro-liuybmbj {
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    display: -webkit-box; /* Для старых браузеров */
    display: box;
    -webkit-line-clamp: 2; /* Количество строк */
    line-clamp: 2;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.catalog-card__price.astro-liuybmbj {
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
}
.catalog-card__color.astro-liuybmbj {
    display: flex;
    gap: 8px;
    align-items: center;
}
.catalog-card__color-label.astro-liuybmbj {
    font-weight: 500;
    font-size: 12px;
    line-height: 130%;
    color: #606060;
}
.catalog-card__color-list.astro-liuybmbj {
    display: flex;
    gap: 8px;
}
.catalog-card__color-item.astro-liuybmbj {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.2);
}
.catalog-card__color-item.astro-liuybmbj:hover {
    transform: scale(1.2);
}

.catalog-card__brand.astro-liuybmbj {
    display: flex;
    gap: 8px;
    align-items: center;
    font-weight: 600;
    font-size: 12px;
    line-height: 130%;
}
.catalog-card__brand-image.astro-liuybmbj {
    width: 40px;
    height: 40px;
}

@media (min-width: 768px) {
    .catalog-card.astro-liuybmbj {
        gap: 16px;
    }
    .catalog-card__title.astro-liuybmbj {
        font-size: 18px;
    }
    .catalog-card__price.astro-liuybmbj {
        font-size: 16px;
    }
}

.selected-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.selected-filter-item {
    background: #FFFFFF;
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 14px;
	color: #000;
	font-weight: 400;

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.selected-filter-item .remove-filter {
    text-decoration: none;
    color: #666;
    font-weight: bold;
	display: flex;
}

.selected-filters__clear-all {
	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
	color: #717179 !important;
	display: flex;
    align-items: center;
}

@media (max-width:768px) {
    .selected-filters__clear-all {
        flex-basis: 100%;
        margin: 10px 0;
    }
}

.category-objects-swiper {
    width: 100%;
    padding: 10px 0;
}

.category-objects-swiper .swiper-slide {
    width: auto; 
}
/* End */


/* Start:/local/templates/main2025/styles/product.css?177253810519785*/
.catalog-card.astro-liuybmbj {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
  overflow: hidden;
}
.catalog-card.astro-liuybmbj:hover {
  background-color: #ffffff;
  cursor: pointer;
}
.catalog-card__picture.astro-liuybmbj {
  width: 100%;
}
.catalog-card__picture.astro-liuybmbj picture.astro-liuybmbj {
  display: flex;
}
.catalog-card__content.astro-liuybmbj {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 8px;
}
.catalog-card__title.astro-liuybmbj {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
}
.catalog-card__price.astro-liuybmbj {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
}
.catalog-card__color.astro-liuybmbj {
  display: flex;
  gap: 8px;
  align-items: center;
}
.catalog-card__color-label.astro-liuybmbj {
  font-weight: 500;
  font-size: 12px;
  line-height: 130%;
  color: #606060;
}
.catalog-card__color-list.astro-liuybmbj {
  display: flex;
  gap: 8px;
}
.catalog-card__color-item.astro-liuybmbj {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}
.catalog-card__color-item--burlywood.astro-liuybmbj {
  background-color: #d0ab77;
}
.catalog-card__color-item--blue.astro-liuybmbj {
  background-color: #1f4e83;
}
.catalog-card__color-item--brown.astro-liuybmbj {
  background-color: #83541f;
}
.catalog-card__brand.astro-liuybmbj {
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
  font-size: 12px;
  line-height: 130%;
  opacity: 1;
}
.catalog-card__brand-image.astro-liuybmbj {
  width: 40px;
  height: 40px;
}
.catalog-card.astro-liuybmbj .swiper-pagination.astro-liuybmbj {
  top: calc(100% - 1px);
  --swiper-pagination-progressbar-size: 1px;
  --swiper-pagination-progressbar-bg-color: #ebebec;
  --swiper-pagination-color: #00050f;
}
@media (min-width: 768px) {
  .catalog-card__brand.astro-liuybmbj {
    opacity: 0;
  }
  .catalog-card.astro-liuybmbj {
    gap: 16px;
  }
  .catalog-card__title.astro-liuybmbj {
    font-size: 18px;
  }
  .catalog-card__price.astro-liuybmbj {
    font-size: 16px;
  }
}

.fullscreen-slider__wrapper.astro-io7zck7e {
  width: 100%;
  height: 100%;
  position: relative;
}
.fullscreen-slider--vertical.astro-io7zck7e {
  display: flex;
  flex-direction: row-reverse;
  max-height: 500px;
}
.fullscreen-slider--reverse.astro-io7zck7e {
  flex-direction: row;
}
.fullscreen-slider.astro-io7zck7e {
  width: 100%;
  max-width: 1000px;
  max-height: 80%;
  overflow: hidden;
  margin: 0 auto;
}
.fullscreen-slider__backdrop.astro-io7zck7e {
  background-color: #f5f5f5;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
}
.fullscreen-slider__backdrop--view.astro-io7zck7e {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fullscreen-slider__close.astro-io7zck7e {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 40px;
  right: 15px;
  z-index: 10;
}
.fullscreen-slider__close.astro-io7zck7e svg {
  touch-action: none;
}
#preview-slider.astro-io7zck7e {
  display: none;
  margin: 24px 60px 0;
  overflow: hidden;
  --swiper-pagination-bottom: -24px;
}
#preview-slider.astro-io7zck7e img.astro-io7zck7e {
  width: 100%;
  object-fit: cover;
}
.fullscreen-slider--horizontal.astro-io7zck7e #preview-slider.astro-io7zck7e {
  height: 48px;
  position: absolute;
  width: 156px;
  bottom: 10px;
  margin: 0;
  display: block;
}
.fullscreen-slider--horizontal.astro-io7zck7e {
  display: flex;
  justify-content: center;
}
.fullscreen-slider--reverse.astro-io7zck7e #preview-slider.astro-io7zck7e {
  margin: 24px 60px 0;
}
.fullscreen-preview-slider.astro-io7zck7e {
  display: none;
}
#preview-slider.astro-io7zck7e .swiper-slide.astro-io7zck7e {
  width: 48px;
  height: 48px;
}
#preview-slider.astro-io7zck7e .swiper-slide-thumb-active.astro-io7zck7e {
  border: 2px solid #DEDEDE;
  opacity: 0.5;
}
.fullscreen-preview-slider.astro-io7zck7e {
  width: 100px;
}
.fullscreen-preview-slider.astro-io7zck7e .swiper-slide.astro-io7zck7e {
  max-width: 100%;
}
#preview-slider.astro-io7zck7e picture.astro-io7zck7e,
.fullscreen-preview-slider.astro-io7zck7e picture.astro-io7zck7e {
  display: flex;
  width: 100%;
  height: 100%;
}
.fullscreen-preview-slider.astro-io7zck7e img.astro-io7zck7e {
  object-fit: cover;
}
.swiper-button-prev,
.swiper-button-next {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  user-select: none;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: auto;
  height: auto;
}
.swiper-button-prev:hover svg,
.swiper-button-next:hover svg,
.fullscreen-slider__close.astro-io7zck7e svg.astro-io7zck7e {
  stroke: #000;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  content: none;
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(192, 34, 34, 0.5);
}
.swiper-pagination-bullet-active {
  background: #c02222;
}
.fullscreen-slider__wrapper.astro-io7zck7e .swiper-pagination {
  --swiper-pagination-bottom: -34px;
}
.fullscreen-slider-container.astro-io7zck7e {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  --swiper-navigation-sides-offset: 40px;
  --swiper-pagination-bottom: 40px;
}
.fullscreen-slider-container.astro-io7zck7e .swiper-button-prev,
.fullscreen-slider-container.astro-io7zck7e .swiper-button-next {
  display: none;
}
.fullscreen-preview-slider.astro-io7zck7e
  .swiper-slide-thumb-active.astro-io7zck7e {
  border: 1.5px solid #21242c;
}
.swiper-slide.astro-io7zck7e {
  cursor: pointer;
}
@media (min-width: 768px) {
  .fullscreen-slider__wrapper.astro-io7zck7e .swiper-pagination {
    display: none;
  }
  #preview-slider.astro-io7zck7e {
    display: block;
    height: 60px;
  }
  .fullscreen-slider__wrapper.astro-io7zck7e .swiper-button-prev,
  .fullscreen-slider__wrapper.astro-io7zck7e .swiper-button-next {
    display: flex;
    bottom: 10px;
    top: auto;
  }
  .fullscreen-slider--vertical.astro-io7zck7e:not(.fullscreen-slider--reverse)
    .swiper-button-prev {
    bottom: auto;
    left: 30px;
    top: 30px;
    transform: rotate(90deg);
  }
  .fullscreen-slider--vertical.astro-io7zck7e:not(.fullscreen-slider--reverse)
    .swiper-button-next {
    bottom: 6px;
    left: 30px;
    transform: rotate(90deg);
  }
  .fullscreen-slider--vertical.astro-io7zck7e:not(.fullscreen-slider--reverse)
    #preview-slider.astro-io7zck7e {
    width: 100px;
    margin: 60px 24px 60px 0;
    flex-shrink: 0;
    height: auto;
  }
  .fullscreen-slider--reverse.astro-io7zck7e .swiper-button-prev {
    bottom: auto;
    left: auto;
    right: 30px;
    top: 30px;
    transform: rotate(90deg);
  }
  .fullscreen-slider--reverse.astro-io7zck7e .swiper-button-next {
    bottom: 6px;
    right: 30px;
    transform: rotate(90deg);
  }
  .fullscreen-slider--reverse.astro-io7zck7e #preview-slider.astro-io7zck7e {
    width: 100px;
    margin: 60px 0 60px 24px;
    flex-shrink: 0;
    height: auto;
  }
  .fullscreen-slider__close.astro-io7zck7e {
    top: 40px;
    right: 40px;
  }
}
@media (min-width: 1440px) {
  .fullscreen-slider--vertical.astro-io7zck7e:not(.fullscreen-slider--reverse)
    #preview-slider.astro-io7zck7e {
    width: 70px;
    margin: 60px 28px 60px 0;
  }
  .fullscreen-slider--vertical.astro-io7zck7e:not(.fullscreen-slider--reverse)
    .swiper-button-prev {
    left: 15px;
    top: 30px;
  }
  .fullscreen-slider--vertical.astro-io7zck7e:not(.fullscreen-slider--reverse)
    .swiper-button-next {
    bottom: 6px;
    left: 15px;
  }
  .fullscreen-slider--reverse.astro-io7zck7e #preview-slider.astro-io7zck7e {
    width: 70px;
    margin: 60px 0 60px 28px;
  }
  .fullscreen-slider--reverse.astro-io7zck7e .swiper-button-prev {
    right: 15px;
    top: 30px;
  }
  .fullscreen-slider--reverse.astro-io7zck7e .swiper-button-next {
    bottom: 6px;
    right: 15px;
  }
  .fullscreen-slider-container.astro-io7zck7e .swiper-button-prev,
  .fullscreen-slider-container.astro-io7zck7e .swiper-button-next {
    display: flex;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.08);
  }
  .fullscreen-preview-slider.astro-io7zck7e {
    display: block;
    padding: 40px 0;
    margin-left: 40px;
    max-height: 100%;
  }
  .fullscreen-slider-container.astro-io7zck7e .swiper-pagination {
    display: none;
  }
}

.product {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
  padding: 24px 20px;
  background: #f5f5f5;
}

.product__slider {
  aspect-ratio: 1 / 1;
}

.fullscreen-slider .swiper-slide {
  height: auto;
}

.product__slider picture img {
    background-color: white;
    object-fit: contain;
}

.product__title {
  width: 100%;
  font-weight: 700;
  font-size: 28px;
  line-height: 150%;
  color: #00050f;
}

.product__view {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 40px;
  overflow: hidden;
}

.product__wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product__info {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 24px;
}

.product__back {
  display: flex;
}

.product__back .product__back-button {
  display: flex;
  align-items: center;
  padding: 10px;
  gap: 16px;
}

.product__back .product__back-button span {
  display: none;
}

.product__desc {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.product__desc p {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #313135;
}

.product__desc-hide {
  -webkit-line-clamp: 4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product__char-btn,
.product__desc-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 130%;
  color: #aeaeb3;
  cursor: pointer;
}

.product__char-btn--active .product__char-btn-icon,
.product__desc-btn--active .product__desc-btn-icon {
  transform: rotate(180deg);
}

.product__location {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.product__place {
  display: flex;
  gap: 16px;
  align-items: center;
}

.product__place .vr {
  width: 1px;
  height: 18px;
  background: #ebebec;
}

.product__brand {
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
  font-size: 12px;
  line-height: 130%;
}

.product__brand-image {
  width: 40px;
  height: 40px;
}

.product__building {
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  color: #008031;
}

.product__floor {
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  color: #00050f;
  white-space: nowrap;
}

.product__price {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
}

.product__price span {
  font-weight: 400;
  font-size: 32px;
  line-height: 130%;
}

.product__color {
  display: flex;
  gap: 8px;
  align-items: center;
}

.product__color-label {
  font-weight: 500;
  font-size: 12px;
  line-height: 130%;
  color: #606060;
}

.product__color-list {
  display: flex;
  gap: 8px;
}

.product__color-item {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.product__color-item--burlywood {
  background-color: #d0ab77;
}

.product__color-item--blue {
  background-color: #1f4e83;
}

.product__color-item--brown {
  background-color: #83541f;
}

.product__char {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.product__char h2 {
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: #00050f;
}

.product__char-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 13px;
  line-height: 19.5px;
}

.product__char-list-hide .product__char-item:nth-child(n + 6) {
  display: none;
}

.product__char-item {
  display: flex;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #dfdfdf;
}

.product__char-item div {
  flex: 1;
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  color: #606060;
}

.product__char-item .item-title {
  font-weight: 400;
  font-size: 14px;
  color: #313135;
}

.product__btn {
}

.product__btn button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.input-error {
  display: none;
  padding: 8px 0;
  margin-top: 4px;
  font-size: 12px;
  line-height: 120%;
  color: #c02222;
}

@media (min-width: 768px) {
  .product {
    gap: 10px;
  }

  .product__back .product__back-button {
    padding: 15px 32px;
  }

  .product__back .product__back-button span {
    display: block;
  }

  .product__title {
    font-size: 36px;
  }

  .product__char h2 {
    font-size: 24px;
  }

  .product__view {
    gap: 16px;
  }

  .product__wrapper {
    gap: 24px;
  }

  .product__info {
    gap: 50px;
  }

  .product__char__list {
    gap: 16px;
    font-size: 15px;
    line-height: 22.5px;
  }

  .product__btn {
    padding: 0;
  }

  .product__btn button {
    width: auto;
  }
}

@media (min-width: 1024px) {
  .product__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .product__title {
    margin-top: 0;
  }

  .product__location {
    flex-direction: row;
    align-items: center;
  }

  .product__btn {
    max-width: 223px;
  }
}

@media (min-width: 1440px) {
  .product {
    gap: 24px;
    padding: 50px 50px 100px;
  }

  .product__wrapper {
    gap: 100px;
  }

  .product__view {
    width: 100%;
    flex: none;
    gap: 26px;
  }

  .product__info {
    gap: 36px;
  }

  .product__desc-hide {
    -webkit-line-clamp: 2;
  }
}
section.astro-3imcm7af {
  width: 100%;
  padding: 32px 20px;
}
.section__header.astro-3imcm7af {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 32px;
  align-items: center;
  gap: 16px;
}
.section__header.astro-3imcm7af .section__filter.astro-3imcm7af,
.section__header.astro-3imcm7af .section__button.astro-3imcm7af {
  display: none;
}
.section__title.astro-3imcm7af {
  color: #21242c;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 24px;
  line-height: 130%;
  flex: 1;
  order: 1;
}
.section__button.astro-3imcm7af {
  flex-shrink: 0;
  order: 2;
}
.section__filter.astro-3imcm7af {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  order: 3;
}
.section__content.astro-3imcm7af {
  grid-column: 2 span;
  position: relative;
}
.section__button-view-all.astro-3imcm7af {
  height: 45px;
}
.card.astro-3imcm7af {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
  text-decoration: none;
  padding: 8px;
  height: auto;
}
.card.astro-3imcm7af:hover {
  background-color: #f5f5f5;
  cursor: pointer;
  z-index: 1;
}
.card__wrapper.astro-3imcm7af {
  padding: 8px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  display: flex;
  flex: 1;
  width: 100%;
}
.card__section.astro-3imcm7af {
  font-weight: 500;
  font-size: 10px;
  line-height: 130%;
  text-transform: uppercase;
  color: #606060;
}
.card__title.astro-3imcm7af {
  color: #00050f;
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
}
.card__period.astro-3imcm7af {
  font-weight: 500;
  font-size: 10px;
  line-height: 130%;
  color: #606060;
}
.category-button.astro-3imcm7af {
  display: flex;
  align-items: center;
}
.section__footer.astro-3imcm7af {
  margin-top: 32px;
}
.section__footer.astro-3imcm7af .section__button.astro-3imcm7af {
  flex: 1;
}
.swiper.astro-3imcm7af {
  width: 100%;
}
.swiper-buttons.astro-3imcm7af {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 4px;
  height: 40px;
}
.section__filter.astro-3imcm7af .swiper-button-prev.astro-3imcm7af {
  order: 2;
  display: flex;
  left: auto;
  position: initial;
  width: 45px;
  height: 45px;
  user-select: none;
}
.section__filter.astro-3imcm7af .swiper-button-next.astro-3imcm7af {
  order: 3;
  display: flex;
  left: auto;
  position: initial;
  width: 45px;
  height: 45px;
  user-select: none;
}
.swiper-button-prev.astro-3imcm7af,
.swiper-button-next.astro-3imcm7af {
  margin-top: 0;
}
.section__filter.astro-3imcm7af .swiper-button-prev.astro-3imcm7af:hover svg.astro-3imcm7af,
.section__filter.astro-3imcm7af .swiper-button-next.astro-3imcm7af:hover svg.astro-3imcm7af,
.section__filter.astro-3imcm7af .swiper-button-prev.astro-3imcm7af:hover path.astro-3imcm7af,
.section__filter.astro-3imcm7af .swiper-button-next.astro-3imcm7af:hover path.astro-3imcm7af {
  stroke: #000;
  background-color: #fff;
}
@media (min-width: 768px) {
  section.astro-3imcm7af {
    padding: 100px 50px;
  }
  .section__button.astro-3imcm7af {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .section__header.astro-3imcm7af {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
  }
}
@media (min-width: 960px) {
  .section__header.astro-3imcm7af {
    flex-wrap: nowrap;
  }
  .section__title.astro-3imcm7af {
    white-space: nowrap;
  }
  .section__header.astro-3imcm7af .section__filter.astro-3imcm7af,
  .section__header.astro-3imcm7af .section__button.astro-3imcm7af {
    display: flex;
  }
  .section__filter.astro-3imcm7af {
    flex: 1;
    width: auto;
    order: 2;
    justify-content: flex-end;
    padding-left: 8px;
  }
  .section__filter.astro-3imcm7af .category-button.astro-3imcm7af {
    order: 1;
    flex: 1;
  }
  .section__filter.astro-3imcm7af .swiper-button-prev.astro-3imcm7af {
    order: 2;
    display: flex;
    left: auto;
    position: initial;
    width: 40px;
    height: 40px;
    user-select: none;
  }
  .section__filter.astro-3imcm7af .swiper-button-next.astro-3imcm7af {
    order: 3;
    display: flex;
    left: auto;
    position: initial;
    width: 40px;
    height: 40px;
    user-select: none;
  }
  .section__button.astro-3imcm7af {
    order: 3;
  }
  .section__footer.astro-3imcm7af {
    display: none;
  }
  .section__title.astro-3imcm7af {
    font-size: 36px;
    line-height: 48px;
  }
  .swiper.astro-3imcm7af {
    width: calc(100% + 50px);
  }
}

.breadcrumbs.astro-ilhxcym7 {
  display: flex;
  gap: 4px;
  width: 100%;
  flex-wrap: wrap;
  margin-bottom: 24px;
  /* padding-top: 20px; */
}
.breadcrumb.astro-ilhxcym7 {
  display: flex;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.5px;
  gap: 4px;
  margin-bottom: 0;
  padding: 0;
}
.breadcrumb.astro-ilhxcym7 a.astro-ilhxcym7 {
  cursor: pointer;
  text-decoration: none;
  color: #717179;
}

.breadcrumb.astro-ilhxcym7 a.astro-ilhxcym7:hover {
  color: #00050F;
}


.breadcrumb--active.astro-ilhxcym7 {
  color: #AEAEB3;
  overflow: hidden;
}
.breadcrumb--active.astro-ilhxcym7 span.astro-ilhxcym7 {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.product-cards:hover a {
  text-decoration: none;
  color: inherit;
}
/* End */


/* Start:/local/templates/main2025/styles/smart_filter.css?17721158815661*/

    .category-objects__filters-mobile .sort-dropdown.active {
        display: flex;
    }

    .mobile-filter-modal .category-objects__filters-desktop {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 24px;
    }
    
    .mobile-filter-modal .bx-filter-container-modef {
        display: none;
    }
    
    .mobile-filter-modal input.astro-qyqq6lvs {
            background: #f5f5f5;
            border-radius: 10px;
            padding: 0 8px;
    }

    .mobile-filter-modal {
        position: fixed;
        inset: 0;
        background: #fff;
        z-index: 9999;
        display: none;
        flex-direction: column;
    }

    .mobile-filter-modal.is-open {
        display: flex;
    }

    .mobile-filter-modal__header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px;
        border-bottom: 1px solid #eee;
    }

    .mobile-filter-modal__title {
        font-size: 18px;
        font-weight: 600;
    }

    .mobile-filter-modal__close {
        background: none;
        border: none;
        font-size: 22px;
        cursor: pointer;
        color: #000;
    }

    .mobile-filter-modal__body {
        flex: 1;
        overflow-y: auto;
        padding: 16px;
    }

    .bx-filter-container-modef {
        position: relative;
    }

    .bx-filter-popup-result {
        position: absolute;
        bottom: 0;
        left: calc(100% + 12px);
        /* справа от пункта */
        transform: translateY(-50%);

        background: #000;
        color: #fff;
        padding: 6px 10px;
        font-size: 13px;
        white-space: nowrap;

        z-index: 100;
        border-radius: 4px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    }

    .bx-filter-popup-result a {
        color: #fff;
        text-decoration: none;
        font-weight: 500;
    }

    .bx-filter-popup-result a:hover {
        color: #fff;
        text-decoration: underline;
    }

    .bx-filter-popup-result {
        pointer-events: auto;
    }

    /* Контейнер всей полоски */
    .bx-ui-slider-track-container {
        padding: 15px 0 25px;
        margin: 0 10px;
    }

    .bx-ui-slider-track {
        position: relative;
        height: 2px;
        background: #e0e0e0;
        /* Цвет серой полоски */
        border-radius: 2px;
    }

    /* Активная часть полоски (между ползунками) */
    .bx-ui-slider-pricebar-v {
        position: absolute;
        height: 100%;
        background: #000;
        /* Цвет вашей темы (например, черный) */
        z-index: 1;
    }

    /* Ползунки */
    .bx-ui-slider-handle {
        position: absolute;
        top: -8px;
        width: 16px;
        height: 16px;
        background: #fff;
        border: 2px solid #000;
        border-radius: 50%;
        cursor: pointer;
        z-index: 2;
        transition: transform 0.2s;
    }

    .bx-ui-slider-handle:hover {
        transform: scale(1.1);
    }

    /* Заголовок и стрелочка */
    .filter-title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        padding: 10px 0;
    }

    .filter-arrow {
        width: 8px;
        height: 8px;
        border-right: 2px solid #000;
        border-bottom: 2px solid #000;
        transform: rotate(45deg);
        /* Смотрит вниз */
        transition: 0.3s ease;
        margin-right: 5px;
    }

    .js-filter-section.is-active .filter-arrow {
        transform: rotate(-135deg);
        /* Переворачивается вверх */
    }

    /* Стили для поиска внутри фильтра */
    .filter-search-input {
        width: 100%;
        padding: 8px;
        margin-bottom: 10px;
        border: 1px solid #D1D1D1;
        border-radius: 4px;
        font-size: 14px;
    }

    .filter-scrollable-list {
        max-height: 200px;
        overflow-y: auto;
        padding-right: 5px;
    }

    .category-objects__filters-list.has-scroll {
        max-height: 620px;
        /* фиксированная высота */
        overflow-y: auto;
    }

    /* Кнопка "Ещё фильтры" */
    .filters-more-btn {
        width: 100%;
        padding: 12px 0;
        margin: 12px 0;

        background: #fff;
        color: #000;
        border-radius: 0;

        font-size: 14px;
        cursor: pointer;
    }

    /* Если фильтров ≤ 4 — кнопку скрываем */
    .filters-more-btn.is-hidden {
        display: none;
    }

    /* Стили для мобильных кнопок */
    .mobile-filter-actions {
        display: flex;
        gap: 10px;
        padding: 15px;
        margin-top: 10px;
        border-top: 1px solid #eee;
    }

    .mobile-filter-apply,
    .mobile-filter-reset {
        flex: 1;
        padding: 12px;
        border: none;
        border-radius: 4px;
        font-size: 14px;
        cursor: pointer;
        transition: opacity 0.2s;
    }

    .mobile-filter-apply {
        background: #000;
        color: #fff;
    }

    .mobile-filter-reset {
        background: #f5f5f5;
        color: #000;
    }

    .mobile-filter-apply:hover,
    .mobile-filter-reset:hover {
        opacity: 0.8;
    }
/* End */


/* Start:/local/templates/main2025/components/bitrix/catalog.section.list/category/style.min.css?17635356296236*/
.bx_catalog_line{margin-bottom:30px}.bx_catalog_line .bx_catalog_line_category_title{padding-bottom:14px;border-bottom:1px solid #e5e5e5;font-size:24px}.bx_catalog_line .bx_catalog_line_category_title a{color:#000;text-decoration:none}.bx_catalog_line .bx_catalog_line_ul{padding:0}.bx_catalog_line .bx_catalog_line_ul li{margin-bottom:20px;list-style:none}.bx_catalog_line .bx_catalog_line_ul li:before{content:''!important}.bx_catalog_line .bx_catalog_line_img{position:relative;display:block;float:left;overflow:hidden;margin-right:40px;width:125px;height:125px;border:1px solid #ccc;border-radius:2px;background-position:center;background-size:contain;background-repeat:no-repeat;-webkit-background-size:contain}.bx_catalog_line .bx_catalog_line_title{margin-bottom:10px;padding:0;vertical-align:top;line-height:18px}.bx_catalog_line .bx_catalog_line_title a{color:#4c7da6;font-size:18px}.bx_catalog_line .bx_catalog_line_title a:hover{text-decoration:none}.bx_catalog_line .bx_catalog_line_title span{font-size:16px}.bx_catalog_line .bx_catalog_line_description{color:#3f3f3f;font-size:13px;line-height:16px}@media(max-width:639px){.bx-touch .bx_catalog_line .bx_catalog_line_img{margin-right:10px;width:50px;height:50px}.bx-touch .bx_catalog_line .bx_catalog_line_title{margin-bottom:5px;line-height:14px}.bx-touch .bx_catalog_line .bx_catalog_line_title a{font-size:14px}.bx-touch .bx_catalog_line .bx_catalog_line_description{font-size:11px}}.bx_catalog_line .bx_catalog_line_img,.bx_catalog_line .bx_catalog_line_title,.bx_catalog_line .bx_catalog_line_title a,.bx_catalog_line .bx_catalog_line_description{transition:all .3s ease}.bx_catalog_text{margin-bottom:30px}.bx_catalog_text .bx_catalog_text_category_title{padding-bottom:14px;border-bottom:1px solid #e5e5e5;font-size:24px}.bx_catalog_text .bx_catalog_text_category_title a{color:#000;text-decoration:none}.bx_catalog_text .bx_catalog_text_ul{padding:0}.bx_catalog_text .bx_catalog_text_ul li{float:left;margin:0 10px 10px;list-style:none}.bx_catalog_text .bx_catalog_text_ul li:before{content:''!important}.bx_catalog_text .bx_catalog_text_title{margin:0;padding:0;vertical-align:top;font-size:14px;line-height:14px}.bx_catalog_tile .bx_catalog_tile_title a{display:inline-block;overflow:hidden;max-width:100%;color:#4c7da6;-ms-text-overflow:ellipsis;text-overflow:ellipsis;font-size:14px}.bx_catalog_text .bx_catalog_text_title a:hover{text-decoration:none}.bx_catalog_text .bx_catalog_text_title span{font-size:12px}@media(max-width:639px){.bx-touch .bx_catalog_text .bx_catalog_line_title{margin-bottom:5px;line-height:12px}.bx-touch .bx_catalog_text .bx_catalog_line_title a{font-size:12px}}.bx_catalog_text .bx_catalog_line_title,.bx_catalog_text .bx_catalog_line_title a{transition:all .3s ease}.bx_catalog_tile{margin-bottom:30px}.bx_catalog_tile .bx_catalog_tile_category_title{padding-bottom:14px;border-bottom:1px solid #e5e5e5;font-size:24px}.bx_catalog_tile .bx_catalog_tile_category_title a{color:#000;text-decoration:none}.bx_catalog_tile .bx_catalog_tile_ul{padding:0}.bx_catalog_tile .bx_catalog_tile_ul li{float:left;box-sizing:border-box;margin-bottom:20px;padding:0 10px;width:12.5%;list-style:none;text-align:center}.bx_catalog_tile .bx_catalog_tile_ul li:before{content:''!important}.bx_catalog_tile .bx_catalog_tile_ul li:nth-child(8n+1){clear:both}.bx_catalog_tile .bx_catalog_tile_img{position:relative;display:block;overflow:hidden;margin:0 auto;width:78px;height:78px;border:1px solid #ccc;border-radius:2px;background-color:#fff;background-position:center;background-size:contain;background-repeat:no-repeat;-webkit-background-size:contain}.bx_catalog_tile .bx_catalog_tile_title{margin-top:5px;margin-bottom:10px;padding:0;vertical-align:top;line-height:14px}.bx_catalog_tile .bx_catalog_tile_title a{color:#4c7da6;font-size:14px}.bx_catalog_tile .bx_catalog_tile_title a:hover{text-decoration:none}.bx_catalog_tile .bx_catalog_tile_title span{font-size:12px}@media(max-width:980px){.bx_catalog_tile .bx_catalog_tile_ul li{width:20%}.bx_catalog_tile .bx_catalog_tile_ul li:nth-child(8n+1){clear:none}.bx_catalog_tile .bx_catalog_tile_ul li:nth-child(5n+1){clear:both}}@media(max-width:639px){.bx-touch .bx_catalog_tile .bx_catalog_tile_title{margin-bottom:5px;line-height:14px}.bx-touch .bx_catalog_tile .bx_catalog_tile_title{line-height:10px}.bx-touch .bx_catalog_tile .bx_catalog_tile_title a{font-size:11px}}@media(min-width:480px) and (max-width:639px){.bx-touch .bx_catalog_tile .bx_catalog_tile_ul li{width:25%}.bx-touch .bx_catalog_tile .bx_catalog_tile_ul li:nth-child(8n+1){clear:none}.bx-touch .bx_catalog_tile .bx_catalog_tile_ul li:nth-child(5n+1){clear:none}.bx-touch .bx_catalog_tile .bx_catalog_tile_ul li:nth-child(4n+1){clear:both}}@media(max-width:479px){.bx-touch .bx_catalog_tile .bx_catalog_tile_ul li{width:33.3%}.bx-touch .bx_catalog_tile .bx_catalog_tile_img{width:100%;height:80px}.bx-touch .bx_catalog_tile .bx_catalog_tile_ul li:nth-child(8n+1){clear:none}.bx-touch .bx_catalog_tile .bx_catalog_tile_ul li:nth-child(5n+1){clear:none}.bx-touch .bx_catalog_tile .bx_catalog_tile_ul li:nth-child(3n+1){clear:both}}.bx_catalog_tile .bx_catalog_tile_title,.bx_catalog_tile .bx_catalog_tile_title a,.bx_catalog_tile .bx_catalog_tile_ul li,.bx_catalog_tile .bx_catalog_tile_img{transition:all .3s ease}.bx_sitemap{margin-bottom:30px}.bx_sitemap .bx_sitemap_title{padding-bottom:14px;border-bottom:1px solid #e5e5e5;font-size:24px}.bx_sitemap .bx_sitemap_title a{color:#000;text-decoration:none}.bx_sitemap .bx_sitemap_ul li{padding:0;line-height:14px}.bx_sitemap .bx_sitemap_ul li:before{content:''!important}.bx_sitemap .bx_sitemap_li_title{display:inline-block;margin:0;margin-bottom:10px;padding:0;vertical-align:top;font-weight:normal;line-height:13px}.bx_sitemap .bx_sitemap_li_title a{color:#4c7da6;white-space:nowrap;font-size:13px}.bx_sitemap .bx_sitemap_li_title a:hover{text-decoration:none}.bx_sitemap .bx_sitemap_li_title span{font-size:11px}@media(max-width:639px){.bx-touch .bx_sitemap .bx_catalog_line_title{margin-bottom:5px;line-height:12px}.bx-touch .bx_sitemap .bx_catalog_line_title a{font-size:12px}}.bx_sitemap .bx_catalog_line_title,.bx_sitemap .bx_catalog_line_title a{transition:all .3s ease}
/* End */


/* Start:/local/components/bitrix/catalog.smart.filter/templates/tandem_catalog/style.min.css?176353562514273*/
.bx-filter{width:100%;min-width:220px;font-family:var(--ui-font-family-secondary,var(--ui-font-family-open-sans));font-weight:var(--ui-font-weight-regular,400);margin-bottom:20px}.bx-filter .bx-filter-section{position:relative;padding-top:26px}.bx-filter .bx-filter-section>.row{padding:0 5px}.bx-filter .bx-filter-title{font-size:18px;margin-bottom:10px;color:#000}.bx-filter .bx-filter-parameters-box{position:relative}.bx-filter .bx-filter-parameters-box-title{font-size:13px;padding-bottom:7px}@media(min-width:992px){.bx-filter .bx-filter-section .col-md-4:nth-child(3n+1){clear:both}}@media(min-width:768px) and (max-width:991px){.bx-filter .bx-filter-section .col-md-4:nth-child(2n+1){clear:both}}.bx-filter .bx-filter-parameters-box-title span{color:#039be5;border-bottom:1px solid transparent;cursor:pointer}.bx-filter .bx-filter-parameters-box-title span:hover{border-color:#039be5}.bx-filter .bx-filter-parameters-box.bx-active .bx-filter-parameters-box-title span:hover{border-color:transparent}.bx-filter .bx-filter-block{display:none;-webkit-transition:padding .3s ease;-moz-transition:padding .3s ease;-ms-transition:padding .3s ease;-o-transition:padding .3s ease;transition:padding .3s ease;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.bx-filter .bx-filter-button-box .bx-filter-block,.bx-filter .bx-filter-parameters-box.bx-active .bx-filter-block{display:block}.bx-filter .bx-filter-parameters-box.bx-active .bx-filter-block i.bx-ft-sub{font-size:14px;font-style:normal;display:block;padding-bottom:5px}.bx-filter-parameters-box-container{padding-bottom:20px}.bx-filter-parameters-box-container .checkbox:first-child{margin-top:0}.bx-filter .bx-filter-parameters-box-container-block{font-size:11px;color:#3f3f3f}.bx-filter .bx-filter-input-container input{display:block;width:100%;font-size:18px;height:38px;margin:0;padding:0 4px;border:1px solid #ccd5db;border-radius:2px;background:#fff;outline:0}.bx-retina .bx-filter .bx-filter-input-container input{border-style:solid;border-width:1px;-webkit-border-image:url(/local/components/bitrix/catalog.smart.filter/templates/tandem_catalog/images/border_default.png) 2 repeat;-moz-border-image:url(/local/components/bitrix/catalog.smart.filter/templates/tandem_catalog/images/border_default.png) 2 repeat;-o-border-image:url(/local/components/bitrix/catalog.smart.filter/templates/tandem_catalog/images/border_default.png) 2 repeat;border-image:url(/local/components/bitrix/catalog.smart.filter/templates/tandem_catalog/images/border_default.png) 2 repeat}.bx-ios .bx-filter .bx-filter-input-container input{background-image:-webkit-linear-gradient(#fff 0,#fff 100%);background-image:linear-gradient(#fff 0,#fff 100%)}.bx-filter .bx-filter-button-box{clear:both}.bx-filter .bx-ui-slider-track-container{padding-top:35px;padding-bottom:25px}.bx-filter .bx-ui-slider-track{position:relative;height:7px}.bx-filter .bx-ui-slider-part{position:absolute;top:-6px;width:1px;height:17px;background:#a2bfc7}.bx-filter .bx-ui-slider-part.p1{left:-1px}.bx-filter .bx-ui-slider-part.p2{left:25%}.bx-filter .bx-ui-slider-part.p3{left:50%}.bx-filter .bx-ui-slider-part.p4{left:75%}.bx-filter .bx-ui-slider-part.p5{right:-1px}.bx-filter .bx-ui-slider-part span{font-size:11px;position:absolute;top:-16px;left:50%;display:block;width:100px;margin-left:-50px;text-align:center;color:#000}.bx-filter .bx-ui-slider-part.p2 span,.bx-filter .bx-ui-slider-part.p3 span,.bx-filter .bx-ui-slider-part.p4 span{color:#6b8086}.bx-filter .bx-ui-slider-range,.bx-filter .bx-ui-slider-pricebar,.bx-filter .bx-ui-slider-pricebar-vd,.bx-filter .bx-ui-slider-pricebar-vn,.bx-filter .bx-ui-slider-pricebar-v{position:absolute;top:0;bottom:0}.bx-filter .bx-ui-slider-range{z-index:50}.bx-filter .bx-ui-slider-pricebar{z-index:100}.bx-filter .bx-ui-slider-pricebar-vd{z-index:60}.bx-filter .bx-ui-slider-pricebar-vn{z-index:70}.bx-filter .bx-ui-slider-pricebar-v{z-index:80}.bx-filter .bx-ui-slider-handle{position:absolute;top:100%;width:22px;height:22px;border-bottom:0}.bx-filter .bx-ui-slider-handle:hover{-webkit-cursor:grab;-ms-cursor:grab;-o-cursor:grab;cursor:grab}.bx-filter .bx-ui-slider-handle:active{-webkit-cursor:grabbing;-ms-cursor:grabbing;-o-cursor:grabbing;cursor:grabbing}.bx-filter .bx-ui-slider-handle.left{left:0;margin-left:-21px;	/* COLOR */
	/*background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAARCAYAAADUryzEAAAArUlEQVQ4y6WSQQ6FMAhEXbjyXwzOpBdx5bXKbYRWLFSJ2m8ysVHfzGA7DH9cuKVfNwwM40ZzZzJlmE3WTjjNfF9Fn2EwMH5pUGYWOJ3w6wZ4wDKz6rUBumQPPxrUmT0IxuxpqxYLQ7MOG5TaHtbk1iza5+VauW5dfdcYSDKcMLkP7wxdA5sMQWV/BkwDTY7mtAfHjpJ/Ihj4DoIgXZ9J+siaimi6rimLgSw87qod+1BRTwMJRYoAAAAASUVORK5CIIA=) no-repeat right top;*/}.bx-filter .bx-ui-slider-handle.right{right:0;margin-right:-21px;	/* COLOR */
	/*background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAARCAYAAADUryzEAAAAq0lEQVQ4y6WSQRKDIAxFXXSlF0vOZC+SlddKblMUUhKCraIzX9Ahj58PE268TE8e3GSFJ5BUTDskaRl1QFk8BsHs4BCMQMruVEe+l4kWglFu5yLEZKDFXyeXIFoEpg3z738mJTzXhncj75+QtqjnJENO2sG4I1VXDtR3ogv7O1dHxV10gi75EGILiE78RRKy33AOq07i+Us4kRamkOPGptesQjeXIjZjO+fXB+hjUU/S3Z+WAAAAAElFTkSuQmCC) no-repeat left top;*/}.bx-filter .bx-filter-select-container{display:block;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;height:35px;border-radius:3px;border:1px solid #ccd5db}.bx-retina .bx-filter .bx-filter-select-container{border-style:solid;border-width:1px;-webkit-border-image:url(/local/components/bitrix/catalog.smart.filter/templates/tandem_catalog/images/border_default.png) 2 repeat;-moz-border-image:url(/local/components/bitrix/catalog.smart.filter/templates/tandem_catalog/images/border_default.png) 2 repeat;-o-border-image:url(/local/components/bitrix/catalog.smart.filter/templates/tandem_catalog/images/border_default.png) 2 repeat;border-image:url(/local/components/bitrix/catalog.smart.filter/templates/tandem_catalog/images/border_default.png) 2 repeat}.bx-filter .bx-filter-select-block{position:relative;display:block;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;height:33px;margin:0;padding:0 33px 0 10px;border:0;border-radius:2px;background:#fff}.bx-filter .bx-filter-select-text{font-size:15px;line-height:33px;overflow:hidden;max-width:100%;height:33px;cursor:pointer;vertical-align:middle;white-space:nowrap;text-overflow:ellipsis;-ms-text-overflow:ellipsis}.bx-filter .bx-filter-select-text.fix{min-width:120px}.bx-filter .bx-filter-select-text label{cursor:pointer}.bx-filter .bx-filter-select-arrow{position:absolute;top:0;right:0;width:34px;height:33px;cursor:pointer;	background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAECAYAAABCxiV9AAAAG0lEQVQY02OYOXPmf1yYAQRwSsAATglkBch8ADy7LKHqFrgoAAAAAElFTkSuQmCC') no-repeat center;}.bx-filter-select-popup{background:#fff;padding:0;min-width:173px}.bx-filter-select-popup ul{margin:0;padding:0;list-style:none}.bx-filter-select-popup ul li{display:block;text-align:left;vertical-align:middle}.bx-filter-select-popup ul li:first-child{border-bottom:1px solid #e5e5e5;padding-bottom:5px;margin-bottom:5px}.bx-filter-select-popup ul li label{font-size:14px;line-height:26px;display:block;text-align:left !important;overflow:hidden;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;height:26px;padding:0 5px;cursor:pointer;vertical-align:middle;white-space:nowrap;text-overflow:ellipsis;-ms-text-overflow:ellipsis;color:#575757}.bx-filter-select-popup ul li label.selected,.bx-filter-select-popup ul li label:hover{color:#000;background:#f3f8fa}.bx-filter-select-popup ul li label.disabled{color:#b8b8b8;background:transparent}.bx-filter-select-popup ul li .bx-filter-param-text{line-height:34px !important}.bx-filter .bx-filter-tag{padding:18px}.bx-filter .bx-tag-link{font-size:12px;text-decoration:none;text-shadow:none}.bx-filter .bx-tag-link.bx-active,.bx-filter .bx-tag-link:hover{color:#1d3d46}.bx-filter .bx-filter-param-label{min-height:20px;font-weight:normal;cursor:pointer}.bx-filter .bx-filter-param-btn-inline .bx-filter-param-label{float:left;display:block;margin-right:5px}.bx-filter .bx-filter-param-btn-block .bx-filter-param-label{display:block}.bx-filter .bx-filter-param-label.dib{display:inline-block}.bx-filter .bx-filter-param-text{font-weight:normal}.bx-filter .bx-filter-param-label.disabled .bx-filter-param-text{color:#6c6c6c}.bx-filter-select-popup .bx-filter-param-label.bx-active{background:#f3f8fa}.bx-filter .bx-filter-input-checkbox .bx-filter-param-text{display:block;text-align:left}.bx-filter .bx-filter-param-btn{font-weight:normal;display:inline-block;width:38px;height:38px;padding:6px;text-align:center;text-decoration:none;color:#000;vertical-align:middle;border:1px solid #ccd5db;border-radius:2px;background:#fff;position:relative;-webkit-transition:border .3s ease,box-shadow .1s ease,color .3s ease;-moz-transition:border .3s ease,box-shadow .1s ease,color .3s ease;-ms-transition:border .3s ease,box-shadow .1s ease,color .3s ease;-o-transition:border .3s ease,box-shadow .1s ease,color .3s ease;transition:border .3s ease,box-shadow .1s ease,color .3s ease;cursor:pointer}.bx-retina .bx-filter .bx-filter-param-btn{border-style:solid;border-width:1px;-webkit-border-image:url(/local/components/bitrix/catalog.smart.filter/templates/tandem_catalog/images/border_default.png) 2 repeat;-moz-border-image:url(/local/components/bitrix/catalog.smart.filter/templates/tandem_catalog/images/border_default.png) 2 repeat;-o-border-image:url(/local/components/bitrix/catalog.smart.filter/templates/tandem_catalog/images/border_default.png) 2 repeat;border-image:url(/local/components/bitrix/catalog.smart.filter/templates/tandem_catalog/images/border_default.png) 2 repeat}.bx-filter .bx-filter-param-label.disabled .bx-filter-param-btn.bx-color-sl{background:transparent;box-shadow:none}.bx-filter .bx-filter-param-label.disabled .bx-filter-param-btn.bx-color-sl{position:relative}.bx-filter .bx-filter-param-label.disabled .bx-filter-param-btn.bx-color-sl:before{position:absolute;bottom:0;right:0;top:0;left:0;content:' ';display:block;z-index:100;	background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAA/UlEQVQ4y5WSQQ6CQAxFOSBuwAtoAitc4R6MkKgYJULUi8Ax4DgKm9o/45BxBBNJmkB/33T6qUVEHkfDUXHY1sQD7V2DWg+JJox3lOZ3enYdf5IzAjnQkvxGa64Fg2S9PV3JXa4ozoovWEGbY0nOIqDkfIVeQ5hBAOQsAy5guO8FbEJxVqqDZ+rUuQ6rziJ3VLkBcs05BBxlF1nIADrJESYgE0YhAER0KH5DphEKFDNPuG1AhTAi4jnRWV17FNYhcT3NHLzLzuUnjI0YHP203EWY8ENqNsAq5Y3Qf4NuhIT7wTBsDxgIbRjvCfCUe6ozoFCuXIukj5c/lhy1/gvSDM3b8PrjegAAAABJRU5ErkJggg==") no-repeat center; opacity:.7}.bx-filter .bx-filter-param-btn .bx-filter-param-text{line-height:26px}.bx-filter .bx-filter-param-btn.bx-spm{width:23px;min-width:23px;height:23px;line-height:23px;font-weight:normal;padding:0;font-size:17px;color:#767b7e;vertical-align:top;border-radius:50%;background-color:transparent;}
.bx-filter .bx-filter-param-btn.bx-spm.bx-plus {
	background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAMCAYAAAC0qUeeAAAANUlEQVQoz2NgwAQsQMzJQCSwAeKGQa7YFKoAhmOgim3QsAxIcSFUkhC2GaqhgQ4UgNgFmwQAij8OUFmBFssAAAAASUVORK5CIIA=") no-repeat center; }
.bx-filter .bx-filter-param-btn.bx-spm.bx-minus {
	background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAACCAYAAABhYU3QAAAAG0lEQVQYV2NgYGDgBuI4AlgGiBn4gLicAFYGAAFkBwE95V42AAAAAElFTkSuQmCC") no-repeat center;}.bx-filter .bx-filter-param-btn.bx-spm:active{outline:none !important;box-shadow:inset 0 2px 3px rgba(0,0,0,.12)}.bx-filter span.bx-spm{font-size:18px;line-height:23px;display:inline-block;height:23px;margin:0 10px;vertical-align:middle;color:#000}.bx-filter-select-popup .bx-filter-select-text-icon,.bx-filter .bx-filter-select-text-icon{line-height:33px;position:relative;display:inline-block;width:23px;height:23px;margin-top:-4px;margin-right:2px;vertical-align:middle;border-radius:2px}.bx-filter-select-popup .bx-filter-btn-color-icon,.bx-filter .bx-filter-btn-color-icon{line-height:24px;border-radius:2px;display:inline-block;width:24px;height:24px;vertical-align:middle;box-shadow:inset 0 0 0 1px rgba(0,0,0,.05);-webkit-background-size:cover;background-size:cover}.bx-filter-select-popup .bx-filter-btn-color-icon{width:20px;height:20px;margin:2px 0;top:0 !important}.bx-filter .bx-filter-select-block .bx-filter-btn-color-icon{top:-1px !important}.bx-filter-btn-color-icon.all{position:relative;border:0;box-shadow:none}.bx-filter-btn-color-icon.all:after,.bx-filter-btn-color-icon.all:before{position:absolute;width:60%;height:60%;background:#fff;content:" ";box-shadow:inset 0 0 0 1px rgba(0,0,0,.2)}.bx-filter-btn-color-icon.all:after{right:0;bottom:0}.bx-filter-btn-color-icon.all:before{top:0;left:0}.bx-filter .bx-filter-param-label.disabled .bx-filter-btn-color-icon{opacity:.2}.bx-filter .bx-filter-parameter-biz{font-size:14px;line-height:15px;display:inline-block;margin-right:10px;text-decoration:none;color:#1485ce;border-bottom:1px dashed}.bx-filter .bx-filter-parameter-biz:hover{text-decoration:none;border-bottom:1px solid}.bx-filter .bx-filter-parameter-biz.bx-active{position:relative;color:#000;border-color:transparent}.btn-themes{color:#FFF}.btn-themes.bx-active,.btn-themes.focus,.btn-themes:active,.btn-themes:focus,.btn-themes:hover{color:#FFF}.bx-filter .bx-filter-popup-result{font-size:13px;font-weight:normal;position:absolute;z-index:915;display:none;line-height:normal;margin-top:-7px;margin-left:10px;padding:0 10px;white-space:nowrap;color:#3f3f3f;min-height:37px;line-height:18px;border-style:solid;border:1px solid #c6dce7}.bx-filter .bx-filter-popup-result.left{border-width:2px 10px 2px 2px;-webkit-border-image:url(/local/components/bitrix/catalog.smart.filter/templates/tandem_catalog/images/result_popup_left.png) 4 20 4 4 repeat;-moz-border-image:url(/local/components/bitrix/catalog.smart.filter/templates/tandem_catalog/images/result_popup_left.png) 4 20 4 4 repeat;-o-border-image:url(/local/components/bitrix/catalog.smart.filter/templates/tandem_catalog/images/result_popup_left.png) 4 20 4 4 repeat;border-image:url(/local/components/bitrix/catalog.smart.filter/templates/tandem_catalog/images/result_popup_left.png) 4 20 4 4 fill repeat}.bx-filter .bx-filter-popup-result.right{border-width:2px 2px 2px 10px;-webkit-border-image:url(/local/components/bitrix/catalog.smart.filter/templates/tandem_catalog/images/result_popup_right.png) 4 4 4 20 repeat;-moz-border-image:url(/local/components/bitrix/catalog.smart.filter/templates/tandem_catalog/images/result_popup_right.png) 4 4 4 20 repeat;-o-border-image:url(/local/components/bitrix/catalog.smart.filter/templates/tandem_catalog/images/result_popup_right.png) 4 4 4 20 repeat;border-image:url(/local/components/bitrix/catalog.smart.filter/templates/tandem_catalog/images/result_popup_right.png) 4 4 4 20 fill repeat}.bx-filter .bx-filter-popup-result.right{left:97%}.bx-filter .bx-filter-popup-result.left{right:97%}.bx-filter-horizontal .bx-filter-popup-result{display:inline-block;position:relative;left:auto;right:auto;bottom:-7px}.bx-filter .bx-filter-popup-result a{color:#0073a3;line-height:10px}.bx-filter .bx-filter-popup-result a:hover{text-decoration:none}.bx-filter .bx-filter-popup-result-close{display:none}@media(max-width:767px){.bx-touch .bx-filter .bx-filter-popup-result{font-size:12px;line-height:14px;position:fixed !important;z-index:1001;top:auto !important;right:0 !important;bottom:0 !important;left:0 !important;margin-top:0;margin-left:0;width:auto;height:auto;padding:10px;border-radius:2px;border:1px solid #c6dae7;background:rgba(255,255,255,.9)}.bx-touch .bx-filter .bx-filter-popup-result br{display:none}.bx-filter .bx-filter-popup-result .arrow{display:none}}
/* End */


/* Start:/local/templates/main2025/components/bitrix/system.pagenavigation/shop_custom/style.min.css?1763535861675*/
div.modern-page-navigation{padding:.5em 0}div.modern-page-navigation a,span.modern-page-current,span.modern-page-dots{border-left-width:1px;border-left-style:solid;padding-left:.75em;padding-right:.5em;text-decoration:none}div.modern-page-navigation a.modern-page-previous{border-right-width:1px;border-right-style:solid;border-left:0}div.modern-page-navigation a.modern-page-first,div.modern-page-navigation span.modern-page-first{border-left:0;padding-left:.5em}span.modern-page-current{font-weight:var(--ui-font-weight-bold)}div.modern-page-navigation a,span.modern-page-current,div.modern-page-navigation a.modern-page-previous,span.modern-page-dots{border-color:#cdcdcd}
/* End */


/* Start:/local/components/bitrix/catalog.section/templates/tandem/style.css?17664134773808*/
@media (min-width: 1200px){
	/*lg*/
	/*6*/
	.product-item-list-col-6   > .col-xs-12 > .row > .col-md-2:nth-child(6n+1),
	.product-item-list-col-1-6 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-6-1 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-1-6 > .col-sm-6  > .row > .col-md-4:nth-child(3n+1),
	.product-item-list-col-6-1 > .col-sm-6  > .row > .col-md-4:nth-child(3n+1),
	/*4*/
	.product-item-list-col-4   > .col-xs-12 > .row > .col-md-3:nth-child(4n+1),
	.product-item-list-col-1-4 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-4-1 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	/*3*/
	.product-item-list-col-3   > .col-xs-12 > .row > .col-sm-4:nth-child(3n+1),
	/*2*/
	.product-item-list-col-2   > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
	/*1*/
	.product-item-list-col-1   > .col-xs-12 > .row > .col-xs-12:nth-child(1n){clear: both}
}
@media (min-width: 992px) and (max-width:1199px){
	/*md*/
	/*6*/
	.product-item-list-col-6   > .col-xs-12 > .row > .col-md-2:nth-child(6n+1),
	.product-item-list-col-1-6 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-6-1 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-1-6 > .col-sm-6 > .row > .col-md-4:nth-child(3n+1),
	.product-item-list-col-6-1 > .col-sm-6 > .row > .col-md-4:nth-child(3n+1),
	/*4*/
	.product-item-list-col-4   > .col-xs-12 > .row > .col-md-3:nth-child(4n+1),
	.product-item-list-col-1-4 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-4-1 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	/*3*/
	.product-item-list-col-3   > .col-xs-12 > .row > .col-sm-4:nth-child(3n+1),
	/*2*/
	.product-item-list-col-2   > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
	/*1*/
	.product-item-list-col-1   > .col-xs-12 > .row > .col-xs-12:nth-child(1n){clear: both}
}
@media (min-width: 768px) and (max-width: 991px){
	/*sm*/
	/*6*/
	.product-item-list-col-6   > .col-xs-12 > .row > .col-sm-4:nth-child(3n+1),
	.product-item-list-col-1-6 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-6-1 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-1-6 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-6-1 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	/*4*/
	.product-item-list-col-4   > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-1-4 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-4-1 > .col-sm-6:nth-child(2n+1),
	.product-item-list-col-1-4 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-4-1 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	/*3*/
	.product-item-list-col-3   > .col-xs-12 > .row > .col-sm-4:nth-child(3n+1),
	/*2*/
	.product-item-list-col-2   > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
	/*1*/
	.product-item-list-col-1   > .col-xs-12 > .row > .col-xs-12:nth-child(1n){clear: both}
}
@media (max-width: 767px){
	/*xs*/
	/*6*/
	.product-item-list-col-6   > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-1-6 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-6-1 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	/*4*/
	.product-item-list-col-4   > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-1-4 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	.product-item-list-col-4-1 > .col-sm-6 >  .row > .col-xs-6:nth-child(2n+1),
	/*3*/
	.product-item-list-col-3   > .col-xs-12 > .row > .col-sm-4:nth-child(3n+1),
	/*2*/
	.product-item-list-col-2   > .col-xs-12 > .row > .col-xs-6:nth-child(2n+1),
	/*1*/
	.product-item-list-col-1   > .col-xs-12 > .row > .col-xs-12:nth-child(1n){clear: both}
}

.catalog-section-header{
	font-size:14px;
	font-weight: bold;
	text-align: left;
	margin:5px 0;
	padding:5px 15px;
	border-bottom: 2px solid #d9dee6;
	color: #000;
}

.row::before {
	display: initial;
}
/* End */


/* Start:/local/components/bitrix/catalog.section/templates/tandem/themes/blue/style.min.css?1763535625706*/
.bx-blue .product-item-image-slider-progress-bar{background-color:#0083d1}.bx-blue .product-item-image-slider-control:hover{background-color:rgba(0,131,209,.8)}.bx-blue .product-item-image-slider-control.active,.bx-blue .product-item-image-slider-control:hover{background-color:#0083d1}.bx-blue .product-item-scu-item-text-block:hover,.bx-blue .product-item-scu-item-color-block:hover,.bx-blue .product-item-scu-item-text-container.selected .product-item-scu-item-text-block,.bx-blue .product-item-scu-item-color-container.selected .product-item-scu-item-color-block{outline-color:#006cc0}.bx-blue .product-item-amount-field:focus{border-color:#006cc0}.bx-blue .catalog-section-header{border-color:#006cc0}
/* End */
/* /local/templates/main2025/styles/catalog.css?17727151746925 */
/* /local/templates/main2025/styles/category.css?177262597110878 */
/* /local/templates/main2025/styles/product.css?177253810519785 */
/* /local/templates/main2025/styles/smart_filter.css?17721158815661 */
/* /local/templates/main2025/components/bitrix/catalog.section.list/category/style.min.css?17635356296236 */
/* /local/components/bitrix/catalog.smart.filter/templates/tandem_catalog/style.min.css?176353562514273 */
/* /local/templates/main2025/components/bitrix/system.pagenavigation/shop_custom/style.min.css?1763535861675 */
/* /local/components/bitrix/catalog.section/templates/tandem/style.css?17664134773808 */
/* /local/components/bitrix/catalog.section/templates/tandem/themes/blue/style.min.css?1763535625706 */
