<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/********** Navigation [ö] **********/

#navigation {
	position: absolute;
	z-index: 20;
	top: 0px;
	left: 0px;
	width: 100%;
	/* Vorsicht: führt zur Überblendung der Navigation!
	mix-blend-mode: multiply;
	*/
}

#nav_rahmen_aussen {
	margin: 0px 0px 0px 0px;
	font-family: "Archivo", sans-serif;
	font-weight: 700;
	letter-spacing: 0.005em;
	color: rgb(var(--farbe_2));
	width: 100%;
}
#nav_rahmen_innen {
	position: relative;
}



/********** Navigation Desktop **********/

@media screen and (min-width: 951px) {
	#nav_rahmen_aussen {
		position: relative;
		font-size: 16px;
		line-height: 16px;
	}
	#nav_rahmen_innen {
		padding-top: 12px;
		padding-bottom: 0px;
		display: grid;
		grid-column-gap: 30px;
	}
	#nav_titel {
		position: relative;
	}
	#nav_liste {
		margin: 0px 0px 0px 10px!important;
	}
	#nav_flaeche {
		display: none;
	}
}
@media screen and (min-width: 951px) and (max-width: 1024px) {
	#nav_rahmen_innen {
		grid-template-columns: 300px 1fr;
	}
}
@media screen and (min-width: 1025px){
	#nav_rahmen_innen {
		grid-template-columns: 1fr 2fr;
	}
}



/********** Navigation Mobil **********/

@media screen and (max-width: 950px) {
	#navigation {
		top: -10px!important;
		height: 0px;
		transition: height 0.3s;
	}
	#navigation::after {
		content: "";
		display: block;
		position: absolute;
		bottom: -10px;
		left: 0px;
		width: 100%;
		height: 10px;
		/*
		background: linear-gradient(to bottom, rgba(var(--farbe_2), 0.15) 0%, rgba(var(--farbe_2), 0) 100%);
		*/
		background: linear-gradient(to bottom, rgba(0,0,0, 0.15) 0%, rgba(0,0,0, 0.05) 50%, rgba(0,0,0, 0) 100%);
		mix-blend-mode: multiply;
		pointer-events: none;
	}
	#nav_rahmen_aussen {
		position: absolute;
		bottom: 0px;
		left: 0px;
		font-size: 20px;
		line-height: 20px;
		background-color: #FFF;
	}
	#nav_rahmen_innen {
		padding: 32px 0px 35px 0px;
	}
	#nav_titel {
		position: absolute;
		z-index: 1;
	}
	/*
	#nav_titel a {
	}
	*/
	#nav_titel a::before {
		content: "";
		display: inline-block;
		width: 29px;
		height: 34px;
		-webkit-mask-repeat: no-repeat;
		mask-repeat: no-repeat;
		-webkit-mask-size: contain;
		mask-size: contain;
		background-color: rgb(var(--farbe_1));
		margin: -10px 0px 0px 0px;
		-webkit-mask-image: url("../bilder/_aufbau/Logo_Lichtblick_Kino_klein.svg");
		mask-image: url("../bilder/_aufbau/Logo_Lichtblick_Kino_klein.svg");
	}
	#nav_titel a:hover::before {
		background-color: rgb(var(--farbe_2));
	}
	/*
	#nav_titel a::after {
		content: "Lichtblick-Kino";
		font-weight: 600;
		color: rgb(var(--farbe_1));
		display: inline;
		padding: 0px 0px 0px 0px;
		margin: 0px 0px 0px 0px;
	}
	*/
	#nav_liste {
		padding: 5px 0px 0px 0px;
	}
	#nav_liste &gt; div {
		text-align: center;
	}
	#nav_liste &gt; div + div {
		margin: 25px 0px 0px 0px;
	}
	#nav_button {
		display: block!important;
		position: absolute;
		z-index: 1;
		top: 30px;
		right: 30px;
		width: 30px;
		height: 23px;
		cursor: pointer;
	}
	#nav_button div {
		position: absolute;
		left: 0px;
		width: 30px;;
		height: 3px;
		background-color: rgb(var(--farbe_2));
	}
	#nav_button div:nth-child(1) {
		top: 0px;
	}
	#nav_button div:nth-child(2) {
		top: 10px;
	}
	#nav_button div:nth-child(3) {
		top: 20px;
	}
	#nav_button.aktiv div:nth-child(1),
	#nav_button.aktiv div:nth-child(3) {
		top: 10px;
		left: -1px;
		width: 32px;
		transform-origin: 50% 50%;
	}
	#nav_button.aktiv div {
		background-color: rgb(var(--farbe_1));
	}
	#nav_button.aktiv div:nth-child(1) {
		transform: rotate(-45deg);
	}
	#nav_button.aktiv div:nth-child(2) {
		display: none;
	}
	#nav_button.aktiv div:nth-child(3) {
		transform: rotate(45deg);
	}
}



/********** Navigation Ränder außen **********/

