
.ac-header {
  margin: 0;
  border-top:1px solid transparent;
  border-bottom:1px solid transparent;
  transition: all 0.3s, ease-in-out 0.2s;
}
.ac .ac-trigger {
  font-family: var(--font_headline2);
  font-size: var(--font_size09);
  font-weight: normal;
  line-height: 1em;
  color: var(--col15);
  background-color: var(--ci001);
  cursor: pointer;
  position: relative;
  text-decoration: none;
  width: 100%;
  padding: 0 1rem 0 0;
  margin: 0;
  border: 0;
  float: none;
  transition: all 0.3s, ease-in-out 0.2s;
  display: flex;
  align-items: center;
}
.ac .ac-trigger:hover, .ac.is-active > .ac-header .ac-trigger {
  background-color: var(--ci002);
  transition: all 0.3s, ease-in-out 0.2s;
}
.ac-trigger .headline {
  padding: 1rem 2rem 1rem 1rem;
  text-align: left;
  flex: 1 1 auto;
}
.ac-trigger::after {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  text-align: center;
  color: var(--col15);
  width: 2rem;
  height: 2rem;
  transform: rotate(0deg);
  transition: all 0.3s, ease-in-out 0.2s;
  content: "\f105";
}
.ac.is-active > .ac-header .ac-trigger::after {
  transform: rotate(90deg);
}
/*
.ac .ac-trigger:focus {
}
*/
.ac-panel {
  width: calc(100% - 0.25rem);
  margin: 0 auto;
  overflow: hidden;
  transition-property: height, visibility;
  transition-timing-function: ease;
  transition: all 0.3s, ease-in-out 0.2s;
}
.js-enabled .ac-panel {
  visibility: hidden;
}
.is-active .ac-panel {
  padding: 1rem 1rem .5rem;
  visibility: visible;
}






