/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background: #edeeee;
  color: rgba(0,0,0,0.94);
  cursor: pointer;
  padding: 18px 3.125em;
  width: 100%;
  text-align: left;
  box-shadow: 0 2px 0 0 rgb(0 0 0 / 20%);
  border-top: 1px solid #D4D5D5;  
  outline: none;
  transition: 0.4s;
  position: relative;
  
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.5px;
}

/* 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 {
  background: #D4D5D5!important;
}

.panel {
  /*padding: 0 18px;*/
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.accordion:after {
  content: '\e95d';/* Unicode character for "plus" sign (+) */
  font-family: 'icons';
  position: absolute;
  top: 0;
  right: 0;
  font-size: 20px;

  margin: .9em;
}

.active-accordion:after {
  content: '\e95c'; /* Unicode character for "minus" sign (-) */
}