@mixin cwui-skip {
  a.skip-main {
    background: #000;
    color: #fff;
    display: block;
    padding: .25rem;
    text-align: center;
    text-decoration: none;
    
    // 1. Override `.show-on-focus:focus`
    &:focus {
      position: absolute !important; // [1]
      width: 100%;
      z-index: 4;
    }
  }
}
