#facets_container {
    /* Incorporé dans la grille avec la side nav et le content : */
    grid-area: 1 / 12 / 2 / 15;
    background-color: var(--sideMenuBackgroundColor);
    /* border:2px solid black; */
    /* border-left: 1px solid black; */
    border-radius : 0 0   0 30px;
    flex-direction:column;
    justify-content: flex-start;
    align-items: center;
    /* box-shadow: 10px 5px 5px var(--base); */
    display:none;
    height:98%;
    overflow:hidden;
    position:relative;
    padding-bottom: 10px;
}
#facets_container.active {
    display:flex;
}
#facets_container.active::before{
    content: "";
  position: absolute;
  z-index:99999999;
  background-color: #FFFCF8;
  top: 0px;
  left:-25px;
  height: 50px;
  width: 25px;
  border-top-right-radius: 25px;
   box-shadow: 0 0 -25px 0 #a6c7e2;
}

#facets_container h2 {
   color: var(--sideMenuLink);
}

#facettes {
    display: block;
    margin-left:20px;
    overflow:auto;
    height:inherit;
    width: 95%;
}



.facetLine.flex.row {
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    width: auto;
    margin-left: 20px;
    margin-right: 20px;
    gap:5px;
    margin-bottom:.2em;
  }

#facet_container_title {
    text-align: center;
    margin-bottom: 0;
  }

.facet-group-container {
    display: none;
}
.facet-group-container.active {
    display: block;
}
/* Bouton permettant d’afficher / masquer le contenu d’une facette */
.facet_title {
    background-color: inherit;
    background: inherit;
    border : none;
    color: black;
    font-family: 'Ubuntu';
    font-size: 1.17em;
    margin-top: 1em;
    font-weight: bold;
    text-align: left;
    cursor: pointer;
    width:100%;
}

.facet_title:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: white;
  float: right;
  margin-left: 5px;
}

.facet_title.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}

button#toggleFacets {
  display:none;
}
div.flexCheck {
  display:flex;
  flex-direction: row;
  align-items: center;
  gap:10px;
}

@media only screen and (max-width: 600px) {
  button#toggleFacets {
    display:inline;
    background-color : inherit;
    border:0;
  }
   button#toggleFacets:before { 
    content :'\02795';
   }
  button#toggleFacets.active:before {
    content: "\2796";
  }

  #facets_container {
    position: absolute;
    top: 150px;
    background-color: var(--sideMenuBackgroundColor);
    /* border:1px solid black; */
    border-radius: 30px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: none;
    height: unset;
    overflow: hidden;
    width: 99%;
    min-height:fit-content;
    max-height: 40vh;
  }
   #facet_container_title {
    display:inline-block;
    text-align: center;
    margin-bottom: 0;
    height: 50px;
   }
   #facettes.active {
    display: block;
   }
   #facettes {
    display:none;
   }
}