/* #####################################################################################################
   Frequently asked questions
   ##################################################################################################### */

/*--- standard variables ---*/
/*--- product item ratio (thumb + content) ---*/
/* set ProductImageRatio in productOverview! */
/*--- media queries. When using responsive ---*/
/* Range breakpoints */
/*----- Default functions -----*/
/*----- Default Crossbrowser functions -----*/
/*----- CSS3 functions -----*/
/*----- CSS3 Animation functions -----*/
/*----- Buttons -----*/
/*----- Responsive functions -----*/
#faqList {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
#faqList .accordion {
  margin: 15px 0;
  counter-reset: section;
}
#faqList .accordion .accordion__row {
  padding: 10px;
}
#faqList .accordion .accordion__row .accordion__toggle:before {
  counter-increment: section;
  content: counters(section, ".") ". ";
  color: inherit;
}
#faqList .accordion .accordion__row .accordion__toggle:after {
  display: none;
}
