
/* ############################################################
	PANELS
############################################################ */

/* Panels */
.bild__panel, .top__panel, .bottom__panel, .middle__panel, .hinweis__panel {
	position: relative;
	width: 100%;
}
.top__panel:not(.cmsmodul_panelbox) {
	z-index: 0;
	position: fixed;
	top: 0;
	left: 0;
	height: var(--m090-height);
}
main.content__cms .top__panel {
	top: 51px;
}
@media (min-width: 1020px) {
	.top__panel:not(.cmsmodul_panelbox) {
		height: 100vh;
		height: calc(var(--vph, 1vh) * 100);
	}
}


/* Abstände */
.abstand-hinweispanel {
	padding-top: 60px;
	padding-bottom: 60px;
}
.abstand-middlepanel,
.abstand-bottompanel {
	padding-top: 60px;
	padding-bottom: 80px;
}
.abstand-bottompanel.small {
	padding-top: 0;
}
@media (min-width: 760px) {
	.abstand-hinweispanel {
		padding-top: 120px;
		padding-bottom: 200px;
	}
	.abstand-middlepanel {
		padding-top: 160px;
		padding-bottom: 140px;
	}
		.abstand-middlepanel.empty {
			padding-bottom: 240px;
		}
	.abstand-bottompanel {
		padding-top: 200px;
		padding-bottom: 240px;
	}
	.abstand-bottompanel.small {
		padding-top: 0;
	}
}
@media (min-width: 1020px) {
	.abstand-hinweispanel {
		padding-top: 200px;
	}
}


/* ############################################################
	PANELS/BOXEN
############################################################ */

/* Inhalt */
main.abstand-container-inner {
	padding-top: calc(var(--m090-height) + 80px);
}
@media (min-width: 760px) {
	main.abstand-container-inner {
		padding-top: calc(var(--m090-height) + 140px);
	}
}
@media (min-width: 1020px) {
	main.abstand-container-inner {
		padding-top: calc(var(--vph, 1vh) * 100);
	}
}


/* ############################################################
	SCHRIFTEN / TEXTE / ABSÄTZE / HYPERLINKS / TITEL
############################################################ */

/* Titel */
h1,
h2.modultitel {
	margin: 0;
	font-family: "Campton-Book";
	font-size: 0.6875rem; /* 11px */
	line-height: 1.36; /* 15px */
	letter-spacing: 2.2px;
	color: #cc0000;
	text-transform: uppercase;
	text-align: center;
}
	h1 + h2.h1, h1 + h2.p,
	h2.modultitel + h2.h1, h2.modultitel + p {
		margin-top: 13px;
	}
@media (min-width: 760px) {
	h1,
	h2.modultitel {
		font-size: 0.875rem; /* 14px */
		line-height: 1.57; /* 22px */
		letter-spacing: 2.8px;
	}
		h1 + h2.h1, h1 + h2.p,
		h2.modultitel + h2.h1, h2.modultitel + p {
			margin-top: 50px;
		}
}


/* ############################################################
	SCROLL-DOWN/UP-BUTTON
############################################################ */

/* Button: Slide-Down */
a.button-slide {
	z-index: 5;
	display: inline-block;
	position: fixed;
	bottom: -17px;
	right: 20px;
	width: 35px;
	height: 35px;
	border: 0;
	border-radius: 50%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 14px;
	background-color: #cc0000;
	-webkit-transform: rotate(0);
	-moz-transform: rotate(0);
	-o-transform: rotate(0);
	-ms-transform: rotate(0);
	transform: rotate(0);
	-webkit-transition: background 0.3s, transform 0.3s;
	-moz-transition: background 0.3s, transform 0.3s;
	-o-transition: background 0.3s, transform 0.3s;
	-ms-transition: background 0.3s, transform 0.3s;
	transition: background 0.3s, transform 0.3s;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMC4wMyAyMCI+PHBhdGggZD0iTTEuMzMsOC42NywwLDEwLDEwLDIwLDIwLDEwbC0xLjMtMS4zM0wxMSwxNi41VjBIOS4wN1YxNi41WiIgZmlsbD0iI2VmZTBjMiIvPjwvc3ZnPg==);
}
a.button-slide.up {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}
a.button-slide.down {
}
a.button-slide:hover {
	background-color: #af0000;
	
}
@media (min-width: 760px) {
	a.button-slide {
		bottom: 30px;
		right: 30px;
		width: 50px;
		height: 50px;
		background-size: 20px;
	}
}