.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding-right: 18px;
  padding-left: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  border-bottom:1px solid #999;
  line-height: 60px;
}


/* 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) */
.accordion:hover {
  background-color: #ccc;
}

.accordion:after {
  content: "\002B"; /* Unicode character for "plus" sign (+) */
  font-weight:400;
  color: var(--color-principal);
  float: right;
  margin-right: 5px;
  vertical-align: middle;
}


.accordion2 {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding-right: 18px;
  padding-left: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  border-bottom:1px solid #999;
  line-height: 60px;
}


/* 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) */
.accordion2:hover {
  background-color: #ccc;
}

.accordion2:after {
  content: "\002B"; /* Unicode character for "plus" sign (+) */
  font-weight:400;
  color: var(--color-principal);
  float: right;
  margin-left: 5px;
  vertical-align: middle;
}


/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 15px 1px;
  /*background-color: white;*/
  display: none;
  overflow: hidden;
}

.bg-boton-accordion {
	background:#fffff!important;
}

.bg-boton-accordion:hover {
	background:#e6e6e6!important;
}