{% if not te.request.get('share') == 'order_pdf_view' %}
<div id="top-filter-menu" class="top-filter-menu-wrapper">
<div
class="lite-filters-block js-lite-filters-block"
data-action="{{ path('app_filters_advanced_search') }}"
data-action-historysave="{{ path('app_filters_advanced_search_json', {'func': 'saveHistory', 'lmenu': '1'}) }}"
>
{% if withLiteFilters %}
<div class="lite-filters-list js-lite-filters-list {{ userLocale() }}-class">
<div class="sbm-filt visible-xs">
<button
class="header show-res js-show-res-mob"
data-action="{{ path('app_catalog_filter', {key: 'add'} ) }}"
>
{{ 'left_menu_show' | trans }}
</button>
<div class="box clearfix">
<span class="filt-count js-filt-count" data-action="">
{{ 'left_menu_criteria' | trans }}: <span>0</span>
<i
class="js-clear-filter clr-filt material-icons js-help-tooltip{% if showReset %} show-btn-clear{% endif %}"
title="{{ 'clear' | trans }}"
{#href="{{ path('app_filters_advanced_search') }}"#}
data-url-catalog="{{ path('app_catalog' ) }}"
>

</i>
</span>
</div>
</div>
{# лого #}
<div class="logo-box">
<a class="logo-img" href="{{ path('app_home') }}" title="{{ 'home_page' | trans }}"></a>
</div>
{% set germanLocaleClass = '' %}
{% if userLocale() == 'de' %}
{% set germanLocaleClass = ' german-locale' %}
{% endif %}
{# фабрики #}
<div
class="short-list-filter js-factory-select factory-select closed{{ germanLocaleClass }}"
data-action="{{ path('app_left_filter_calc_factory') }}"
data-gtm-name="factories"
>
<div class="gi-select filter-list-factory{{ brand.selected ? ' active' : '' }}" data-loading="false">
<select
name="factory"
data-factory="factory"
class="hidden"
data-action="{{ path('app_request', { 'action': 'get' }) }}"
data-first-li="{{ 'factory_first_li' | trans }}"
data-first-li-link="{{ 'factory_first_li_link' | trans }}"
data-first-li-help="{{ 'factory_first_li_help' | trans }}"
data-header-brand="{{ 'buyOrder.th.factory' | trans }}"
data-header-reviews="{{ 'filters_brand_reviews' | trans }}"
data-header-idea="{{ 'filters_brand_ideabook' | trans }}"
data-label="{{ brand.first }}"
autocomplete="off"
>
<option value="0">{{ brand.first }}</option>
{% if brand.selected %}
{% set row = brand.selected %}
<option
value="{{ row.id }}"
selected
data-icon="class::flag flag-{{ row.country.id }}||title::{{ row.country.name }}"
>{{ row.name }}</option>
{% endif %}
</select>
<span class="count factory-count" data-total="{{ brand.count }}">({{ brand.countCur }})</span>
<div class="arrow"></div>
<input
type="hidden"
name="factory"
data-label="{{ brand.first }}"
data-filter="factory"
value="{{ brand.selected ? brand.selected.id : 0 }}"
data-tmp-name=""
/>
<input
type="text"
aria-label="Manufacturer name input"
placeholder="{{ brand.first }}"
value="{{ brand.selected ? brand.selected.name : brand.first }}"
/>
<span class="gi-checkbox"></span>
<ul class="unstyled-list"></ul>
</div>
</div>
{# коллекции #}
<div
class="short-list-filter js-collection-select collection-select closed{{ germanLocaleClass }}"
data-action="{{ path('app_left_filter_calc_collection') }}"
data-id="{% if collectionId is defined %}{{ collectionId }}{% else %}0{% endif %}"
data-gtm-name="collections"
>
<div class="gi-select filter-list-collection{{ collection.selected ? ' active' : '' }}" data-loading="false">
<select
name="collections"
data-no-result="{{ 'search_no_result' | trans }}"
data-factory="collection"
class="hidden"
data-label="{{ collection.first }}"
autocomplete="off"
>
<option value="0" data-class="f_0">{{ collection.first }}</option>
{% if collection.selected %}
{% set row = collection.selected %}
<option
data-class="f_{{ row.factory.id }}"
data-link="{{ row.dataLink }}"
value="{{ row.id }}"
selected
> {{ row.name }} </option>
{% endif %}
</select>
<span
class="count collection-count"
data-total="{{ collection.count }}"
href="{{ url('app_catalog') }}"
>({{ collection.countCur }})</span>
<div class="arrow"></div>
{#<i class="carret"></i>#}
<input
type="hidden"
name="collections"
data-label="{{ collection.first }}"
data-filter="collections"
value="{{ collection.selected ? collection.selected.id : 0 }}"
data-tmp-name=""
/>
<input
type="text"
aria-label="Collection name input"
placeholder="{{ collection.first }}"
value="{{ collection.selected ? collection.selected.name : collection.first }}"
/>
<span class="gi-checkbox"></span>
<ul class="unstyled-list"></ul>
</div>
</div>
{# короткий список фильтров #}
{% include '@Web/Left/_left_menu_lite.html.twig' %}
{#</div>#}
</div>
{% endif %}
{# главное меню для мобильных устройств About Us при клике на бургер #}
<div class="lite-filt-menu lite-filters-list visible-xs">
{% include '@Web/Left/main-menu-mobile.html.twig' %}
</div>
<div class="swipe-area-menu-close visible-xs visible-sm"></div>
</div>
</div>
{% endif %}