/* Manrope is loaded globally in base.html and inherited site-wide from body. */
/* width */
.sidebar-menu-category::-webkit-scrollbar {
    width: 6px;
  }
  
  /* Track */
  .sidebar-menu-category ::-webkit-scrollbar-track {
    /* box-shadow: inset 0 0 5px grey;  */
    border-radius: 10px;
  }
   
  /* Handle */
  .sidebar-menu-category ::-webkit-scrollbar-thumb {
    background: rgb(216, 216, 216); 
    border-radius: 10px;
  }
  
  /* Handle on hover */
  .sidebar-menu-category::-webkit-scrollbar-thumb:hover {
    background: #b5b5b5; 
  }

  #navbar-scrolling {
    /* overflow: hidden; */
    /* background-color: #333; */
  }

.stickyed {
    position: fixed;
    top: 0;
    width: 100%;
  }

.navbars-container-headers{
    color: #fff;
    background-color: #333;
    z-index: 999;
    /* height: 50px; */
}
.sidebar-menu-category{
    margin-top: 0.8rem;


     height:90vh;
     width: 245px;
     position: sticky;
     z-index: 99;
     /* top: 5%; */
     top:4rem;
     left: 0;
     /* background-color: #333; */
     overflow-x: hidden;
     overflow-y: scroll;
   
     box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.1);
     background-color: #fff;
     border-radius: 6px;
     padding: 0.4rem;
}

.category-iconlist{
  display: flex;
    gap: 8px;
    align-items: center;
}

.category-iconlist i{
  color: #333;
}

.sidebar-menu-category li:hover{
    opacity: 0.8;
    color: #272727;
}

@media only screen and (max-width:992px){
    .sidebar-menu-category{
        display: none;
    }
}


.sidebar-menu-category ul li{
    margin: 0.25rem 0;
    border-bottom: 1px solid #a3a3a3;
    padding: 0.4rem;
   
    
}


.sidebar-menu-category ul li a{
    display: flex;
    justify-content: space-between;
    
}

.sidebar-menu-category a{
    color:#040404;
     font-family: 600;
         text-transform: capitalize;
    font-size: 16px;
}