<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/** Shopify CDN: Minification failed

Line 431:4 Unexpected "{"
Line 431:5 Expected identifier but found "%"
Line 431:123 Expected identifier but found "%"

**/
.ayaq-header-container {
  padding-left: 10%; 
  display: flex;
  justify-content: space-between; /* Aligne les divs enfants horizontalement */
  align-items: center; /* Centre les divs verticalement */
  position: fixed;
  /*top: 0;*/
  left: 0;
  height:48px;
  width: 100vw;
  color: white;
  border-bottom: 1px solid #4b4b4b;
  background-color: rgba(150, 150,150, 0.5);
  text-align: center;
  z-index: 9999;
  min-height: 48px;
  height: auto;
}

.ayaq-header-container.white {
  background-color: #FFF;
}

.header__heading-logo {
  max-height: 20px;
  height: auto;
  width: auto;
}

.ayaq-logo {
  position: absolute; /* Permet de sortir l'Ã©lÃ©ment du flux normal */
  top: 50%; /* Positionne le div Ã&nbsp; 50% du haut de la page */
  left: 50%; /* Positionne le div Ã&nbsp; 50% de la gauche de la page */
  transform: translate(-50%, -50%); /* Centre le div exactement au milieu */
  z-index: 10000; /* Le fait apparaÃ®tre au-dessus des autres Ã©lÃ©ments */
}

/* Styles de base pour le menu et les colonnes */
.ayaq-list-menu--inline {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

/* Supprimer les marqueurs des li */
.ayaq-submenu-list {
  list-style-type: none;
  padding-left: 0;
}

.ayaq-li-menu1 {
  position: relative;
  margin-right: 20px;
  display: inline-block;
  padding-left: 0px; /* Les Ã©lÃ©ments de niveau 1 ont un padding gauche de 0px */
}

/* Rendre l'Ã©lÃ©ment nav#menu1 invisible sous 990px */
@media (max-width: 990px) {
  #menu1 {
    display: none !important; /* Masquer le menu sous 990px */
  }
  .header-partnershops{
    display: none !important; /* Masquer le menu sous 990px */
  }
  /*.fa-map-marker-alt{*/
    /* display: none !important; Masquer le menu sous 990px */
  /* }*/
}

/* Liens de niveau 0 */
.ayaq-header__menu-item {
  padding: 0px 20px 20px 20px; /* Padding gauche, droite et bas de 20px pour les liens de niveau 0 */
  text-decoration: none;
  color: black;
  font-weight: normal;
  cursor: pointer;
  position: relative;
}

/* Remettre en gras les Ã©lÃ©ments avec "#" dans l'URL */
.ayaq-no-link {
  font-weight: bold;
  color: black;
  cursor: default;
  text-decoration: none;
}

.ayaq-submenu-title {
  padding: 0px 0px 10px 0px !important;
  font-weight: bold;
}

/* Liens strictement supÃ©rieurs au niveau 0 (niveaux 1 et plus) */
.ayaq-submenu-list .ayaq-header__menu-item {
  padding: 0px 0px 10px 0px !important;
}

/* Styles spÃ©cifiques pour le conteneur des Ã©lÃ©ments de dernier niveau */
.ayaq-menu-last-level {
  display: flex; /* Alignement horizontal des Ã©lÃ©ments */
  align-items: center; /* Centrage vertical des Ã©lÃ©ments */
}

.ayaq-menu-item-text {
  margin-left: 10px; /* Espacement entre l'image et le texte */
}

.ayaq-menu-item-image img {
  width: 12px; /* Taille rÃ©duite de l'image */
  height: auto;
  vertical-align: middle; /* Aligner l'image avec le texte */
}

.ayaq-header__menu-item::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px; /* Ã‰paisseur de la ligne de soulignement */
  bottom: 8px; /* AjustÃ© pour Ãªtre proche du texte */
  left: 0px;
  background-color: currentColor;
  transition: width 0.3s ease-in-out;
}

.ayaq-header__menu-item:hover {
  font-weight: 600; /* Lien en gras au survol */
}

.ayaq-header__menu-item:hover::after {
  width: 100%; /* La largeur du soulignement sera de 100% pour les liens normaux */
}

.ayaq-home-link {
  color: white !important; /* Liens blancs sur la page d'accueil */
}

