.scrollbar::-webkit-scrollbar-track {
  /* -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); */
	border-radius: 10px;
	background-color: #fff;
}

.scrollbar::-webkit-scrollbar {
  width: 10px;
	background-color: #F5F5F5;
}

.scrollbar::-webkit-scrollbar-thumb {
  border-radius: 10px;
	background-color: #fff;
  border:2px solid #fff;
  transition: background-color .25s;
}
.scrollbar:hover::-webkit-scrollbar-thumb {
  background-color: #ddd;
}
