/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  color: #444;
  cursor: pointer;
  padding: 2px;
  width: 100%;
  /*border-bottom: 1px solid black;*/
  text-align: left;
  outline: none;
  font-size: 15px;
}

/* one in two accordion have an alternate color (grey) */
.altern{
  background: #f0eeee;
}

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

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: white;
}

.accordion:after {
  content: "\276F";
  float: right;
  margin-left: 5px;
  margin-right: 10px;
  margin-top: 10px;
  transform: rotate(90deg);
}

.active-accordion:after {
  content: "\276F";
  margin-right: 10px;
  margin-top: 10px;
  transform: rotate(-90deg);
}