

/* Start:/local/components/spll/catalog.index/templates/b2b/style.css?178515278016780*/
/* =================================== */

/* Основной контейнер каталога: фильтры слева, товары справа */
.catalog-page__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.catalog-page__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: center;
}

.catalog-page__top-select--left {
    justify-self: start;
}

.catalog-page__top-select--right {
    justify-self: end;
}

.catalog-page__main-row {
    display: flex;
    gap: 16px;
}

/* === Стили для блока фильтров === */
.catalog-page__filters {
    width: 292px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 80px;
    align-self: flex-start;
    height: fit-content;
}

.catalog-page__filters .simple-filter-item__expansion-icon {
    display: none
}

.catalog-page__filters .simple-filter-mobile-subtitle {
    font-size: 22px;
    line-height: 115%;
    font-weight: 700;
    margin-bottom: 12px;
}

.catalog-page__filters .simple-filter-item.level-2>a>.simple-filter-item__btn {
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--b2b-accent);
}

.catalog-page__filters .simple-filter-item.level-1>.simple-filter-item__expansion>a>.simple-filter-item__expansion-header {
    padding: 14px 4px;
}

.catalog-page__filters .simple-filter-item.level-1>.simple-filter-item__expansion>a.active>.simple-filter-item__expansion-header,
.catalog-page__filters .simple-filter-item.level-2>a.active>.simple-filter-item__btn,
.catalog-page__filters .simple-filter-item.level-3>a.active>.simple-filter-item__btn {
    background: #d9efff;
    color: #0a1a3e !important;
    border-radius: 10px;
}

.simple-filter-item__expansion>a.active>.simple-filter-item__expansion-header>.simple-filter-item__expansion-label {
    color: var(--b2b-primary) !important;
}
/* Секции фильтров (Раздел, Цена, Материал) */
.filter-section-layout {
    padding: 0 16px 20px 16px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 20px;
}
.filter-section-layout:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.filter-section-layout__head {
    margin-bottom: 16px;
}
.filter-section-layout__head h6 {
    font-size: 15px;
    color: #2c2c2c;
}


/* === Стили для блока товаров === */
.catalog-page__products {
    flex: 1;
    /* без min-width: 0 flex-элемент не сжимается ниже min-content своей начинки
       (после «Показать ещё» это выталкивало каталог за край экрана) */
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Шапка с сортировкой */
.products-grid__head {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-bottom: 24px;
    padding-right: 8px;
}
/* b2b:ui.select в шапке каталога */
.catalog-page__top .b2b-select {
    width: 292px;
}

.catalog-page__top .b2b-select .b2b-select__control:before {
    border-color: rgba(0, 26, 52, 0.5) !important;
}

.catalog-page__top .b2b-select .b2b-select__control {
    background-color: #f9fcff;
}

.catalog-page__top .b2b-select .b2b-select__control:hover:before,
.catalog-page__top .b2b-select.open .b2b-select__control:before,
.catalog-page__top .b2b-select.open .b2b-select__control:after {
    border-color: #0a1a3e !important;
}

.catalog-page__top .b2b-select.open .b2b-select__dropdown {
    border-color: #0a1a3e !important;
}

.catalog-page__top .b2b-select .b2b-select__value {
    color: #7c8b99;
    font-size: 16px;
}

.catalog-page__top .b2b-select.b2b-select--has-value .b2b-select__value {
    font-weight: 500;
    color: #0a1a3e;
}

.catalog-page__top .b2b-select .b2b-select__trigger {
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 10px;
}

    .mob-filter-actions-fixed .mob-filter-actions__apply {
        flex: 0 !important;
        width: 100%;
        padding: 13px 0;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 600;
        font-family: inherit;
        cursor: pointer;
        background: transparent;
        color: #2f8eed;
        border: 1.5px solid #2f8eed;
    }


/* Сетка карточек товаров */
.cards-grid-layout__content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 20px;
}

/* Независимая прокрутка колонок. Товары пробрасывают скролл на страницу
   (иначе SEO-текст и футер недостижимы), фильтры — нет. */
@media (min-width: 921px) {
    .catalog-page__filters,
    .catalog-page__products {
        position: sticky;
        top: 80px;
        align-self: flex-start;
        max-height: calc(100vh - 96px);
        overflow-y: auto;
        overflow-x: hidden;
        scrollbar-width: thin;
    }

    .catalog-page__filters {
        overscroll-behavior: contain;
    }
}

@media (max-width: 920px) {
    .catalog-page__top {
        display: none;
    }

    .catalog-page__top-select--left,
    .catalog-page__top-select--right {
        justify-self: stretch;
    }

    .catalog-page__top .b2b-select {
        width: 100%;
    }

    .catalog-page__filters {
        display: none
    }
}

@media (max-width: 360px) {
    .catalog-page__filters {
        display: none
    }
}

/* ── Default hidden for mobile-only elements (must be before @media) ── */
.mob-catalog-mobile-layout { display: none; }
.mob-filter-actions { display: none; }
.mob-extra-filters-panel { display: none; }
.mob-extra-filters-btn { display: none; }
.mob-select-panel { display: none; }
.mob-select-row { display: none; }

/* === Кнопка открытия фильтров (только мобильные) === */
.catalog-mobile-filter-btn {
    display: none;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.catalog-mobile-filter-header {
    display: none;
}

@media (max-width: 920px) {
    .catalog-mobile-filter-btn {
        display: flex;
    }

    .catalog-page__filters.is-open {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        z-index: 9999;
        background: #fff;
        border-radius: 0;
        overflow: hidden;
        box-sizing: border-box;
        gap: 0;
    }

    .catalog-filters-scrollable {
        flex: 1;
        overflow-y: auto;
        padding: 0 20px 20px;
    }

    .catalog-mobile-filter-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 24px 20px 16px;
        flex-shrink: 0;
    }

    .catalog-mobile-filter-title {
        font-size: 18px;
        font-weight: 600;
        color: #0A1A3E;
    }

    .catalog-mobile-filter-close {
        padding: 0;
        background: transparent;
        border: none;
        font-size: 15px;
        font-weight: 500;
        color: #2f8eed;
        cursor: pointer;
        font-family: inherit;
    }

    body.catalog-filter-open {
        overflow: hidden;
    }

    /* ── Hide desktop filters, show mobile layout ── */
    .catalog-filters-scrollable .desktop-filters.page-filters__desktop {
        display: none !important;
    }

    .mob-catalog-mobile-layout {
        display: flex;
        flex-direction: column;
    }

    /* ── mob-filter-list base ── */
    .mob-filter-list {
        display: block;
    }

    .mob-filter-list__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 0;
    }

    .mob-filter-list__title {
        font-size: 16px;
        font-weight: 600;
        color: #0A1A3E;
        flex: 1;
    }

    .mob-filter-list__all-btn {
        display: flex;
        align-items: center;
        gap: 6px;
        background: transparent;
        border: none;
        font-size: 15px;
        font-weight: 500;
        color: var(--b2b-accent);
        cursor: pointer;
        font-family: inherit;
        padding: 0;
        flex-shrink: 0;
        white-space: nowrap;
    }

    #mob-sort-row .mob-sort-wrapper {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .mob-sort-current {
        font-size: 14px;
        font-weight: 500;
        color: #919191;
    }

    .mob-type-current.sorting {
        font-size: 14px;
        font-weight: 500;
        color: #919191;
    }

    .mob-filter-list__items {
        display: flex;
        flex-direction: column;
    }

    .mob-filter-list__item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 14px;
        cursor: pointer;
        font-size: 14px;
        color: #123670;
        text-decoration: none !important;
        font-weight: 500;
    }

    .mob-filter-list__item--sub {
        padding-left: 16px;
        font-size: 14px;
        font-weight: 500;
        color: #123670;
    }

    .mob-filter-list__item:last-child {
        border-bottom: none;
    }

    .mob-filter-list__item.mob-hidden {
        display: none;
    }

    /* ── Round checkbox (sections) ── */
    .mob-check-round {
        position: relative;
        flex-shrink: 0;
        width: 24px;
        height: 24px;
    }

    .mob-check-round input[type="checkbox"],
    .mob-check-round input[type="radio"] {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
    }

    .mob-check-round__mark {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        border: 2px solid #d1d5db;
        background: #fff;
        transition: border-color .15s, background .15s;
        box-sizing: border-box;
    }

    .mob-check-round__mark svg {
        opacity: 0;
        transform: scale(0);
        transition: opacity .15s, transform .15s;
    }

    .mob-check-round input:checked ~ .mob-check-round__mark,
    .mob-check-round.is-current .mob-check-round__mark {
        border-color: #2f8eed;
        background: #2f8eed;
    }

    .mob-check-round input:checked ~ .mob-check-round__mark svg,
    .mob-check-round.is-current .mob-check-round__mark svg {
        opacity: 1;
        transform: scale(1);
    }

    /* ── Square checkbox (smart filter items) ── */
    .catalog-page__filters .q-checkbox__inner {
        position: relative;
        flex-shrink: 0;
        width: 22px;
        height: 22px;
        cursor: pointer;
        display: inline-flex;
    }

    .catalog-page__filters .q-checkbox__native {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
    }

    .catalog-page__filters .q-checkbox__bg {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 22px;
        height: 22px;
        border-radius: 4px;
        border: 2px solid #d1d5db;
        background: #fff;
        transition: background .15s, border-color .15s;
        box-sizing: border-box;
    }

    .catalog-page__filters .q-checkbox__svg {
        opacity: 0;
        transform: scale(0);
        transition: opacity .15s, transform .15s;
    }

    .catalog-page__filters .q-checkbox__native:checked ~ .q-checkbox__bg {
        background: #2f8eed;
        border-color: #2f8eed;
    }

    .catalog-page__filters .q-checkbox__native:checked ~ .q-checkbox__bg .q-checkbox__svg {
        opacity: 1;
        transform: scale(1);
    }

    /* ── mob-all-open fullscreen overlay ── */
    .mob-filter-list.mob-all-open {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 10001;
        background: #fff;
        margin: 0;
        display: flex;
        flex-direction: column;
    }

    .mob-filter-list.mob-all-open .mob-filter-list__header {
        padding: 20px;
        flex-shrink: 0;
        justify-content: flex-start;
        gap: 12px;
    }

    /* Back arrow: move button before title */
    .mob-filter-list.mob-all-open .mob-filter-list__title { order: 2; flex: 1; }
    .mob-filter-list.mob-all-open .mob-filter-list__all-btn { order: 1; flex-shrink: 0; }

    .mob-filter-list.mob-all-open .mob-filter-list__all-btn span { display: none; }
    .mob-filter-list.mob-all-open .mob-filter-list__all-btn svg {
        transform: rotate(180deg);
        width: 12px;
        height: 20px;
    }

    .mob-filter-list.mob-all-open .mob-filter-list__items {
        flex: 1;
        overflow-y: auto;
        padding: 0 20px;
    }

    .mob-filter-list.mob-all-open .mob-filter-list__item.mob-hidden { display: flex; }

    /* ── Select rows (type / sort) ── */
    .mob-select-row {
        display: flex;
    }

    .mob-select-row .mob-filter-list__all-btn span {
        font-size: 15px;
        font-weight: 400;
        color: #9ca3af;
    }

    /* ── Select panels (type / sort fullscreen) ── */
    .mob-select-panel {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 10003;
        background: #fff;
        flex-direction: column;
    }

    .mob-select-panel.is-open {
        display: flex;
    }

    .mob-sort-options-list {
        display: flex;
        flex-direction: column;
    }

    /* ── Дополнительные фильтры button ── */
    .mob-extra-filters-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 16px 0;
        background: transparent;
        border: none;
        border-top: 1px solid #f0f0f0;
        font-size: 16px;
        font-weight: 600;
        color: #0A1A3E;
        cursor: pointer;
        font-family: inherit;
        margin-top: 4px;
    }

    /* ── Apply / Clear buttons ── */
    .mob-filter-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 16px 20px;
        flex-shrink: 0;
        background: #fff;
        border-top: 1px solid #f0f0f0;
    }

    .mob-filter-actions__apply {
        width: 100%;
        padding: 14px 0;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 600;
        font-family: inherit;
        cursor: pointer;
        border: none;
        background: var(--b2b-accent);
        color: #fff;
    }

    .favorite-mobile-filter-form #mob-filter-apply {
        flex: 0 !important;
        width: 100%;
        padding: 13px 0;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 600;
        font-family: inherit;
        cursor: pointer;
        background: transparent;
        color: #2f8eed;
        border: 1.5px solid #2f8eed;
    }

    /* ── Additional filters fullscreen panel ── */
    .mob-extra-filters-panel {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 10002;
        background: #fff;
        flex-direction: column;
    }

    .mob-extra-filters-panel.is-open {
        display: flex;
    }

    .mob-extra-filters-panel__header {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 20px;
        border-bottom: 1px solid #e5e7eb;
        flex-shrink: 0;
    }

    .mob-extra-filters-back {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        flex-shrink: 0;
    }

    .mob-extra-filters-panel__title {
        font-size: 18px;
        font-weight: 600;
        color: #0A1A3E;
    }

    .mob-extra-filters-scrollable {
        flex: 1;
        overflow-y: auto;
        padding: 0 20px;
    }

    .mob-extra-filters-scrollable .mob-filter-list {
        margin-top: 0;
    }

    .mob-extra-filters-scrollable .mob-filter-list__header {
        padding: 16px 0;
    }

    .mob-extra-filters-scrollable .mob-filter-list__item {
        padding: 14px 0;
    }

    /* Remove padding from scrollable area in catalog-filters-scrollable */
    .catalog-filters-scrollable {
        padding: 0 20px 4px;
    }

    /* Adjust catalog-page__filters for flex-column layout */
    .catalog-page__filters.is-open {
        overflow: visible;
    }
}