/* Sous-menus */
.ayaq-submenu-container {
  display: block; /* On veut que le sous-menu soit toujours dans le flux */
  position: fixed; /* Assure que chaque sous-menu est indÃ©pendant */
  top: 44px;
  left: 0 !important;
  width: 100vw !important;
  background-color: white;
  z-index: -1; /* Par dÃ©faut, le sous-menu est derriÃ¨re */
  padding: 0 0 0 5%;
  box-sizing: border-box;
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Ombre portÃ©e lÃ©gÃ¨re vers le bas */
  margin: 0 auto;
  opacity: 0; /* Initialement transparent */
  height: 0; /* Initialement cachÃ© */
  overflow: hidden; /* EmpÃªche le dÃ©bordement lors de l'animation */
  transition: height 0.3s ease, opacity 0.3s ease, z-index 0.3s; /* Transition douce pour z-index et opacitÃ© */
}

.ayaq-submenu-container.open {
  z-index: 99999; /* Amener le sous-menu au-dessus lors de l'ouverture */
  opacity: 1; /* Rendre visible */
  height: auto;  /* Ajuster la hauteur pour afficher le sous-menu */
}

.ayaq-menu-columns {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 0 10px 10px;
  padding: 0;
}

/* Ajouter une couleur de fond gris beige trÃ¨s clair pour une colonne sur deux */
.ayaq-menu-column:nth-child(odd) {
  /*background-color: #f7f7f7;*/ /* Gris beige trÃ¨s clair */
}

.ayaq-menu-column {
  flex: 1;
  padding: 20px 10px 30px 40px;
  position: relative;
  text-align: left;
}

.ayaq-menu-image-column {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px 0px 40px;
}

.ayaq-centered-image {
  max-width: 100%;
  height: auto;
  max-height: 250px;
}

/* Liste des sous-menus */
.ayaq-submenu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Soulignement des liens au survol */
.ayaq-submenu-list a:hover::after {
  width: 100%; /* Le soulignement classique est rÃ©activÃ© pour le survol */
}

.ayaq-menu-column:nth-child(2),
.ayaq-menu-column:nth-child(3) {
  position: relative; /* Assurer que les pseudo-Ã©lÃ©ments sont positionnÃ©s par rapport Ã&nbsp; la colonne */
}

.ayaq-menu-column:nth-child(2)::before,
.ayaq-menu-column:nth-child(2)::after,
.ayaq-menu-column:nth-child(3)::before,
.ayaq-menu-column:nth-child(3)::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 70%; /* Hauteur des sÃ©parateurs */
  background-color: #ccc; /* Couleur grise */
  top: 15%; /* Centrage vertical */
}

.ayaq-menu-column:nth-child(2)::before,
.ayaq-menu-column:nth-child(3)::before {
  left: 0; /* Bord gauche */
}

.ayaq-menu-column:nth-child(2)::after,
.ayaq-menu-column:nth-child(3)::after {
  right: 0; /* Bord droit */
}

/* Supprimer les sÃ©parateurs s'il n'y a pas assez de colonnes (2 ou moins) */
.ayaq-menu-columns .ayaq-menu-column:nth-child(1):nth-last-child(-n+2)::before,
.ayaq-menu-columns .ayaq-menu-column:nth-child(1):nth-last-child(-n+2)::after,
.ayaq-menu-columns .ayaq-menu-column:nth-child(2):nth-last-child(-n+2)::before,
.ayaq-menu-columns .ayaq-menu-column:nth-child(2):nth-last-child(-n+2)::after,
.ayaq-menu-columns .ayaq-menu-column:nth-child(3):nth-last-child(-n+2)::before,
.ayaq-menu-columns .ayaq-menu-column:nth-child(3):nth-last-child(-n+2)::after {
  content: none;
}

.ayaq-submenu-footer {
  width: 100%;
  padding: 5px 0 5px 0;
  background-color: #000000;
  color: #c1c0be;
  text-align: center; /* Centrer le texte */
  padding: 1px; /* Espacement autour du texte */
  font-size: 10px; /* Taille du texte */
  text-transform: uppercase; /* Mettre le texte en majuscule */
  position: absolute;
  bottom: 0;
  left: 0;
}

/* DerniÃ¨re colonne, on veut que l'image soit collÃ©e Ã&nbsp; gauche avec de l'espace en haut et en bas */
.ayaq-menu-columns .ayaq-menu-column:last-child {
  position: relative; /* NÃ©cessaire pour le positionnement absolu de l'image */
  text-align: left; /* Aligner le contenu Ã&nbsp; gauche */
  /*padding: 10px 0;*/ /* Ajouter un padding en haut et en bas autour de l'image */
}

