.famille-tags::before {
    content: unset !important;
}

.famille-tags {
    font-weight: bold;
    font-style: italic;
}

#smartsearch_validation{
    display: flex;
    flex-direction: row;
    align-items: center;
}

#smartSearch_results{
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

#smartSearch_results>article{
    /* border: 1px solid #333; */
    border-radius: 10px;
    max-width: 48%;
    filter: drop-shadow(3px 3px 3px #999);
}

/* 
Spinner
*/
.smartsearch_spinner {
	border: 3px solid #f3f3f3;
	border-radius: 50%;
	border-top: 3px solid #0b789c;
	width: 20px;
	height: 20px;
	-webkit-animation: spin 1s linear infinite; /* Safari */
	animation: spin 1s linear infinite;
    /* margin-top: auto;
    margin-bottom: auto; */
    margin-left: 20px;
  }

  #smartsearch_ResultsMessage{
    margin-left: 20px;
  }
  
  /* Safari */
  @-webkit-keyframes spin {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(359deg); }
  }
  
  @keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(359deg); }
  }