@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#sidenav {
  position: fixed;
  left: 2rem;
  top: calc(2rem + 2.33rem + 1rem);
  color: white;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  width: 14rem;
  min-height: calc(100vh - 4rem - 1rem - 2.33rem);
  padding-right: 2rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 20;
  -webkit-transition: left 0.15s ease-out;
  transition: left 0.15s ease-out;
}

#sidenav header p, #sidenav header a,
#sidenav footer p,
#sidenav footer a {
  font-weight: 400;
  font-size: 0.777rem;
}

#sidenav header > p:not(:last-child),
#sidenav footer > p:not(:last-child) {
  margin-bottom: 0.666rem;
}

#sidenav > *:not(:last-child) {
  margin-bottom: 2rem;
}

.navlist li {
  width: 100%;
}

.navlist li a {
  z-index: 1;
  width: 100%;
  font-weight: 600;
  padding: 0.666rem 0.777rem 0.666rem 0;
  font-size: 0.777rem;
}

.navlist .divider {
  height: 0.055rem;
}

.navlist a::before,
.navlist .divider::before {
  content: '';
  position: absolute;
  -webkit-transition: background-color 0.15s ease-out;
  transition: background-color 0.15s ease-out;
  left: -2rem;
  border-radius: 0 1.666rem 1.666rem 0;
  top: 0;
  height: 100%;
}

.navlist a::before {
  background-color: transparent;
  z-index: -1;
  width: calc(2rem + 100%);
}

.navlist .divider::before {
  background-color: rgba(255, 255, 255, 0.12);
  width: 100%;
}

.navlist li.active a::before {
  background-color: white;
}

.navlist li.active a {
  pointer-events: none;
}

.navlist > li:not(:last-child) {
  margin-bottom: 0.222rem;
}

@media (min-width: 1441px) {
  #sidenav-close {
    display: none;
  }
}
/*# sourceMappingURL=sidenav.css.map */