/* End */


/* Start:/local/components/b2b/ui.select/templates/.default/style.css?178480837613873*/
/* Основной контейнер */
.b2b-select {
    width: 100%;
    font-family: inherit;
    position: relative;
}

/* Заголовок поля */
.b2b-select__label {
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    color: #333;
}

/* Звёздочка обязательного поля — та же иконка, что и в b2b:form.input
   (см. local/components/b2b/form.input/templates/.default/style.css) */
.b2b-select__label-required {
    display: inline-block;
    flex: 0 0 auto;
    align-self: flex-start;
    width: 6px;
    height: 6px;
    margin-left: 2px;
    vertical-align: top;
    font-size: 0;
    line-height: 0;
    color: transparent;
    background: url(/local/templates/main_b2b/assets/icons/asterisk.svg) no-repeat center center;
    background-size: 6px 6px;
}

/* Внутренний контейнер */
.b2b-select__inner {
    position: relative;
    width: 100%;
}

/* Контрол */

.b2b-select__control {
    position: relative;
    width: 100%;
    min-height: 48px;
    background-color: #F9FCFF;
    border-radius: 10px;
    transition: all 0.3s ease;
    /* z-index: 2; */
}


.b2b-select__control:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid var(--b2b-accent) !important;
    border-radius: 10px;
    pointer-events: none;
    transition: border-color 0.3s;
    z-index: 2;
    background: #F9FCFF;
}

.b2b-select__control:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1.5px solid transparent;
    border-radius: 10px;
    pointer-events: none;
    transition: border-color 0.3s;
}

/* Триггер */
.b2b-select__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    cursor: pointer;
    user-select: none;
    position: relative;
    z-index: 3;
}

.b2b-select__value {
    flex: 1;
    font-size: 16px;
    line-height: 1.3;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.b2b-select__arrow {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #0a1a3e;
    transition: transform 0.3s ease;
}

/* Открытое состояние */
.b2b-select.open .b2b-select__arrow {
    transform: rotate(180deg);
}


.b2b-select.open .b2b-select__control:after {
    border-color: #0a1a3e;
}

.b2b-select.open:not(.b2b-select--drop-up) .b2b-select__dropdown {
    border: 1px solid var(--b2b-primary);
    border-top: none !important;
}

/* Убираем нижний border-radius и border у селекта при открытии вниз */
.b2b-select.open:not(.b2b-select--drop-up) .b2b-select__control,
.b2b-select.open:not(.b2b-select--drop-up) .b2b-select__control:before {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-bottom: none !important;
}

/* Открытие вверх: зеркальная стыковка рамок — список смыкается с верхом контрола */
.b2b-select.open.b2b-select--drop-up .b2b-select__dropdown {
    border: 1px solid var(--b2b-primary);
    border-bottom: none !important;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

.b2b-select.open.b2b-select--drop-up .b2b-select__control,
.b2b-select.open.b2b-select--drop-up .b2b-select__control:before {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-top: none !important;
}

/* Поиск */
.b2b-select__search {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10;
    background: #fff;
    border: 1px solid #d0d5dd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 8px;
}

.b2b-select__search-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
}

.b2b-select__search-input:focus {
    border-color: #0a1a3e;
}

/* Выпадающий список */

.b2b-select__dropdown {
    flex-direction: column;
    gap: 8px;
    padding: 14px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 250px;
    overflow-y: auto;
    background: #F9FCFF;
    border: 1px solid #d0d5dd;
    border-top: none;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}


.b2b-select.open .b2b-select__dropdown {
    display: flex;
}


.b2b-select.open .b2b-select__search {
    display: block;
}

/* Опции */
.b2b-select__option {
    cursor: pointer;
    transition: background-color 0.2s;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    color: #919191;
}

.b2b-select__option:hover {
    background-color: #f5f5f5;
}

.b2b-select__option.selected {
    color: #0a1a3e;
    font-weight: 500;
    position: relative;
}

/* Пустой список */
.b2b-select__empty {
    padding: 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

/* Ошибка. Двойной класс .b2b-select--error.b2b-select--color-*, чтобы перебить
   цветовые схемы (grey-light и т.п.), которые задают серую рамку с той же
   специфичностью и !important, но объявлены ниже по файлу. */
.b2b-select--error .b2b-select__control:before,
.b2b-select--error .b2b-select__control:after,
.b2b-select--error.b2b-select--color-grey-light .b2b-select__control:before,
.b2b-select--error.b2b-select--color-white .b2b-select__control:before,
.b2b-select--error.b2b-select--color-blue-light .b2b-select__control:before,
.b2b-select--error.b2b-select--color-grey .b2b-select__control:before {
    border-color: #ff3535 !important;
}


.b2b-select__search {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10;
    background: #F9FCFF;
    border: 1px solid #d0d5dd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 8px;
}

.b2b-select--disabled .b2b-select__value {
    color: #B9B9B9 !important;
}

.b2b-select--disabled .b2b-select__arrow {
    color: #B9B9B9 !important;
}

.b2b-select--disabled .b2b-select__trigger {
    cursor: not-allowed;
}

/* Выбрано значение — подсвечиваем акцентом */
.b2b-select.b2b-select--has-value .b2b-select__value {
    color: var(--b2b-accent);
}

/* Цветовые схемы */
.b2b-select--color-grey-light .b2b-select__control:before {
    border-color: #d0d5dd !important;
}

.b2b-select--color-white .b2b-select__control:before {
    border-color: #fff !important;
}

.b2b-select--color-blue-light .b2b-select__control:before {
    border-color: #e3f2fd !important;
}

.b2b-select--color-grey .b2b-select__control:before {
    border-color: #e5e5e5 !important;
}

.b2b-select--color-grey-dark {
    .b2b-select__control:before {
        border-color: #E8EFF5 !important;
        background-color: #E8EFF5 !important;
    }
}
.b2b-select--color-grey-dark.open .b2b-select__dropdown {
    border-color: #E8EFF5 !important;
    background-color: #E8EFF5 !important;
    box-shadow: none;
}

/* Множественный выбор */
.b2b-select--multiple .b2b-select__value {
    white-space: normal;
    max-height: 60px;
    overflow-y: auto;
}


/* Адаптивность */
@media (max-width: 768px) {
    .b2b-select__dropdown {
        max-height: 200px;
    }
}

/* Анимации */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.b2b-select__dropdown {
    animation: fadeIn 0.2s ease;
}


/* Контейнер чекбокса */
.b2b-select__checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

/* Скрываем нативный чекбокс */
.b2b-select__checkbox input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 16px;
    height: 16px;
}

/* Кастомный квадрат */
.b2b-select__checkbox span {
    position: relative;
    padding-left: 28px;
    font-weight: 500;
    font-size: 16px !important;
    color: var(--b2b-accent);
    text-align: center;
}

.b2b-select__checkbox span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    border: 1px solid var(--b2b-primary);
    border-radius: 3px;
    background: #fff;
    transition: all 0.2s ease;
}

.b2b-select__checkbox span::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 3px;
    width: 10px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.70669 1.72205L9.38931 2.40466C9.4352 2.45056 9.43813 2.53064 9.39224 2.57654L3.68911 8.27966C3.64321 8.32556 3.56411 8.32263 3.51821 8.27576L0.621728 5.38123C0.57583 5.33533 0.5729 5.25818 0.619775 5.2113L1.30239 4.52869C1.34829 4.48279 1.42446 4.48572 1.47036 4.53259L3.59829 6.66052L8.53774 1.72107C8.58364 1.67615 8.66079 1.67615 8.70669 1.72205Z' fill='white'/%3E%3Cpath d='M8.63443 1.79194C8.85122 2.00873 9.069 2.22651 9.28579 2.44331C9.30728 2.46479 9.33462 2.48334 9.31802 2.50776C9.31411 2.51362 9.30825 2.51752 9.30337 2.52241C9.27212 2.55366 9.23989 2.58588 9.20864 2.61713C9.06997 2.75581 8.9313 2.89448 8.7936 3.03217C8.57681 3.24897 8.36001 3.46577 8.14224 3.68354C7.87271 3.95307 7.60415 4.22163 7.33462 4.49116C7.0397 4.78608 6.74478 5.081 6.44986 5.37592C6.15493 5.67084 5.86099 5.96479 5.56607 6.25971C5.29849 6.52729 5.03091 6.79487 4.76333 7.06245C4.54849 7.27729 4.33462 7.49116 4.11978 7.706C3.98501 7.84077 3.85025 7.97553 3.71646 8.10932C3.68716 8.13862 3.65786 8.16889 3.62759 8.19819C3.62466 8.20112 3.61978 8.20698 3.61587 8.20991C3.59634 8.22065 3.58364 8.20698 3.56997 8.19331C3.42837 8.0517 3.28677 7.9101 3.14419 7.76752C2.87661 7.49995 2.60904 7.23237 2.34146 6.96479C2.05044 6.67377 1.75943 6.38276 1.46743 6.09077C1.25454 5.87788 1.04263 5.66596 0.829738 5.45307C0.784816 5.40815 0.737941 5.36518 0.694973 5.31831C0.682277 5.30463 0.673488 5.29487 0.68716 5.27631C0.714504 5.23725 0.759426 5.20405 0.792629 5.17084C0.930324 5.03315 1.06802 4.89545 1.20571 4.75776L1.34927 4.6142C1.36685 4.59663 1.37661 4.58491 1.39907 4.60444C1.45083 4.64838 1.49771 4.70307 1.54556 4.75092C1.65103 4.85639 1.7565 4.96186 1.86196 5.06733C2.14907 5.35444 2.43618 5.64155 2.72329 5.92866C2.95474 6.1601 3.18618 6.39155 3.41665 6.62202C3.45279 6.65815 3.48794 6.69331 3.52407 6.72944C3.56118 6.76655 3.62466 6.76655 3.66177 6.72944L3.79556 6.59565C3.91665 6.47456 4.03775 6.35346 4.15982 6.23139C4.3395 6.0517 4.51821 5.87299 4.6979 5.69331L5.35318 5.03803L6.06997 4.32123C6.31021 4.081 6.55044 3.84077 6.79165 3.59956C7.01529 3.37592 7.23794 3.15327 7.46157 2.92963C7.64907 2.74213 7.83657 2.55463 8.0231 2.36811C8.15591 2.2353 8.28775 2.10346 8.42056 1.97065C8.47818 1.91303 8.53384 1.8437 8.59732 1.79389C8.61001 1.78706 8.62075 1.78022 8.63443 1.79194C8.72818 1.87495 8.86685 1.73725 8.77212 1.65424C8.67251 1.56635 8.54068 1.57709 8.44985 1.66791C8.42446 1.69331 8.3981 1.71967 8.37271 1.74506C8.26138 1.85639 8.15103 1.96674 8.0397 2.07807C7.86685 2.25092 7.694 2.42377 7.52114 2.59663C7.30435 2.81342 7.08755 3.03022 6.87075 3.24702C6.6315 3.48627 6.39224 3.72553 6.15298 3.96479C5.90982 4.20795 5.66568 4.45209 5.42251 4.69526C5.19302 4.92475 4.96353 5.15424 4.73404 5.38373C4.54068 5.57709 4.34634 5.77143 4.15298 5.96479C4.01333 6.10444 3.87368 6.24409 3.73306 6.38471C3.66665 6.45112 3.59536 6.51459 3.53286 6.58491C3.52993 6.58784 3.527 6.59077 3.52407 6.5937H3.66177C3.52114 6.45307 3.37954 6.31147 3.23892 6.17084C2.94888 5.88081 2.65884 5.59077 2.3688 5.30073C2.12954 5.06147 1.89029 4.82221 1.65103 4.58295C1.61196 4.54389 1.57388 4.50288 1.53384 4.46577C1.43618 4.37592 1.30435 4.38569 1.21255 4.47651C1.16568 4.52338 1.1188 4.57026 1.07193 4.61713C0.930324 4.75873 0.788723 4.90034 0.647121 5.04194C0.612941 5.07612 0.577785 5.10834 0.545558 5.1435C0.461574 5.23432 0.46548 5.36518 0.548488 5.45405C0.668605 5.58295 0.798488 5.70405 0.922512 5.82807C1.18716 6.09272 1.45181 6.35737 1.71646 6.62202L2.61196 7.51752L3.28189 8.18745C3.33169 8.23725 3.38052 8.28706 3.43032 8.33588C3.5231 8.42768 3.65982 8.44038 3.75747 8.34663C3.83853 8.2685 3.91665 8.18745 3.99575 8.10834C4.17251 7.93159 4.34927 7.75483 4.52603 7.57807L5.26821 6.83588L6.13345 5.97065L7.04458 5.05952C7.33462 4.76948 7.62564 4.47846 7.91568 4.18842C8.16372 3.94038 8.41177 3.69233 8.65982 3.44428L9.19986 2.90424C9.28286 2.82123 9.36685 2.7392 9.44888 2.65522C9.47818 2.62495 9.50064 2.59077 9.51138 2.54975C9.53677 2.45209 9.48892 2.37202 9.42349 2.30756C9.29556 2.17963 9.1686 2.05268 9.04068 1.92475C8.95083 1.83491 8.86099 1.74506 8.77114 1.65522C8.68325 1.5644 8.54458 1.70307 8.63443 1.79194Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    transform: scale(0);
    transform-origin: center;
    transition: transform 0.15s ease-in-out;
}

