
/* ############################################################
	090 - FOTO-INFOSLIDER
############################################################ */

/* Slider */
.mdl090-slider, .mdl090-item, .mdl090-image {
	position: relative;
	margin: 0;
	padding: 0;
}
.mdl090-slider {
	width: 100%;
}
	.mdl090-slider, .mdl090-item {
		height: 100vh;
		height: calc((var(--m090-height, 1vh) * 100) + 64px);
	}
	.mdl090-slider.slider-text, .mdl090-slider.slider-text .mdl090-item {
		height: calc((var(--m090-height, 1vh) * 100) + 166px);
	}
		.mdl090-image {
			overflow: hidden;
			height: 100vh;
			height: calc(var(--m090-height, 1vh) * 100);
			background-position: right center;
			background-repeat: no-repeat;
			background-size: cover;
		}
@media (min-width: 1020px) {
	.mdl090-slider, .mdl090-item,
	.mdl090-slider.slider-text, .mdl090-slider.slider-text .mdl090-item {
		height: calc((var(--m090-height, 1vh) * 100) + 111px);
	}
		.mdl090-image {
			background-position: center center;
		}
}


/* Bildbeschreibung */
.mdl090-text {
	position: absolute;
	display: block;
	bottom: 76px;
	left: 20px;
	width: calc(100% - 40px);
	height: 70px;
	font-size: 1.375rem; /* 22px */
	line-height: 1.5rem; /* 24px */
	color: var(--main-color-3);
}
	.mdl090-text-inline {
		display: block;
		position: absolute;
		width: 100%;
	}
@media (min-width: 760px) {
	.mdl090-text {
		left: 50px;
		width: calc(100% - 100px);
	}
}
@media (min-width: 1020px) {
	.mdl090-text {
		display: flex;
		align-items: center;
		bottom: 0;
		height: 111px;
	}
}
@media (min-width: 1440px) {
	.mdl090-text {
		left: 100px;
		font-size: 1.75rem; /* 28px */
		line-height: 1.875rem; /* 30px */
	}
}


/* Dots */
/* Progressbar */
.mdl090-bar-container {
	position: relative;
	width: 100%;
	height: 2px;
	margin-top: 50px;
	line-height: 2px;
}
	.mdl090-bar-container div.item {
		cursor: pointer;
		display: inline-block;
		position: relative;
		width: 50px;
		height: 2px;
	}
	.mdl090-bar-container div.item:not(:first-child) {
		margin-left: 27px;
	}
		.mdl090-bar-container div.item span.progressBar {
			display: block;
			width: 100%;
			height: 2px;
			background-color: rgba(0,0,0,0.25);
		}
		.mdl090-bar-container div.item span.progressBar .inProgress {
			width: 0%;
			height: 2px;
			background-color: var(--main-color-1);
		}

