/* Style the buttons that are used to open and close the accordion panel */
.accordion2 {
  background-color: #FFF; /* color fondo del acordeon */
  /*color: #666; /* color de texto del acordeon */
  color:rgb(28,65,61)
  cursor: pointer;
  padding: 18px 18px 18px 38px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 16px;
  transition: 0.4s;
}


/* color al activar posicion de acordeon */
.active, .accordion2:hover {
  background-color: #EEE;
}

/* color del simbolo */
.accordion2:after {
  content: '\002B';
  color: #777; 
  font-weight: bold;
  float: right;
  margin-left: 5px;
}


.active:after {
  content: "\2212";
  
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

