body.custom_scroll_dragging {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.custom_scroll_bar {
	overflow: hidden!important;
	position: relative;
	display: block;
}

.custom_scroll_content {
	overflow-y: auto;
	overflow-x: hidden;
	width: calc( 100% + 40px );
    padding-right: 40px;
    height: inherit;
    max-height: inherit;
	display: block;
}

.custom_scroll_track {
	position: absolute;
	height: 100%;
	right: 0;
	top: 0;
	width: 10px;
	background-color: rgba(0,0,0,0.05);
	border-left: 1px solid rgba( 0,0,0,.1 );
    z-index: 1;
    display: none;
    transition: width 0.2s ease;
    border-radius: 6px;
}
.custom_scroll_inner {
	display: block;
}
.has_scrollbar .custom_scroll_inner {
	padding-right:  10px;
}
.custom_scroll_inner:after {
	content: '';
	display: table;
	clear: both;
	width: 100%;
}

.custom_scroll_track:hover,
.custom_scroll_bar.is_dragging .custom_scroll_track {
	width: 15px;
}

.custom_scroll_handle {
	background-color: #00b4ab;
	width: 80%;
    left: 10%;
	height: 100px;
	max-height: 50%;
	cursor: pointer;
	position: absolute;
	border-radius: 6px;
} 


.custom_scroll_bar.has_scrollbar .custom_scroll_track {
	display: block;
}