/**********************************************************/
/* Table of Content                                       */
/**********************************************************/
/* 1. Screen Reader Only Class */
/* 2. :focus-visible */

/* 1. Screen Reader Only Class
***********************************************************/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* 2. :focus-visible
***********************************************************/
a,
button,
input,
select,
textarea,
input[type="submit"],
input[type="reset"],
[role="button"],
[role="checkbox"],
[role="radio"],
[role="link"],
[aria-expanded="true"] {
    &:focus-visible {
        outline: 1px dashed #e0004d !important;
        outline-offset: 0px !important;
    }
}