/*  accordion pour CAR */

.accordion 
{
    background-color: gray; 	/* #eee */
    color: #444;
    cursor: pointer;
    padding: 10px; 				/* 18 */
	width: 100%;
    border: none; 			/* dotted */
    text-align: left;  			/* left */
    outline: none;				/* none */
    font-size: 20px; 			/* 15 */
    transition: 0.4s;   
    height: 60px;  				/* 20  */
    line-height: 20px;  		/* 8 */
}

.panel 
{
    padding: 0 18px;  
    display: none;
    background-color: lightgreen; 
    overflow: hidden;
	border-radius: 10px;
/*	width: auto%; */
}

.active, .accordion:hover 
{
    background-color: darkgray; /* #ccc */

}

/* ajout pour animation + et -   */
.accordion:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: darkblue; 
  font-weight: bolder; 
  float: left;  /* right */
  margin-left: 5px;
   margin-right: 5px;
}

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

