/* 
* MAC STYLED SCROLL BAR
*/

/* width */
*::-webkit-scrollbar {
  width: 8px;
}

/* Track */
*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-track:hover {
  background-color: transparent;
}

/* Handle */
*::-webkit-scrollbar-thumb {
  background: #CBD5E0;
  border-radius: 4px;
}

/* Handle on hover */
*::-webkit-scrollbar-thumb:hover {
  background-color: #A0AEC0;
  border: 4px solid #f4f4f4;
}
