.accspacing { margin-top:1rem; margin-bottom:1rem;}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: transparent;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  border-bottom:solid 1px #444;
  text-transform:uppercase;
}

/* 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:hover {
  background-color: transparent;
}

.accordion:after {
  content: "\276F"; 
  font-size: 10px;
  color: #777;
  float: right;
  margin-left: 5px;
  transform: rotate(90deg); 
  font-size: 1.5rem;
}

.active:after {
    transform: rotate(-90deg); 
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  background-color: transparent;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.panel-inner {
    padding: 30px 18px 10px 18px;
}


.green .accordion {
    color:#fff;
    border-color:#fff;
}
.green .accordion:after { color:#fff; }