{% extends 'base.html.twig' %}
{% block title %}SPA.BIZ | Comparateur{% endblock %}
{% block body %}
{# {% if message %}#}
{# <div class="alert alert-danger">#}
{# <h6 class="text-danger">Vous avez atteint le nombre de produit à comparer!</h6>#}
{# </div>#}
{# {% endif %}#}
{% if message_existed %}
<div class="alert alert-danger d-lg-block d-md-block d-sm-none d-none">
<h6 class="text-danger">Le produit est déjà dans le comparateur!</h6>
</div>
{% endif %}
<div class="container-fluid d-lg-none d-md-none d-sm-block d-block background-linear">
<div class="container pt-3 pb-3 text-center">
<h3 class="text-white"><i>Bienvenue sur le</i></h3>
<h3><i class="text-white">Comparateur </i><span class="color-text-spa-biz">SPA.BIZ</span></h3>
<p class="text-white">Grâce à notre comparateur, Spa.Biz vous permet pour la première fois de comparer les différents types de spas disponibles sur le marché.</p>
</div>
</div>
<div class="container-fluid d-lg-none d-md-none d-sm-block d-block">
<div class="container pt-3 pb-3">
<div class="row">
{# <div class="col-lg-6 col-md-6 col-12">#}
{# <div class="">#}
{# <input type="text" class="id-categ-check disabled d-none" value="2">#}
{# <h6 class="mb-2 text-center">Choisissez la gamme qui vous correspond : </h6>#}
{# <div class="row">#}
{# <div id="2" class="col-4 hp_choice-gamme active">#}
{# <a class="hp_choice-gamme-link" href="#">Gamme Confort</a>#}
{# </div>#}
{# <div id="3" class="col-4 hp_choice-gamme">#}
{# <a class="hp_choice-gamme-link" href="#">Gamme Prestige</a>#}
{# </div>#}
{# <div id="5" class="col-4 hp_choice-gamme">#}
{# <a class="hp_choice-gamme-link" href="#">Gamme Luxe</a>#}
{# </div>#}
{# </div>#}
{# <div class="mt-4 text-center">#}
{# <div class="my-auto comp_text-icon-info">#}
{# <img height="20px" src="{{ asset("/images/logo/info.png") }}" alt="">#}
{# <span class="text-center mb-0 port_fs-12 text-grey-color-used">Les gammes correspondent au differentes finitions des spas</span>#}
{# </div>#}
{# </div>#}
{# </div>#}
<div class="mb-4 mt-4">
<div class="row port_list-place">
<div class="range">
<h6 class="text-center">Choisissez votre nombre de places : </h6>
<input id="sliderInput1" class="port_width-input-range" type="text">
</div>
</div>
</div>
<div class="mb-4">
<div class="row port_list-place">
<div class="col-9">
<div class="range">
<h6 class="text-center">Choisissez votre budget : </h6>
<input id="sliderInput2" class="port_width-input-range" type="text" min="0" value="0" max="30000" step="0">
</div>
</div>
<div class="col-3 ps-lg-2 ps-md-2 ps-sm-0 ps-0 pe-lg-2 pe-md-2 pe-sm-0 pe-0">
<div class="text-end mt-4">
<button data-url="{{ path("app_comparateur_filtre_produit") }}" class="compar_button-research-form">Rechercher</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container-fluid background-black">
<div class="container pt-4 pb-4">
<div class="row">
<div class="col-lg-9 col-md-8 col-sm-12 col-12 text-lg-start text-md-start text-sm-center text-center">
<h3 class="text-white comp_title-block">COMPARATEUR <i>SPA.BIZ</i></h3>
</div>
<div class="col-lg-3 col-md-4 col-sm-12 col-12 text-center d-lg-block d-md-block d-sm-none d-none">
<button class="text-white comp_button-masque comp_show" data-link="{{ path("app_list_spa") }}">Masquer le comparateur <span><img class="comp_img-arrow-up" src="{{ asset("/images/comparator/arrow_top.png") }}" alt="arrow"></span></button>
<button class="text-white comp_button-masque comp_hide d-none">Afficher le comparateur <span><img class="comp_img-arrow-down" src="{{ asset("/images/comparator/arrow_top.png") }}" alt="arrow"></span></button>
</div>
</div>
<div class="row mt-4 comp_mask-block">
<div class="d-lg-none d-md-none result-search result-search-css" data-url="{{ path("app_comparateur_filtre_get_produit_list_mobile") }}">
</div>
<div class="d-lg-flex d-md-flex d-sm-none d-none">
{% for key, prodCateg in compar_products %}
<div class="col-lg-3 col-md-3 col-sm-6 col-6">
<div class="comp_background-white-grey comp_block-background-one position-relative">
<div class="comp_block-one text-center p-3">
<div class="comp_category">Gamme {{ prodCateg.produit | gameStart }}</div>
<h6 class="fw-600 mb-0 text-grey-color-used"><i class="text-portail">SPAS</i> {{ prodCateg.produit.name|filterName|raw }}</h6>
<div class="comp_price-products text-grey-color-used">{{ prodCateg.produit.price|number_format(0, ',', ' ') }}€</div>
<div class="comp_ratings mb-2">
{% set gammeProd = prodCateg.produit | gameStart %}
{% set nbrStartsP = gammeProd|number_format %}
<div class="d-flex">
{% for i in 1..nbrStartsP %}
<img style="height: 23px;" src="{{ asset("/images/start_actif_hotfix.png") }}" alt="etoile">
{% endfor %}
</div>
</div>
<div style="width: 100%; display: inline-block;">
<img height="130px" src="{{ asset("/images/images_produits/"~prodCateg.produit.imageProduitsPrincipale) }}" alt="zaccouzi">
</div>
</div>
<div class="comp_button-remove-one-product">
<p><a href="{{ path("app_comparateur_del_one_in_list", {"id_prod":prodCateg.idProduit}) }}">+</a></p>
</div>
</div>
<div class="d-lg-none d-md-none d-sm-block d-block comp_caracteristic-mobile comp_d-none-mobile-caracteristic">
<div class="col-lg-3 col-md-3 col-sm-12 col-12">
<div class="comp_block-one-caracteristic text-center pl-3 pr-3 pt-0 pb-0">
<div class="comp_title-caracteristic"><h6 class="mb-0 p-1">CARACTÉRISTIQUES</h6></div>
<div class="row pe-3 ps-3">
<div class="col-sm-6 col-6 comp_right-caracteristic">
{% if 'gamme' in caracteristics_aff %}<p class="text-uppercase">Gamme</p>{% endif %}
{% if 'capaciteSpa' in caracteristics_aff %}<p class="text-uppercase">Capacité du SPA</p>{% endif %}
{% if 'places_assis' in caracteristics_aff %}<p class="text-uppercase">Place(s) assise(s)</p>{% endif %}
{% if 'places_allonge' in caracteristics_aff %}<p class="text-uppercase">Place(s) allongée(s)</p>{% endif %}
{% if 'places_semiallonge' in caracteristics_aff %}<p class="text-uppercase">Place(s) semi allongée(s)</p>{% endif %}
{% if 'places_levitation' in caracteristics_aff %}<p class="text-uppercase">Place(s) en lévitation</p>{% endif %}
{% if 'appuis_tete' in caracteristics_aff %}<p class="text-uppercase">Appui-têtes confortables</p>{% endif %}
{% if 'conditionnement' in caracteristics_aff %}<p class="text-uppercase">Conditionnement</p>{% endif %}
{% if 'dimensions' in caracteristics_aff %}<p class="text-uppercase">Dimensions</p>{% endif %}
{% if 'volume' in caracteristics_aff %}<p class="text-uppercase">volume</p>{% endif %}
{% if 'poids' in caracteristics_aff %}<p class="text-uppercase">poids</p>{% endif %}
{% if 'jetsTherapie' in caracteristics_aff %}<p class="text-uppercase">Nombre de jets total</p>{% endif %}
{% if 'jetsAir' in caracteristics_aff %}<p class="text-uppercase">Nombre de jets d'air</p>{% endif %}
{% if 'jetsEau' in caracteristics_aff %}<p class="text-uppercase">Nombre de jets d'eau</p>{% endif %}
{% if 'finitionBuses' in caracteristics_aff %}<p class="text-uppercase">Finition des buses</p>{% endif %}
{% if 'enceinteAvecLeds' in caracteristics_aff %}<p class="text-uppercase">Enceinte(s) avec leds</p>{% endif %}
{% if 'enceinteSansLeds' in caracteristics_aff %}<p class="text-uppercase">Enceinte(s) sans leds</p>{% endif %}
{% if 'pompePressionWhirlpool' in caracteristics_aff %}<p class="text-uppercase">Pompe de pression</p>{% endif %}
{% if 'pompeFiltrationWhirlpool' in caracteristics_aff %}<p class="text-uppercase">Pompre de filtration</p>{% endif %}
{% if 'pompesAAir' in caracteristics_aff %}<p class="text-uppercase">Blowers (pompe à air)</p>{% endif %}
{% if 'rechauffeurs' in caracteristics_aff %}<p class="text-uppercase">Réchauffeur(s)</p>{% endif %}
{% if 'grosSpotLeds' in caracteristics_aff %}<p class="text-uppercase">Gros spot avec leds chromatiques</p>{% endif %}
{% if 'ledChromaPeripherique' in caracteristics_aff %}<p class="text-uppercase">Leds chromatiques périphériques</p>{% endif %}
{% if 'jetsMassageCervical' in caracteristics_aff %}<p class="text-uppercase">Jets pour massage cervical</p>{% endif %}
{% if 'cascadeLeds' in caracteristics_aff %}<p class="text-uppercase">Cascade avec leds</p>{% endif %}
{% if 'cascadeNonLeds' in caracteristics_aff %}<p class="text-uppercase">Cascade non leds</p>{% endif %}
{% if 'colonneEauLeds' in caracteristics_aff %}<p class="text-uppercase">Colonne d'eau leds</p>{% endif %}
{% if 'angleLeds' in caracteristics_aff %}<p class="text-uppercase">Angle avec leds</p>{% endif %}
{% if 'aromatherapie' in caracteristics_aff %}<p class="text-uppercase">Aromathérapie</p>{% endif %}
{% if 'turboJetsMollets' in caracteristics_aff %}<p class="text-uppercase">Turbo Jet</p>{% endif %}
{% if 'systemeAntigel' in caracteristics_aff %}<p class="text-uppercase">Système antigel</p>{% endif %}
{% if 'chassisInoxIndestructible' in caracteristics_aff %}<p class="text-uppercase">Chassis inox indestructible</p>{% endif %}
{% if 'chassisAcierGalvanise' in caracteristics_aff %}<p class="text-uppercase">Chassis en acier galvanisé</p>{% endif %}
{% if 'isolationThermoISO14000' in caracteristics_aff %}<p class="text-uppercase">Isolation thermo-réfléchissante ISO 14000</p>{% endif %}
{% if 'socleIsolationThermique' in caracteristics_aff %}<p class="text-uppercase">Socle isolation thermique</p>{% endif %}
{% if 'radio' in caracteristics_aff %}<p class="text-uppercase">Radio</p>{% endif %}
{% if 'bluetooth' in caracteristics_aff %}<p class="text-uppercase">Bluetooth</p>{% endif %}
{% if 'commandeADistance' in caracteristics_aff %}<p class="text-uppercase">Commande à distance</p>{% endif %}
{% if 'wifi' in caracteristics_aff %}<p class="text-uppercase">wifi</p>{% endif %}
{% if 'nuageLedSole' in caracteristics_aff %}<p class="text-uppercase">Nuage leds au sol</p>{% endif %}
{% if 'spotArcEnCiel' in caracteristics_aff %}<p class="text-uppercase">Spot Arc-en-ciel</p>{% endif %}
{% if 'fontaineEauLumineuse' in caracteristics_aff %}<p class="text-uppercase">Fontaines rétractables avec leds</p>{% endif %}
{% if 'prixPublicConseille' in caracteristics_aff %}<p class="text-uppercase">Prix Public conseillé</p>{% endif %}
</div>
<div class="col-sm-6 col-6 comp_left-caracteristic">
{% if 'gamme' in caracteristics_aff %}
<p>{{ prodCateg.caracteristiques.gamme|upper }} </p>
{% endif %}
{% if 'capaciteSpa' in caracteristics_aff %}
<p>{{ prodCateg.caracteristiques.capaciteSpa ? prodCateg.caracteristiques.capaciteSpa : '0' }} PLACE(S)</p>
{% endif %}
{% if 'places_assis' in caracteristics_aff %}
<p>{{ prodCateg.caracteristiques.places_assis ? prodCateg.caracteristiques.places_assis : '0' }} PLACE(S)</p>
{% endif %}
{% if 'places_allonge' in caracteristics_aff %}
<p>{{ prodCateg.caracteristiques.places_allonge ? prodCateg.caracteristiques.places_allonge : '0' }} PLACE(S)</p>
{% endif %}
{% if 'places_semiallonge' in caracteristics_aff %}
<p>{{ prodCateg.caracteristiques.places_semiallonge ? prodCateg.caracteristiques.places_semiallonge : '0' }} PLACE(S)</p>
{% endif %}
{% if 'places_levitation' in caracteristics_aff %}
<p>{{ prodCateg.caracteristiques.places_levitation ? prodCateg.caracteristiques.places_levitation : '0' }} PLACE(S)</p>
{% endif %}
{% if 'appuis_tete' in caracteristics_aff %}
<p>{{ prodCateg.caracteristiques.appuis_tete ? prodCateg.caracteristiques.appuis_tete : ' ' }}</p>
{% endif %}
{% if 'conditionnement' in caracteristics_aff %}
<p>{{ prodCateg.caracteristiques.conditionnement ? prodCateg.caracteristiques.conditionnement : 'XXXX.XXXX.XXXX' }}</p>
{% endif %}
{% if 'dimensions' in caracteristics_aff %}
<p>{{ prodCateg.caracteristiques.dimensions ? prodCateg.caracteristiques.dimensions : 'XXXX.XXXX.XXXX' }}</p>
{% endif %}
{% if 'volume' in caracteristics_aff %}
<p>{{ prodCateg.caracteristiques.volume ? prodCateg.caracteristiques.volume : ' ' }} L</p>
{% endif %}
{% if 'poids' in caracteristics_aff %}
<p>{{ prodCateg.caracteristiques.poids ? prodCateg.caracteristiques.poids : ' ' }} Kg</p>
{% endif %}
{% if 'jetsTherapie' in caracteristics_aff %}
<p>{{ prodCateg.caracteristiques.jetsTherapie ? prodCateg.caracteristiques.jetsTherapie : ' ' }}</p>
{% endif %}
{% if 'jetsAir' in caracteristics_aff %}
<p>{{ prodCateg.caracteristiques.jetsAir ? prodCateg.caracteristiques.jetsAir : ' ' }}</p>
{% endif %}
{% if 'jetsEau' in caracteristics_aff %}
<p>{{ prodCateg.caracteristiques.jetsEau ? prodCateg.caracteristiques.jetsEau : ' ' }}</p>
{% endif %}
{% if 'finitionBuses' in caracteristics_aff %}
<p>{{ prodCateg.caracteristiques.finitionBuses ? prodCateg.caracteristiques.finitionBuses : ' ' }}</p>
{% endif %}
{% if 'enceinteAvecLeds' in caracteristics_aff %}
{% if prodCateg.caracteristiques.enceinteAvecLeds %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'enceinteSansLeds' in caracteristics_aff %}
{% if prodCateg.caracteristiques.enceinteSansLeds %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'pompePressionWhirlpool' in caracteristics_aff %}
<p>{{ prodCateg.caracteristiques.pompePressionWhirlpool ? prodCateg.caracteristiques.pompePressionWhirlpool : ' ' }}</p>
{% endif %}
{% if 'pompeFiltrationWhirlpool' in caracteristics_aff %}
<p>{{ prodCateg.caracteristiques.pompeFiltrationWhirlpool ? prodCateg.caracteristiques.pompeFiltrationWhirlpool : ' ' }}</p>
{% endif %}
{% if 'pompesAAir' in caracteristics_aff %}
<p>{{ prodCateg.caracteristiques.pompesAAir ? prodCateg.caracteristiques.pompesAAir : ' ' }}</p>
{% endif %}
{% if 'rechauffeurs' in caracteristics_aff %}
<p>{{ prodCateg.caracteristiques.rechauffeurs ? prodCateg.caracteristiques.rechauffeurs : ' ' }}</p>
{% endif %}
{% if 'grosSpotLeds' in caracteristics_aff %}
<p>{{ prodCateg.caracteristiques.grosSpotLeds ? prodCateg.caracteristiques.grosSpotLeds : ' ' }}</p>
{% endif %}
{% if 'ledChromaPeripherique' in caracteristics_aff %}
<p>{{ prodCateg.caracteristiques.ledChromaPeripherique ? prodCateg.caracteristiques.ledChromaPeripherique : ' ' }}</p>
{% endif %}
{% if 'jetsMassageCervical' in caracteristics_aff %}
{% if prodCateg.caracteristiques.jetsMassageCervical %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'cascadeLeds' in caracteristics_aff %}
{% if prodCateg.caracteristiques.cascadeLeds %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'cascadeNonLeds' in caracteristics_aff %}
{% if prodCateg.caracteristiques.cascadeNonLeds %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'colonneEauLeds' in caracteristics_aff %}
{% if prodCateg.caracteristiques.colonneEauLeds %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'angleLeds' in caracteristics_aff %}
{% if prodCateg.caracteristiques.angleLeds %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'aromatherapie' in caracteristics_aff %}
{% if prodCateg.caracteristiques.aromatherapie %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'turboJetsMollets' in caracteristics_aff %}
{% if prodCateg.caracteristiques.turboJetsMollets %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'systemeAntigel' in caracteristics_aff %}
{% if prodCateg.caracteristiques.systemeAntigel %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'chassisInoxIndestructible' in caracteristics_aff %}
{% if prodCateg.caracteristiques.chassisInoxIndestructible %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'chassisAcierGalvanise' in caracteristics_aff %}
{% if prodCateg.caracteristiques.chassisAcierGalvanise %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'isolationThermoISO14000' in caracteristics_aff %}
{% if prodCateg.caracteristiques.isolationThermoISO14000 %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'socleIsolationThermique' in caracteristics_aff %}
{% if prodCateg.caracteristiques.socleIsolationThermique %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'radio' in caracteristics_aff %}
{% if prodCateg.caracteristiques.radio %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'bluetooth' in caracteristics_aff %}
{% if prodCateg.caracteristiques.bluetooth %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'commandeADistance' in caracteristics_aff %}
{% if prodCateg.caracteristiques.commandeADistance %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'wifi' in caracteristics_aff %}
{% if prodCateg.caracteristiques.wifi %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'nuageLedSole' in caracteristics_aff %}
{% if prodCateg.caracteristiques.nuageLedSole %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'spotArcEnCiel' in caracteristics_aff %}
{% if prodCateg.caracteristiques.spotArcEnCiel %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'fontaineEauLumineuse' in caracteristics_aff %}
{% if prodCateg.caracteristiques.fontaineEauLumineuse %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'prixPublicConseille' in caracteristics_aff %}
<p>{{ prodCateg.caracteristiques.prixPublicConseille|number_format(2, '.', ' ') }} €</p>
{% endif %}
</div>
</div>
</div>
<div class="col-12 text-center mt-3">
<button class="comp_button-compare-spas">Ajouter au panier</button>
</div>
<div class="col-12 text-center mt-3 d-lg-block d-md-block d-sm-none d-none">
<button class="comp_button-show-file-product">Voir la fiche produit</button>
</div>
</div>
</div>
</div>
{% set checkShowImgLing = key+1 %}
{% if count_product > checkShowImgLing %}
<div class="comp_img-link my-auto d-lg-block d-md-block d-sm-none d-none">
<div class="comp_img-block-link">
<img class="comp_link" src="{{ asset("/images/comparator/enable_link.png") }}" width="100%" alt="link image">
</div>
</div>
{% endif %}
{% endfor %}
{% if rest_add > 0 %}
{% for keyAdd, i in 1..rest_add %}
{% set checkShowImgLingAdd = keyAdd+1 %}
{% if rest_add >= 3 %}
{% if keyAdd != 0 %}
{% if rest_add >= checkShowImgLingAdd %}
<div class="comp_img-link my-auto d-lg-block d-md-block d-sm-none d-none">
<div class="comp_img-block-link">
<img class="comp_link" src="{{ asset("/images/comparator/disable_link.png") }}" width="100%" alt="link image">
</div>
</div>
{% endif %}
{% endif %}
{% else %}
{% if rest_add >= checkShowImgLingAdd %}
<div class="comp_img-link my-auto d-lg-block d-md-block d-sm-none d-none">
<div class="comp_img-block-link">
<img class="comp_link" src="{{ asset("/images/comparator/disable_link.png") }}" width="100%" alt="link image">
</div>
</div>
{% endif %}
{% endif %}
{% if checkShowImgLingAdd == rest_add %}
<div class="col-lg-3 col-md-3 col-sm-6 col-6 d-grid mt-lg-0 mt-md-0 mt-sm-4 mt-4">
<div class="comp_block-one-add text-center mb-3 p-3 d-flex comp_button-add-new-product" data-link="{{ path("app_list_spa") }}">
<div class="comp_add pt-lg-4 pt-md-3 pt-sm-0 pt-0 my-auto ms-auto me-auto">
<button class="comp_button-add-compar">+</button>
</div>
</div>
<button class="comp_button-add-new-product button_add-one-spa" data-link="{{ path("app_list_spa") }}">Ajouter un spa</button>
</div>
{% else %}
<div class="col-lg-3 col-md-3 col-sm-6 col-6 d-grid mt-lg-0 mt-md-0 mt-sm-0 mt-0">
<div class="comp_block-one-add text-center mb-3 p-3 d-flex comp_button-add-new-product" data-link="{{ path("app_list_spa") }}">
<div class="comp_add pt-lg-4 pt-md-3 pt-sm-0 pt-0 my-auto ms-auto me-auto">
<button class="comp_button-add-compar">+</button>
</div>
</div>
<button class="comp_button-add-new-product button_add-one-spa" data-link="{{ path("app_list_spa") }}">Ajouter un spa</button>
</div>
{% endif %}
{% endfor %}
{% endif %}
</div>
</div>
<div class="mt-4 comp_mask-block comp_compare-spas-action-button comp_compare-spas-action-button-hide d-lg-flex d-md-flex d-sm-none d-none">
{% for keyB, prod in compar_products %}
<div class="col-lg-3 col-md-3 col-sm-12 col-12">
<div class="comp_block-one-caracteristic text-center pl-3 pr-3 pt-0 pb-0">
<div class="comp_title-caracteristic"><h6 class="mb-0 p-1">CARACTÉRISTIQUES</h6></div>
<div class="row">
<div class="col-6 comp_right-caracteristic">
{% if 'gamme' in caracteristics_aff %}<p class="text-uppercase">Gamme</p>{% endif %}
{% if 'capaciteSpa' in caracteristics_aff %}<p class="text-uppercase">Capacité du SPA</p>{% endif %}
{% if 'places_assis' in caracteristics_aff %}<p class="text-uppercase">Place(s) assise(s)</p>{% endif %}
{% if 'places_allonge' in caracteristics_aff %}<p class="text-uppercase">Place(s) allongée(s)</p>{% endif %}
{% if 'places_semiallonge' in caracteristics_aff %}<p class="text-uppercase">Place(s) semi allongée(s)</p>{% endif %}
{% if 'places_levitation' in caracteristics_aff %}<p class="text-uppercase">Place(s) en lévitation</p>{% endif %}
{% if 'appuis_tete' in caracteristics_aff %}<p class="text-uppercase">Appui-têtes confortables</p>{% endif %}
{% if 'conditionnement' in caracteristics_aff %}<p class="text-uppercase">Conditionnement</p>{% endif %}
{% if 'dimensions' in caracteristics_aff %}<p class="text-uppercase">Dimensions</p>{% endif %}
{% if 'volume' in caracteristics_aff %}<p class="text-uppercase">volume</p>{% endif %}
{% if 'poids' in caracteristics_aff %}<p class="text-uppercase">poids</p>{% endif %}
{% if 'jetsTherapie' in caracteristics_aff %}<p class="text-uppercase">Nombre de jets total</p>{% endif %}
{% if 'jetsAir' in caracteristics_aff %}<p class="text-uppercase">Nombre de jets d'air</p>{% endif %}
{% if 'jetsEau' in caracteristics_aff %}<p class="text-uppercase">Nombre de jets d'eau</p>{% endif %}
{% if 'finitionBuses' in caracteristics_aff %}<p class="text-uppercase">Finition des buses</p>{% endif %}
{% if 'enceinteAvecLeds' in caracteristics_aff %}<p class="text-uppercase">Enceinte(s) avec leds</p>{% endif %}
{% if 'enceinteSansLeds' in caracteristics_aff %}<p class="text-uppercase">Enceinte(s) sans leds</p>{% endif %}
{% if 'pompePressionWhirlpool' in caracteristics_aff %}<p class="text-uppercase">Pompe de pression</p>{% endif %}
{% if 'pompeFiltrationWhirlpool' in caracteristics_aff %}<p class="text-uppercase">Pompre de filtration</p>{% endif %}
{% if 'pompesAAir' in caracteristics_aff %}<p class="text-uppercase">Blowers (pompe à air)</p>{% endif %}
{% if 'rechauffeurs' in caracteristics_aff %}<p class="text-uppercase">Réchauffeur(s)</p>{% endif %}
{% if 'grosSpotLeds' in caracteristics_aff %}<p class="text-uppercase">Gros spot avec leds chromatiques</p>{% endif %}
{% if 'ledChromaPeripherique' in caracteristics_aff %}<p class="text-uppercase">Leds chromatiques périphériques</p>{% endif %}
{% if 'jetsMassageCervical' in caracteristics_aff %}<p class="text-uppercase">Jets pour massage cervical</p>{% endif %}
{% if 'cascadeLeds' in caracteristics_aff %}<p class="text-uppercase">Cascade avec leds</p>{% endif %}
{% if 'cascadeNonLeds' in caracteristics_aff %}<p class="text-uppercase">Cascade non leds</p>{% endif %}
{% if 'colonneEauLeds' in caracteristics_aff %}<p class="text-uppercase">Colonne d'eau leds</p>{% endif %}
{% if 'angleLeds' in caracteristics_aff %}<p class="text-uppercase">Angle avec leds</p>{% endif %}
{% if 'aromatherapie' in caracteristics_aff %}<p class="text-uppercase">Aromathérapie</p>{% endif %}
{% if 'turboJetsMollets' in caracteristics_aff %}<p class="text-uppercase">Turbo Jet</p>{% endif %}
{% if 'systemeAntigel' in caracteristics_aff %}<p class="text-uppercase">Système antigel</p>{% endif %}
{% if 'chassisInoxIndestructible' in caracteristics_aff %}<p class="text-uppercase">Chassis inox indestructible</p>{% endif %}
{% if 'chassisAcierGalvanise' in caracteristics_aff %}<p class="text-uppercase">Chassis en acier galvanisé</p>{% endif %}
{% if 'isolationThermoISO14000' in caracteristics_aff %}<p class="text-uppercase">Isolation thermo-réfléchissante ISO 14000</p>{% endif %}
{% if 'socleIsolationThermique' in caracteristics_aff %}<p class="text-uppercase">Socle isolation thermique</p>{% endif %}
{% if 'radio' in caracteristics_aff %}<p class="text-uppercase">Radio</p>{% endif %}
{% if 'bluetooth' in caracteristics_aff %}<p class="text-uppercase">Bluetooth</p>{% endif %}
{% if 'commandeADistance' in caracteristics_aff %}<p class="text-uppercase">Commande à distance</p>{% endif %}
{% if 'wifi' in caracteristics_aff %}<p class="text-uppercase">wifi</p>{% endif %}
{% if 'nuageLedSole' in caracteristics_aff %}<p class="text-uppercase">Nuage leds au sol</p>{% endif %}
{% if 'spotArcEnCiel' in caracteristics_aff %}<p class="text-uppercase">Spot Arc-en-ciel</p>{% endif %}
{% if 'fontaineEauLumineuse' in caracteristics_aff %}<p class="text-uppercase">Fontaines rétractables avec leds</p>{% endif %}
{% if 'prixPublicConseille' in caracteristics_aff %}<p class="text-uppercase">Prix Public conseillé</p>{% endif %}
</div>
<div class="col-6 comp_left-caracteristic">
{% if 'gamme' in caracteristics_aff %}
<p>{{ prod.caracteristiques.gamme|upper }} </p>
{% endif %}
{% if 'capaciteSpa' in caracteristics_aff %}
<p>{{ prod.caracteristiques.capaciteSpa ? prod.caracteristiques.capaciteSpa : '0' }} PLACE(S)</p>
{% endif %}
{% if 'places_assis' in caracteristics_aff %}
<p>{{ prod.caracteristiques.places_assis ? prod.caracteristiques.places_assis : '0' }} PLACE(S)</p>
{% endif %}
{% if 'places_allonge' in caracteristics_aff %}
<p>{{ prod.caracteristiques.places_allonge ? prod.caracteristiques.places_allonge : '0' }} PLACE(S)</p>
{% endif %}
{% if 'places_semiallonge' in caracteristics_aff %}
<p>{{ prod.caracteristiques.places_semiallonge ? prod.caracteristiques.places_semiallonge : '0' }} PLACE(S)</p>
{% endif %}
{% if 'places_levitation' in caracteristics_aff %}
<p>{{ prod.caracteristiques.places_levitation ? prod.caracteristiques.places_levitation : '0' }} PLACE(S)</p>
{% endif %}
{% if 'appuis_tete' in caracteristics_aff %}
<p>{{ prod.caracteristiques.appuis_tete ? prod.caracteristiques.appuis_tete : ' ' }}</p>
{% endif %}
{% if 'conditionnement' in caracteristics_aff %}
<p>{{ prod.caracteristiques.conditionnement ? prod.caracteristiques.conditionnement : 'XXXX.XXXX.XXXX' }}</p>
{% endif %}
{% if 'dimensions' in caracteristics_aff %}
<p>{{ prod.caracteristiques.dimensions ? prod.caracteristiques.dimensions : 'XXXX.XXXX.XXXX' }}</p>
{% endif %}
{% if 'volume' in caracteristics_aff %}
<p>{{ prod.caracteristiques.volume ? prod.caracteristiques.volume : ' ' }} L</p>
{% endif %}
{% if 'poids' in caracteristics_aff %}
<p>{{ prod.caracteristiques.poids ? prod.caracteristiques.poids : ' ' }} Kg</p>
{% endif %}
{% if 'jetsTherapie' in caracteristics_aff %}
<p>{{ prod.caracteristiques.jetsTherapie ? prod.caracteristiques.jetsTherapie : ' ' }}</p>
{% endif %}
{% if 'jetsAir' in caracteristics_aff %}
<p>{{ prod.caracteristiques.jetsAir ? prod.caracteristiques.jetsAir : ' ' }}</p>
{% endif %}
{% if 'jetsEau' in caracteristics_aff %}
<p>{{ prod.caracteristiques.jetsEau ? prod.caracteristiques.jetsEau : ' ' }}</p>
{% endif %}
{% if 'finitionBuses' in caracteristics_aff %}
<p>{{ prod.caracteristiques.finitionBuses ? prod.caracteristiques.finitionBuses : ' ' }}</p>
{% endif %}
{% if 'enceinteAvecLeds' in caracteristics_aff %}
{% if prod.caracteristiques.enceinteAvecLeds %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'enceinteSansLeds' in caracteristics_aff %}
{% if prod.caracteristiques.enceinteSansLeds %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'pompePressionWhirlpool' in caracteristics_aff %}
<p>{{ prod.caracteristiques.pompePressionWhirlpool ? prod.caracteristiques.pompePressionWhirlpool : ' ' }}</p>
{% endif %}
{% if 'pompeFiltrationWhirlpool' in caracteristics_aff %}
<p>{{ prod.caracteristiques.pompeFiltrationWhirlpool ? prod.caracteristiques.pompeFiltrationWhirlpool : ' ' }}</p>
{% endif %}
{% if 'pompesAAir' in caracteristics_aff %}
<p>{{ prod.caracteristiques.pompesAAir ? prod.caracteristiques.pompesAAir : ' ' }}</p>
{% endif %}
{% if 'rechauffeurs' in caracteristics_aff %}
<p>{{ prod.caracteristiques.rechauffeurs ? prod.caracteristiques.rechauffeurs : ' ' }}</p>
{% endif %}
{% if 'grosSpotLeds' in caracteristics_aff %}
<p>{{ prod.caracteristiques.grosSpotLeds ? prod.caracteristiques.grosSpotLeds : ' ' }}</p>
{% endif %}
{% if 'ledChromaPeripherique' in caracteristics_aff %}
<p>{{ prod.caracteristiques.ledChromaPeripherique ? prod.caracteristiques.ledChromaPeripherique : ' ' }}</p>
{% endif %}
{% if 'jetsMassageCervical' in caracteristics_aff %}
{% if prod.caracteristiques.jetsMassageCervical %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'cascadeLeds' in caracteristics_aff %}
{% if prod.caracteristiques.cascadeLeds %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'cascadeNonLeds' in caracteristics_aff %}
{% if prod.caracteristiques.cascadeNonLeds %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'colonneEauLeds' in caracteristics_aff %}
{% if prod.caracteristiques.colonneEauLeds %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'angleLeds' in caracteristics_aff %}
{% if prod.caracteristiques.angleLeds %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'aromatherapie' in caracteristics_aff %}
{% if prod.caracteristiques.aromatherapie %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'turboJetsMollets' in caracteristics_aff %}
{% if prod.caracteristiques.turboJetsMollets %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'systemeAntigel' in caracteristics_aff %}
{% if prod.caracteristiques.systemeAntigel %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'chassisInoxIndestructible' in caracteristics_aff %}
{% if prod.caracteristiques.chassisInoxIndestructible %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'chassisAcierGalvanise' in caracteristics_aff %}
{% if prod.caracteristiques.chassisAcierGalvanise %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'isolationThermoISO14000' in caracteristics_aff %}
{% if prod.caracteristiques.isolationThermoISO14000 %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'socleIsolationThermique' in caracteristics_aff %}
{% if prod.caracteristiques.socleIsolationThermique %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'radio' in caracteristics_aff %}
{% if prod.caracteristiques.radio %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'bluetooth' in caracteristics_aff %}
{% if prod.caracteristiques.bluetooth %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'commandeADistance' in caracteristics_aff %}
{% if prod.caracteristiques.commandeADistance %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'wifi' in caracteristics_aff %}
{% if prod.caracteristiques.wifi %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'nuageLedSole' in caracteristics_aff %}
{% if prod.caracteristiques.nuageLedSole %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'spotArcEnCiel' in caracteristics_aff %}
{% if prod.caracteristiques.spotArcEnCiel %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'fontaineEauLumineuse' in caracteristics_aff %}
{% if prod.caracteristiques.fontaineEauLumineuse %}
<p><img width="14px" src="{{ asset("/images/comparator/check.png") }}" alt="check"></p>
{% else %}
<p><img width="14px" src="{{ asset("/images/comparator/no_check.png") }}" alt="check"></p>
{% endif %}
{% endif %}
{% if 'prixPublicConseille' in caracteristics_aff %}
<p>{{ prod.caracteristiques.prixPublicConseille|number_format(2, '.', ' ') }} €</p>
{% endif %}
</div>
</div>
</div>
<div class="col-12 text-center mt-3">
{{ form_start(form[keyB]["form"], {'action': form[keyB]["url"],'attr': {'class': 'mt-4 d-lg-block d-md-block d-sm-none d-none'}}) }}
<div class="form-group">
{{ form_widget(form[keyB]["form"].quantity) }}
</div>
<div class="">
{{ form_widget(form[keyB]["form"].add, {'attr': {'class': 'comp_button-compare-spas'}}) }}
</div>
<input type="hidden" name="color" value="">
{{ form_end(form[keyB]["form"]) }}
</div>
<div class="col-12 text-center mt-3">
<button data-link="{{ path("app_list_spa") }}" class="comp_button-add-new-product button_add-one-spa" style="font-size:13px;">Comparer un autre spa</button>
</div>
<div class="col-12 text-center mt-3">
<a href="{{ path("app_fiche_produit", {"id_categorie":prod.categorie.id, "id_product":prod.produit.id}) }}" class="comp_delete-compare-spas">En savoir plus</a>
</div>
</div>
{% if keyB < 2 %}
<div class="comp_img-link my-auto">
<div class="comp_img-block-link">
</div>
</div>
{% endif %}
{% endfor %}
{% if rest_add > 0 %}
<div class="col-lg-3 col-md-3 col-sm-12 col-12 d-grid">
<p class="comp_message-text-block-compar">Il vous reste {{ rest_add }} espace(s) de comparaison disponible !</p>
</div>
{% endif %}
</div>
<div class="row text-center mt-4 comp_mask-block comp_block-button-compare">
<div class="col-12 d-lg-block d-md-block d-sm-none d-none">
<a href="{{ path("app_comparateur_del_list") }}" class="comp_delete-compare-spas">Effacer les spas</a>
</div>
<div class="col-12 d-lg-none d-md-none d-sm-block d-block">
<a href="{{ path("app_comparateur_filtre_get_produit_list_mobile_modif_result") }}" class="comp_delete-compare-spas modifResearch">Modifier ma recherche</a>
</div>
<div class="col-12 mt-3 d-lg-block d-md-block d-sm-none d-none">
<button class="comp_button-compare-spas comp_compare-button">Comparer les spas</button>
</div>
<div class="col-12 mt-3 d-lg-none d-md-none d-sm-block d-block">
<button data-url="{{ path("app_list_spa") }}" class="comp_button-compare-spas comp_mobil-voir-tous-les-spas">Voir tous les spas</button>
</div>
</div>
<div class="row d-lg-none d-md-none d-sm-block d-block mt-3">
<div class="col-lg-3 col-md-4 col-sm-12 col-12 text-center">
<button class="text-white comp_button-masque comp_show" data-link="{{ path("app_list_spa") }}">Masquer le comparateur <span><img class="comp_img-arrow-up" src="{{ asset("/images/comparator/arrow_top.png") }}" alt="arrow"></span></button>
<button class="text-white comp_button-masque comp_hide d-none">Afficher le comparateur <span><img class="comp_img-arrow-down" src="{{ asset("/images/comparator/arrow_top.png") }}" alt="arrow"></span></button>
</div>
</div>
</div>
</div>
{% endblock %}
{% block footer %}
<div class=" d-lg-block d-md-block d-sm-none d-none">
<div class="container-fluid background-blue comp_mask-block comp_compare-footer-masque comp_compare-spas-action-button-hide">
<div class="container">
<div class="row pt-4 pb-4">
<div class="col-lg-8 col-md-6 col-sm-12 fs-15 text-white">
N'hésitez pas à <b>contacter notre service commercial</b> afin de bénéficier des conseils de nos professionnels </br>au 09 73 72 33 33
</div>
<div class="col-lg-4 col-md-6 col-sm-12 my-auto">
<div class="text-center mb-3">
<div class="comp_button-explorer ms-auto me-auto">
<a href="{{ path("app_accueil") }}" style="text-decoration: none!important;color:#6d6d6d!important;">Continuer d'explorer</a>
</div>
</div>
<div class="text-center">
<button class="text-white comp_width-80-percent comp_button-masque-footer comp_show" data-link="{{ path("app_list_spa") }}">Masquer le comparateur <span><img class="comp_img-arrow-up float-end" src="{{ asset("/images/comparator/arrow_top.png") }}" alt="arrow"></span></button>
</div>
</div>
</div>
</div>
</div>
</div>
{% endblock %}