.scrollus .scrollus-inner {
	position: absolute;
	top: 0;
	left: 0;
	right: 10px;
	z-index: 1;
}

.scrollus .scrollus-track {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 10px;
	z-index: 2;
	background-color: #d3d3d3;
	border-radius: 5px;
	opacity: 0;
	transition: opacity 0.2s;
	transition-delay: 0.5s;
}

.scrollus:hover .scrollus-track {
	opacity: 0.9;
	transition-delay: 0s;
}

.scrollus .scrollus-track .scrollus-handle {
	position: absolute;
	background-color: #ababab;
	width: 10px;
	border-radius: 5px;
	transition: background 0.2s;
}

.scrollus .scrollus-track .scrollus-handle:hover {
	background-color: #666666;
}