:root {
  --focus-color: #097efb;
  --focus-color-dark-bg: #3b99fc;
}
@media (prefers-color-scheme: dark) {
  :root {
    --focus-color: #3b99fc;
    --focus-color-dark-bg: #097efb;
  }
}
.bottom-fixed-nav {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  background: white;
  border-top: 1px solid #999;
  box-shadow: 0 -5px 5px #ccc;
  z-index: 1;
}
.bottom-fixed-nav__list {
  padding-left: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
}
.bottom-fixed-nav__list-item {
  flex: 1 1 auto;
  justify-content: center;
  display: flex;
}
.bottom-fixed-nav__link {
  align-items: center;
}
.bottom-fixed-nav__avatar {
  height: 24px;
}
.bottom-fixed-nav__body footer {
  margin-bottom: 3.75rem;
}
/*# sourceMappingURL=bottom-fixed-nav.css.map */