.faq {
  margin-top: 40px;
}
.faq__title {
  margin-bottom: 20px;
}
.faq__title:after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: var(--additional-c-elements);
  margin-top: 10px;
  border-radius: 5px;
}
.faq__question {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}
.faq__question::-webkit-details-marker {
  display: none;
}
.faq__question::marker {
  display: none;
}
.faq__item {
  margin-bottom: 16px;
  background: #211442;
  padding: 20px;
}
.faq__item[open] .faq__question {
  color: var(--additional-c-elements);
}
.faq__answer {
  padding-top: 12px;
}

.faq__question {
  position: relative;
  padding-right: 30px;
}
.faq__question::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -5px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.faq__item[open] .faq__question::after {
  transform: rotate(-135deg);
  margin-top: -2px;
}/*# sourceMappingURL=faq.css.map */