
/* Let's get this party started */
::-webkit-scrollbar {
    width: 15px;
    height: 8px;
}
 
/* Track */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #000; 
    -webkit-border-radius: 0px;
    border-radius: 0px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 0px;
    border-radius: 0px;
    background: #CF423C; 
    -webkit-box-shadow: inset 0 0 6px #CF423C; 
}
::-webkit-scrollbar-thumb:window-inactive {
    background: #CF423C; 
}
::-webkit-scrollbar-corner    {
    background: #000; 
}