/* Photo gallery - scroll-snap based, no jQuery */
.mw-slider {
	position: relative;
	overflow: hidden;
}
.mw-slider-track {
	display: flex;
	flex-wrap: nowrap;
	list-style: none;
	padding: 0;
	margin: 0 !important;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
	scrollbar-width: none;
}
.mw-slider-track::-webkit-scrollbar {
	display: none;
}
.mw-slider-track > .mw-slide {
	flex: 0 0 100%;
	width: 100%;
	max-width: 100%;
	scroll-snap-align: start;
	scroll-snap-stop: always;
	position: relative !important;
	display: block !important;
	left: auto !important;
	top: auto !important;
	float: none !important;
	min-height: 0;
}
.mw-slider-track > .mw-slide > figure {
	margin: 0;
}
.mw-slider-nav {
	position: absolute;
	top: 50%;
	margin-top: -50px;
	z-index: 2;
	border: 0;
	padding: 0;
	width: 40px;
	height: 100px;
	cursor: pointer;
	opacity: 0.9;
	text-indent: -9999px;
	overflow: hidden;
	background: transparent url("images/arrows_big.png") no-repeat left center;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.mw-slider-nav.prev {
	left: 0;
}
.mw-slider-nav.next {
	right: 0;
	background-position: right center;
}
.mw-slider-nav:hover,
.mw-slider-nav:focus {
	opacity: 1;
}
.mw-slider-nav:disabled {
	opacity: 0.3;
	cursor: default;
}
.mw-slide .caption {
	background: transparent !important;
	max-width: 100%;
	height: auto;
	min-height: 42px;
	padding: 1rem 0 0 0;
	margin: 0;
	font-size: 1.3rem;
	line-height: 1.14;
	color: #ffffff;
}
