button.js-bfm-accordion {
  background: #eee; color: #444; cursor: pointer; padding: 18px; width: 100%; text-align: left; border: none; outline: none;
  font-size: 1.2em; margin-bottom: 2px;line-height:1em;
  padding-right: 40px; position: relative;
  transition: 0.4s;
}
button.js-bfm-accordion.active, button.js-bfm-accordion:hover {
  background: #ddd;
}
button.js-bfm-accordion:after {
  content: '\ea43'; font-family:"BlueFireMedia";
  font-size: 1.2em; color: #444; float: right; margin-left: 5px;
  display: block; height: 25px; width: 25px; position: absolute; right: 10px; top: 0; bottom: 0; margin: auto 0;
}
button.js-bfm-accordion.active:after {
  content: '\ea41'; font-family:"BlueFireMedia";
}
div.panel {
  padding: 0 18px; background: #fff; max-height: 0; overflow: hidden; transition: 0.6s ease-in-out; opacity: 0;
}
div.panel.show {
  opacity: 1; max-height: 500px;
}