/* Checked */
.b2b-select__checkbox input:checked+span::before {
    background: var(--b2b-primary);
    border-color: var(--b2b-primary);
}

/* Галочка показывается при checked */
.b2b-select__checkbox input:checked+span::after {
    transform: scale(1);
}

/* Hover */
.b2b-select__checkbox:hover span::before {
    border-color: var(--b2b-primary);
}

.b2b-select__clear-option {
    color: var(--b2b-primary);
    cursor: pointer;
}


.b2b-select__clear-option.disabled {
    cursor: not-allowed;
    pointer-events: none;
    color: #919191;
}
/* End */


/* Start:/local/components/spll/catalog.section.list/templates/catalog_list_multilevel/style.css?17848940724778*/
/* Main Container */
.simple-filter-desktop {
    display: block;
    width: 290px;
    background-color: #fff;
}

.simple-filter-desktop__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    /* width inherited from parent */
}

.simple-filter-desktop__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    margin: 0;
    color: #1c1b1d;
}

.simple-filter-desktop__reset-btn {
    font-size: 14px;
    color: #8654cc;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 500;
    padding: 0;
}

.simple-filter-mobile-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.simple-filter-desktop__list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
}

/* Common Item Styles */
.simple-filter-item {
    list-style: none;
    margin: 0;
    padding: 0;
}

.simple-filter-item a {
    text-decoration: none;
    color: inherit;
    display: block;
    outline: none !important;
}
.simple-filter-item a.active:hover {
    text-decoration: none;
} 

/* Level 1 Styles */
.simple-filter-item.level-1>.simple-filter-item__expansion>a>.simple-filter-item__expansion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px;
    min-height: 40px;
    cursor: pointer;
    color: #1c1b1d;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 4px;
}

.simple-filter-item.level-1>.simple-filter-item__expansion>a>.simple-filter-item__expansion-header:hover {
    background-color: var(--b2b-secondary);
}

.simple-filter-item__expansion-label {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--b2b-accent);
    margin: 0;
}

.simple-filter-item__expansion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: 12px;
    color: inherit;
}

.simple-filter-item__expansion-icon svg {
    width: 24px;
    height: 24px;
}

.simple-filter-item__expansion-arrow {
    display: flex;
    align-items: center;
    color: #757575;
    transition: transform 0.3s;
}

.simple-filter-item__expansion-arrow.simple-filter-item__expansion-arrow--expanded {
    transform: rotate(180deg);
}

/* Level 2 Styles */
.simple-filter-item.level-2 {
    margin-top: 2px;
}

.simple-filter-item.level-2>a>.simple-filter-item__btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Align text left, arrow right */
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 4px 4px 40px;
    /* Indentation: 24px icon + 12px gap + 4px padding */
    min-height: 32px;
    font-size: 16px;
    font-weight: 500;
    color: #1c1b1d;
    border-radius: 4px;
    transition: color 0.3s, background-color 0.3s;
}

.simple-filter-item.level-2>a>.simple-filter-item__btn:hover {
    background-color: var(--b2b-secondary);
}

/* Level 3 Styles */
.simple-filter-item.level-3 {
    margin-top: 1px;
}

.simple-filter-item.level-3>a>.simple-filter-item__btn {
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px 4px 60px;
    /* Increased indentation for clear hierarchy */
    min-height: 28px;
    font-size: 14px;
    font-weight: 500;
    color: #1c1b1d;
    border-radius: 4px;
    transition: color 0.3s, background-color 0.3s;
}

.simple-filter-item.level-3>a>.simple-filter-item__btn:hover {
    background-color: #F7F5FF;
}

/* Active/Expanded States */
.simple-filter-item.level-1>.simple-filter-item__expansion>a.active>.simple-filter-item__expansion-header,
.simple-filter-item.level-2>a.active>.simple-filter-item__btn,
.simple-filter-item.level-3>a.active>.simple-filter-item__btn {
    color: #8654cc !important;
    background-color: #F7F5FF;
}

/* Inner List visibility */
.simple-filter-item__expansion-inner-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
    /* Default visible for now as per "all levels expanded" comment */
}

.simple-filter-item__expansion[data-collapsed="true"] .simple-filter-item__expansion-inner-list {
    display: none;
}

@media (max-width: 920px) {

    .simple-filter-desktop__list,
    .simple-filter-desktop__title {
        display: none;
    }

    .simple-filter-mobile-toggle {
        display: block !important;
    }
}

.simple-filter-mobile-toggle__btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #1c1b1d;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* End */


/* Start:/local/templates/main_b2b/components/bitrix/system.pagenavigation/pagenav_with_show_more/style.css?17768485291604*/
.b2b-pagination {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
    .b2b-pagination__more {
        color: var(--b2b-primary);
        background: none;
        margin: 0 auto;
    }
    .b2b-pagination__more:hover {
        color: var(--b2b-primary);
        background-color: var(--b2b-secondary);
    }

    .b2b-pagination__btn-move {
        min-width: 2.5rem;
        height: 2.5rem;
        margin: 0;
        padding: 0;
        border: none !important;
        outline: none !important;
        background: none !important;
        line-height: 1;
        svg {
            height: 16px;
        }
    }
    .b2b-pagination__btn-move:disabled {
        opacity: 0.6;
    }
    .b2b-pagination__btn-move:last-child svg {
        margin-left: auto;
    }

    .b2b-pagination__btn-page {
        height: 2.5rem;
        width: 2.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none !important;
        outline: none !important;
        border-radius: 50%;
        background: none;
        line-height: 1;
        transition: var(--animate-duration);
        font-size: 16px;
        font-weight: 500;
        text-decoration: none;
        color: var(--b2b-accent);
    }
    .b2b-pagination__btn-page:hover {
        background-color: var(--b2b-secondary);
    }
    .b2b-pagination__btn-page.b2b-pagination__btn-page_active {
        background-color: var(--b2b-secondary);
        color: var(--t-color-1);
        pointer-events: none;
        position: relative;
    }
}
/* End */


/* Start:/local/templates/main_b2b/components/bitrix/catalog.section/catalog/style.css?17847965554597*/
.look-all {
    svg {
        width: 10px !important;
        height: 9px !important;
    }
    span {

        white-space: nowrap;
    }
}

@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;
}

.catalog-items {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
	align-items: stretch;
	gap: 16px;
}

.catalog-item {
	height: 100%;
	display: block;
	/* колонка не должна раздуваться до min-content карточки — иначе сетка вылезает за экран */
	min-width: 0;
}

@media (max-width: 640px) {
	.catalog-items {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
	}
}

@media (max-width: 480px) {
}

@media (max-width: 350px) {
	.catalog-items {
		grid-template-columns: repeat(1, 1fr);
	}

	.product-item {
		width: 100%;
		height: auto;
	}
}

/* End */


/* Start:/local/templates/main_b2b/components/bitrix/catalog.item/.default/style.css?178479652630735*/
.product-item-container {
	position: relative;
	height: 100%;
}

/*.product-item-container.hover { z-index: 17; }*/

.product-item-container .btn-send-request {
	width: 100%;
}

.product-content {
	flex-grow: 1;
}

.product-item-detail-link {
	gap: 8px;
	flex-wrap: nowrap;
	flex-direction: column;
	display: flex;
	flex-grow: 1;
}

.product-item-detail-link,
.product-item-detail-link:hover {
	text-decoration: none;
	color: inherit;
}

.product-item-detail-link:focus,
.product-item-detail-link:focus-visible,
.product-item-detail-link:active {
	outline: none;
	box-shadow: none;
}

.product-item-line-card .product-item {
	width: auto !important;
	border-bottom: 1px solid #dadada;
}

.product-item {
	background: #d9efff;
	gap: 8px;
	padding: 12px;
	border-radius: 20px;
	height: 100%;
	flex-wrap: nowrap;
	flex-direction: column;
	display: flex;
}

@media (max-width: 991px) {
	.product-item-line-card .product-item .col-sm-6:nth-child(2n) {
		clear: both;
	}
}

.bx-retina .product-item {
	border-width: .5px;
}

.product-item * {
	transition: opacity 300ms ease;
}

@media (max-width: 767px) {
	.product-item-line-card .product-item .col-xs-12:nth-child(2n) {
		clear: both;
	}
}

/*Image*/
.product-item-image-wrapper {}

.product-item-image-original,
.product-item-image-alternative {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	transition: opacity 300ms linear;
}

.product-item-image-original {
	z-index: 11;
}

.product-item-image-alternative {
	z-index: 13;
	opacity: 0;
}

.bx-no-touch .product-item-container.hover .product-item-image-original {
	opacity: 0;
}

.bx-no-touch .product-item-container.hover .product-item-image-alternative {
	opacity: 1;
}


/*Image Slider*/
.product-item-image-slider-slide-container {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	overflow: hidden;
	width: 100%;
	height: 100%;
	transition: opacity 300ms ease;
}

