/* width */
				::-webkit-scrollbar {
				  width: 10px;
				}

				/* Track */
				::-webkit-scrollbar-track {
				  box-shadow: inset 0 0 5px grey; 
				  border-radius: 10px;
				}
				 
				/* Handle */
				::-webkit-scrollbar-thumb {
				  background: linear-gradient(to bottom, #BF3980 0%, #EC7D23 70%, #F0AF55 100%);
				  border-radius: 10px;
				}

				/* Handle on hover */
				::-webkit-scrollbar-thumb:hover {
				  background: linear-gradient(to top, #BF3980 0%, #EC7D23 70%, #F0AF55 100%); 
				}