:root {
  --primary: #0C0121;
  --secondary: #5801FF;
  --tertiary: #FFF;
  --transparent: transparent;
}

.dn-block--faq-list .faq-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0 !important;
  padding: 0;
}
.dn-block--faq-list .faq-list__item {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.dn-block--faq-list .faq-list__item:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.dn-block--faq-list .faq-list__item__question {
  padding: 35px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.dn-block--faq-list .faq-list__item__question span {
  color: white;
}
.dn-block--faq-list .faq-list__item__answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
  padding: 0;
}
.dn-block--faq-list .faq-list__item__answer span {
  color: white;
}
.dn-block--faq-list .faq-list__item--active .faq-list__item__answer {
  max-height: 750px;
  padding-bottom: 35px;
}