@mixin transition($transition...) {
  transition: $transition;

  @media screen and (prefers-reduced-motion: reduce) {
    transition: none;
  }
}
