.faq__section-heading > a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	/* padding: 12px 0; */
	cursor: pointer;
  border-top: 1px solid #ddd;
}
.faq__section-heading > a:active,
.faq__section-heading > a:focus,
.faq__section-heading > a:hover {
  text-decoration: none;
}
.faq__section-heading > a > h1, 
.faq__section-heading > a > h2, 
.faq__section-heading > a > h3, 
.faq__section-heading > a > h4 {
  display: inline-block;
} 

.faq__section-heading .faq__section-button {
  position: relative;
  padding: 0 10px;
  width: 16px;
  height: 16px;
  background-color: transparent;
  border: 0;
  cursor: pointer
}

.faq__section-heading .faq__section-button::before,
.faq__section-heading .faq__section-button::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 16px;
  height: 1px;
  background-color: currentColor;
  -webkit-transition: -webkit-transform 300ms cubic-bezier(.694, 0, .335, 1);
          transition: -webkit-transform 300ms cubic-bezier(.694, 0, .335, 1);
          transition: transform 300ms cubic-bezier(.694, 0, .335, 1);
          transition: transform 300ms cubic-bezier(.694, 0, .335, 1), -webkit-transform 300ms cubic-bezier(.694, 0, .335, 1);
}

.faq__section-heading > a.collapsed > .faq__section-button::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg)
}
