/* --- Scrollbars --- */

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  background-color: white;
  border-radius: 10px;
}

::-webkit-scrollbar {
  width: 10px;
  background-color: white;
}

::-webkit-scrollbar-thumb {
  background-color: #D3D3D3;
  border-radius: 10px;
  background-image: 
    -webkit-linear-gradient(0deg, 
       rgba(211, 211, 211, 0.5) 25%,
       transparent 25%,
       transparent 50%,
       rgba(211, 211, 211, 0.5) 50%,
       rgba(211, 211, 211, 0.5) 75%,
       transparent 75%,
       transparent)
}
