.block_faq .faq_item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.block_faq .faq_item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.block_faq .faq_question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 500;
  color: inherit;
  gap: 1rem;
}
.block_faq .faq_question:hover {
  opacity: 0.7;
}
.block_faq .faq_icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  transform: rotate(180deg);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.block_faq .faq_icon svg {
    width: 1.5rem;
}
.block_faq .faq_item.active .faq_icon {
  transform: rotate(0deg);
}
.block_faq .faq_answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.block_faq .faq_answer_inner {
  padding: 0 0 1.25rem 0;
  line-height: 1.7;
  opacity: 0.8;
}
