/*
  Classi utilizzate pre rendere il sito accessibile.
*/

.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
  z-index: 200; /* Necessario perché altrimenti il link finisce sotto l'header che ha, in questo caso, position absolute e z-index 100. */
}

.sr-only-focusable:active, .sr-only-focusable:focus{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  padding: 16px;
  color: hsl(161, 62%, 24%);
  background-color: #d1e0dd;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
}
