body:not(.isAuth) .aktuellArea.empty {
	display:none;
}

.aktuellLinksWrapper {
	position: relative;
	margin-bottom: -3em;
	margin-left: calc(-8% - 2.7em);
	transform: rotate(-7deg);
	transform-origin: top left;
}

.aktuellLinksTitle,
.aktuellLinksEntry {
	font-weight: 600;
	background-image: url(../img/aktuell-bg.png);
	background-repeat:no-repeat;
	background-position: right center;
	background-size: auto 1.8em;
	display:block;
	width: auto;
	overflow:hidden;
	color: black;
	padding: 0.2em 0.5em 0.2em 3em;
	margin: 0 0 3px 0;
	line-height: 1.25;
	height: 1.6em;
	white-space:nowrap;
	font-size: 0.9em;
}

.aktuellLinksTitle {
	text-transform: uppercase;
	width: 14.7ch;
}

.aktuellLinksEntry:nth-child(2) {
	width: 80vw;
	max-width: 350px;
}

.aktuellLinksEntry:nth-child(3) {
	width: 90vw;
	max-width: 400px;
}

.aktuellLinksEntry:nth-child(4) {
	width: 100vw;
	max-width: 450px;
}

.aktuellLinksEntry:nth-child(5) {
	width: 60vw;
	max-width: 250px;
}

.aktuellLinksEntry {
	display:flex;
	flex-wrap: nowrap;
	flex-direction: row;
	cursor:pointer;
}

body:not(.isAuth) .aktuellLinksEntry:not(.visible) {
	display:none;
}


/* mobile only */
@media only screen and (max-width: 950px) {

	.aktuellLinksEntry span {
		display:block;
		animation: marquee1 10s infinite linear;
		animation-delay: -10s;
	}

	.aktuellLinksEntry span:last-child {
		animation: marquee2 10s infinite linear;
		animation-delay: -5s;
	}

	@keyframes marquee1 {
		from {
			transform: translateX(100%);
		}
		to {
			transform: translateX(-100%);
		}
	}

	@keyframes marquee2 {
		from {
			transform: translateX(0%);
		}
		to {
			transform: translateX(-200%);
		}
	}

}


/* desktop */
@media only screen and (min-width: 950px) {
	
	.home .aktuellArea {
		margin-bottom: 0;
		padding-left: 0;
		padding-top: 1em;
	}
	
	.aktuellLinksWrapper {
		margin-bottom: -5%;
		margin-left: -2.3em;
		display:flex;
		flex-direction: column;
		align-items:flex-start;
	}
	
	.home .aktuellLinksEntry {
		width: auto;
		padding-right: 1em;
	}
	
	.aktuellLinksEntry:nth-child(2) {
		padding-left:2.85em;
		max-width: none;
	}
	
	.aktuellLinksEntry:nth-child(3) {
		padding-left:2.6em;
		max-width: none;
	}
	
	.aktuellLinksEntry:nth-child(4) {
		padding-left:2.4em;
		max-width: none;
	}
	
	.aktuellLinksEntry:nth-child(5) {
		padding-left:2.2em;
		max-width: none;
	}
	
	
	.aktuellLinksEntry:hover {
		background-image:url(../img/aktuell-bg-hover.png);
	}
	

	
}

/* desktop */
@media only screen and (min-width: 1600px) {
	
}






/* aktuell overlay */


