/* width */
::-webkit-scrollbar {
	width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
	background: #d6d6d6;
	border-radius: 10px;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
	background: #a0a0a0;	
	border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
	background: #888787;
  }
  /* =========================================== */
  
  /* Custom styles for the aside scrollbar */

#layout-menu::-webkit-scrollbar {
  width: 0px; /* Width of the scrollbar */
}




