{% extends 'base.html.twig' %}
{% block stylesheets %}
{{ parent() }}
{% endblock %}
{% block page_container %}
{% if product|default(0) %}
<section class="bg-title-grey">
<div class="page-wrapper {% if is_mobile() %} section-content-group {% else %} section-content {% endif %} ">
{% include 'app/CustomizedSolutions/breadcrumb.html.twig' with { 'productName': product.name } %}
</div>
</section>
<section class="page-wrapper">
{% if is_mobile() %}
{% include 'app/CustomizedSolutions/Mobile/_customized_solutions.html.twig' %}
{% else %}
{% include 'app/CustomizedSolutions/Desktop/_customized_solutions.html.twig' %}
{% endif %}
</section>
{% else %}
<div class="group-box">
<div class="group-content">
<h2 class="ff-os-regular ct-blue group-empty">{{ "sylius.ui.not_found"|trans }}</h2>
</div>
</div>
{% endif %}
{% endblock %}
{% block javascripts %}
{{ parent() }}
{{ encore_entry_script_tags('spinner') }}
{% endblock %}