<!-- Cookie Notice -->
<div class="cookie_notice" id="cookie_notice_1" data-js-cookie-notice role="dialog" aria-modal="false" aria-labelledby="cookie_notice_1_title" aria-describedby="cookie_notice_1_description">
    <div class="cookie_notice_inner">
        <div class="cookie_notice_header">
            <h2 class="cookie_notice_title" id="cookie_notice_1_title">
                Cookie Notice
            </h2>
        </div>
        <div class="cookie_notice_body">
            <div class="cookie_notice_description" id="cookie_notice_1_description">
                <p>Our website uses <em>cookies</em> to understand how you navigate our content and to give you the <strong>best browsing experience</strong>. View our <a href="#">privacy policy</a>.</p>
            </div>
        </div>
        <div class="cookie_notice_footer">
            <div class="cookie_notice_footer_button">

                <button class="
		button_bordered
				
	" id="cookie_notice_1_accept_button" data-js-cookie-notice-button="accept" aria-labelledby="cookie_notice_1_accept_button cookie_notice_1_title">
                    <span class="button_bordered_inner">
                        <span class="button_bordered_label">Accept All</span>
                    </span>
                </button>
            </div>
            <div class="cookie_notice_footer_button">

                <button class="
		button_bordered
				
	" id="cookie_notice_1_reject_button" data-js-cookie-notice-button="reject" aria-labelledby="cookie_notice_1_reject_button cookie_notice_1_title">
                    <span class="button_bordered_inner">
                        <span class="button_bordered_label">Reject All</span>
                    </span>
                </button>
            </div>
        </div>
    </div>
</div>
<!-- END: Cookie Notice -->
{#
	{% include '@component-cookie-notice' with {
		title: 'Title',
		description: 'Description.'
	} %}
#}

{% set id = uniqid('cookie_notice') %}

<!-- Cookie Notice -->
<div
	class="cookie_notice"
	id="{{ id }}"
	data-js-cookie-notice
	role="dialog"
	aria-modal="false"
	aria-labelledby="{{ id }}_title"
	aria-describedby="{{ id }}_description"
>
	<div class="cookie_notice_inner">
		<div class="cookie_notice_header">
			<h2 class="cookie_notice_title" id="{{ id }}_title">
				{{ title }}
			</h2>
		</div>
		<div class="cookie_notice_body">
			<div class="cookie_notice_description" id="{{ id }}_description">
				{{ description }}
			</div>
		</div>
		<div class="cookie_notice_footer">
			{% for button in ['accept', 'reject'] %}
				<div class="cookie_notice_footer_button">
					{% include '@partial-button' with {
						classes: {
							base: 'button_bordered'
						},
						id: id ~ '_' ~ button ~ '_button',
						attributes: {
							'data-js-cookie-notice-button': button,
							'aria-labelledby': id ~ '_' ~ button ~ '_button ' ~ id ~ '_title'
						},
						title: button == 'accept' ? 'Accept All' : 'Reject All',
					} %}
				</div>
			{% endfor %}
		</div>
	</div>
</div>
<!-- END: Cookie Notice -->

No notes defined.