.aktuellOverlay {
	position: absolute;
	top: 48px;
	width: 100%;
	min-height: calc(100vh - 48px);
	height: auto;
	background-color: rgba(0,0,0,0.8);
	z-index: 20;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.aktuellOverlay.active {
	opacity: 1;
}

.aktuellContainer {
	position: relative;
	background-color: white;
	color: black;
	z-index: -1;
	max-width: 1420px;
	width: 100%;
	margin: 0 auto;
}

.aktuellCloser {
	position: absolute;
	top: 0.1em;
	right: 6%;
	padding: 10px;
	z-index: 22;
}

.aktuellCloser svg {
	width: 22px;
	height: 22px;
	cursor:pointer;
}

.aktuellCloser line {
	stroke: black;
	stroke-width: 2.2;
}

.aktuellHeader,
.aktuellBody,
.aktuellPageContainer,
.aktuellMainPageContainer {
	padding: 8vw 8% 10em 8%;
}

.aktuellImagePageContainer {
	padding: 75px 0 100px 0;
}

.aktuellMainPageContainer .aktuellBody {
	padding: 0;
}

.aktuellMainPageContainer .aktuellHeader {
	padding-top: 0;
}


.aktuellHeader {
	padding: 4em 0 1.5em 0;
}

.aktuellGradientTop {
	display:block;
	width: 120%;
	margin-left: -10%;
	margin-right: -10%;
	height: 70px;
	position: fixed;
	top: 40px;
	z-index: 22;
	box-shadow: inset 0 40px 40px -10px white;
	pointer-events:none;
}

.aktuellBody img {
	margin: 0;
	max-width: 100%;
	display:block;
}

.aktuellBody img[data-orientation="portrait"] {
	max-width: 100%;
	max-height: 500px;
}

.aktuellPageContainer {
	text-align: center;
	border-top: 4px solid black;
}

.aktuellPageText,
.aktuellPageContainer p,
.aktuellPageContainer .redactor-in {
	font-size: 1.8em;
	line-height: 1.2;
	font-weight: 600;
}

.aktuellTitle,
.aktuellCategory {
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 0;
}

.aktuellBody .secondColumn {
	margin-bottom: 1.5em;
}


/* form */
 
.aktuellForm {
	margin-top: 2em;
}
 
.aktuellForm input[type=text],
.aktuellForm input[type=email],
.aktuellForm textarea {
	border: 0;
	border-radius: 4px;
	padding: 0.4em 0.5em;
	background-color: white;
	border: 1px solid black;
	color: black;
	width: 100%;
}

.aktuellForm input.short {
	width: 50px;
	padding: 0.2em 0.5em;
}

.aktuellForm textarea {
	margin-top: 0.3em;
	min-height: 4.2em;
}

.aktuellForm label  {
	margin-top: 1em;
	margin-bottom: 0.2em;
}

.aktuellForm .submitError,
.aktuellForm .submitPending {
	margin-top: 1em;
}

.aktuellForm button {
	background-color: black;
	color: white;
	cursor:pointer;
	padding: 0.5em 1em;
}

.aktuellForm button:hover {
	background-color: #00ffff;
	color: black;
}

.submitError,
.submitPending,
.submitSuccess {
	border: 1px solid black;
	padding: 0.8em 1em;
	border-radius: 5px;
}



/* desktop */

@media only screen and (min-width: 950px) {
	
	
	
	.aktuellOverlay {
		min-height: 100vh;
		top: 0;
	}
	
	.aktuellCloser {
		position:fixed;
		width: 90%;
		max-width: 1420px;
		top: 0;
		left: 0;
		right: 0;
		margin: 5% auto;
		z-index: -1;
		text-align: right;
		padding-top: 0;
		padding-bottom: 0;
		pointer-events: none;
	}
	
	.aktuellCloser svg {
		margin-right: -2em;
		width: 4%;
		max-width: 2.2em;
		height: 4%;
		pointer-events:auto;
	}
	
	.aktuellCloser line {
		stroke: white;
		stroke-width: 1.6;
	}
	.aktuellMainPageContainer {
		padding-top: 5em;
		padding-bottom: 5em;
	}
	
	.aktuellContainer {
		width: 85%;
		min-height: 90%;
		margin: 5% auto 5% auto;
	}
	
	.aktuellPageText,
	.aktuellPageContainer p,
	.aktuellPageContainer .redactor-in {
		font-size: 2.4em;
	}

	
	.aktuellBody .columns {
		display:flex;
		flex-direction: row;
		justify-content: space-between;
	}
	
	.aktuellHeader,
	.aktuellBody .firstColumn {
		width: 48%;
	}
	
	.aktuellBody .secondColumn {
		width: 48%;
	}
	
}


/* desktop */
@media only screen and (min-width: 1400px) {

	.aktuellHeader,
	.aktuellBody .firstColumn {
		width: 40%;
	}
	
	.aktuellBody .secondColumn {
		width: 57%;
	}
}

/* desktop */
@media only screen and (min-width: 1600px) {
	
	.aktuellCloser svg {
		margin-right: -5em;
	}
	.aktuellContainer {
		width: 90%;
	}
	
	
}