{% form_theme form '@CHCookieConsent/form/cookie_consent_theme.html.twig' %}
<div class="ch-cookie-consent ch-cookie-consent--{{ theme }}-theme ch-cookie-consent--{{ position }} {% if simplified %}ch-cookie-consent--simplified{% endif %} {% if chcookieconsent_isCookieConsentSavedByUser() == true %}d-none{% endif %}">
{{ form_start(form, {'attr': {'class': 'ch-cookie-consent__form'}}) }}
<div class="text-right pb-1"><button id="cookie_consent_use_only_functional_cookies" name="cookie_consent[save]" class="ch-cookie-consent__btn ch-cookie-consent__btn_no_bg p-0">{{ 'app.cookie.continue_without_accept'|trans }}</button> </div>
{% block title %}
<h3 class="ch-cookie-consent__title">{{ 'ch_cookie_consent.title'|trans }}</h3>
{% endblock %}
{% block intro %}
<div class="ch-cookie-consent__intro">
{{ 'ch_cookie_consent.intro'|trans }} :
<ul class="pl-2 list-unstyled">
<li>• {{ 'ch_cookie_consent.ch_cookie_user_experience'|trans|raw }} ,</li>
<li>• {{ 'ch_cookie_consent.ch_cookie_content_performance'|trans|raw }} ,</li>
<li>• {{ 'ch_cookie_consent.ch_cookie_product_personalize'|trans|raw }} ,</li>
<li>• {{ 'ch_cookie_consent.ch_cookie_ads_display'|trans|raw }} ,</li>
<li>• {{ 'ch_cookie_consent.ch_cookie_service_interaction'|trans|raw }}.</li>
</ul>
{{ 'ch_cookie_consent.into2'|trans|raw }} <a href="{{ path('bitbag_sylius_cms_plugin_shop_page_show', {'slug': 'politique-de-confidentialite-et-cookie'}) }}" target="_blank" title="" class="text-underline color-pink-s"> {{ 'ch_cookie_consent.privacy_and_cookie_policy'|trans|raw }}.</a>
</div>
{% endblock %}
<div class="ch-cookie-consent__category-group mb-4" style="display:none">
<div class="d-flex justify-content-center h-100 flex-column">
<span class="ch-cookie-consent__toggle-details-hide"></span>
{% for child in form %}
{% if child.vars.block_prefixes[0] != 'button' %}
{{ form_row(child) }}
{% endif %}
{% endfor %}
</div>
<div style="margin-top: -10px;"><button class="btn ch-cookie-consent__btn">{{ 'app.cookie.validate_my_choice'|trans }}</button></div>
</div>
<div class="ch-cookie-consent__btn-group">
{{ form_rest(form) }}
{% block toggle_details %}
<div class="ch-cookie-consent__toggle-details-grp">
<span class="ch-cookie-consent__toggle-details-show">{{ 'ch_cookie_consent.show_details'|trans({}, 'CHCookieConsentBundle') }}</span>
<span class="ch-cookie-consent__toggle-details-hide">{{ 'ch_cookie_consent.hide_details'|trans({}, 'CHCookieConsentBundle') }}</span>
</div>
{% endblock %}
</div>
{{ form_end(form) }}
</div>