.faq-accordion .accordion-content {
    border-radius: 15px;
    display: none;
    padding: 0.5em 10em;
    border: 0px solid #ccc;
	text-align: right;
}

.faq-accordion .accordion-title {
    cursor: pointer;
    /*background: #bbb;*/
    padding: 0.2em 0.2em;
    margin: 0;
    font-weight: light;
	font-family: 'Alegreya Sans', sans-serif;
	font-size: 2em;
}

.faq-accordion .faq-item {
    margin-bottom: 1em;
}

.faq-accordion .faq-answer {
    display: none;
	border: 1px solid #94c41c;
	border-radius: 15px;
}

.accordion-item {
    margin-bottom: 2em;
}

.faq-search-wrapper {
    margin-bottom: 1.5em;
}

#faq-search-input {
    border: 2px solid #94c41c;
    border-radius: 5px;
}
/* test
/* Buitenste sectietitel: + als dicht, − als open */
.faq-accordion .accordion-title {
  position: relative;
  padding-left: 1.4em;         /* ruimte voor het teken links */
  cursor: pointer;
}

.faq-accordion .accordion-title::before {
  content: "+";                /* gesloten */
  color: #94c41c;
  position: absolute;
  left: 0;
  top: 20;
  line-height: 1;              /* nette uitlijning */
  font-weight: 700;
  width: 1em;                  /* vaste breedte om te voorkomen dat tekst springt */
  text-align: bottom;
}

.faq-accordion .accordion-title[aria-expanded="true"]::before {
  content: "−";                /* open (typografische min U+2212) */
}

/* Optioneel: zet het teken rechts i.p.v. links */
.faq-accordion .accordion-title.align-icon-right { padding-left: 0; padding-right: 1.4em; }
.faq-accordion .accordion-title.align-icon-right::before { left: auto; right: 0; }


.faq-item {
  border-bottom: 1px solid #94c41c;;   /* grijs lijntje */
  padding: 0.5em 0;
}

/* Optioneel: laatste item géén lijn */
/*.faq-item:last-child {
  /*border-bottom: none;
}*/