

/* ----------------------------------- SCROLL BAR ----------------------------------- */ 

/* Fix hidden scroll-bar in IOS */

/* width */
::-webkit-scrollbar {
	-webkit-appearance: none;
	width: 12px;
	height: 12px;
}



/* Track */
::-webkit-scrollbar-track { 
	/*background-color: #eee; */
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    border-radius: 10px;
}


/* Handle */
::-webkit-scrollbar-thumb {
    /*
	background-color: #ccc;
	border-radius: 10px;
	border: 2px solid #eee;
	*/
	background-color: #ccc;
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}


/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #888; 
}




.scrolling-products-wrapper::-webkit-scrollbar {
	-webkit-appearance: none;
	width: 5px;
}

.scrolling-products-wrapper::-webkit-scrollbar-track { 
	background-color: transparent;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.0); 
    border-radius: 0px;
}

.scrolling-products-wrapper::-webkit-scrollbar-thumb {
	background-color: #fff;
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}

/*
.scrolling-products-wrapper::-webkit-scrollbar-thumb:hover {
	background:#f62a66
}
*/