/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 
 .accordion_faq_topic {
  transition: 0.4s;
  cursor: pointer;
}

.accordion_faq_topic:before {
  content: '\002B';
  font-weight: bold;
  float: left;
  margin-left: 15px;
}

.accordion_faq_topic.active:before {
  content: "\2212";
}

.accordion_faq_panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}