/*chrome*/

/*div:not(.mobile_header_dropdown)::-webkit-scrollbar {
    width: 5px;
}
 
div:not(.mobile_header_dropdown)::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
 
div:not(.mobile_header_dropdown)::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}*/

/*firefox*/

div:not(.mobile_header_dropdown)::-moz-scrollbar {
	width: 10px;
	height: 6px;
}
div:not(.mobile_header_dropdown)::-webkit-scrollbar {
	width: 10px;
	height: 6px;
}

div:not(.mobile_header_dropdown)::-moz-scrollbar-button:start:decrement,
div:not(.mobile_header_dropdown)::-moz-scrollbar-button:start:decrement {
	height: 0px;
	display: block;
	background-color: black;
}
div:not(.mobile_header_dropdown)::-webkit-scrollbar-button:start:decrement,
div:not(.mobile_header_dropdown)::-webkit-scrollbar-button:end:increment {
	height: 0px;
	display: block;
	background-color: black;
}

div:not(.mobile_header_dropdown)::-moz-scrollbar-track-piece {
	background-color: #3b3b3b;          /*Global Track Peice(the slider noob.)*/
	-webkit-border-radius: 6px;
}
div:not(.mobile_header_dropdown)::-webkit-scrollbar-track-piece {
	background-color: #3b3b3b;          /*Global Track Peice(the slider noob.)*/
	-webkit-border-radius: 6px;
}

div:not(.mobile_header_dropdown)::-moz-scrollbar-thumb:vertical {
	height: 50px;
	background-color: #666;            /* Up/Down slider background*/
	-webkit-border-radius: 6px;
}    
div:not(.mobile_header_dropdown)::-webkit-scrollbar-thumb:vertical {
	height: 50px;
	background-color: #666;            /* Up/Down slider background*/
	-webkit-border-radius: 6px;
}

div:not(.mobile_header_dropdown)::-moz-scrollbar-thumb:horizontal {
	width: 50px;
	background-color: #666;            /* Side/Side slider background*/
	-webkit-border-radius: 3px;
}    
div:not(.mobile_header_dropdown)::-webkit-scrollbar-thumb:horizontal {
	width: 50px;
	background-color: #666;            /* Side/Side slider background*/
	-webkit-border-radius: 3px;
}
