/*
 * Header
 */
.block-faq {
  padding: 40px 80px;
  background-color: #f8f0eb;
}
@media only screen and (max-width: 1200px) {
  .block-faq {
    padding: 32px 40px;
  }
}
.block-faq__filter_wrapper {
  max-width: 1200px;
  margin: 0 auto 24px;
}
@media only screen and (max-width: 768px) {
  .block-faq__filter_wrapper {
    display: none;
  }
}
.block-faq__select--mobile {
  display: none;
  margin-bottom: 16px;
}
@media only screen and (max-width: 768px) {
  .block-faq__select--mobile {
    display: inline-block;
  }
}
.block-faq__question_wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0;
  border-top: solid 1px #ffffff;
}
.block-faq__question_wrapper:last-of-type {
  border-bottom: solid 1px #ffffff;
  margin-bottom: 32px;
}
.block-faq__question_wording,
.block-faq__question_wording--expanded {
  color: #2f3c55;
  font-size: 1.125em;
  cursor: pointer;
}
.block-faq__question_wording:before {
  background-image: url(../../img/plus.png);
  background-size: 16px 16px;
  width: 16px;
  height: 16px;
  content: "";
  margin-top: 2px;
  margin-right: 16px;
  float: left;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
.block-faq__question_wording--expanded:before {
  background-image: url(../../img/moin.png);
  background-size: 16px 16px;
  width: 16px;
  height: 16px;
  content: "";
  margin-top: 2px;
  margin-right: 16px;
  float: left;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
.block-faq__question_answer {
  color: #647381;
  margin-top: 16px;
  margin-left: 28px;
  max-height: 0;
  overflow: hidden;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
.block-faq__question_answer.block-faq__question_answer--active {
  max-height: 100vh;
}
.block-faq__head-select {
  position: sticky;
  top: 104px;
  background: #f8f0eb;
}
@media only screen and (max-width: 768px) {
  .block-faq__head-select {
    top: 137px;
  }
}
@media only screen and (max-width: 768px) {
  .block-faq__filter_wrapper___terms {
    display: grid;
  }
}
/*# sourceMappingURL=./block-faq.css.map */