.accordion-label, .accordion .accordion-label {
  margin: unset;
  display: flex;
  justify-content: space-between;
  padding: 0.2em;
  background: #004f80;
  color: white;
  border-bottom: solid 1px white;
  cursor: pointer;
}

.accordion-label .headline {
  display: inline-block;
  padding-bottom: 0.3em;
  padding-left: 0.7em;
  width: 91%;
}

.accordion-label .headline {
  font-size: 1.2em;
  font-weight: 370;
  color: white;
}

.accordion-label span::before {
  transition: all 0.35s;
  font-size: 1.2em;
}

.accordion-elements {
  padding-left: 1.5em;
  background-color: #f0f0f0;
}

input.accordion-checkbox {
  position: absolute;
  display: none;
}

input.accordion-checkbox ~ .ce-textpic, input.accordion-checkbox ~ .accordion-elements {
  max-height: 0;
  transition: all 0.5s;
  overflow: hidden;
}

input.accordion-checkbox:checked ~ .ce-textpic, input.accordion-checkbox:checked ~ .accordion-elements {
  max-height: 100vh;
  height: auto;
}

input.accordion-checkbox:checked + header .accordion-label span::before {
  transform: rotate(180deg);
  position: relative;
}

/*# sourceMappingURL=accordion.css.map */
