.logo {
  position: relative;
  width: 46px;
  height: 40px;
  margin: 12px 0 10px 26px;
}

.logo::after {
  content: 'Platform';
  position: absolute;
  font-size: 1rem;
  top: 27px;
  left: 50px;
  color: #0489b3;
}

.logo-button {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
}

.aside-nav-container {
  margin-top: 40px;
  margin-left: 24px;
  height: 84vh;
  overflow-y: scroll;
}

.aside-nav-container::-webkit-scrollbar {
  width: 0px;
}

.aside-title {
  font-size: 1.2rem;
  color: var(--bs-yellow);
  font-weight: 300;
  margin-top: 10px;
}

.aside-list {
  list-style: none;
  color: var(--bs-light);
  font-size: .9rem;
  font-weight: 300;
  margin: 0;
  padding: 0;
}

.list-item {
  padding: 10px 0px 10px 14px;
  cursor: pointer;
  transition: all .3s;
}

.list-item:hover {
  background: rgba(4,137,179,0.12);
  border-radius: 6px;
  transition: all .3s;
}

.list-item i {
  width: 30px;
  text-align: left;
}

.aside-btn {
  margin-top: 10px;
  width: 90%;
  color: var(--bs-light);
  border-radius: 20px;
}

