*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
    overflow: overlay;
}

/* width */
  ::-webkit-scrollbar {
    width: 4px;
  }

  ::-webkit-scrollbar:hover{
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    /* box-shadow: inset 0 0 5px grey;  */
    border-radius: 10px;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #00C24F; 
    border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #007e33; 
  }