.schema-faq-section {
  border-top: 4px solid var(--e-global-color-61ad0f8);
  background: white;
  border-radius: 8px;
  margin-bottom: 18px;
  padding: 5px 20px;
}

.accordion2-block.white-background .schema-faq-section {
  border-bottom: 1px solid #ececec;
  border-right: 1px solid #ececec;
  border-left: 1px solid #ececec;
}

strong.schema-faq-question {
  font-size: 18px;
  font-weight: 500;
  color: var(--e-global-color-primary);
  padding: 10px 34px;
  position: relative;
  display: block;
  cursor: pointer;
}

.schema-faq-answer {
  padding: 12px 10px 12px 34px;
}

.schema-faq-answer > :last-child {
  margin-bottom: 0 !important;
}

@media (max-width: 768px) {
  strong.schema-faq-question {
    padding-right: 40px !important;
  }
  .schema-faq-section {
    padding: 0 !important;
  }
}

.schema-faq-question::before {
  content: '';
  display: block;
  border: 2px solid black;
  border-width: 0px 2px 2px 0px;
  width: 9px;
  height: 9px;
  box-sizing: border-box;
  position: absolute;
  right: 14px;
  top: 16px;
  transform: rotate(-45deg);
  transition: all 0.3s 0.3s ease;
  transform-origin: center;
}
.schema-faq-question.expanded::before {
  transform: rotate(45deg);
}