.product-item-image-slide {
	position: relative;
	display: none;
	height: 100%;
	background-color: #fff;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	transition: .6s ease-in-out left;
}

@media all and (transform-3d),
(-webkit-transform-3d) {
	.product-item-image-slide {
		transition: transform .6s ease-in-out;
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		-webkit-perspective: 1000px;
		perspective: 1000px;
	}

	.product-item-image-slide.next,
	.product-item-image-slide.active.right {
		left: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}

	.product-item-image-slide.prev,
	.product-item-image-slide.active.left {
		left: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}

	.product-item-image-slide.next.left,
	.product-item-image-slide.prev.right,
	.product-item-image-slide.active {
		left: 0;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.product-item-image-slider-slide-container>.active,
.product-item-image-slider-slide-container>.next,
.product-item-image-slider-slide-container>.prev {
	display: block;
}

.product-item-image-slider-slide-container>.active {
	left: 0;
}

.product-item-image-slider-slide-container>.next,
.product-item-image-slider-slide-container>.prev {
	position: absolute;
	top: 0;
	width: 100%;
}

.product-item-image-slider-slide-container>.next {
	left: 100%;
}

.product-item-image-slider-slide-container>.prev {
	left: -100%;
}

.product-item-image-slider-slide-container>.next.left,
.product-item-image-slider-slide-container>.prev.right {
	left: 0;
}

.product-item-image-slider-progress-bar-container {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
}

.product-item-image-slider-progress-bar {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	height: 1px;
	background-color: #f42c2c;
	opacity: .8;
}

.product-item-image-slider-control-container {
	position: absolute;
	right: 0;
	bottom: 10px;
	left: 0;
	z-index: 15;
	padding: 0;
	text-align: center;
	opacity: 0;
	transition: opacity 300ms ease;
}

.product-item-container.hover .product-item-image-slider-control-container,
.product-item-line-card:hover .product-item-image-slider-control-container {
	opacity: 1;
}

.product-item-image-slider-control,
.product-item-image-slider-control.active {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: rgba(128, 128, 128, .8);
	opacity: .6;
	cursor: pointer;
	transition: all 300ms ease;
}

.product-item-image-slider-control:hover,
.product-item-image-slider-control.active:hover {
	cursor: pointer;
}

/*Label*/
.product-item-label-text,
.product-item-label-ring {
	position: absolute;
	z-index: 15;
}

.product-item-label-text span,
.product-item-label-ring {
	display: inline-block;
	clear: both;
	margin-bottom: 2px;
	background: #8654CC;
	color: #fff;
	vertical-align: middle;
	text-align: center;
	transition: all 250ms ease;
}



.bx-red .product-item-label-text span,
.bx-red .product-item-label-ring {
	background-color: #fba90c;
}

.product-item-label-text>div,
.product-item-label-ring>div {
	line-height: 0;
}

/* TEXT */
.product-item-label-text span {
	padding: 2px 5px;
	vertical-align: middle;
	font-weight: bold;
}

/*SMALL*/
.product-item-label-text.product-item-label-small span,
.product-item-scalable-card.hover .product-item-label-text.product-item-label-small span {
	margin-bottom: 1px;
	padding: 2px 7px;
	font-weight: normal;
	font-size: 13px;
	line-height: 14px;
}

.product-item-big-card .product-item-label-text.product-item-label-small span {
	padding: 5px 12px;
	font-size: 16px;
	line-height: 21px;
}

/* BIG */
.product-item-label-text.product-item-label-big span,
.product-item-scalable-card.hover .product-item-label-text.product-item-label-big span {
	padding: 4px 10px;
	font-size: 13px;
	line-height: 17px;
}

.product-item-big-card .product-item-label-text.product-item-label-big span {
	padding: 5px 17px;
	font-size: 22px;
	line-height: 33px;
}

@media (max-width: 767px) {
	.product-item-label-text>div {
		line-height: 0;
	}

	.product-item-label-text.product-item-label-small span,
	.product-item-scalable-card.hover .product-item-label-text.product-item-label-small span {
		margin-bottom: 1px;
		padding: 2px 7px;
		font-size: 10px;
		line-height: 14px;
	}

	.product-item-big-card .product-item-label-text.product-item-label-small span,
	.product-item-label-text.product-item-label-big span,
	.product-item-scalable-card.hover .product-item-label-text.product-item-label-big span {
		margin-bottom: 1px;
		padding: 3px 12px;
		font-size: 14px;
		line-height: 16px;
	}

	.product-item-big-card .product-item-label-text.product-item-label-big span {
		padding: 3px 12px;
		font-size: 20px;
		line-height: 25px;
	}
}

/*RING*/
.product-item-label-ring {
	box-sizing: border-box;
	border-radius: 50%;
	font-weight: bold;
}

.product-item-label-ring.product-item-label-small,
.product-item-scalable-card.hover .product-item-label-ring.product-item-label-small {
	width: 40px;
	height: 40px;
	font-size: 14px;
	line-height: 40px;
}

.product-item-big-card .product-item-label-ring.product-item-label-small {
	width: 100px;
	height: 100px;
	font-size: 30px;
	line-height: 100px;
}

.product-item-label-ring.product-item-label-big,
.product-item-scalable-card.hover .product-item-label-ring.product-item-label-big {
	width: 50px;
	height: 50px;
	font-size: 18px;
	line-height: 50px;
}

.product-item-big-card .product-item-label-ring.product-item-label-big {
	width: 120px;
	height: 120px;
	font-size: 42px;
	line-height: 120px;
}

@media (max-width: 767px) {

	.product-item-label-ring.product-item-label-small,
	.product-item-scalable-card.hover .product-item-label-ring.product-item-label-small {
		--product-item-label-ring-size: 40px;
		width: var(--product-item-label-ring-size);
		height: var(--product-item-label-ring-size);
		line-height: var(--product-item-label-ring-size);
		font-size: 14px;
	}

	.product-item-big-card .product-item-label-ring.product-item-label-small,
	.product-item-label-ring.product-item-label-big,
	.product-item-scalable-card.hover .product-item-label-ring.product-item-label-big {
		width: 35px;
		height: 35px;
		font-size: 12px;
		line-height: 35px;
	}

	.product-item-big-card .product-item-label-ring.product-item-label-big {
		width: 70px;
		height: 70px;
		font-size: 24px;
		line-height: 70px;
	}
}

.product-item-label-center {
	left: 50%;
	transform: translateX(-50%);
}

.product-item-label-center>div {
	text-align: center;
}

.product-item-label-left>div {
	text-align: left;
}

.product-item-label-bottom {
	bottom: -5px;
}

.product-item-label-middle {
	top: 50%;
	transform: translateY(-50%);
}

.product-item-label-right {
	right: -5px;
}

.product-item-label-right>div {
	text-align: right;
}

.product-item-label-center.product-item-label-middle {
	transform: translateY(-50%) translateX(-50%);
}

/*Title*/
.product-item-title {
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-top: 12px;
	font-size: 16px;
	line-height: 130%;
	font-weight: 500;
}

/*Price*/

.product-item-price-current {
	font-weight: 500;
	font-size: 16px;
	line-height: 130%;
}

.product-item-price-old {
	color: #a5a5a5;
	text-decoration: line-through;
	white-space: nowrap;
	font-size: 12px;
}

.product-item-big-card .product-item-price-current,
.product-item-big-card .product-item-price-old {
	vertical-align: middle;
	line-height: 20px;
}


.product-item-big-card .product-item-price-current {
	font-size: 18px;
}

.product-item-big-card .product-item-price-old {
	font-size: 15px;
}

/*Info*/
.product-item-line-card .product-item-info-container {
	text-align: center;
}

.product-item-info-container {
	margin-bottom: 8px;
}

.product-item-info-container-title {
	color: #000;
	font-weight: bold;
	font-size: 13px;
}

.bx-no-touch .product-item-container .product-item-info-container.product-item-hidden {
	display: none;
	opacity: 0;
	transition: opacity 300ms ease;
}

.bx-touch .product-item-info-container.product-item-touch-hidden {
	display: none !important
}

.bx-touch .product-item-info-container.product-item-hidden,
.bx-no-touch .product-item-container.hover .product-item-info-container.product-item-hidden,
.product-item-line-card .product-item-container .product-item-info-container.product-item-hidden {
	display: block;
	opacity: 1;
}

/*Amount*/
.product-item-amount {
	padding: 0 0 2px;
	text-align: center;
}

.product-item-amount-field-btn-plus,
.product-item-amount-field-btn-minus {
	position: relative;
	display: inline-block;
	min-width: 22px;
	height: 22px;
	border-radius: 2px;
	background-color: #f2f2f2;
	color: #fff;
	vertical-align: middle;
	text-align: center;
	cursor: pointer;
	transition: background 300ms ease, opacity 300ms ease;
}

.bx-retina .product-item-amount-field-btn-plus,
.bx-retina .product-item-amount-field-btn-minus {
	border-width: .5px;
}

.product-item-amount-field-btn-plus:hover,
.product-item-amount-field-btn-minus:hover {
	background: #d3d3d3;
}

.product-item-amount-field-btn-plus:after,
.product-item-amount-field-btn-minus:after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: "";
	opacity: .8;
	transition: opacity 300ms ease, background 300ms ease;
}

.product-item-amount-field-btn-disabled.product-item-amount-field-btn-plus:after,
.product-item-amount-field-btn-disabled.product-item-amount-field-btn-minus:after {
	opacity: .3 !important;
	cursor: default;
}

.product-item-amount-field-btn-disabled.product-item-amount-field-btn-plus:hover,
.product-item-amount-field-btn-disabled.product-item-amount-field-btn-minus:hover {
	background-color: #f2f2f2;
}

.product-item-amount-field-btn-plus:after {
	background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMCIgaGVpZ2h0PSIzMCIgdmlld0JveD0iMCAwIDMwIDMwIj4gIDxwYXRoIGZpbGw9IiM1MjVDNjgiIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTE4LDEyIEwxOCwwIEwxMiwwIEwxMiwxMiBMMCwxMiBMMCwxOCBMMTIsMTggTDEyLDMwIEwxOCwzMCBMMTgsMTggTDMwLDE4IEwzMCwxMiBMMTgsMTIgWiIvPjwvc3ZnPg==) no-repeat center;
	background-size: 10px;
}

.product-item-amount-field-btn-minus:after {
	background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMCIgaGVpZ2h0PSIzMCIgdmlld0JveD0iMCAwIDMwIDMwIj4gIDxyZWN0IHdpZHRoPSIzMCIgaGVpZ2h0PSI2IiB5PSIxMiIgZmlsbD0iIzUyNUM2OCIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+) no-repeat center;
	background-size: 10px;
}

.product-item-amount-field-btn-plus:hover:after,
.product-item-amount-field-btn-minus:hover:after {
	opacity: 1;
}

.product-item-amount-field {
	display: inline-block;
	padding: 0;
	max-width: 50px;
	width: auto;
	height: 22px;
	border: 1px solid transparent;
	border-radius: 2px;
	background: transparent !important;
	color: #000;
	vertical-align: middle;
	text-align: center;
	font-weight: bold;
	line-height: 22px;
	transition: border 300ms ease;
}

.bx-retina .product-item-amount-field {
	border-width: .5px;
}

.product-item-amount-field:focus {
	outline: none !important;
}

.bx-no-touch input.product-item-amount-field::-webkit-outer-spin-button,
.bx-no-touch input.product-item-amount-field::-webkit-inner-spin-button {
	margin: 0;
	-webkit-appearance: none;
	appearance: none
}

.product-item-amount-description-container {
	color: #a5a5a5;
	white-space: nowrap;
	font-size: 12px;
	display: block;
}

.product-item-big-card .product-item-amount-field-container {
	text-align: left;
}

.product-item-amount-description-container strong {
	color: #333;
	white-space: nowrap;
}

.product-item-amount-label-container {
	margin: 5px 0;
	color: #a5a5a5;
	font-weight: bold;
	font-size: 12px;
}

