.scroller-inner {
	overflow: hidden;
	box-sizing: border-box;
}
.scroller-inner:before,
.scroller-inner:after {
	content: "";
	display: table;
}
.scroller-inner:after {
	clear: both;
}
.scroller-inner > * {
	float: left;
}
.spacer {
	height: 800px;
}
.stick-it {
	position: fixed;
	top: 0;
}
.stick-it-down {
	top: auto;
	bottom: 0;
	position: absolute;
}
.another-scroller .content-wrapper {
	position: relative;
}
.another-scroller .content-wrapper .content-section {
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
}
.another-scroller .content-wrapper.fixed {
	position: fixed;
	top: 0;
	width: 510px;
}
.another-scroller .content-wrapper.stick-it-down {
	position: absolute;
	bottom: 0;
	z-index: 1;
	top: auto;
}
.another-scroller .content-wrapper .content-section .content {
	display: none;
}
.another-scroller .content-wrapper .content-section .content.active {
	display: block;
}
.custom-scrollbar {
	position: absolute;
	left: -20px;
	top: 44px;
	border-left: 1px #ccc solid;
	height: 160px;
}
.custom-scrollbar span {
	width: 10px;
	border-radius: 100px;
	display: block;
	background-color: #f00;
	margin-left: -5px;
	transition: all 0.3s ease;
}