﻿
.custom-scrollbar-container > .custom-scrollbar-content {
	position: absolute;
	overflow: hidden;
	top: 0;
	left: 0;
	outline: none;
}

.custom-scrollbar-container > .custom-scrollbar-pane {
	background: rgba(0,0,0,.01);
	position: absolute;
	width: 8px;
	right: 0;
	top: 0px;
	bottom: 0px;
	transition: .3s;
}

    .custom-scrollbar-container > .custom-scrollbar-pane > .custom-scrollbar-slider {
        background: #444;
        position: relative;
        margin: 0 1px;
        opacity: .01;
        transition: opacity linear .3s;
        border-radius: 3px;
    }

.custom-scrollbar-container > .custom-scrollbar-pane.active > .custom-scrollbar-slider,
.custom-scrollbar-container:hover > .custom-scrollbar-pane > .custom-scrollbar-slider {
	opacity: .5;
}

.custom-scrollbar-container > .custom-scrollbar-pane:hover {
	background: rgba(0,0,0,.15);
}

.custom-scrollbar-container > .custom-scrollbar-pane.force-hide {
	display: none !important;
}

.custom-scrollbar-container.use-built-in  > .custom-scrollbar-content {
	overflow-y: scroll;
}

.custom-scrollbar-container.use-built-in > .custom-scrollbar-pane {
    display: none !important;
}

