  
  /* Sidebar */
  .sidebar {
    position: absolute;
    top: 84px;
    bottom: 0;
    left: 0;
    padding: 18px 0 0; /* Height of navbar */
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 5%), 0 2px 10px 0 rgb(0 0 0 / 5%);
    width: 320px;
    z-index: 600;
    background-color: rgb(248, 248, 248);
  }
  
  @media (max-width: 600px) {
    .sidebar {
      width: 100%; 
    }
  }
  .sidebar .active {
    border-radius: 5px;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
  }
  
  .sidebar-sticky {
    position: relative;
    top: 80px;
    height: calc(100vh - 48px);
    padding-top: 0.5rem;
    overflow-x: hidden;
    overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
  }
  .menu-icons{
    float: left;
    font-size: 28px !important;
  }

  .menu-item{
    height: 60px;
    padding-top: 11px;
  }