/* Footer staff login link */
.etl-admin-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:10px;
  font-weight:700;
  line-height:1;
  opacity:.68;
  text-decoration:none;
  border:1px solid rgba(0,0,0,.16);
  padding:5px 9px;
  border-radius:999px;
  background: rgba(255,255,255,.78);
  color: rgba(17,24,39,.86);
  transition: opacity .15s ease, transform .15s ease, border-color .15s ease;
}
.etl-admin-link:hover{
  opacity:.96;
  transform: translateY(-1px);
  border-color: rgba(229,38,41,.42);
}
html[data-theme="dark"] .etl-admin-link{
  border-color: rgba(255,255,255,.24);
  background: rgba(17,25,38,.82);
  color: rgba(226,234,246,.9);
}

footer{
  position: relative;
}
footer .etl-admin-link{
  position: absolute;
  right: 18px;
  bottom: 44px;
  z-index: 3;
}

@media (max-width: 980px){
  footer .etl-admin-link{
    position: static;
    margin: 8px 12px 0 auto;
    display: inline-flex;
  }
}
