@mixin screenreader-only($unset: false, $position: "static") {
  @if $unset == false {
    clip: rect(0 0 0 0);
    clip-path: inset(100%);
    height: 1px;
    width: 1px;
    position: absolute;
    white-space: nowrap;
    overflow: hidden;
  }
  @else {
    clip: auto;
    clip-path: none;
    height: auto;
    width: auto;
    position: #{$position};
    white-space: normal;
    overflow: visible;
  }
}
