.sidebar {
  position: fixed;
  right: 0;
  top: 121px;
  bottom: 0;
  width: 192px;
  background-color: rgb(187, 177, 84);
  border: none;
  transition: opacity 0.15s;
  opacity: 0;
}

.sidebar.active{
  opacity: 1;
}

.sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-link {
  height: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: Roboto, Arial;
  font-size: 18px;
  transition: background-color 0.15s;
  border-radius: 20px;
}

.sidebar-link:hover {
  background-color: rgba(255, 255, 255, 0.356);
}

.sidebar-link a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: white;
  border-radius: 20px;
}

.sidebar-link img {
  height: 44px;
  margin-bottom: 10px;
}
