/****************************
    Skip Link
*****************************/
#skip-link {
  position: absolute;
  color: $blue-800;
  background-color: $blue-300;
  padding: .5rem;
  display: block;
  width: 100%;
  z-index: 5000;
  top: -80px;
  transition: top .3s ease-in-out;
}

#skip-link:focus {
  top: 0;
  outline: none;
}