

#sidebarCollapse {
    background-color: #212529;
    border-radius: 0;
    font-size: 18px;
    display: flex;
    align-items: center;
}
#sidebar {
    width: 200px;
    position: fixed;
    top: 0;
    right: -200px;
    height: 100vh;
    z-index: 999;
    background: #ffffffe0;
    color: #fff;
    transition: all 0.3s;
    overflow-y: scroll !important;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}
#sidebar.active {
    right:  0;
}
#dismiss {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: #000;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
#dismiss:hover {
    background: #fff;
    color: #000;
}

.sidebar__menu {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-around;
  font-size: 18px;
  padding: 0 15px;
  margin-top: 80px;
  margin-bottom: 80px;
  color: #898989;
}
.sidebar__menu a {
  color: currentcolor;
  text-decoration: none;
  padding: 8px 5px;
  color: #000;
  transform: translatex(-80%);
  transition: transform 0.4s ease-in-out;
}
.sidebar__menu a::before {
  content: "";
  height: 2px;
  background: #898989;
  width: 120px;
  position: absolute;
  bottom: -2px;
  left: 0;
  transform: translatex(-50%);
  opacity: 0;
  transition: transform 0.4s ease-in-out, opacity 0.4s linear;
}
.sidebar__menu a:hover::before {
  transform: translatex(0);
  opacity: 1;
}
.sidebar__menu a:nth-child(1) {
  transition-delay: 0.05s;
}
.sidebar__menu a:nth-child(2) {
  transition-delay: 0.1s;
}
.sidebar__menu a:nth-child(3) {
  transition-delay: 0.15s;
}
.sidebar__menu a:nth-child(4) {
  transition-delay: 0.2s;
}
.sidebar__menu a:nth-child(5) {
  transition-delay: 0.25s;
}
#sidebar.active .sidebar__menu a {
  transform: translatex(0);
}
