<!DOCTYPE html>
<html lang="{{ app.request.locale|slice(0, 2) }}">
<head>
<meta charset="utf-8">
<meta name="description" content="{{ sylius.channel.description}}">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>{% block title %}{{ sylius.channel.name }}{% endblock %}</title>
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
{% block metatags %}
{% endblock %}
{% block stylesheets %}
{{ sylius_template_event('sylius.shop.layout.stylesheets') }}
{% if app.request.headers.get('User-Agent') == "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/534.57.2 (KHTML, like Gecko) Version/5.1.7 Safari/534.57.2" %}
<link rel="stylesheet" href="{{ asset('/bootstrap-theme/bootstrap_safari.css')}}">
{% endif %}
{% endblock %}
{{ sylius_template_event('sylius.shop.layout.head') }}
</head>
<body class="body-{{app.request.attributes.get('_route')}} ">
{{ sylius_template_event('sylius.shop.layout.before_body') }}
<section class="big-wrapper">
{% block top %}
{% endblock %}
{% block header %}
<div id="modalCookies2" tabindex="-1" >
{% include "@CHCookieConsent/cookie_consent_styling.html.twig" %}
{{ render_esi(path('ch_cookie_consent.show_if_cookie_consent_not_set', { 'locale' : sylius.localeCode })) }}
</div>
<header class="header-body">
{{ sylius_template_event('sylius.shop.layout.header') }}
</header>
{% endblock %}
{% block javascripts %}
{{ sylius_template_event('sylius.shop.layout.javascripts') }}
{% endblock %}
<div class="main-content page-content">
<div class="container p-lg-0 my-0">{% include '@SyliusShop/_flashes.html.twig' %}</div>
{{ sylius_template_event('sylius.shop.layout.before_content') }}
{% include '@SyliusShop/Product/_popup.html.twig' %}
{% block content %}
{% endblock %}
{{ sylius_template_event('sylius.shop.layout.after_content') }}
</div>
{% block footer %}
{% include '@SyliusShop/_footer.html.twig' %}
{% endblock %}
{{ sylius_template_event('sylius.shop.layout.after_body') }}
<div class="loading-overlay" data-js-loading-overlay>
<div class="spinner-border" role="status">
<span class="sr-only">Loading...</span>
</div>
</div>
</section>
<div class="menu-overlay"></div>
<div class="goToTop"><img src="{{ asset('images/top_go.png')}}" alt="" /></div>
</body>
</html>