{% if app.user is not null %}
<div id="search_bar_container">
<div class="{% if site_slug == 'horizonce' %}container-fluid{% else %}container{% endif %}">
<div class="row">
<div class="{% if site_slug == 'horizonce' %}col-lg-2 offset-lg-10{% else %}col-lg-6 mb-3 mb-lg-0{% endif %}">
<div class="search_bar search_bar_left">
<form action="{{ path('produit.liste') }}" method="GET" class="formulaire formulaire-recherche">
{% if site_slug != 'horizonce' %}
<span class="nav-facade-active" id="nav-search-in">
<span id="nav-search-in-content" class="nav-search-in-content" style="">{{ 'recherche_gauche'|trans }}</span>
<span class="nav-down-arrow nav-sprite"></span>
<select title="{{ 'recherche_gauche'|trans }}" class="searchSelect" id="searchDropdownBox">
<option value="{{ path('produit.liste') }}" title="{{ 'recherche_gauche'|trans }}">
{{ 'recherche_gauche'|trans }}
</option>
{% for categorieProduit in categorieProduits %}
<option value="{{ path('produit.categorie.liste', {'slug' : categorieProduit.slug}) }}" title="{{ categorieProduit.intitule }}">
{{ categorieProduit.intitule }}
</option>
{% endfor %}
</select>
</span>
{% endif %}
<div class="nav-searchfield-outer">
<input type="text" name="search[motcles]" placeholder="{{ 'recherche_gauche_texte'|trans }}" id="twotabsearchtextbox">
</div>
<div class="nav-submit-button">
<input type="submit" title="{{ 'rechercher'|trans }}" class="nav-submit-input" value="" />
</div>
</form>
</div>
</div>
{% if site_slug != 'horizonce' %}
<div class="col-lg-6">
<div class="search_bar search_bar_right">
<form action="{{ path('page.carte.reseau.axce') }}" method="GET" class="formulaire formulaire-recherche">
<span class="nav-facade-active" id="nav-search-in">
<span id="nav-search-in-content" class="nav-search-in-content" style="">{{ 'recherche_droite'|trans }}</span>
<span class="nav-down-arrow nav-sprite"></span>
<select title="{{ 'recherche_droite'|trans }}" class="searchSelect" id="searchDropdownBox">
<option value="{{ path('page.carte.reseau.axce') }}" title="{{ 'recherche_droite'|trans }}">
{{ 'recherche_droite'|trans }}
</option>
{% for categorieOffre in categorieOffres %}
<option value="{{ categorieOffre.id }}" title="{{ categorieOffre.intitule }}">
{{ categorieOffre.intitule }}
</option>
{% endfor %}
</select>
</span>
<div class="nav-searchfield-outer">
<input type="text" name="search[motcles]" placeholder="{{ 'recherche_droite_texte'|trans }}" id="twotabsearchtextbox">
<input type="hidden" name="search[categories]" id="twotabsearchhiddenbox">
</div>
<div class="nav-submit-button">
<input type="submit" title="{{ 'rechercher'|trans }}" class="nav-submit-input" value="" />
</div>
</form>
</div>
</div>
{% endif %}
</div>
</div>
</div>
{% endif %}