/* slideshow */
.b1_slideshow {
	display:flex;
}
.b1_slideshow > .-slides {
	display:flex;
	overflow:auto;
	width:100%;
 	/* if its a list */
	list-style:none;
	margin:0;
	padding:0;
	scroll-snap-type: x mandatory;
}
.b1_slideshow > .-slides > * {
	xmax-width:100%; /* why? */
	xmin-width:200px; /* why? */
	width:100%;
	flex-shrink:0;
	margin:0 !important;
	box-sizing:border-box;
	position:relative;
	scroll-snap-align: center;
}
