/*-------------------- Testklassen -----------------------*/
.rot{
   background-color: red !important;
}
.blau{
   background-color: blue !important;
}
.gruen{
   background-color: green !important;
}
.gelb{
   background-color: yellow !important;
}
.randrot{
   border: 1px solid red !important;
}
.randblau{
   border: 1px solid blue !important;
}
.randgruen{
   border: 1px solid green !important;
}
.randgelb{
   border: 1px solid yellow !important;
}
/*-------------------- allgemeine Klassen -----------------------*/
html {
	scroll-behavior: smooth;
}
body{
   font-family : Verdana, Arial, Helvetica, sans-serif;
   margin: 0;
   padding: 0;
   background: black;
}

/*-------------------- Eigenschaften -----------------------*/
.block{
   display: block;
}
.inline{
   display: inline;
}
.inlineBlock{
   display: inline-block;
}
.weg{
   display: none;
}
.sichtbar{
   visibility: visible;
}
.unsichtbar{
   visibility: hidden;
}
.hand{
   cursor: pointer;
}
.defaultZeiger{
   cursor: default;
}
.klickbar{
   cursor: pointer;
}
.klickbar:hover{
   color: #f7bc5b;
}
.klickbar:active{
   color: #ff8928;
}
.maxgross{
   width: 100%;
   height: 100%;
}
.maxbreit{
   width: 100%;
}
.maxhoch{
   height: 100%;
}
.abs{
   position: absolute;
}
.rel{
   position: relative;
}
.fix{
   position: fixed;
}
.stat{
   position: static;
}
.links{
   left: 0;
}
.oben{
   top: 0;
}
.rechts{
   right: 0;
}
.unten{
   bottom: 0;
}
.keinUmbruch{
   white-space: nowrap;
}
.unselektierbar{
   user-select: none;
}
.selektierbar{
   user-select: auto;
}
.textZentriert{
	text-align: center;
}
.textLinks{
	text-align: left;
}
.textRechts{
	text-align: right;
}
.keinRand{
	margin: 0;
	padding: 0;
}
/*-------------------- Farben -----------------------*/
.HGFarb{
   background-color: #000000;
}
.HGFarb2{
   background-color: #202020;
}
.HGFarb3{
   background-color: #808080;
}
.HGFarbContent{
   background-color: #000000;
}
.HGRahmen{
  background-color: #202020;
}
.HGVerlauf{
   background: black;
   background: linear-gradient(to right bottom, #a7a7a7 0%, #202020 80%);
}
.hell{
   color: #f0d0b0;
}
.mittel{
   color: #f7bc5b;
}
.dunkel{
   color: #fe8a2a;
}
.inaktiv{
   color: #333;
}
.fett{
   font-weight : bold;
}
/*-------------------- TextStyles ------------------------*/
h1{
	margin: 0 0 0.5em 0;
	font-size: 125%;
	font-weight: bold;
}
h2{
	font-size: 110%;
	font-weight: bold;
}
h3{
	font-size: 100%;
	font-weight: bold;
	padding-left: 1.5em;
}
ol{
	line-height: 2;
}
ul{
	line-height: 2;
	margin-top: 0;
}
.fliesstext {
   font-size : 0.95em;
   line-height: 160%;
   color : #f0d0b0;
}
.fliesstextLink {
   font-size : 0.95em;
   line-height: 160%;
   color : #f7bc5b;
   text-decoration: none;
   cursor: pointer;
}
.fliesstextKlein {
   font-size : 0.8em;
   line-height: 160%;
   color : #f0d0b0;
}
.fliesstextFett{
   font-weight : bold;
}
/*-------------------- BoxenStyles ------------------------*/
.boxrand{
   border-radius: 0.5em;
   border-width: 1px;
   border-style: solid;
   border-color: #707070 #404040 #303030 #707070;
}
.boxschatten{
   box-shadow: 1em 1em 1.5em 0 rgba(0, 0, 0, 0.6);
}
.taste_akt{
   color: #fe8a2a;
 }
.taste_inakt{
   color: #f0d0b0;
}
.taste_inakt:hover{
   color: #f7bc5b;
}
#listenBox{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-content: space-between;
	margin: 0.5em 0 4em 0;
}
.rezeptButton{
	color: #f7bc5b;
	margin: 1em 1.2em 1em 1em;
	font-size: 1em;
}
.rezeptButton:hover{
	color: #fe8a2a;
	margin: 1em 1.2em 1em 1em;
	font-size: 1em;
}
#foto{
	object-fit: contain;
}
#fotoLinks, #fotoRechts{
	display: flex;
	justify-content: center;
	align-items: center;
	color: #aaa;
	font-size: 6vmin;
	opacity: 0.5;
	text-shadow: 3px 3px 6px #000000;
	width: 10%;
	height: 100%;
	transform: scale(1.4, 1); 
}
#fotoLinks:hover, #fotoRechts:hover{
	color: #ddd;
}
#fotoText{
	text-align: center;
	color: #f0d0b0;
	text-shadow: 2px 2px 4px #000000;
	background: rgba(0,0,0,0.6);
	box-sizing: border-box;
	padding: 0.3em 2em 0.5em 2em;
}
/*-------------------- RezeptStyles ------------------------*/
#rezeptBox{
	display: none;
	overflow: auto;
}
#rezeptRahmen{
	display: flex;
	justify-content: center;
	padding: 2em 0 4em 0;
}
#rezeptSchliessenBox{
	box-sizing: border-box;
	top: 0em;
	right: 0em;
	width: 1.5em;
	height: 1.5em;
	text-align: right;
	font-size: 1.5em;
	font-weight: bold;
}
#rezFoto1{
	padding-top: 1em;
}
#rezeptDatum{
	text-align: right;
}
#rezeptText{
	position: relative;
}
#rezept{
	width: 100%;
	max-width: 62.5em;
	margin: 0em;
	padding: 1em 1.5em 1em 1.5em;
	overflow: auto;
	border-radius: 0.5em;
	border-width: 1px;
	border-style: solid;
	border-color: #707070 #404040 #303030 #707070;
	box-shadow: 1em 1em 1.5em 0 rgba(0, 0, 0, 0.6);
}
#zutatenUberschrift{
	padding-right: 1em;;
}
.bezeichner{
	padding-right: 1em;;
}
.zutatMenge{
	padding-right: 0.3em;
}
.zutatEinheit{
	padding-right: 0.6em;
}
.zutatName{
	padding-right: 0.3em;
}
/*-------------------- GerichtStyles ------------------------*/
.gerichtVorschau{
	box-sizing: border-box;
	width: 100%;
	max-width: 460px;
	border-radius: 0.5em;
	border-width: 1px;
	border-style: solid;
	border-color: #707070 #404040 #303030 #707070;
	box-shadow: 1em 1em 1.5em 0 rgba(0, 0, 0, 0.6);
	margin: 0.6em;
	padding: 0.8em 0.8em 2.4em 0.8em;
	font-size: 0.9em;
}
.gerichtTextblock{
	margin: 0 0.5em 0 0.5em;
}
.gerichtDatum{
	font-size: 0.8em;
	margin: 1.5em;
}
/*-------------------- MenüStyles ------------------------*/
.schmalWeg{
	display: block;
}
.schmalDa{
	display: none;
}
#menueBox{
	text-align: center;
	padding: 0.5em 2em 0.5em 0;
	border-width: 0 0 1px 0;
	border-style: solid;
	border-color: #404040;
	box-shadow: -0.5em 1em 1.5em 0 rgba(0, 0, 0, 0.5);
}
#menueZeile{
	vertical-align: center;
}
.menuePunkt{
	margin: 0 2em 0em 0;
	display: inline-block;
}
#hamburgerMenue{
	font-size: 1.4em;
	margin: 0 0 0 1em;
}
#menueSchliesser{
	font-size: 0.8em;
	transform: scale(3, 1);
	padding: 0.8em 0 0.3em 0;
}
#suchFeld{
	width: 8em;
	color: #f0d0b0;
	border: 1px solid #666; /* #f0d0b0 */
	background-color: #333;
	outline: none;
}
#suchFeldX{
	font-size: 1.2em;
	position: relative;
	left: -1.2em;
}
.vollbildTaste, .vollbildTaste2{
	box-sizing: border-box;
	position: fixed;
	top: 0.6em;
	right: 1em;
	width: 2em;
	height: 2em;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 1.25em 1em;
}
.vollbildTaste{
   background-image: url('images/vollbild_auf_mittel.png');
}
.vollbildTaste:hover{
   background-image: url('images/vollbild_auf_dunkel.png');
}
.vollbildTaste2{
   background-image: url('images/vollbild_zu_mittel.png');
}
.vollbildTaste2:hover{
   background-image: url('images/vollbild_zu_dunkel.png');
}
#fotoSchliessenBox{
	box-sizing: border-box;
	top: 0.4em;
	right: 2.5em;
	width: 1.5em;
	height: 1.5em;
	text-align: center;
	font-size: 1.5em;
	font-weight: bold;
}
/*-------------------- Media Queries -----------------------*/
/*neunspaltig*/
@media screen and (max-width: 4875px){
	.gerichtVorschau{
		max-width: 10.6%;
	}
}
/*achtspaltig*/
@media screen and (max-width: 4400px){
	.gerichtVorschau{
		max-width: 12%;
	}
}
/*siebenspaltig*/
@media screen and (max-width: 3825px){
	.gerichtVorschau{
		max-width: 13.7%;
	}
}
/*sechsspaltig*/
@media screen and (max-width: 3350px){
	.gerichtVorschau{
		max-width: 16%;
	}
}
/*fünfspaltig*/
@media screen and (max-width: 2875px){
	.gerichtVorschau{
		max-width: 19.1%;
	}
}
/*vierspaltig*/
@media screen and (max-width: 2400px){
	.gerichtVorschau{
		max-width: 23.8%;
	}
}
/*dreispaltig*/
@media screen and (max-width: 1925px){
	.gerichtVorschau{
		max-width: 31.9%;
	}
}
/*zweispaltig*/
@media screen and (max-width: 1450px){
	.gerichtVorschau{
		max-width: 48%;
	}
}
/*einspaltig*/
@media screen and (max-width: 850px){
	.gerichtVorschau{
		max-width: 95%;
	}
	.gerichtDatum{
		font-size: 0.8em;
		margin: 1.5em;
	}
	#suche{
		display: none;
	}
	#suchFeld{
		width: 6em;
	}
	#rezeptRahmen{
		padding: 0;
	}
	#rezept{
		width: 100%;
		margin: 0;
		padding: 3em 2em 3em 2em;
		overflow: auto;
		border-radius: 0;
		border-style: none;
		box-shadow: 1em 1em 1.5em 0 rgba(0, 0, 0, 0.6);
	}
}
/*Schmaler Screen*/
@media screen and (max-width: 87em){
	.schmalWeg{
		display: none;
	}
	.schmalDa{
		display: block;
	}
	.menuePunkt{
		margin: 0 0 1.2em 0;
		display: block;
	}
}