/* Custom scrollbar */
/* Width of the scrollbar */
::-webkit-scrollbar {
width: 8px;
}
/* Background color of the scrollbar track */
::-webkit-scrollbar-track {
background: #FFFFFF; /* White */
}
/* Background color of the draggable scrolling handle (thumb) */
::-webkit-scrollbar-thumb {
background: #AAAAAA; /* Grey */
}
/* Background color of the scrolling handle (thumb) when hovered over */
::-webkit-scrollbar-thumb:hover {
background: #FB5100; /* Orange */
}