.sidebar {
  position: fixed;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 100%;
  padding: 30px 40px;
  z-index: 100;
  transition: all 0.2s linear;
  overflow-y: auto;
  overflow-x: hidden;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
}

.sidebar-logo {
  height: 50px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  color: #333333;
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-link:hover {
  text-decoration: none;
}

.sidebar-link i {
 width: 30px;
}

.sidebar-link-text {
  font-weight: 700;
  margin-left: 10px;
  transition: all linear 0.2s;
}

.sidebar-link:hover .sidebar-link-text {
  color: #777777;
}

.nav-closed {
  box-shadow: none;
  -webkit-box-shadow: none;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
}