/* L'image Ã&nbsp; l'intÃ©rieur de la derniÃ¨re colonne */
.ayaq-menu-columns .ayaq-menu-column:last-child img {
  position: relative; /* Retirer le positionnement absolu pour rester dans le flux du document */
  left: 0; /* Coller l'image Ã&nbsp; gauche */
  max-width: 100%; /* S'assurer que l'image ne dÃ©passe pas la largeur disponible */
  height: auto;
  margin-bottom: 10px; /* Ajouter un espace supplÃ©mentaire au-dessus et en dessous de l'image */
}


.french-flag {
  position: fixed;
  /*top: 2px;*/
  left: 0;
  width: 5px; /* La largeur du drapeau */
  height: 45px; /* Prend toute la hauteur du conteneur */
  display: flex;
  flex-direction: column;
  z-index: 10000; /* Assurer que le drapeau soit bien visible */
}

.french-flag .blue, 
.french-flag .white, 
.french-flag .red {
  width: 100%; /* Prend la largeur complÃ¨te du drapeau (3px) */
  height: 33.33%; /* Chacune des sections prend 1/3 de la hauteur */
}

.french-flag .blue {
  background-color: #0055A4; /* Bleu */
}

.french-flag .white {
  background-color: #FFFFFF; /* Blanc */
}

.french-flag .red {
  background-color: #EF4135; /* Rouge */
}


  .ayaq-search-bar {
    display: none;
    width: 100%;
    background: white;
    padding: 55px 20px 12px 20px; /* moins de padding en bas */
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    position: relative;
    z-index: 50;
    border-top: 1px solid #eee;
  }

  .ayaq-search-bar .add-padding {
    padding-top: 75px;
  }

  .ayaq-search-bar__form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
  }

  .ayaq-search-bar__form input[type="search"] {
    flex: 1;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #000;
    border-right: none;
    border-radius: 0;
    box-shadow: none;
    outline: none;
  }

  .ayaq-search-bar__form button {
    background: #000;
    color: white;
    padding: 12px 20px;
    border: 1px solid #000;
    border-radius: 0;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: none;
  }

  .ayaq-search-bar__form button:hover {
    background: #222;
  }

  @media screen and (max-width: 750px) {
    .fa-map-marker-alt{
      display:none;
    }
    .ayaq-search-bar__form {
      flex-direction: column;
      gap: 12px;
    }

    .ayaq-search-bar__form input[type="search"],
    .ayaq-search-bar__form button {
      width: 100%;
      border-radius: 0;
    }
  }

  header-drawer {
    justify-self: start;
    margin-left: -1.2rem;
  }


  @media screen and (min-width: 990px) {
    header-drawer {
      display: none;
    }
  }

  .secondary_bar{
    background: #e9e9e9;
    font-size:16px;
    height:40px;
  }
  

  @media screen and (max-width: 750px) {
    .secondary_bar{
      font-size:16px
    }
  }

  .menu-drawer-container {
    display: flex;
  }

  .list-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .list-menu--inline {
    display: inline-flex;
    flex-wrap: wrap;
  }

  summary.list-menu__item {
    padding-right: 2.7rem;
  }

  .list-menu__item {
    display: flex;
    align-items: center;
    {% comment %}/*line-height: calc(1 + 0.3 / var(--font-body-scale));*/ ayaq pour le menu hover qui fonctionne mal sinon{% endcomment %}
  }

  .list-menu__item--link {
    text-decoration: none;
    padding-bottom: 1rem;
    padding-top: 1rem;
    line-height: calc(1 + 0.8 / var(--font-body-scale));
  }

  @media screen and (min-width: 750px) {
    .list-menu__item--link {
      padding-bottom: 0.5rem;
      padding-top: 0.5rem;
    }
  }

@media screen and (min-width: 1024px){
  .list-menu__item:after {
        content: '';
        position: absolute;
        bottom: 17px;
        left: 50%;
        width: 0;
        height: 2px;
        margin-left: -12.5px;
        background-color: #000;
        transition: all .2s ease;
    }
  }



.ayaq-submenu-button {
  text-align: center;
  margin-bottom: 40px;
}

.ayaq-button {
  display: inline-block;
  padding: 3px 10px 0px 10px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.ayaq-button--pink {
  background-color: #FFB1B1;
  color: white;
}

.ayaq-button--blue {
  background-color: #4770BA;
  color: white;
}

.ayaq-button--pink:hover {
  background-color: #e45f90;
}
</pre></body></html>