.faq {
  padding: 40px 0;
}
.faq__title {
  margin: 20px 0;
}
.faq__question {
  position: relative;
  padding: 20px 56px 20px 0;
  color: var(--text-color);
  font-size: 16px;
  cursor: pointer;
  font-weight: 400;
  list-style: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.368627451);
  transition: all ease-in 0.5s;
}
.faq__question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 28px;
  line-height: 1;
  color: var(--additional-c-elements);
  transform: translateY(-50%);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.faq__question::-webkit-details-marker {
  display: none;
}
.faq__question::marker {
  display: none;
}
.faq__answer {
  padding-top: 15px;
}
.faq--animated .faq__answer {
  overflow: hidden;
  height: 0;
  padding-top: 0;
  transition: height 0.35s ease, padding-top 0.35s ease;
}
.faq--animated .faq__item[open] .faq__answer {
  padding-top: 15px;
}
.faq--animated .faq__item.is-closing .faq__answer {
  padding-top: 0;
}

.faq__item[open] .faq__question::after {
  content: "-";
}

@media screen and (max-width: 568px) {
  .faq {
    padding: 20px 0;
  }
}/*# sourceMappingURL=faq.css.map */