/** SCROLL BAR **/
/* width */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* lo sfondo dove non c'è la barra */
::-webkit-scrollbar-track {
  background: white;
}

/* barra */
::-webkit-scrollbar-thumb {
  background: #df0024;
}

/* barra quando si sposta */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}