/* hide container with skip link */
.skip-link-container {
  height: 0px;
}

/* hide skip to main link */
.skip-link {
  padding: 6px;
  position: relative;
  top: -40px;
  left: 0px;
  color: white !important;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  border-bottom-right-radius: 8px;
  background: #0c2a57;
  -webkit-transition: top 0.5s ease-out;
  transition: top 0.5s ease-out;
  z-index: 20000;
  text-decoration: none !important
}

/* show skip link on focus */
.skip-link:focus {
  position: relative;
  left: 0px;
  top: 0px;
  outline-color: transparent;
  -webkit-transition: top 0.05s ease-in;
  transition: top 0.05s ease-in;
}
