/* Tiny Scrollbar */
.viewport {
	width: auto; 
	height: 100%; 
	overflow: hidden; 
	position: relative; 
	margin-right: 15px; /* scrollbar width */
}
.viewport .overview {
	list-style: none; 
	position: absolute; 
	left: 0; 
	top: 0; 
	padding: 0; 
	margin: 0; 
}
.scrollbar{
	background: transparent; 
	position: absolute; 
	background-position: 0 0; 
	right: 5px; 
	width: 10px; 
	z-index:1001;
	padding:0;
	margin:0;
}
.scrollbar .track { 
	height:100%; 
	width: 100%;
	border: none;
	position: absolute; 
	left: 0;
	top: 6px;	
	background-color: rgba(255, 255, 255, 0.5);
	height: 146px;
    position: relative;
}
.scrollbar .thumb { 
	position: absolute; 
	top: 0; 
	left: 0px; 
	height: 30px; 
	width: 100%; 
	
	background-color: rgba(255, 255, 255, 0.75);
	
	cursor: pointer; 
	overflow: hidden;
	
	transition: height 250ms;
}

.scrollbar .decrement {
	width: 100%;
	height: 8px;
	position: absolute;
	top: 0;
	cursor: pointer;
}
.scrollbar .increment {
	width: 100%;
	height: 8px;

    position: absolute;
    bottom: 0;
    cursor: pointer;
}

.scrollbar .decrement::before {
	content: '';
	position: absolute;
	display: block;
	
	border-style: solid;
	border-width: 0 5px 5px 5px;
	border-color: transparent transparent #ffffff transparent;
	border-color: transparent transparent #ffffff transparent;
}

.scrollbar .increment::after {
	content: '';
	position: absolute;
	display: block;
	
	border-style: solid;
	border-width: 5px 5px 0 5px;
	border-color: #ffffff transparent transparent transparent;
	border-color: #ffffff transparent transparent transparent;
}

.scrollbar.disable { display: none; }

.noSelect { user-select: none; -o-user-select: none; -moz-user-select: none; -khtml-user-select: none; -webkit-user-select: none; }