/**/
.product-item-quantity {
	color: #333;
	font-weight: normal;
	font-size: 12px;
}

/*Properties */
.product-item-properties {
	display: block;
	overflow: hidden;
	margin: 0;
	color: #a5a5a5;
	font-size: 12px;
}

.product-item-properties dl {
	clear: both;
}

.product-item-properties dt {
	float: left;
	clear: both;
	font-weight: normal;
}

.product-item-properties dd {
	float: right;
	margin-bottom: 3px;
	margin-left: 5px;
	color: #000;
}

/*Compare*/
.product-item-compare-container {
	position: relative;
	display: none;
	margin: 0 -15px;
	padding: 4px 15px;
	min-height: 30px;
	border-top: 1px solid #e6e6e6;
	background: #f3f3f3;
	box-shadow: inset 0 1px 1px 0 #eee;
	vertical-align: middle;
	font-size: 12px;
	line-height: 20px;
}

.product-item-line-card .product-item-compare-container {
	margin: 0;
	border: none;
	background-color: transparent;
	box-shadow: none;
	text-align: center;
}

.bx-touch .product-item-compare-container {
	display: none;
}

.product-item-line-card .product-item-compare-container,
.product-item-container.hover .product-item-compare-container {
	display: block;
}

.product-item-compare .checkbox {
	margin: 0;
	padding: 0;
}

/* SCU */
.product-item-scu-container {
	padding: 0 0 2px;
}

.product-item-scu-container-title {
	color: #333;
	font-size: 12px;
}

.product-item-scu-list {
	margin: 0;
}

.product-item-scu-item-list {
	overflow: hidden;
	margin: 0 0 0 -2px;
	padding: 0;
	list-style: none;
}

.product-item-scu-item-color-container,
.product-item-scu-item-text-container {
	/* float: left; */
	display: inline-block;
	box-sizing: border-box;
	padding: 5px 3px;
	max-width: 100%;
}

.product-item-scu-item-text-container {
	min-width: 32px;
}

.product-item-scu-item-color-container {
	max-width: 38px;
	width: 25%;
}

.product-item-scu-item-color-block {
	position: relative;
	padding-top: 100%;
	outline: 1px solid #c0cfda;
	cursor: pointer;
}

.bx-no-touch .product-item-scu-item-color-block {
	transition: outline 200ms ease;
}

.bx-retina .product-item-scu-item-color-block {
	outline-width: .5px;
}

.product-item-scu-item-color-container.selected .product-item-scu-item-color-block {
	outline-width: 2px;
}

.bx-retina .product-item-scu-item.selected .product-item-scu-item-color-block {
	outline-width: 1px;
}

.product-item-scu-item-color {
	position: absolute;
	top: 2px;
	right: 2px;
	bottom: 2px;
	left: 2px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

.product-item-scu-item-text-block {
	position: relative;
	padding: 0 5px;
	outline: 1px solid #c0cfda;
	cursor: pointer;
}

.bx-no-touch .product-item-scu-item-text-block {
	transition: outline 300ms ease;
}

.bx-retina .product-item-scu-item-text-block {
	outline-width: .5px;
}

.product-item-scu-item-text-container.selected .product-item-scu-item-text-block {
	outline-width: 2px;
}

.bx-retina .product-item-scu-item.selected .product-item-scu-item-text-block {
	outline-width: 1px;
}

.product-item-scu-item-text {
	overflow: hidden;
	max-width: 100%;
	vertical-align: middle;
	text-align: center;
	text-transform: uppercase;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 11px;
	line-height: 18px;
}

.product-item-scu-item-color-container.notallowed .product-item-scu-item-color-block,
.product-item-scu-item-text-container.notallowed .product-item-scu-item-text-block {
	position: relative;
	outline-color: #a9adb4 !important;
}

.product-item-scu-item-color-container.notallowed .product-item-scu-item-color-block:after,
.product-item-scu-item-text-container.notallowed .product-item-scu-item-text-block:after {
	position: absolute;
	top: -2px;
	right: -2px;
	bottom: -2px;
	left: -2px;
	background: rgba(255, 255, 255, 0.75) url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNiIgaGVpZ2h0PSIyNiIgdmlld0JveD0iMCAwIDI2IDI2Ij4gIDxwYXRoIGZpbGw9IiNBOUFEQjQiIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTE0LjM5MjEyNjgsMTMuMjMyMzAyOSBMMjUuOTkyLDEuNDE4IEwyNC42LDAgTDEyLjk5OTk5NTYsMTEuODE0NDM2NCBMMS40LDAgTDAuMDA5LDEuNDE5IEwxMS42MDc4Njg3LDEzLjIzMjI5NzUgTDAuNDczLDI0LjU3MyBMMS44NjUsMjUuOTkxIEwxMi45OTk5OTkzLDE0LjY1MDE2NDUgTDI0LjEzNCwyNS45OSBMMjUuNTI2LDI0LjU3MiBMMTQuMzkyMTI2OCwxMy4yMzIzMDI5IFoiLz48L3N2Zz4=) no-repeat center;
	background-size: 80% 80%;
	content: "";
}

@media (max-width: 991px) {
	.product-item-line-card .product-item-scu-container-title {
		text-align: center;
	}

	.product-item-line-card .product-item-scu-item-list {
		text-align: center;
	}

	.product-item-line-card .product-item-scu-item-color-container,
	.product-item-line-card .product-item-scu-item-text-container {
		display: inline-block;
		float: none;
	}
}

/*Description*/
.product-item-description-container p {
	color: #575757;
	font-size: 13px;
}

/*Buttons*/
.product-item-button-container {
	text-align: center;
}

.product-item-button-container .btn {
	margin-bottom: 2px;
}

/*Stickers*/
.product-item-sticker,
.product-item-sticker-round {
	display: none;
}

/*More*/
.product-item-more-container {
	position: relative;
	display: block;
	box-sizing: border-box;
	padding: 15px 15px 5px;
	width: 100%;
	border: 1px solid transparent;
	border-radius: 2px;
	transition: all 300ms ease;
}

.product-item-more-wrapper {
	position: relative;
	display: block;
	margin-bottom: 15px;
	padding-top: 116%;
	width: 100%;
}

.product-item-more {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: #f3f3f3 url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMjk3LjYxMyAyOTcuNjEzIiBzdHlsZT0iZmlsbDogcmdiKDEzMCwgMTMwLCAxMzApOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PGcgc3R5bGU9ImZpbGw6IHJnYigxMzAsIDEzMCwgMTMwKTsiPjxjaXJjbGUgY3g9IjE1LjI3OSIgY3k9IjE0LjgzIiByPSIxNC44MyIgc3R5bGU9ImZpbGw6IHJnYigxMzAsIDEzMCwgMTMwKTsiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjU5LjMyIiBjeT0iNTkuNzY5IiByPSIxNC44MyIgc3R5bGU9ImZpbGw6IHJnYigxMzAsIDEzMCwgMTMwKTsiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjU5LjMyIiBjeT0iMTQuODMiIHI9IjE0LjgzIiBzdHlsZT0iZmlsbDogcmdiKDEzMCwgMTMwLCAxMzApOyI+PC9jaXJjbGU+PGNpcmNsZSBjeD0iMTA0LjI2MSIgY3k9IjU5Ljc2OSIgcj0iMTQuODMiIHN0eWxlPSJmaWxsOiByZ2IoMTMwLCAxMzAsIDEzMCk7Ij48L2NpcmNsZT48Y2lyY2xlIGN4PSIxMDQuMjYxIiBjeT0iMTAzLjgxIiByPSIxNC44MyIgc3R5bGU9ImZpbGw6IHJnYigxMzAsIDEzMCwgMTMwKTsiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjEwNC4yNjEiIGN5PSIxNC44MyIgcj0iMTQuODMiIHN0eWxlPSJmaWxsOiByZ2IoMTMwLCAxMzAsIDEzMCk7Ij48L2NpcmNsZT48Y2lyY2xlIGN4PSIxNDguMzAyIiBjeT0iNTkuNzY5IiByPSIxNC44MyIgc3R5bGU9ImZpbGw6IHJnYigxMzAsIDEzMCwgMTMwKTsiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjE0OC4zMDIiIGN5PSIxMDMuODEiIHI9IjE0LjgzIiBzdHlsZT0iZmlsbDogcmdiKDEzMCwgMTMwLCAxMzApOyI+PC9jaXJjbGU+PGNpcmNsZSBjeD0iMTQ4LjMwMiIgY3k9IjE0LjgzIiByPSIxNC44MyIgc3R5bGU9ImZpbGw6IHJnYigxMzAsIDEzMCwgMTMwKTsiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjE5Mi4zNDMiIGN5PSI1OS43NjkiIHI9IjE0LjgzIiBzdHlsZT0iZmlsbDogcmdiKDEzMCwgMTMwLCAxMzApOyI+PC9jaXJjbGU+PGNpcmNsZSBjeD0iMTkyLjM0MyIgY3k9IjEwMy44MSIgcj0iMTQuODMiIHN0eWxlPSJmaWxsOiByZ2IoMTMwLCAxMzAsIDEzMCk7Ij48L2NpcmNsZT48Y2lyY2xlIGN4PSIxNDguMzAyIiBjeT0iMTQ3Ljg1MiIgcj0iMTQuODMiIHN0eWxlPSJmaWxsOiByZ2IoMTMwLCAxMzAsIDEzMCk7Ij48L2NpcmNsZT48Y2lyY2xlIGN4PSIxOTIuMzQzIiBjeT0iMTQ3Ljg1MiIgcj0iMTQuODMiIHN0eWxlPSJmaWxsOiByZ2IoMTMwLCAxMzAsIDEzMCk7Ij48L2NpcmNsZT48Y2lyY2xlIGN4PSIxMDQuMjYxIiBjeT0iMTkyLjc5IiByPSIxNC44MzEiIHN0eWxlPSJmaWxsOiByZ2IoMTMwLCAxMzAsIDEzMCk7Ij48L2NpcmNsZT48Y2lyY2xlIGN4PSIxNDguMzAyIiBjeT0iMTkyLjc5IiByPSIxNC44MzEiIHN0eWxlPSJmaWxsOiByZ2IoMTMwLCAxMzAsIDEzMCk7Ij48L2NpcmNsZT48Y2lyY2xlIGN4PSIxOTIuMzQzIiBjeT0iMTkyLjc5IiByPSIxNC44MzEiIHN0eWxlPSJmaWxsOiByZ2IoMTMwLCAxMzAsIDEzMCk7Ij48L2NpcmNsZT48Y2lyY2xlIGN4PSI1OS4zMiIgY3k9IjIzNi44ODciIHI9IjE0LjgzIiBzdHlsZT0iZmlsbDogcmdiKDEzMCwgMTMwLCAxMzApOyI+PC9jaXJjbGU+PGNpcmNsZSBjeD0iMTA0LjI2MSIgY3k9IjIzNi44ODciIHI9IjE0LjgzIiBzdHlsZT0iZmlsbDogcmdiKDEzMCwgMTMwLCAxMzApOyI+PC9jaXJjbGU+PGNpcmNsZSBjeD0iMTQ4LjMwMiIgY3k9IjIzNi44ODciIHI9IjE0LjgzIiBzdHlsZT0iZmlsbDogcmdiKDEzMCwgMTMwLCAxMzApOyI+PC9jaXJjbGU+PGNpcmNsZSBjeD0iMTkyLjM0MyIgY3k9IjIzNi44ODciIHI9IjE0LjgzIiBzdHlsZT0iZmlsbDogcmdiKDEzMCwgMTMwLCAxMzApOyI+PC9jaXJjbGU+PGNpcmNsZSBjeD0iMjM4LjIzOCIgY3k9IjEwMy44MSIgcj0iMTQuODMiIHN0eWxlPSJmaWxsOiByZ2IoMTMwLCAxMzAsIDEzMCk7Ij48L2NpcmNsZT48Y2lyY2xlIGN4PSIyMzguMjM4IiBjeT0iMTQ3Ljg1MiIgcj0iMTQuODMiIHN0eWxlPSJmaWxsOiByZ2IoMTMwLCAxMzAsIDEzMCk7Ij48L2NpcmNsZT48Y2lyY2xlIGN4PSIyMzguMjM4IiBjeT0iMTkyLjc5IiByPSIxNC44MzEiIHN0eWxlPSJmaWxsOiByZ2IoMTMwLCAxMzAsIDEzMCk7Ij48L2NpcmNsZT48Y2lyY2xlIGN4PSIxNS4yNzkiIGN5PSIyODIuNzgyIiByPSIxNC44MzEiIHN0eWxlPSJmaWxsOiByZ2IoMTMwLCAxMzAsIDEzMCk7Ij48L2NpcmNsZT48Y2lyY2xlIGN4PSI1OS4zMiIgY3k9IjI4Mi43ODIiIHI9IjE0LjgzMSIgc3R5bGU9ImZpbGw6IHJnYigxMzAsIDEzMCwgMTMwKTsiPjwvY2lyY2xlPjxjaXJjbGUgY3g9IjEwNC4yNjEiIGN5PSIyODIuNzgyIiByPSIxNC44MzEiIHN0eWxlPSJmaWxsOiByZ2IoMTMwLCAxMzAsIDEzMCk7Ij48L2NpcmNsZT48Y2lyY2xlIGN4PSIxNDguMzAyIiBjeT0iMjgyLjc4MiIgcj0iMTQuODMxIiBzdHlsZT0iZmlsbDogcmdiKDEzMCwgMTMwLCAxMzApOyI+PC9jaXJjbGU+PGNpcmNsZSBjeD0iMjgyLjMzNCIgY3k9IjE0Ny44NTIiIHI9IjE0LjgzIiBzdHlsZT0iZmlsbDogcmdiKDEzMCwgMTMwLCAxMzApOyI+PC9jaXJjbGU+PC9nPjxnIHN0eWxlPSJmaWxsOiByZ2IoMTMwLCAxMzAsIDEzMCk7Ij48L2c+PGcgc3R5bGU9ImZpbGw6IHJnYigxMzAsIDEzMCwgMTMwKTsiPjwvZz48ZyBzdHlsZT0iZmlsbDogcmdiKDEzMCwgMTMwLCAxMzApOyI+PC9nPjxnIHN0eWxlPSJmaWxsOiByZ2IoMTMwLCAxMzAsIDEzMCk7Ij48L2c+PGcgc3R5bGU9ImZpbGw6IHJnYigxMzAsIDEzMCwgMTMwKTsiPjwvZz48ZyBzdHlsZT0iZmlsbDogcmdiKDEzMCwgMTMwLCAxMzApOyI+PC9nPjxnIHN0eWxlPSJmaWxsOiByZ2IoMTMwLCAxMzAsIDEzMCk7Ij48L2c+PGcgc3R5bGU9ImZpbGw6IHJnYigxMzAsIDEzMCwgMTMwKTsiPjwvZz48ZyBzdHlsZT0iZmlsbDogcmdiKDEzMCwgMTMwLCAxMzApOyI+PC9nPjxnIHN0eWxlPSJmaWxsOiByZ2IoMTMwLCAxMzAsIDEzMCk7Ij48L2c+PGcgc3R5bGU9ImZpbGw6IHJnYigxMzAsIDEzMCwgMTMwKTsiPjwvZz48ZyBzdHlsZT0iZmlsbDogcmdiKDEzMCwgMTMwLCAxMzApOyI+PC9nPjxnIHN0eWxlPSJmaWxsOiByZ2IoMTMwLCAxMzAsIDEzMCk7Ij48L2c+PGcgc3R5bGU9ImZpbGw6IHJnYigxMzAsIDEzMCwgMTMwKTsiPjwvZz48ZyBzdHlsZT0iZmlsbDogcmdiKDEzMCwgMTMwLCAxMzApOyI+PC9nPjwvc3ZnPg==) no-repeat center;
	background-size: 50%;
	opacity: .7;
	transition: opacity 300ms ease;
}

