.gallery {
	padding: 1rem;
	display: grid; /* déclarer une grille*/
	grid-template-columns: repeat(5, 50vw);/* 5 col et 50% de l'ecran*/
	grid-template-rows: 1fr;
	grid-column-gap: 1rem; /* col entre les images*/
	grid-row-gap: 1rem;  /*col entre images et scrol*/
	overflow: scroll;
	height: 60vh;
	scroll-snap-type: x mandatory;
	scroll-padding: 1rem;
	width: 100%;
overflow-y: hidden;
margin-bottom: 40px;
}



li {
	scroll-snap-align: center;
	display: inline-block;
	border-radius: 3px;
	font-size: 0;
}


::-webkit-scrollbar {
    width: 12px;
}
 
/* Track */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #ccc; 
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}
::-webkit-scrollbar-thumb:window-inactive {
	background: rgba(255,0,0,0.4); 
	
}