

/* Start:/local/templates/polaris/components/bitrix/catalog/polaris/style.css?17835843706328*/
.catalog-top {
    width: 100%;
}

.catalog_items-list {
    width: 100%;
}

.catalog__items-count {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ===== Контейнер ===== */
.custom-select {
    position: relative;
    display: inline-block;
    user-select: none;
}


/* Убираем рамку полностью */
.custom-select__trigger {
    position: relative;
    display: flex;
    align-items: center;;
    justify-content: space-between;
    padding-left: 12px;
    padding-top: 6px;
    padding-bottom: 6px;
     border-color: #fff;
    border-radius: inherit;
    background-color: inherit;
    white-space: nowrap;
    cursor: pointer;
}

catalog__sort {
    font-size: 1rem;
}

/* ===== Текст ===== */
.custom-select__text {
    font-weight: 500;
    color: #1F2937;
    flex: 1;
}

/* ===== Стрелка ===== */
.custom-select__arrow {
    width: 12px;
    height: 8px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #6B7280; /* Цвет стрелки */
}

/* Поворот стрелки при открытии */
.custom-select__trigger.open .custom-select__arrow {
    transform: rotate(180deg);
    color: #3B82F6; /* Цвет стрелки при открытии */
}

/* ===== Выпадающий список ===== */
.custom-select__options {
    position: absolute;

    right: 0;
    min-width: 100%;
    width: auto;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: .25rem;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.98);
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
    z-index: 1000;
}

/* Открытое состояние */
.custom-select__options.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* ===== Пункты списка ===== */
.custom-select__option {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: rgba(0, 0, 0, 0);
    border: 0;
    cursor: pointer;
}

/* Ховер на пункте */
.custom-select__option:hover {
    background: #f8f9fa; /* Цвет фона при наведении на пункт */
}

/* Активный/выбранный пункт */
.custom-select__option.selected {
    background: #010916;
    color: white;/* Цвет фона выбранного пункта */
    font-weight: 500;
}

/* ===== Адаптивность ===== */
@media (max-width: 768px) {
    .custom-select {
        min-width: 180px;
    }

    .custom-select__trigger {
        padding: 8px 14px;
    }


    .custom-select__option {
        padding: 6px 12px;
    }
}




@media (max-width: 992px) {

    .catalog__items-count {
        display: none;
    }

    .catalog__sort {
        width: 100%;
    }

    .custom-select {
        width: 100%;
    }

    .custom-select__trigger {
        width: 100%;
        border: 1px solid #010916;
        background-color: #fff;
        padding: .6em 1.1em .5em .5em;
        cursor: pointer;
        width: 100%;
        max-height: 48px;
        height: 48px;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-weight: 500;
    }

    /* ===== Выпадающий список в закрытом состоянии ===== */
    .custom-select__options {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 0 20px rgba(1, 9, 22, .2);
        padding: 0;
        /* Анимация только по высоте и прозрачности */
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        overflow-y: hidden;

        /* ВАЖНО: Сбрасываем десктопный трансформ, чтобы убрать эффект уменьшения размера */
        transform: none !important;

        /* Плавный переход только для высоты и прозрачности */
        transition: max-height 0.5s ease-in-out,
        opacity 1s ease-in-out,
        visibility 1s ease-in-out;
    }

    /* ===== Выпадающий список в ОТКРЫТОМ состоянии ===== */
    .custom-select__options.open {
        max-height: 15em;
        opacity: 1;
        visibility: visible;
        overflow-y: auto;

        /* Гарантируем отсутствие трансформа и при открытии */
        transform: none !important;

        transition: max-height 0.5s ease-in-out,
        opacity 0.1s ease-in-out,
        visibility 0.1s;
    }

    .catalog__sort-title {
        display: none;
    }

    .custom-select__option {
        padding: 0.6em;
    }

    .custom-select__option.selected {
        background: inherit;
        color: #212529;
        font-weight: 400;
    }


    .custom-select__option:focus, .custom-select__option:active, .custom-select__option.has-focus {
        background-color: #f0f1f3;
    }

    .filter_wrapper.active {
        /*display: block;*/
        -webkit-transform: translateX(-100vw);
        -ms-transform: translateX(-100vw);
        transform: translateX(-100vw);
        overflow: overlay;
    }

    .filter_wrapper {
        position: fixed;
        right: calc(-100% - 15px);
        top: 0;
        z-index: 5;
        height: 100%;
        width: 80%;
        padding: 20px;
        cursor: pointer;
        background-color: #efefef;
        -webkit-transition: transform .53s;
        -o-transition: .53s transform;
        transition: transform .53s;
        -webkit-transition-timing-function:
                cubic-bezier(.38, .52, .37, 1);
        -o-transition-timing-function: cubic-bezier(.38,.52,.37,1);
        transition-timing-function:
                cubic-bezier(.38, .52, .37, 1);
    }
}
/* End */


/* Start:/local/templates/polaris/components/bitrix/catalog.element/.default/style.css?17780542212829*/
.all_desc{
	text-decoration: none;
	color: #47567f;
	border-bottom: 1px solid;
	cursor: pointer;
}

.all_desc:hover{
	border-color: transparent;
}
.product-details__slider-thumbs{
	height:126px;
	overflow: hidden;
}
.product-details__slider-thumbs .swiper-slide{
	cursor: pointer;
	opacity: .8;
	border: 1px solid transparent;
}
.product-details__slider-thumbs .swiper-slide.swiper-slide-thumb-active{
	border: 1px solid;
	opacity: 1;
}
.nav-tab__item{
	border-radius: 0;
    color: #010916;
    padding: 30px 0;
    padding-left: 0;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
}

.blue-text strong{
	padding: 0 0 0 5px;
	background:#fff;
}

.deliv-text strong{
	display: inline;
    font-size: 14px;
    font-weight: 400;
    background-color: #fff;
    -webkit-box-shadow: -10px 0 0 #fff, 10px 0 0 #fff;
    box-shadow: -10px 0 0 #fff, 10px 0 0 #fff;
}

.tab-pane.fade{
	display: none;
}

.catalog__product-tabs {
    /* margin: 3rem 0; */
    background-color: #f0f1f3;
}

.catalog__product-tabs>nav {
    padding: 0 40px;
    border-bottom: 1px solid #c4c4c4;
}


.nav-tab__item.active {
    color: #010916;
    background-color: rgba(0,0,0,0);
    border-bottom: 4px solid #010916;
}

.catalog__product-tabs .tab-content .tbl {
    width: 100%;
    margin-bottom: 1rem;
    box-sizing: border-box;
    border-collapse: collapse;
}

.catalog__product-tabs .tab-content {
    padding: 40px 50px 50px;
}

.catalog .block__feed {
    padding: 30px 20px;
    margin: 0 -20px
}

.catalog .block__feed:nth-child(2n) {
    background: #e8e8e8
}

.block__feed--body strong {
    font-weight: 900;
}

.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: .25rem
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}
.loading-content {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
#reviews-container {
    position: relative;
    transition: opacity 0.3s ease;
}

.rich_content-img {
    width: 100%;
    height: auto;
    display: block;
}

#stream-container img {
    width: 100% !important;
}

.product-details {
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .catalog__rich_content-mobile {
        display: none;
    }
}

@media (max-width: 767px) {
    .catalog__rich_content-desktop {
        display: none;
    }
}

#stream-container {
    max-width: 100% !important;
}

/* End */
/* /local/templates/polaris/components/bitrix/catalog/polaris/style.css?17835843706328 */
/* /local/templates/polaris/components/bitrix/catalog.element/.default/style.css?17780542212829 */
