/* Module slider
======================================== */
.module-slider--horizontal{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color-bg);
	overflow: hidden;
	overscroll-behavior: contain;
	z-index: 1;
}

/* Track */
.module-slider--track{
	position: relative;
	width: 100%;
	height: 100%;
	display: grid;
	grid-auto-flow: column;
	grid-auto-rows: 100%;
	grid-auto-columns: 100%;
	/* z-index: 1; */
}

/* Slides */
/* .module-slider--horizontal .module-slider--slide{
	width: 100%;
	height: 100%;
} */

/* Navigation */
.module-slider--prev,
.module-slider--next{
	position: absolute;
	top: 0;
	width: 50%;
	height: 100%;
	/* z-index: 2; */
}
.module-slider--prev{
	left: 0;
	cursor: w-resize;
}
.module-slider--next{
	right: 0;
	cursor: e-resize;
}