.faq-title {
  border: 1px solid #e7e9ee;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  padding: 25px 27px 23px 27px;
  user-select: none;
  margin: -1px -15px 20px;
}

.faq-title h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 500;
}

.faq-title h2 {
  margin: 0;
  font-size: 24px;
}

.faq-body {
  display: none;
  opacity: 0;
  transform: translateY(-20px);
  padding: 0 10px 10px;
  user-select: none;
  margin: 0 -15px 20px;
  font-size: 16px;
  line-height: 1.7em;
}

.faq-toggle {
  transition: all 0.2s linear;
  user-select: none;
  display: flex;
  align-items: center;
  min-width: 20px;
}

.faq-toggle img {
  width: 20px !important;
  height: 20px !important;
}

@keyframes faq-in {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes faq-out {
  0% {
    opacity: 1;
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}