::-webkit-scrollbar {
  width: .5em;
  right: 1em;
  
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--hover-blue);
  border-radius: 0;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--bright-blue); 
  border-radius: 0;
  cursor: pointer;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
/*  background: white;*/
}

::-webkit-scrollbar-button:end:increment,
::-webkit-scrollbar-button:start:decrement{
  height: 0;
  display: block;
}