html {
  box-sizing: border-box;
}

body {
  margin: 0;
}

*,
*:before,
*:after {
  box-sizing: inherit;
  -webkit-tap-highlight-color: transparent;
}

:host {
  font-family: var(--c-font-family);
}

::-ms-reveal {
  display: none;
}

.c-accordion {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.c-accordion ::slotted(*) {
  flex-basis: 100%;
}