.faq-wrapper {
  position: relative;
}
.faq-wrapper ul {
  margin: 0;
  padding: 0;
}
.faq-wrapper ul li {
  margin: 0;
  padding: 0;
  border: 1px solid var(--coralinio_primary);
  border-top: 0;
  padding: 20px 10px;
  list-style: none;
}
.faq-wrapper ul li:first-child {
  border-top: 1px solid var(--coralinio_primary);
}
.faq-wrapper ul > li > a {
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  color: #000;
  transition: all 0.5s ease-in-out;
}
.faq-wrapper ul > li.open > a,
.faq-wrapper ul > li > a:hover {
  color: var(--coralinio_primary);
}
.faq-wrapper ul > li.open > div {
  opacity: 1;
  visibility: visible;
  height: auto;
  transition: all 0.5s ease-in-out;
  max-height: 1000px;
  transition: max-height 1s ease-in-out;
}
.faq-wrapper ul > li > div {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}
