/* 1 */
::-webkit-scrollbar{
	width: 12px;
}
/* 2 */
::-webkit-scrollbar-button{
  
}
/* 3 */
::-webkit-scrollbar-track{
  /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    border-radius: 10px;*/
}
/* 4 */
::-webkit-scrollbar-track-piece{}

/* 5 */
::-webkit-scrollbar-thumb{
	border-radius: 5px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
	/*-webkit-box-shadow: inset 0 0 6px rgba(255, 202, 65, 0.4);*/
	background: rgba(255, 200, 85, 0.5);
}
::-webkit-scrollbar-thumb:hover{
    
}
/* Pseudo-clase */
::-webkit-scrollbar-thumb:window-inactive {
	/*background: rgba(77,161,112,0.6);*/
}

/* 6 */
::-webkit-scrollbar-corner {

}

/* 7 */
::-webkit-resizer {}