.faq_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq_list .faq_item {
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  background-color: #fff;
}
.faq_list .faq_item .question {
  position: relative;
  margin: 0;
  padding: 6px 16px 6px 22px;
  background-color: #F7F7F7;
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
  color: #1C1C1C;
}
.faq_list .faq_item .answer {
  margin: 0;
  padding: 12px 16px 12px 22px;
  font-size: 14px;
  line-height: 20px;
  color: #555555;
}
.faq_filter .label {
  display: block;
  margin: 0 0 14px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  color: #888888;
}
.faq_filter .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.faq_filter .chips .chip {
  display: inline-flex;
  align-items: center;
  height: 28px;
  box-sizing: border-box;
  padding: 0 16px;
  border: 1px solid #e6e6e6;
  background-color: #fff;
  border-radius: 14px;
  font-size: 13px;
  line-height: 18px;
  font-weight: 600;
  color: #555555;
  transition: all 400ms ease 0ms;
}
.faq_filter .chips .chip.active {
  border-color: #E76124;
  background-color: #FFF5F0;
  color: #E76124;
}
.notouch .faq_filter .chips .chip:not(.active):is(:hover,:focus) {
  border-color: #b8b8b8;
}
.faq_filter .count {
  display: block;
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 16px;
  color: #888888;
}
@media screen and (max-width: 1000px) {
  .faq_filter .chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -12px;
    padding: 0 12px;
  }
  .faq_filter .chips::-webkit-scrollbar {
    display: none;
  }
  .faq_filter .chips .chip {
    flex-shrink: 0;
  }
}
