.custom-scroll_container {
	overflow: hidden !important;
	position: relative;
}

.custom-scroll_inner {
	overflow: scroll;
	height: 100%;
	*position: absolute; /* ie7 fix */
	*left: 0;
	*right: 0;
}
.custom-scroll_inner::-webkit-scrollbar { width: 0; height: 0; }
.custom-scroll_inner{ -ms-overflow-style: none; }


.custom-scroll_bar-y,
.custom-scroll_bar-x {
	cursor: default;
	position: absolute;
	border-radius: 1px;
	z-index: 1;
	background: -webkit-linear-gradient(#0059b5 0%, #003679 97%);
	background: -ms-linear-gradient(#0059b5 0%, #003679 97%);
	border-radius: 16px;
	opacity: 1;
		
	-webkit-user-select: none;
	 -khtml-user-select: none;
	   -moz-user-select: none;
	     -o-user-select: none;
	        user-select: none;
	z-index: 99;
	transition: opacity .2s;
}
.custom-scroll_bar-y {
	top: 0;
	right: 12px;
	width: 12px;
	min-height: 5px;
}
.custom-scroll_bar-x {
	bottom: 0;
	right: 0px;
	min-width: 5px;
	height: 12px;	
}
		
.custom-scroll_bar-y:hover,
.custom-scroll_bar-x:hover {
	opacity: .7;
}
.custom-scroll_bar-y:active,
.custom-scroll_bar-x:active {
	opacity: 1;
}

.custom-scroll_hidden-y > .custom-scroll_bar-y,
.custom-scroll_hidden-x > .custom-scroll_bar-x {
	opacity: 0;
	visibility: hidden;
	transition: opacity .2s, visibility step-end .3s;
}
.custom-scroll_container:after {
    width: 12px;
    content: "";
    background: #002043;
    opacity: 1;
    height: 100%;
    top: 0;
    right: 12px;
    display: block;
    position: absolute;
    z-index: 88;
    border-radius: 16px;
}