.bx-touch .product-item-more,
.product-item-container.hover .product-item-more {
	opacity: 1;
}

.product-item-more-title {
	overflow: hidden;
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.no-select {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

input[type='number'] {
	-moz-appearance: textfield;
	appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

.product-item-company-wrap {
	display: flex;
	align-items: flex-start;
	margin-top: 16px;
}

.product-item-company {
	display: inline-block;
	background: #fff;
	color: #0a1a3e;
	padding: 6px 10px;
	border-radius: 100px;
	font-size: 16px;
	font-weight: 600;
	line-height: 132%;
	max-width: 100%;
	white-space: normal;
	overflow-wrap: anywhere;
	width: fit-content;
}

.product-item-label-text {
	top: 16px;
	left: 16px;
}

.product-item-label-text span {
	color: #fff;
	height: fit-content !important;
	min-height: 22px !important;
	padding: 4px 6px !important;
	border-radius: 12px !important;
}

.product-item-image-original.blur-img,
.product-item-image-alternative.blur-img {
	filter: blur(10px);
	transition: filter 0.3s ease;
}

.product-item-label-text.label-16-plus {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.product-item-label-text.label-16-plus span {
	color: #8654CC;
	background: #fff;
}





.catalog-item .product-item-info-container {
	margin-bottom: 0;
}

.product-item-price-current {
	font-size: 16px;
	line-height: 130%;
	font-weight: 500;
	/* font-family: var(--font-family-1, "Montserrat", Arial, sans-serif);
	font-weight: 400;
	line-height: 138%;
	letter-spacing: 0;
	font-variant-numeric: lining-nums proportional-nums; */
}

.catalog-item .product-item-info-container[data-entity="buttons-block"] {
	margin-bottom: 0;
}

.catalog-item .product-item-info-container[data-entity="props-block"] {
	display: none !important;
}


.product-item .product-item-label-text {
	top: 12px;
	left: 12px;
	max-width: calc(100% - 68px);
}

.product-item .product-item-label-text span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: var(--q-primary) !important;
	height: fit-content !important;
	min-height: 20px !important;
	max-width: 100%;
	padding: 2px 6px !important;
	border-radius: 100px !important;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	font-size: 12px;
	line-height: 130%;
	letter-spacing: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.product-item .product-item-label-text span.product-item-label--made-in-kuban {
	background: #D457C7 !important;
}

.product-item .product-item-label-text .label-NEW_PRODUCT span {
	background: #123670 !important;
}

.product-item.product-item-type-7 .product-item-label-text .label-PRODUCT_TYPE span {
	background: #D9EFFF !important;
	color: #000;
}

.product-item .product-item-label-text:not(.label-16-plus)>div+div {
	margin-top: 4px;
}

.catalog-item .product-item-company.product-item-company--empty {
	width: 100%
}

/* Длинное название предприятия — максимум две строки, полное значение в title.
   Специфичность выше, чем у одноимённого правила в шаблоне catalog.item/registration,
   которое иначе возвращает display: inline-block и отменяет обрезание. */
.catalog-item .product-item .product-item-company {
	display: block;
	overflow-wrap: break-word;
}

/* Обрезаем текст, а не сам чип: у внутреннего span нет padding, поэтому
   line-clamp клиппит ровно по второй строке (у чипа третья строка
   проступала бы в области нижнего padding). */
.catalog-item .product-item .product-item-company__text {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.product-item .product-item-label-text.label-16-plus {
	top: 50% !important;
	left: 50% !important;
	right: auto !important;
	transform: translate(-50%, -50%) !important;
	max-width: calc(100% - 24px);
	z-index: 14;
}

.product-item .product-item-label-text.label-16-plus span {
	color: #8654CC !important;
	background: #fff !important;
}

/* Keep favorite icon aligned with top row in catalog cards across B2C pages */
.catalog-item .product-item-media {
	height: 312px;
	width: 100%;
	border-radius: 16px;
	position: relative;
	overflow: hidden;
	z-index: 1;
	padding: 12px;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: nowrap;
	display: flex;
	background: #fff;
}

.catalog-item .product-item>.b-detail__favorite.short,
.catalog-item .product-item>.b-detail__favorite.short.add-to-favorite,
.catalog-item .product-item>.b-detail__favorite.short.remove-to-favorite,
.catalog-item .product-item-media>.b-detail__favorite.short,
.catalog-item .product-item-media>.b-detail__favorite.short.add-to-favorite,
.catalog-item .product-item-media>.b-detail__favorite.short.remove-to-favorite {
	top: 22px !important;
	right: 12px !important;
	left: auto !important;
	transform: translateY(-50%);
	padding: 0 !important;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	line-height: 0;
}

@media screen and (max-width: 991px) {
	.catalog-item .product-item-price-current {
		font-size: 18px;
	}

	.catalog-item .product-item-company {
		font-size: 14px;
	}

	.catalog-item .product-item-label-text span {
		font-size: 10px;
	}
}

@media (max-width: 768px) {
	.catalog-item .product-item-media {
		height: 224px;
	}

	.product-item-container .btn-send-request {
		display: block !important;
	}
}

@media (max-width: 480px) {
	/* Сетка каталога на телефоне — две колонки. Текст кнопки в одну строку
	   задаёт min-content колонки и растягивает сетку за пределы экрана. */
	.catalog-item .btn-send-request {
		white-space: normal;
		padding-left: 12px;
		padding-right: 12px;
	}

	/* Узкая карточка: даём метке всю свободную ширину до иконки «в избранное»
	   и прижимаем текст влево, чтобы обрезание шло справа, с многоточием. */
	.catalog-item .product-item .product-item-label-text {
		max-width: calc(100% - 44px);
	}

	.catalog-item .product-item .product-item-label-text span {
		justify-content: flex-start;
		white-space: normal;
		text-align: left;
		line-height: 120%;
	}
}

@media (max-width: 360px) {
	.catalog-item .product-item-media {
		height: 144px;
	}

	.product-item-container .btn-send-request {
		display: none !important;
	}
}

/* End */


/* Start:/local/components/spll/favorite.add/templates/.default/style.css?17851490771966*/
.b-detail__favorite {
	background: none;
	margin: 0;
	cursor: pointer;
	outline: none;
	transition: .2s ease-in;
	padding: 11px;
	display: flex;
	align-items: center;
	gap: 8px;
	border: 1px solid #8654cc;
	font-size: 14px;
	font-weight: 500;
	color: #8654cc;
	border-radius: 8px;
	white-space: nowrap;
}

@media screen and (max-width: 768px) {
	.b-detail__favorite span {
		/* display: none; */
	}
}

.b-detail__favorite .detail__favorite-icon {
	width: 24px;
	height: 24px;
	fill: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.b-detail__favorite.short span {display: none}

.add-to-favorite, .remove-to-favorite {
	transition: all 0.3s ease;

}

.add-to-favorite[disabled], .remove-to-favorite[disabled] {
	opacity: 0.6;
	cursor: not-allowed;
	pointer-events: none;
}

.add-to-favorite.loading, .remove-to-favorite.loading {
	opacity: 0.7;
	pointer-events: none;
	position: relative;
}

.add-to-favorite.loading::after,
.remove-to-favorite.loading::after {
	content: '';
	position: absolute;
	width: 16px;
	height: 16px;
	top: 50%;
	left: 50%;
	margin-left: -8px;
	margin-top: -8px;
	border: 2px solid #8654CC;
	border-top-color: transparent;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

.short.add-to-favorite, .short.remove-to-favorite {
	position: absolute;
	right: 0;
	top: 0;
	border: none;
	z-index: 20;
	background: transparent;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* Стиль для активного состояния (когда в избранном) */
.remove-to-favorite svg path {
	fill: #8654CC;
}

.support-page .b-detail__favorite {
	border-color: var(--b2b-accent);
	color: var(--b2b-accent);
}

.support-page .detail__favorite-icon svg path {
	stroke: var(--b2b-accent);
}

.support-page .b-detail__favorite:hover .detail__favorite-icon svg {
	fill: var(--b2b-accent);
}

.support-page .b-detail__favorite  {
	justify-content: center;
}
/* End */


/* Start:/local/components/spll/catalog.element.request/templates/b2b/style.css?178479634015614*/
/* Стили модального окна «Запрос» (B2B).
   Все селекторы заскоплены на #modal-catalog-element-request. Раньше они были
   объявлены на .q-dialog и протекали на остальные диалоги портала: класс
   .q-dialog (а у confirm.age и catalog.element.comments.add — ещё и
   .product-request-modal) используется несколькими компонентами, поэтому
   единственный безопасный скоуп — id самой модалки. */

/* Базовые стили модального окна */
#modal-catalog-element-request {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease, visibility 0.2s;
}

#modal-catalog-element-request.active {
    visibility: visible;
    opacity: 1;
}


#modal-catalog-element-request .q-dialog__backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
}


#modal-catalog-element-request .q-dialog__inner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1002;
    padding: 16px;
}

#modal-catalog-element-request .q-dialog__inner form {
    pointer-events: auto;
    max-width: 556px;
    width: 100%;
    height: auto;
    max-height: 95vh;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}


#modal-catalog-element-request .modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px 0px;
    margin: 0px;
    width: 100%;
    flex: 0 0 auto;
}

#modal-catalog-element-request .modal__title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    flex: 0 0 auto;
}

#modal-catalog-element-request .modal__close {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
    margin-left: auto;
    padding: 0;
    line-height: 1;
}

