/* Hide element visually, keeping it focusable (with keyboard) and available for screen-readers */
.Collapsible {
  /* Set color on root of component. It can be overridden after the @include */
  color: var(--colorsTextDefault, #141414);
  /* Make sure font-family goes across entire component */
  font-family: "Nunito Sans", sans-serif;
}
.Collapsible.Collapsible--hidden:not(.Collapsible--animated) {
  border-width: 0;
  box-shadow: 0 0 0 transparent;
  display: none;
  margin: 0;
  opacity: 0;
  padding: 0;
  visibility: hidden;
}

/*# sourceMappingURL=Collapsible.css.map */
