.faq-shortcode {
  border-radius: 12px;
  max-width: 720px;
  box-sizing: border-box;
  border-style: solid;
  position: relative;
  cursor: pointer;
}
.faq-shortcode:after {
  content: "";
  background-image: url(../../../../images/icons/faq_arrow_down.svg);
  background-size: 18px;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 22px;
}
.faq-shortcode > *:not(:first-child) {
  display: none;
  color: #292929;
}
.faq-shortcode .faq_title {
  display: block;
  margin: 0;
  font-family: "Open Sans", sans-serif;
}
.faq-shortcode.faq-openned {
  background-color: rgba(198, 198, 198, 0.1);
  margin-bottom: 4px;
}
.faq-shortcode.faq-openned .faq_title {
  color: #5966D9;
}
.faq-shortcode.faq-openned:after {
  background-image: url(../../../../images/icons/faq_arrow_up.svg);
}