<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* accordion */
.acc {
  display: grid;
  transition: all ease 0.4s;
  opacity: 0;
  grid-template-rows: 0fr;
}

.acc.show {
  opacity: 1;
  grid-template-rows: 1fr;
}
.acc .inner {
  overflow: hidden;
}
</pre></body></html>