@charset "utf-8";

/* ================================================== */
/* Accordéon */
/* https://www.w3schools.com/howto/howto_js_accordion.asp */
/* ================================================== */

/* Style the buttons that are used to open and close the accordion panel */
.acc_question {
  background-color: #fff;
  color: #3e3500;
  font-weight: bold;
  cursor: pointer;
  padding: 12px 0px 6px 18px;
  width: 100%;
  text-align: left;
  border: none;

  outline: none;
  transition: 0.4s;
}

.acc_question:focus {
  background-color: #fff;
  color: #3e3500;
  outline: none;
}

/*  Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.acc_question.active, .acc_question:hover {
  background-color: #fff;
  color: #c0281a;
  outline: none;
}

.acc_question:after {
  /*content: '\02795';  Unicode character for "plus" sign (+) */
  content: '\02C3'; /* Unicode character for "plus" sign (>) */
  font-size: 1.1em;
  color: #777;
  float: right;
  margin-left: 5px;
  outline: none;
}

.acc_question.active:after {
  /*content: "\2796";  Unicode character for "minus" sign (-) */
  content: '\02C5'; /* Unicode character for "plus" sign (>) */
  outline: none;
}

/*  Style the accordion panel. Note: hidden by default */
.acc_reponse {
  padding: 0px 36px;
  background-color: white;
  /*display: none;*/
  overflow: hidden;
  
  border-bottom-style: solid;
  border-bottom-width: thin;
  border-bottom-color: #666;
  
  max-height: 0;
  transition: max-height 0.2s ease-out;
} 
