
/* ############################################################
	090 - FOTO-INFOSLIDER
############################################################ */

/* Slider */
.mdl090-slider,
.mdl090-item,
.mdl090-image {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
}
.mdl090-slider {
	margin-bottom: 0;
}
	/* Bildbox */
	.mdl090-image {
		height: calc(var(--window-height, 1vh) * 100);
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
	}
	
	/* Textbox */
	.mdl090-text {
		position: absolute;
		display: flex;
		flex-direction: column;
		top: 82px;
		left: 0;
		width: 100%;
		height: calc((var(--window-height, 1vh) * 100) - 82px);
		font-size: 1rem; /* 16px */
		letter-spacing: 0.32px;
	}
	.mdl090-text.top {
		justify-content: flex-start;
		padding-top: 82px;
	}
	.mdl090-text.center {
		justify-content: center;
	}
	.mdl090-text.bottom {
		justify-content: flex-end;
		padding-bottom: 87px;
	}
		.mdl090-text h1 {
			margin-bottom: 6px;
			font-size: 1.875rem; /* 30px */
			line-height: 1.2;
			letter-spacing: normal;
		}
@media screen and (min-width: 768px) {
	/* Textbox */
	.mdl090-text.top {
		padding-top: 100px;
	}
	.mdl090-text.bottom {
		padding-bottom: 140px;
	}
}
@media screen and (min-width: 992px) {
	/* Textbox */
	.mdl090-text {
		font-size: 1.25rem; /* 20px */
		letter-spacing: 0.4px;
	}
		.mdl090-text h1 {
			margin-bottom: 8px;
			font-size: 2.5rem; /* 40px */
		}
}


/* Button */
.mdl090-text p + a.btn {
	margin-top: 20px;
}


/* Navigation: Pfeile */
.mdl090-slick-prev,
.mdl090-slick-next {
	z-index: 3;
	position: absolute;
	display: block;
	top: calc(50% - 15px);
	width: 15px;
	height: 30px;
	padding: 0;
	border: none;
	outline: none;
	font-size: 0; /* um Text (Previous/Next) zu verstecken */
	background: none;
}
.mdl090-slick-prev:hover,
.mdl090-slick-next:hover {
	cursor: pointer;
}
.mdl090-slick-prev {
	left: 25px;
}
.mdl090-slick-next {
	right: 25px;
}
	.mdl090-slick-prev svg,
	.mdl090-slick-next svg {
		display: block;
		width: 15px;
		height: auto;
		fill: var(--main-color-white);
		-o-transition: fill 0.3s var(--cubic-bezier);
		-ms-transition: fill 0.3s var(--cubic-bezier);
		-moz-transition: fill 0.3s var(--cubic-bezier);
		-webkit-transition: fill 0.3s var(--cubic-bezier);
		transition: fill 0.3s var(--cubic-bezier);
	}
	.mdl090-slick-prev svg {
		-o-transform: rotate(180deg);
		-ms-transform: rotate(180deg);
		-moz-transform: rotate(180deg);
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}
	.mdl090-slick-prev:hover svg,
	.mdl090-slick-next:hover svg {
		fill: var(--main-color-1);
	}
@media screen and (min-width: 768px) {
	.mdl090-slick-prev,
	.mdl090-slick-next {
		top: calc(50% - 25px);
		width: 27px;
		height: 50px;
	}
	.mdl090-slick-prev {
		left: 50px;
	}
	.mdl090-slick-next {
		right: 50px;
	}
		.mdl090-slick-prev svg,
		.mdl090-slick-next svg {
			width: 27px;
		}
}


/* Navigatin: Dots */
/* Resets Listenelement aus Hauptskin */
.mdl090-slider ul.slick-dots li,
.mdl090-slider ul.slick-dots li:before {
	margin: 0;
}
.mdl090-slider ul.slick-dots li:before {
	display: none;
}

/* Gestaltung */
.mdl090-slider ul.slick-dots {
	position: absolute;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	bottom: 25px;
	left: 0;
	width: 100%;
	height: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
	line-height: 12px;
	overflow: hidden;
}
	.mdl090-slider ul.slick-dots li {
		margin-left: 6px;
		cursor: pointer;
	}
	.mdl090-slider ul.slick-dots li:nth-child(1) {
		margin-left: 0;
	}
		.mdl090-slider ul.slick-dots li button {
			display: block;
			width: 12px;
			height: 12px;
			margin: 0;
			padding: 0;
			border: 1.5px solid var(--main-color-white);
			border-radius: 50%;
			background-color: transparent;
			text-indent: -9999px;
			-o-transition: background 0.15s var(--cubic-bezier);
			-ms-transition: background 0.15s var(--cubic-bezier);
			-moz-transition: background 0.15s var(--cubic-bezier);
			-webkit-transition: background 0.15s var(--cubic-bezier);
			transition: background 0.15s var(--cubic-bezier);
		}
		.mdl090-slider ul.slick-dots li.slick-active button {
			background-color: var(--main-color-white);
		}
@media screen and (min-width: 768px) {
	.mdl090-slider ul.slick-dots {
		bottom: 50px;
		height: 15px;
		line-height: 15px;
	}
		.mdl090-slider ul.slick-dots li {
			margin-left: 10px;
		}
			.mdl090-slider ul.slick-dots li button {
				width: 15px;
				height: 15px;
			}
}

