.sidebar {
  position: fixed;
  display: flex;
  z-index: 850;

  flex-direction: column;

  top: 0;
  right: 0;
  bottom: 0;

  width: 160px;
  height: 100%;

  background: white;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
}

.sidebar-header {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  width: 100%;
  height: 60px;
}

.sidebar-logo {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  width: auto;
  height: 20px;
}

.sidebar-logo img {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center center;
}



.sidebar-menu {
  position: relative;
  display: flex;
  overflow: hidden;
  overflow-y: auto;

  flex-direction: column;

  width: 100%;
  height: calc(100% - (60px));

  padding: 20px 0;
}

.sidebar-menu-section {
  position: relative;
  display: flex;

  flex-direction: column;

  margin-bottom: 20px;

  width: 100%;
}
.sidebar-menu-section-title {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: flex-start;

  flex-direction: row;

  margin-bottom: 5px;

  width: 100%;

  padding: 0 10px;

  font-size: 14px;
  font-weight: 600;
}

.sidebar-menu-section-items {
  position: relative;
  display: flex;
  gap: 5px;
  flex-shrink: 0;

  flex-direction: column;

  width: 100%;

  padding: 0 10px;
}

.sidebar-menu-item {
  position: relative;
  display: flex;
  gap: 5px;

  align-items: center;
  justify-content: flex-start;

  flex-direction: row;

  width: 100%;

  padding: 5px 10px;

  font-size: 14px;
  font-weight: 500;

  border-radius: 4px;

  text-decoration: none;

  color: inherit;

  transition: 0.3s all ease-out;
}
.sidebar-menu-item:hover,
.sidebar-menu-item.active {
  background: rgba(0, 0, 0, 0.05);
}

.sidebar-menu-item-title {
  position: relative;

  margin-top: 4px;
}
