/*!******************************
*****   screen-reader.css   *****
********************************/

@layer utilities {
  .sr-only {
    position: absolute;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    white-space: nowrap;
    border-width: 0;
  }

  .not-sr-only {
    position: static;
    overflow: visible;
    clip: auto;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    white-space: normal;
  }
}