#modal-catalog-element-request .modal__close i {
    font-size: 24px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
}

#modal-catalog-element-request .modal__content {
    padding: 16px 32px 32px;
    overflow-y: auto;
    /* содержимое длиннее окна — скроллится внутри модалки, а не за её пределами */
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}


#modal-catalog-element-request .product-request-modal__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#modal-catalog-element-request .request-preview {
    display: flex;
    gap: 16px;
}

#modal-catalog-element-request .request-preview img {
    width: 116px;
    height: 131px;
    background: #eaeaea;
    border-radius: 8px;
    object-fit: cover;
    flex: 0 0 auto;
}

#modal-catalog-element-request .preview-details {
    width: 100%;
    min-width: 0;
}

#modal-catalog-element-request .preview-details h4 {
    margin-bottom: 12px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    font-size: 20px;
    font-weight: 700;
}

#modal-catalog-element-request .detail-offer-props {
    margin-bottom: 12px;
}

#modal-catalog-element-request .detail-offer-props .prop-name {
    font-weight: 500;
    font-size: 12px;
}

#modal-catalog-element-request .detail-offer-props .prop-val {
    font-weight: 500;
    font-size: 12px;
    padding: 0px 10px 0px 5px;
}

#modal-catalog-element-request .preview-details .company-name {
    padding: 4px 8px !important;
    border-radius: 4px;
    background: #f7f5ff;
    color: #1c1b1d;
    width: fit-content;
    max-width: 100%;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
    /* длинное название предприятия не должно растягивать превью на пол-окна.
       clip + content-box: обрезаем ровно по тексту, иначе в области нижнего
       padding проступает начало третьей строки */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: clip;
    overflow-clip-margin: content-box;
    overflow-wrap: break-word;
}

#modal-catalog-element-request .preview-details .price {
    font-weight: 400;
    color: #1c1b1d;
    font-size: 16px;
}

#modal-catalog-element-request .preview-details .price-empty {
    font-size: 16px;
    font-weight: 400;
}

#modal-catalog-element-request .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0px;
}

#modal-catalog-element-request .form-group label {
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

#modal-catalog-element-request .form-group label .error-color,
#modal-catalog-element-request .product-request-modal__remark .error-color {
    color: #ff1c1c;
}

#modal-catalog-element-request .form-group input,
#modal-catalog-element-request .form-group textarea,
#modal-catalog-element-request .form-group select {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: inherit;
    /* было 0.95rem — плейсхолдеры выглядели мельче подписей */
    font-size: 16px;
    line-height: 130%;
    transition: border-color 0.2s;
}

#modal-catalog-element-request .form-group input:focus,
#modal-catalog-element-request .form-group textarea:focus,
#modal-catalog-element-request .form-group select:focus {
    outline: none;
    border-color: var(--b2b-primary, #2f8eed);
    box-shadow: 0 0 0 2px rgba(47, 142, 237, 0.15);
}

#modal-catalog-element-request .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

#modal-catalog-element-request .row-2cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

#modal-catalog-element-request .modal__footer {
    background: white;
    margin-top: auto;
    /* воздух между текстом-ремаркой и кнопкой отправки */
    padding-top: 8px;
    flex: 0 0 auto;
}

#modal-catalog-element-request .modal__footer button {
    width: 100%
}

#modal-catalog-element-request .modal__submit {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border-radius: 8px;
    background: #0066cc;
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

#modal-catalog-element-request .modal__submit:hover {
    background: #0052a3;
}

#modal-catalog-element-request .modal__submit:active {
    transform: translateY(1px);
}

#modal-catalog-element-request .material-icons {
    font-size: 24px;
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
}

#modal-catalog-element-request .fixed-full {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#modal-catalog-element-request .no-pointer-events {
    pointer-events: none;
}

#modal-catalog-element-request .flex {
    display: flex;
}

#modal-catalog-element-request .flex-center {
    align-items: center;
    justify-content: center;
}

#modal-catalog-element-request .column {
    flex-direction: column;
}

#modal-catalog-element-request .row {
    flex-direction: row;
}

#modal-catalog-element-request .no-wrap {
    flex-wrap: nowrap;
}

#modal-catalog-element-request .scroll {
    overflow-y: auto;
}

#modal-catalog-element-request .items-center {
    align-items: center;
}

#modal-catalog-element-request .product-request-modal__notify,
#modal-catalog-element-request .product-request-modal__remark {
    color: #939393;
    font-size: 12px;
    margin: 0px;
}

#modal-catalog-element-request .product-request-modal__notify,
#modal-catalog-element-request .product-request-modal__notify a {
    color: #1c1b1d;
}

#modal-catalog-element-request .product-request-modal__notify a {
    text-decoration: underline;
}

#modal-catalog-element-request .form-catalog-element-request.loading .send-request-btn {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

#modal-catalog-element-request .form-catalog-element-request.loading .send-request-btn::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #8654CC;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

#modal-catalog-element-request #modalErrorContent .product-request-modal__content,
#modal-catalog-element-request #modalSuccessContent .product-request-modal__content {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

#modal-catalog-element-request #modalErrorContent h3,
#modal-catalog-element-request #modalSuccessContent h3 {
    color: #333;
    margin: 0;
}

#modal-catalog-element-request #modalErrorContent p,
#modal-catalog-element-request #modalSuccessContent p {
    color: #666;
    line-height: 1.5;
}

#modal-catalog-element-request #closeSuccessBtn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

#modal-catalog-element-request #closeSuccessBtn:hover {
    background: #45a049;
}

#modal-catalog-element-request #closeSuccessBtn:active {
    transform: translateY(1px);
}

#modal-catalog-element-request .form-catalog-element-request:has(#modalErrorContent[style*="display: block"]),
#modal-catalog-element-request .form-catalog-element-request:has(#modalSuccessContent[style*="display: block"]) {
    height: auto;
}

#modal-catalog-element-request .form-catalog-element-request {
    max-height: 95vh;
    width: 556px;
    height: auto;
}

#modal-catalog-element-request .success-icon {
    width: 60px;
    height: 60px;
}

#modal-catalog-element-request .error-title,
#modal-catalog-element-request .success-title {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

#modal-catalog-element-request .error-text,
#modal-catalog-element-request .success-text {
    font-size: 16px;
    color: #666;
    line-height: 1.4;
}

#modal-catalog-element-request .success-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    max-width: 180px;
    margin: 0 auto;
}

#modal-catalog-element-request .success-button:hover {
    background: #45a049;
}

#modal-catalog-element-request .error-icon {
    width: 60px;
    height: 60px;
}

#modal-catalog-element-request .error-icon circle {
    fill: #F44336;
}

#modal-catalog-element-request .error-icon path {
    stroke: white;
    stroke-width: 4;
    stroke-linecap: round;
}

/* Стили для поля загрузки файла */
#modal-catalog-element-request .file-upload-group {
    margin-bottom: 5px;
}

#modal-catalog-element-request .form-control-upload {
    position: relative;
    min-height: 44px;
    width: 100%;
}

/* Кнопка «Добавить файл» — b2b:ui.button (вариант 1), цвета берём из buttons.css:
   background: var(--b2b-primary). Здесь только геометрия и то, что кнопка
   не должна перехватывать клик — он идёт на скрытый input[type=file]. */
#modal-catalog-element-request .file-uploader-component__btn {
    width: 100%;
    position: relative;
    z-index: 1;
    pointer-events: none;
}

#modal-catalog-element-request .hidden-file-input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    cursor: pointer;
}

/* Hover отрабатывает на контейнере, потому что сама кнопка событий не получает */
#modal-catalog-element-request .form-control-upload:hover .file-uploader-component__btn {
    background: var(--b2b-accent, #0a1a3e);
    border-color: var(--b2b-accent, #0a1a3e);
    color: #fff;
}

#modal-catalog-element-request .file-name-display {
    margin-top: 8px;
    padding: 8px 12px;
    background: #f5f5f5;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    border: 1px solid #e0e0e0;
    word-break: break-all;
}

#modal-catalog-element-request .block-selected-file {
    display: none;
    justify-content: space-between;
}

#modal-catalog-element-request .block-selected-file .selected-filename {
    font-size: 14px;
}

#modal-catalog-element-request .block-selected-file .control-selected-file {
    min-height: 44px;
    height: auto;
}

#modal-catalog-element-request .control-selected-file .q-icon {
    opacity: .6;
    cursor: pointer;
    font-family: Material Icons;
    font-weight: 400;
    font-size: 24px;
    color: #0000008a;
    font-style: normal;
    text-rendering: optimizeLegibility;
    font-feature-settings: "liga";
}

#modal-catalog-element-request .control-selected-file .q-icon:hover {
    opacity: 1;
}

#modal-catalog-element-request .selected-filename {
    width: 100%;
    max-width: 420px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Согласие с пользовательским соглашением: чекбокс и текст в одну линию */
#modal-catalog-element-request .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
    font-weight: 400;
    cursor: pointer;
}

#modal-catalog-element-request .checkbox-label .agree-checkbox {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    accent-color: var(--b2b-primary, #2f8eed);
    cursor: pointer;
}

#modal-catalog-element-request .checkbox-label span {
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    color: #1c1b1d;
}

#modal-catalog-element-request .checkbox-label a {
    color: var(--b2b-primary, #2f8eed);
    text-decoration: underline;
}

/* Телефон */
@media (max-width: 480px) {
    #modal-catalog-element-request .q-dialog__inner {
        padding: 12px;
    }

    #modal-catalog-element-request .modal__header {
        padding: 16px 16px 0;
    }

    #modal-catalog-element-request .modal__content {
        padding: 12px 16px 20px;
        gap: 16px;
    }

    #modal-catalog-element-request .request-preview img {
        width: 88px;
        height: 100px;
    }

    #modal-catalog-element-request .preview-details h4 {
        font-size: 17px;
        margin-bottom: 8px;
    }

    #modal-catalog-element-request .modal__title {
        font-size: 18px;
    }
}

/* End */


/* Start:/local/js/captcha-modal/captcha-modal.css?17800478544921*/
.captcha-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.22s ease, visibility 0.22s ease;
}

.captcha-modal-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.captcha-modal {
	background: #ffffff;
	border-radius: 14px;
	padding: 28px 28px 24px;
	width: 360px;
	max-width: calc(100vw - 32px);
	box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
	position: relative;
	transform: translateY(12px) scale(0.98);
	transition: transform 0.22s ease;
}

.captcha-modal-overlay.is-open .captcha-modal {
	transform: translateY(0) scale(1);
}

/* Закрыть */
.captcha-modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 32px;
	height: 32px;
	border: none;
	background: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #9ca3af;
	border-radius: 6px;
	padding: 0;
	transition: color 0.15s, background 0.15s;
}

