/*===========Here Fully styled scrollbar scrollbar=============*/
.private_pages::-webkit-scrollbar {
    width: 18px;
    height: 18px;
    background-color: #2D2D2D;
}
 
/* Turn on single button up on top, and down on bottom */
.private_pages::-webkit-scrollbar-button:start:decrement,
.private_pages::-webkit-scrollbar-button:end:increment {
    display: block;
}
 
/* Turn off the down area up on top, and up area on bottom */
.private_pages::-webkit-scrollbar-button:start:increment,
.private_pages::-webkit-scrollbar-button:end:decrement {
    display: none;
}
/*======Vertical scrollbar styling====*/

/* Place The scroll down button at the bottom */
.private_pages::-webkit-scrollbar-button:vertical:end:increment {
    background: rgba(0,0,0,0.4);
    height: 14px;
}
 
/* Place The scroll up button at the up */
.private_pages::-webkit-scrollbar-button:vertical:start:decrement {
	background: rgba(0,0,0,0.4);
    height: 14px;
}
 
/* Top area above thumb and below up button */
.private_pages::-webkit-scrollbar-track-piece:vertical:start {
    background: #1a1a1a !important;
}
 
/* Bottom area below thumb and down button */
.private_pages::-webkit-scrollbar-track-piece:vertical:end {
    background: rgba(0,0,0,0.4);
}
 
/* The thumb itself */
.private_pages::-webkit-scrollbar-thumb:vertical {
   -webkit-border-image: url(/images/scroll/scroll_thumb_v.png) 10 0 10 0 stretch stretch;
   border-width: 10px 4px 10px 4px;
   min-height: 30px;
}


.private_pages iframe::-webkit-scrollbar-thumb:vertical{
	background-color: #1A1A1A;	
}


/*======Horizontal scrollbar styling====*/

.private_pages::-webkit-scrollbar-button:horizontal:end:increment {
   background: rgba(0,0,0,0.4);
   width: 14px;
}

.private_pages::-webkit-scrollbar-button:horizontal:start:decrement {
    background: rgba(0,0,0,0.4);
    width: 14px;
}

.private_pages::-webkit-scrollbar-track-piece:horizontal:start {
	background: rgba(0,0,0,0.4);
}

.private_pages::-webkit-scrollbar-track-piece:horizontal:end {
	background: rgba(0,0,0,0.4);
}

/* The thumb itself */
.private_pages::-webkit-scrollbar-thumb:horizontal {
    -webkit-border-image: url(/images/scroll/scroll_thumb_h.png) 0 10 0 10 stretch stretch;
    border-width: 4px 10px 4px 10px;
    min-width: 30px;
}

.private_pages iframe::-webkit-scrollbar-thumb:horizontal{
	background-color: #1A1A1A;
}

.private_pages::-webkit-scrollbar-corner {
    background: rgb(26,26,26);
}

/*#############Fully hidden scrollbars#############*/
.null-scrollbar::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}
/*#############END Fully hidden scrollbars#############*/