body::-webkit-scrollbar-track, textarea::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    box-shadow: inset 0 0 1px rgba(0,0,0,0.3);
	border-radius: 10px;
}
body::-webkit-scrollbar, textarea::-webkit-scrollbar {
	width: 2px;
    position: fixed;
}
body::-webkit-scrollbar-thumb, textarea::-webkit-scrollbar-thumb {
	border-radius: 10px;
    box-shadow: inset 0 0 2px rgba(0,0,0,0.3);
	-webkit-box-shadow: inset 0 0 2px rgba(0,0,0,.3);
	background-color: #555;
}