@media screen and (max-width: 450px) {
	#nav_rahmen_innen {
		padding-left: 20px;
		padding-right: 20px;
	}
	#nav_button {
		right: 20px;
	}
}
@media screen and (min-width: 451px) and (max-width: 540px) {
	#nav_rahmen_innen {
		padding-left: 25px;
		padding-right: 25px;
	}
	#nav_button {
		right: 25px;
	}
}
@media screen and (min-width: 541px) and (max-width: 650px) {
	#nav_rahmen_innen {
		padding-left: 8%;
		padding-right: 8%;
	}
	#nav_button {
		right: 8%;
	}
}
@media screen and (min-width: 651px) and (max-width: 850px) {
	#nav_rahmen_innen {
		padding-left: 8%;
		padding-right: 8%;
	}
	#nav_button {
		right: 8%;
	}
}
@media screen and (min-width: 851px) and (max-width: 1024px) {
	#nav_rahmen_innen {
		padding-left: 45px;
		padding-right: 45px;
	}
	#nav_button {
		right: 45px;
	}
}
@media screen and (min-width: 1025px) and (max-width: 1200px) {
	#nav_rahmen_innen {
		padding-left: 5%;
		padding-right: 5%;
	}
}
@media screen and (min-width: 1201px) and (max-width: 1370px) {
	#nav_rahmen_innen {
		padding-left: 10%;
		padding-right: 10%;
	}
}
@media screen and (min-width: 1371px) {
	#nav_rahmen_innen {
		width: 1094px;
		left: 50%;
		margin-left: -547px;
	}
}



/********** Navigation weitere Zutaten **********/

#nav_titel {
	white-space: nowrap;
}
#nav_titel a {
	position: relative;
	display: inline-block;
	color: inherit;
	white-space: nowrap;
	text-decoration: none;
	cursor: pointer;
}

#nav_liste {
	position: relative;
	display: block;
	white-space: nowrap;
}
#nav_liste div.nav_normal {
	position: relative;
}
#nav_liste div.nav_normal a {
	position: relative;
	white-space: nowrap;
	color: inherit;
	text-decoration: none;
}
@media screen and (min-width: 951px) {
	#nav_liste div.nav_normal {
		display: inline-block;
	}
	#nav_liste div.nav_normal + div.nav_normal {
		margin-left: 35px;
	}
	#nav_liste div.nav_normal a {
		display: inline-block;
		padding: 0px 0px 3px 0px;
	}
}
#nav_liste div.nav_normal a:hover,
#nav_liste div.nav_normal a.aktiv {
	color: rgb(var(--farbe_2))!important;
	border-bottom: 2px solid rgb(var(--farbe_1))!important;
}



/********** Navigation Social-Media-Buttons **********/

#nav_sm {
	display: none!important;
	position: relative;
	padding: 0px 0px 0px 0px;
}
@media screen and (max-width: 950px) {
	/*
	#nav_sm {
	}
	*/
	#nav_sm a {
		width: 25px;
	}
	#nav_sm a::before {
		width: 25px;
		height: 25px;
		margin: -47px 0px 0px 0px;
	}
}
@media screen and (min-width: 951px) {
	#nav_sm {
		display: inline-block;
		margin: -10px 0px -10px 35px;
	}
	#nav_sm a {
		width: 20px;
	}
	#nav_sm a::before {
		width: 20px;
		height: 20px;
		margin: -15px 0px 0px 0px;
	}
}
#nav_sm div {
	position: relative;
	display: inline-block;
}
#nav_sm div + div {
	margin-left: 20px!important;
}
#nav_sm a {
	position: relative;
	display: inline-block;
	height: 0px;
}
#nav_sm a::before {
	content: "";
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	background-color: rgb(var(--farbe_2));
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
}
#nav_sm a:hover::before {
	background-color: rgb(var(--farbe_1));
}
#nav_sm a.fb::before {
	-webkit-mask-image: url("../bilder/_aufbau/Logo_fab.svg");
	mask-image: url("../bilder/_aufbau/Logo_fab.svg");
}
#nav_sm a.insta::before {
	-webkit-mask-image: url("../bilder/_aufbau/Logo_insta.svg");
	mask-image: url("../bilder/_aufbau/Logo_insta.svg");
}
#nav_sm a span {
	display: none;
}



/********** Navigation Button + Fläche **********/

#nav_button {
	display: none;
}

/*
#nav_hintergrund {
	position: absolute;
	z-index: 0;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 35px;
	background-color: #FFF;
}
#nav_hintergrund::after {
	content: "";
	display: block;
	position: absolute;
	bottom: -7px;
	left: 0px;
	width: 100%;
	height: 7px;
	background: linear-gradient(to bottom, rgba(var(--farbe_2), 0.3) 0%, rgba(var(--farbe_2), 0) 100%);
	mix-blend-mode: multiply;
	pointer-events: none;
}
*/

#nav_flaeche {
	position: fixed;
	z-index: 19;
	width: 100%;
	height: 100vh;
	top: 0px;
	left: 0px;
	mix-blend-mode: multiply;
	/*
	background-color: rgba(var(--farbe_2), 0);
	*/
	background-color: rgba(0, 0, 0, 0);
	transition: background-color 0.75s;
	pointer-events: none;
}
#nav_flaeche.aktiv {
	/*
	background-color: rgba(var(--farbe_2), 0.2);
	*/
	background-color: rgba(0, 0, 0, 0.2);
	pointer-events: initial!important;
	cursor: pointer;
}
</pre></body></html>