.sidebar {
  position: fixed;
  top: 55px;
  left: 0;
  width: 95px;
  height: calc(100% - 55px);
  background-color: var(--sidebar-bg);
  z-index: 105;
  padding-top: 5px;
  transition: left 0.3s ease-in-out;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.sidebar .fa {
  display: block;
  font-size: 20px;
  cursor: pointer;
  margin: 10px auto 20px;
  text-align: center;
  color: #333;
}

.sidebar-link {
  height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s;
}

.sidebar-link:hover {
  background-color: rgb(221, 219, 219);
}

.sidebar-link img {
  height: 25px;
  margin-bottom: 4px;
}

.sidebar-link div {
  font-size: 10px;
  text-align: center;
}