.captcha-modal__close:hover {
	color: var(--b2b-accent, #0a1a3e);
	background: #f3f4f6;
}

/* Заголовки */
.captcha-modal__title {
	font-size: 32px;
	font-weight: 600;
	color: var(--b2b-accent, #0a1a3e);
	margin: 0 0 4px;
	padding-right: 36px;
	line-height: 1.3;
}

.captcha-modal__subtitle {
	font-size: 14px;
	color: #6b7280;
	margin: 0 0 18px;
	line-height: 1.4;
}

/* Картинка + обновить */
.captcha-modal__image-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.captcha-modal__img {
	display: block;
	height: 44px;
	width: auto;
	border-radius: 8px;
	border: 1px solid #e5e7eb;
	cursor: pointer;
	transition: opacity 0.2s;
	flex-shrink: 0;
}

.captcha-modal__img.is-loading {
	opacity: 0.35;
}

.captcha-modal__img:hover {
	opacity: 0.8;
}

.captcha-modal__refresh {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	flex-shrink: 0;
	padding: 0;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	color: #6b7280;
	cursor: pointer;
	transition: color 0.15s, border-color 0.15s, background 0.15s, transform 0.3s;
}

.captcha-modal__refresh:hover {
	color: #111827;
	border-color: #d1d5db;
	background: #f9fafb;
}

.captcha-modal__refresh:active svg {
	transform: rotate(180deg);
}

.captcha-modal__refresh:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

/* Ошибка */
.captcha-modal__error {
	font-size: 13px;
	color: #dc2626;
	margin: 0 0 8px;
	min-height: 18px;
	line-height: 1.4;
}

/* Поле ввода */
.captcha-modal__input {
	width: 100%;
	height: 46px;
	border: 1.5px solid #d1d5db;
	border-radius: 8px;
	padding: 0 14px;
	font-size: 16px;
	color: var(--b2b-accent, #0a1a3e);
	outline: none;
	box-sizing: border-box;
	transition: border-color 0.15s, box-shadow 0.15s;
	background: #FFFFFF;
	letter-spacing: 3px;
}

.captcha-modal__input::placeholder {
	letter-spacing: normal;
	color: #9ca3af;
	font-size: 14px;
}

.captcha-modal__input:focus {
	border-color: var(--b2b-primary, #2f8eed);
}

.captcha-modal__input.has-error {
	border-color: #dc2626;
}

/* Кнопки */
.captcha-modal__footer {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.captcha-modal__footer .b2b-btn,
.captcha-modal__btn {
	flex: 1;
}

.captcha-modal__btn {
	appearance: none;
	-webkit-appearance: none;
	align-items: center;
	border: 1px solid transparent;
	border-radius: 10px;
	cursor: pointer;
	display: inline-flex;
	font-family: inherit;
	font-size: 16px;
	font-weight: 500;
	justify-content: center;
	line-height: 1.3;
	min-height: 48px;
	padding: 8px 20px;
	position: relative;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
	white-space: nowrap;
}

.captcha-modal__btn-label {
	color: inherit !important;
	display: inline-block;
	font: inherit;
	opacity: 1 !important;
	visibility: visible !important;
}

.captcha-modal__btn--confirm {
	background: var(--b2b-primary, #2f8eed);
	border-color: var(--b2b-primary, #2f8eed);
	color: var(--t-color-5, #ffffff);
}

.captcha-modal__btn--confirm:hover,
.captcha-modal__btn--confirm:focus-visible {
	background: var(--b2b-accent, #0a1a3e);
	border-color: var(--b2b-accent, #0a1a3e);
	color: var(--t-color-5, #ffffff);
}

.captcha-modal__btn--cancel {
	background: #f9fcff;
	border-color: #2f8eed;
	color: #2f8eed;
}

.captcha-modal__btn--cancel:hover,
.captcha-modal__btn--cancel:focus-visible {
	background: var(--b2b-primary, #2f8eed);
	border-color: var(--b2b-primary, #2f8eed);
	color: var(--t-color-5, #ffffff);
}

.captcha-modal__btn--cancel:hover .captcha-modal__btn-label,
.captcha-modal__btn--cancel:focus-visible .captcha-modal__btn-label,
.captcha-modal__btn--confirm:hover .captcha-modal__btn-label,
.captcha-modal__btn--confirm:focus-visible .captcha-modal__btn-label {
	color: inherit !important;
}

/* End */


/* Start:/local/components/spll/confirm.age/templates/.default/style.css?17848023734623*/
/* Базовые стили модального окна */
.q-dialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease, visibility 0.2s;
}

.q-dialog.active {
    visibility: visible;
    opacity: 1;
}

.q-dialog__backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

.q-dialog__inner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1002;
    padding: 16px;
}

.q-dialog__inner form {
    pointer-events: auto;
    max-width: 556px;
    width: 100%;
    height: auto;
    max-height: 95vh;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}


.q-dialog .modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px 0px;
    margin: 0px;
    width: 100%;
}

.q-dialog .modal__title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    flex: 0 0 auto;
}

.q-dialog .modal__close {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
    margin-left: auto;
    padding: 0;
    line-height: 1;
}

.q-dialog .modal__close i {
    font-size: 24px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
}

.q-dialog .modal__content {
    padding: 16px 32px 40px;
    overflow-y: auto;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.q-dialog .product-request-modal__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.q-dialog .request-preview {
    display: flex;
    gap: 16px;
}

.q-dialog .request-preview img {
    width: 116px;
    height: 131px;
    background: #eaeaea;
    border-radius: 8px;
    object-fit: cover;
}

.q-dialog .preview-details {
    width: 100%
}


.q-dialog .modal__footer {
    background: white;
    margin-top: auto;
}

.q-dialog .modal__footer button{
    width: 100%
}

.q-dialog .material-icons {
    font-size: 24px;
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
}

.q-dialog .fixed-full {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.q-dialog .no-pointer-events {
    pointer-events: none;
}

.q-dialog .flex {
    display: flex;
}

.q-dialog .flex-center {
    align-items: center;
    justify-content: center;
}

.q-dialog .column {
    flex-direction: column;
}

.q-dialog .row {
    flex-direction: row;
}

.q-dialog .no-wrap {
    flex-wrap: nowrap;
}

.q-dialog .items-center {
    align-items: center;
}

.q-dialog .scroll {
    overflow-y: auto;
}

.q-dialog .product-request-modal__notify, .q-dialog .product-request-modal__remark {
    color: #939393;
    font-size: 12px;
    margin: 0px;
}

.q-dialog .product-request-modal__notify, .q-dialog .product-request-modal__notify a {
    color: #1c1b1d;
}

.q-dialog .product-request-modal__notify a {
    text-decoration: underline;
}

.q-dialog button.loading{
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.q-dialog button.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #8654CC;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.q-dialog #closeSuccessBtn:active {
    transform: translateY(1px);
}

.q-dialog .form-catalog-element-request:has(#modalErrorContent[style*="display: block"]),
.q-dialog .form-catalog-element-request:has(#modalSuccessContent[style*="display: block"]) {
    height: auto;
}

.q-dialog form {
    max-height: 95vh;
    width: 556px;
    height: auto;
}

.q-dialog .b-buttons {
    display: flex;
    gap: 20px
}

.q-dialog .btn-cancel-age {
    color: #000;
    background: #D7BAFF;
    border-color: #D7BAFF;
}
/* End */


/* Start:/local/components/b2c/ui.button/buttons.css?17851611903168*/
.b2c-btn {
    position: relative;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    box-sizing: border-box;
    border: solid transparent 2px;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 500;
    font-family: var(--font-family-1);
    font-size: 16px;
    line-height: 140%;
    cursor: pointer;
}
.b2c-btn, .b2c-btn * {
    transition: var(--animate-duration);
}
.b2c-btn_inline {
    display: inline-flex;
}
.b2c-btn.b2c-btn_square {
    width: 44px;
    padding: 10px;
}

.b2c-btn.b2c-btn_icon {
    min-height: 36px;
    padding: 0;
    background: transparent;
    border-color: transparent;
    color: var(--t-color-1);
}

.b2c-btn_1 {
    background: var(--q-primary);
    border-color: var(--q-primary);
    color: var(--t-color-5);
}
.b2c-btn_1:hover {
    background: var(--q-accent);
    border-color: var(--q-accent);
    color: var(--t-color-5);
}

.b2c-btn_2 {
    background: var(--q-accent);
    border-color: var(--q-accent);
    color: var(--t-color-5);
}
.b2c-btn_2:hover {
    background: var(--q-primary);
    border-color: var(--q-primary);
    color: var(--t-color-5);
}

.b2c-btn_3 {
    background: var(--bg-page);
    border-color: var(--bg-page);
    color: var(--t-color-1);
}
.b2c-btn_3:hover {
    background: var(--q-primary);
    border-color: var(--q-primary);
    color: var(--t-color-5);
}
.b2c-btn_border-3 {
    border-color: var(--t-color-1);
}

.b2c-btn_4 {
    background: var(--bg-page);
    border-color: var(--bg-page);
    color: var(--t-color-1);
}
.b2c-btn_4:hover {
    background: var(--q-accent);
    border-color: var(--q-accent);
    color: var(--t-color-5);
}

.b2c-btn_5 {
    background: var(--bg-page);
    border-color: var(--t-color-4);
    color: var(--t-color-4);.b2c-btn;

    svg path {
        color: var(--t-color-4);
        stroke: var(--t-color-4);
    }
}
.b2c-btn_5:hover {
    background: var(--t-color-4);
    border-color: var(--t-color-5);
    color: var(--t-color-5);

    svg path {
        color: var(--t-color-5);
        stroke: var(--t-color-5);
    }
}

.b2c-btn_6 {
    background: var(--t-color-4);
    border-color: var(--t-color-4);
    color: var(--t-color-5);

    svg path {
        color: var(--t-color-5);
        stroke: var(--t-color-5);
    }
}
.b2c-btn_6:hover {
    background: var(--t-color-5);
    border-color: var(--t-color-5);
    color: var(--t-color-4);

    svg path {
        color: var(--t-color-4);
        stroke: var(--t-color-4);
    }
}
.b2c-btn_border-6 {
    border-color: var(--t-color-1);
}

.b2c-btn-icon {
    background: none !important;
    outline: none !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer;
}

.b2c-btn_7 {
    background: white;
    border-color: var(--q-primary);
    color: var(--q-primary);

    svg path {
        color: var(--q-primary);
        stroke: var(--q-primary);
    }
}
.b2c-btn_7:hover {
    background: white;
    border-color: var(--q-clear);
    color: var(--q-clear);

    svg path {
        color: var(--q-clear);
        stroke: var(--q-clear);
    }
}

/* End */


/* Start:/local/templates/main_b2b/components/bitrix/catalog.section/catalog/themes/blue/style.min.css?1776848529706*/
.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/components/spll/catalog.index/templates/b2b/style.css?178515278016780 */
/* /local/components/b2b/ui.select/templates/.default/style.css?178480837613873 */
/* /local/components/spll/catalog.section.list/templates/catalog_list_multilevel/style.css?17848940724778 */
/* /local/templates/main_b2b/components/bitrix/system.pagenavigation/pagenav_with_show_more/style.css?17768485291604 */
/* /local/templates/main_b2b/components/bitrix/catalog.section/catalog/style.css?17847965554597 */
/* /local/templates/main_b2b/components/bitrix/catalog.item/.default/style.css?178479652630735 */
/* /local/components/spll/favorite.add/templates/.default/style.css?17851490771966 */
/* /local/components/spll/catalog.element.request/templates/b2b/style.css?178479634015614 */
/* /local/js/captcha-modal/captcha-modal.css?17800478544921 */
/* /local/components/spll/confirm.age/templates/.default/style.css?17848023734623 */
/* /local/components/b2c/ui.button/buttons.css?17851611903168 */
/* /local/templates/main_b2b/components/bitrix/catalog.section/catalog/themes/blue/style.min.css?1776848529706 */
