.faq_item {
  width: 100%;
  border-radius: 10px;
  background: #f3f0ff;
  padding: 16px 24px;
  margin-bottom: 20px;
}
.faq_answer {
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease;
  position: absolute;
}

.faq_item .faq_answer.show {
  max-height: 5000px;
  visibility: visible;
  opacity: 1;
  position: static;
  margin-top: 10px;
}
.faq_title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
}
.faq_title:after {
  content: '';
  background: url('https://krisp.ai/blog/wp-content/themes/krisp-blog-new/img/icon_plus.svg') center;
  background-size: 16px;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
  width: 16px;
  height: 16px;
  margin-top: 5px;
}
.faq_item.active .faq_title:after {
  transform: rotate(45deg);
}
