@import "blogfilericons.css?v=1.3";

@font-face {
    font-family: 'bodycopy';
    src: url('fonts/DroidSans-webfont.eot');
    src: url('fonts/DroidSans-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/DroidSans-webfont.woff') format('woff'),
         url('fonts/DroidSans-webfont.ttf') format('truetype'),
         url('fonts/DroidSans-webfont.svg#droid_sansregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'bodycopybold';
    src: url('fonts/DroidSans-Bold-webfont.eot');
    src: url('fonts/DroidSans-Bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/DroidSans-Bold-webfont.woff') format('woff'),
         url('fonts/DroidSans-Bold-webfont.ttf') format('truetype'),
         url('fonts/DroidSans-Bold-webfont.svg#droid_sansbold') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'serif';
    src: url('fonts/DroidSerif-Regular-webfont.eot');
    src: url('fonts/DroidSerif-Regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/DroidSerif-Regular-webfont.woff') format('woff'),
         url('fonts/DroidSerif-Regular-webfont.ttf') format('truetype'),
         url('fonts/DroidSerif-Regular-webfont.svg#droid_serifregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'serifitalic';
    src: url('fonts/DroidSerif-Italic-webfont.eot');
    src: url('fonts/DroidSerif-Italic-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/DroidSerif-Italic-webfont.woff') format('woff'),
         url('fonts/DroidSerif-Italic-webfont.ttf') format('truetype'),
         url('fonts/DroidSerif-Italic-webfont.svg#droid_serifitalic') format('svg');
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: 'blogfilericons';
    src: url('fonts/blogfilericons-webfont.woff?v=1.3') format('woff');
    font-weight: normal;
    font-style: normal;
}


 

:root {  
	--my-fonts: bodycopy, "Lucida Grande", "Trebuchet MS", Helvetica, Verdana, sans-serif;
	--text-color: rgba(51,51,51,1);
	--text-light-color: #666;
	--text-menu-color: #fff;
	--heading-color: rgba(0,0,0,1);  
	--wrapper-bg-color: rgba(246, 243, 243, 0.9);
	--bg-color: rgba(254, 254, 254, 0.9);
	--bg-slider: rgba(254, 254, 254, 0.95);
	--teaser-bg-color: rgba(255, 255, 255, 0.75);
	--bg-light-color: #fff;
	--input-bg-color: rgba(255,255,255,1);
	--link-color: rgba(152,106,105,1);
	--link-light-color: #ddebff;
	--link-hover-bg-color: rgba(0,0,0,1);
	--link-hover-color: rgba(0,0,0,1);
	--box-color: #e9f1fe;
	--bg-gradient-1: rgba(235,236,246,1);
	--bg-gradient-2: rgba(255,255,255,1);
	--box-radius: 9px;
}


body  {
	background: var(--bg-color);
	font-family: var(--my-fonts);
	font-weight: normal;
	font-size: 19px;
	line-height: 150%;
	color:var(--text-color);
	margin: 0;
	padding: 0;
	text-align: left;
	--linkcolor: #986a6a;
}

#wrapper, .wrapper {
	position:relative;
	z-index:100;
	width: 80%;
	min-height:100%;
	max-width:1180px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 40px;
	padding:40px;
	text-align: left;
	background: var(--wrapper-bg-color);	
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=##E5FFFFFF, endColorstr=##E5FFFFFF);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=##E5FFFFFF, endColorstr=##E5FFFFFF)";
	-webkit-border-radius: 13px;
	-moz-border-radius: 13px;
	border-radius: 13px;
	box-sizing: border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing: border-box;
	-webkit-transition: all .5s ease-in-out;  
	-moz-transition: all .5s ease-in-out;  
	-o-transition: all .5s ease-in-out;  
	-ms-transition: all .5s  ease-in-out;  
	transition: all .5s  ease-in-out; 
}

#header {
	height:auto;
	text-align: left;
	margin: -7px 0 40px -2.5%;
	width:100%;
	height: 0;
	background-image: url(../images/kitchn-logo.svg);
	background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    max-width: 900px;
	padding-top: 23%;
}

#navigation {
	width:25%;
	height:auto;
	max-width: 280px;
	padding: 2px 0 0 0;
	text-align: left;
	float:right;
	position:relative;
}
#nav {
	font-size:18px;
}

#content {
	position:relative;
	width:100%;
	max-width: 10000px;
	text-align: left;
	float:left;
	box-sizing: border-box;
}
#bg {
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	overflow:hidden;
	background: url(../images/bg-4.jpg) no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='..images/bg-5.jpg', sizingMethod='scale');
	-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='..images/bg-5.jpg', sizingMethod='scale')";
	background-attachment: fixed;
	opacity:.5;
	-moz-opacity: .5;
}

ul {
	margin:0 0 12px 0;

}
#content ul.stichworte {
	float: right;
	margin:0;
	padding:0;
}
#content ul.stichworte li {
	position: relative;
	display: block;
	float: left;
	margin: 0 3px 10px 0;
	padding: 0;
	height: 20px;
	background: transparent;
}
#content ul.stichworte li:before {
	content: none;
}
#content ul.stichworte li a {
	display: block;
	margin: 0;
	padding: 0 10px 0 10px;
	background: #C7004D;
	background: var(--link-color);
	color:#fff;
	font: 14px/180% "Droid Sans", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans Regular", "Lucida Sans", "LucidaSans", "Trebuchet MS", Verdana, sans-serif;
	height: 25px;
	border-bottom: none;
	-moz-border-radius:13px;
	-khtml-border-radius:13px;	
	-webkit-border-radius:13px;
	border-radius:13px;
	-webkit-transition:linear 0.2s;
	-moz-transition:linear 0.2s;
	-o-transition:linear 0.2s;
	transition:linear 0.2s;
}
#content ul.stichworte li a:hover {
	background: #000;
	color: #fff;
	border:none;
	-webkit-transition:linear 0.2s;
	-moz-transition:linear 0.2s;
	-o-transition:linear 0.2s;
	transition:linear 0.2s;
}
#content ul.stichworte li a:active {
	position:relative;
	top: 0px;
}
ul.letzte_kommentare {	
	margin: 4px 0 0 0;
}
.letzte_kommentare li {	
	margin: 0 0 0 -55px;
	padding: 1px 0 3px 15px;
	list-style: none;
}

#content li:before {
	font-family: 'blogfilericons';
	font-style: normal;
	speak: none;
	font-weight: normal;
	-webkit-font-smoothing: antialiased;
	font-size:26px;
	line-height:2px;
	margin: 0 10px 0 -0.85em;
	color:#666;
	content:"\201C";
	vertical-align: middle;
}

#content li {	
	list-style:none;

/* 
  	margin: 0px 0px 0 -40px;
	padding: 0px 0px 0px 0px;
 */

}
#content li a {	
	margin: 0px !important;
}

#content ul {	
  	margin: 0 0 20px 0;
}

#suchform {
	width:100%;
	max-width:280px;
	margin:0px 0 12px 0;
}
#suchentop {
	display: block;
}
.nav-mobil {
	display:none;
	margin: 16px 0 0 0;
}
.nav-desktop {
	display:block;
}
#slider {
	position:relative;
	background: var(--bg-slider);
	padding: 0px;
	width:460px;
	z-index: 1000;
	box-sizing: border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing: border-box;
}
.slider-wrapper {
	padding: 20px;
	height:100%;
	overflow:scroll;
}
.side-panel {
	position:relative;
}
.sidebutton, a.sidebutton, a.sidebutton:visited {
	-webkit-appearance: none;
	position:absolute;
	top:100px;
	left:460px;
	margin:0;
	font-size: 30px;
	line-height:100%;
	box-sizing: border-box;
	height:44px;
	background:#0064AC;
	background:#C7004D;
	background: var(--link-color);
	color:#fff;
	padding: 1px 15px 18px 3px;
	border:1px var(--text-color);
	text-align: center;
	width:auto;
	-moz-border-radius:0 5px 5px 0;
	-khtml-border-radius:0 5px 5px 0;	
	-webkit-border-radius:0 5px 5px 0;
	border-radius:0 5px 5px 0;
	cursor:pointer;
}
.sidebutton:hover, a.sidebutton:hover {
	background:#000;
}
.schatten2 {	
	-webkit-box-shadow: 6px 0px 10px 0px  rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 6px 0px 10px 0px  rgba(0, 0, 0, 0.3);
	box-shadow: 6px 0px 10px 0px  rgba(0, 0, 0, 0.3);
}
.einzeleintrag-wrapper {
	max-width: 1280px;
	margin: 0px auto;
}

.eintraegeliste-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, .5fr));
    justify-content: space-between;
    grid-column-gap: 40px;
    grid-row-gap: 40px;
}
.eintraegeliste-wrapper .teaser {
	position:relative;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.spalten-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    justify-content: space-between;
    grid-column-gap: 40px;
    grid-row-gap: 40px;
}
@media only screen and (max-width:1200px) {
	.spalten-wrapper {
    	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	}
}
@media only screen and (max-width:1000px) {
	.spalten-wrapper {
    	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	}
}
.spalten-wrapper-drittel {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 40px;
}
.spalten-wrapper div, .spalten-wrapper-rechts div {
	margin: 0;
	padding: 0;
}
.spalten-wrapper div img, .spalten-wrapper-rechts div img {
	width:100%;
}
.spalten-wrapper-klein {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    justify-content: space-between;
    grid-gap: 40px;

}
.thumbnail-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    justify-content: space-between;
    grid-gap: 20px;
}
.thumbnail {
	width:100%;
}
.spalten-wrapper-text {
	-webkit-columns: 2 250px;
	-moz-columns: 2 250px;
	columns: 2 250px;
	-webkit-column-gap: 2em;
	-moz-column-gap: 2em;
	column-gap: 2em;
}
.teasera {
	position:relative;
	margin:0 0 40px 0;
	box-sizing: border-box;
}

.teaserstart {
	position:relative;
	width:31%;
	float:left;
	margin:0 3.3% 2% 0;
	box-sizing: border-box;
}
.teaserstart:nth-of-type(3n+3) {
	margin:0;
}

/* 
.teaser:nth-child(odd) {
	margin-right: 0;
	float:left;
}
 */
.teasercrop {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	overflow:hidden;
	box-sizing: border-box;
	-moz-border-radius:var(--box-radius);
	-khtml-border-radius:var(--box-radius);	
	-webkit-border-radius:var(--box-radius);
	border-radius:var(--box-radius);
}
.teasertext {
	position:absolute;
	bottom:0;
	left:0;
	width:100%;
	height:auto;
	padding:16px;
	overflow:hidden;
	background: var(--teaser-bg-color);
	box-sizing: border-box;
	-moz-border-radius:0 0 5px 5px;
	-khtml-border-radius:0 0 5px 5px;	
	-webkit-border-radius:0 0 5px 5px;
	border-radius:0 0 5px 5px;
}
.teasertext:hover, .myhover {
	background: rgba(178, 144, 144, .6);
	color: #fff;
	display:block !important;
}
.teaserhover {
	background: var(--teaser-bg-color);
	color: var(--link-color) !important;
	display:block !important;
}

.teaserkategorie {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:auto;
	padding:16px;
	overflow:hidden;
	box-sizing: border-box;
	display:none;
	-moz-border-radius:5px 5px 0 0 ;
	-khtml-border-radius:5px 5px 0 0 ;	
	-webkit-border-radius:5px 5px 0 0 ;
	border-radius:5px 5px 0 0 ;
}
.teaser a {
	color:var(--text-color);
	font-size:18px;
	line-height:120%;
}
.hochformat {
	width:100%;
	height:auto;
}
.querformat {
	width:auto;
	height:100%;
}
.quadratisch {
	width:100%;
	height:100%;
}
.rundeecken {
	-moz-border-radius:var(--box-radius);
	-khtml-border-radius:var(--box-radius);	
	-webkit-border-radius:var(--box-radius);
	border-radius:var(--box-radius);
}
@media only screen and (max-width:540px) {

/* 
	.teaser {
		width:100%;
		height:320px;
		float:none;
	}
	.teaser:nth-child(odd) {
		margin-right: 0;
		float:none;
	}
	.teaserstart {
		position:relative;
		width:100%;
		float:left;
		margin:0 0 20px 0;
		box-sizing: border-box;
	}
 */

	yy, h2, h3, p {
		-moz-hyphens: auto;
		-o-hyphens: auto;
		-webkit-hyphens: auto;
		-ms-hyphens: auto;
		hyphens: auto;
	}

}
.spalte1, .spalte2 {
	width: 45%;
	background: transparent;
	padding: 0px;
	float:left;
	margin:0 0 0px 0;
}
.spalte2 {
	background: transparent;
	float:right;
}
.kommentarzeile {
	float:left;
	padding-top:0px;
	height: 30px;
	white-space:nowrap;
}

#footer {
	width: auto;
	height: auto;
	background: transparent;
	margin-right: auto;
	margin-left: auto;
}
.mce-content-body {
	padding:8px;
	background:#fff;
}
#pagenav {
	text-align: center;
}
#pagenav a, #pagenav a:visited, #pagenav em, #pagenav a:active { 
	font-family:'GloberRegular', "Lucida Grande", "Lucida Sans Regular", Verdana, Helvetica, sans-serif ;
	font-style:normal;
	border: 1px solid #bbb; 
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	border-radius:4px;
	padding: 6px 10px 5px 10px;
	margin: 2px 0 0 10px;
	height: 18px;
	line-height:1px;
	text-decoration:none; 
	color:var(--text-color);
	background:none;
	border:none;
} 
#pagenav a:hover { 
	background: var(--link-color); 	
	color:#fff;
	text-shadow: #666 0 -1px 0;	

}
#pagenav em, #pagenav a:active {
	font-style:normal;
	color:#fff;
	text-shadow: #666 0 -1px 0;
	background: var(--link-hover-color);

}
#pagenav img {
	vertical-align:-2px;
}
div.sprechblase, span.sprechblase {
	position: relative;
	width: 24px;
	height: 20px;
	background-color: #999;
	border: none;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	margin:4px 8px 0 0;
	float:left;
	z-index:1;
	font-size:12px;
	color:#fff !important;
	text-align:center;
	line-height:20px;
}
span.sprechblase {	
	position: absolute;
	left:0px;
	margin-right:0px;
	float:none;
}
div.sprechblase:before, span.sprechblase:before {
	content: ' ';
	position: absolute;
	width: 0;
	height: 0;
	right: 6px;
	top: 20px;
	border: 4px solid;
	border-color: #999 #999 transparent transparent;
}
a.noborder {
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in; 
	text-decoration: none;
	border-bottom: none;
	background: none;
	padding:0;
	margin:0;
}
a:link { 
	color: #C7004D;
	color: var(--link-color);
	text-decoration: none;
	border-bottom: none;
	padding:1px 2px 1px 2px;
	margin:-2px;
	-webkit-transition:linear 0.1s;
	-moz-transition:linear 0.1s;
	-o-transition:linear 0.1s;
	transition:linear 0.1s;
}
a:visited { 
	color: #C7004D; 
	color: var(--link-color);
	text-decoration: none;
	border-bottom:  none;
}
a:active { 
	color: #C7004D; 
	color: var(--link-color);
	text-decoration: none:
	border-bottom: 1px solid #C7004D;
}
a:hover { 
	color: var(--link-hover-color); 
	text-decoration: none;
	border-bottom: 1px solid #000;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	border-radius:5px;	
	-webkit-transition:linear 0.1s;
	-moz-transition:linear 0.1s;
	-o-transition:linear 0.1s;
	transition:linear 0.1s;
}
.box {
	display: none;
	margin-top:2px;
	padding:6px;
	width:100%;
	height:150px;
	overflow:auto;
}
h1, h2, h3, h4  { 
	color: var(--heading-color); 
	font: normal 48px/100% "bodycopy", "Helvetica Neue", Helvetica, Arial, sans-serif;
	margin: 0 0 12px 0;
	font-weight:normal;
	-moz-hyphens: auto;
	-o-hyphens: auto;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	-hyphens: auto;
}
h1 {
	margin-left:-2px;
}
h1 a {
	color:var(--text-color) !important;
}
h2  { 
	font-size: 40px;
	margin: 0 0 24px -1px;
}
h3.datum  { 
	color: #999; 
	font: normal 18px/100% "serifitalic", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
h3  { 
	font-size: 26px;
	margin: 0 0 12px 0;
}
h3.suche  { 
	margin: 0 0 4px 0;
}
h4  { 
	font-size: 22px;
	margin: 0 0 6px 0;
	line-height:150%;
}
@media only screen and (min-width:1480px) {
	h1 {
	font-size:48px;
	}

	h2  { 
		font-size: 40px;
	}
	h3.datum  { 
		font-size: 26px;
	}
	h3  { 
		font-size: 30px;
		margin: 0 0 12px 0;
	}

	h4  { 
		font-size: 26px;
	}
}
@media only screen and (max-width:1024px) {
	h1 {
	font-size:40px;
	}

	h2  { 
		font-size: 36px;
	}
	h3.datum  { 
		font-size: 24px;
	}
	h3  { 
		font-size: 24px;
		margin: 0 0 12px 0;
	}

	h4  { 
		font-size: 20px;
	}
}
.bold, strong, b {
	font-family: "bodycopybold", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: normal;
}
p {
	margin: 0 0 1em 0;
	-moz-hyphens: auto;
	-o-hyphens: auto;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	-hyphens: auto; 
}
em {
	font-family:"serifitalic";
	font-weight: normal;
	font-style:normal;
}
hr {
	margin:18px 0 18px 0;
	height: 1px;
	color: #fff;
	border: none;
	border-top: 1px solid #e0e4e2; 
}
.step {
	padding:2px 0 0 0;
}
.nomargin {
	margin:0 0 6px 0;
}
/* 
.aehnlich {
	width:100%;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}
 */
.aehnlich {
	width:100%;
	display: grid; 
	grid-template-columns: repeat(auto-fill, 130px); 
	grid-gap: 20px;
	justify-content: space-between; 
}
.aehnlich span div.thumbcrop, .aehnlich div.thumbcrop {
	margin: 0 0 20px 0;
}
a.imgl  {
	text-decoration: none;
	border: none;
	background: none;
}
img {
	text-decoration: none;
	border: none;
	background: none;
}
.spalten-wrapper-text {
	-webkit-columns: 2 250px;
	-moz-columns: 2 250px;
	columns: 2 250px;
	-webkit-column-gap: 2em;
	-moz-column-gap: 2em;
	column-gap: 2em;
	margin: 0 0 24px 0;
}
.bildrechts {
	float:right;
	margin:0 0px 0 20px !important;
	border: none;
}
.w100 {
	margin:24px 0px 12px 0px !important;
	border: none;
	width:100%;
	max-width:10000px;
}
.w50 {
	border: none;
	width:50%;
	max-width:640px;
}
.w40 {
	border: none;
	width:40%;
	max-width:640px;
}
.w30 {
	border: none;
	width:30%;
	max-width:640px;
}
.w25 {
	border: none;
	width:25%;
	max-width:250px;
}
.bildlinks {
	float:left;
	margin:0 20px 0 0 !important;
	border: none;
}
.bild { 
	margin:0px 0px 10px 0px;
	border: none;
}
.rechtsb { 
	text-align: right; 
}
.linksb { 
	text-align: left; 
}
.zentriert { 
	text-align: center; 
}
.schatten {
	-moz-border-radius:var(--box-radius);
	-khtml-border-radius:var(--box-radius);	
	-webkit-border-radius:var(--box-radius);
	border-radius:var(--box-radius);

	-webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
	margin:0 0 12px 0;
}
small { 
	color: #999; 
	font-size:16px;
	line-height:120% !important;
}
.unsichtbar {
	display: none;
}
.button, input[type=submit], input[type=button] {
	margin:0;
	font: 18px/130% "bodycopy", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans Regular", "Lucida Sans", "LucidaSans", "Trebuchet MS", Verdana, sans-serif;
	background:#206f3c;
	color:#fff;
	padding:5px 10px 6px 10px;
	border:none;
	text-align: center;
	width:auto;
	-moz-border-radius:5px;
	-khtml-border-radius:5px;	
	-webkit-border-radius:5px;
	border-radius:5px;
}	
.button:hover, input[type=submit]:hover, input[type=button]:hover {
	background:#19562e;
	cursor:pointer;
}
.button:active, input[type=submit]:active, input[type=button]:active {
	background:black;
	cursor:pointer;
}
input[type="checkbox"] {
	-webkit-transform: scale(1.2, 1.2);
	margin: 0 8px 0 0;
	position: relative;
    vertical-align: middle;
    bottom: 1px;
}
.closebox {
	position:absolute;
	top:3px;
	right:3px;
}
.logo {
	max-width:100%;
}

.avatar {
	float:left;
	margin:1px 8px 0px 0px;
	padding: 3px 4px 3px 4px;
	background: none;
}
form {
	margin:0px;
	padding:0px;
}

.linksb { 
	text-align: left; 
	float: left; 
}
.rechtsb { 
	text-align: right; 
	float: right; 
}
.kommentarfeld, .eingabe { 
	font: 18px/150% "bodycopy", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans Regular", "Lucida Sans", "LucidaSans", "Trebuchet MS", Verdana, sans-serif;
	width:100%;
	-moz-border-radius:5px;
	-khtml-border-radius:5px;	
	-webkit-border-radius:5px;
	border-radius:5px;
	border: 1px solid #ccc;
	padding:6px;
}
.popupmenu, .suchfeld {
	font-size:18px;
	width:100%;
	max-width: 300px;
	padding:3px;
	margin:0 0 10px 0;
	background: var(--bg-color);
	color: var(--text-color)
}

.eingabe {
/* 
	width:50% !important;
 */
	min-width: 300px;
}

.kommentarzaehler {
	z-index: 0; 
	position:relative;
	top:0px;
	right:0px;
	float:right;
	font-size:36px;
	color:#ddd;
}
.ohne_abstand {
	margin-top:-10px;
}
.dachzeile {
	margin-bottom:6px;
}
#prev_article, #next_article {
	position: fixed;
	display:block;
	font-size: 128px;
	text-align:right;
	right: 40px;
	padding-right: 16px;
	top: 48%;
	z-index:10;
	width:40px;
}
#next_article {
	left: 20px;	
	text-align:left;
}
#prev_article img, #next_article img, #topbutton img {
	opacity:.9;
	-webkit-transition: opacity linear 0.15s;
	-moz-transition: opacity linear 0.15s;
	-o-transition: opacity linear 0.15s;
	transition: opacity linear 0.15s;
}
#prev_article a, #next_article a, #prev_article a:visited, #next_article a:visited, #topbutton a, #topbutton a:visited {
	text-decoration: none;
	border:none;
}
#prev_article img:hover, #next_article img:hover, #topbutton img:hover{
	opacity:.5;
	-webkit-transition: opacity linear 0.15s;
	-moz-transition: opacity linear 0.15s;
	-o-transition: opacity linear 0.15s;
	transition: opacity linear 0.15s;
}
#topbutton {
	position: fixed;
	background:none;
	right: 20px;
	top:20px;
	display:none;
	z-index:100;
}
.navbutton {
	width:56px;
	height:56px;
}
.swipeleft {
	position:relative;
	opacity:0;
}
.swiperight {
	position:relative;
	opacity:0;
}
.fade {
	-webkit-transition: opacity linear 0.5s;
	-moz-transition: opacity linear 0.5s;
	-o-transition:opacity linear 0.5s;
	transition:opacity linear 0.5s;
	opacity:1 !important;
}
.prefade {
		opacity:0;
}
.textrahmen {
	width:40%;
	max-width: 300px;
	padding:20px;
	border:  1px solid #aaa;
	margin: 20px 30px 20px 0px;
	-moz-border-radius:var(--box-radius);
	-khtml-border-radius:var(--box-radius);	
	-webkit-border-radius:var(--box-radius);
	border-radius:var(--box-radius);
	float:left;
	background: rgba(240, 240, 240, 0.9);
	font-family: 'serifitalic';
}
.ohne_abstand  {
	margin:0 0 12px 0;
}
.kommentarheader {
	font-size:24px;
}
.videoWrapper {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 25px;
	height: 0;
}
.videoWrapper iframe,
.videoWrapper object,
.videoWrapper embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
a.bild, a.lightbox {
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in; 
	text-decoration: none;
	border-bottom: 0px !important;
	background: none;
	padding:0;
	margin:0;
}
a.imglink {
	text-decoration: none;
	border-bottom: 0px !important;
	background: none;
	padding:0;
	margin:0;
}
#wrapper #content a img {
	border-bottom: 0px !important;
}
#wrapper #content a img:hover{
	border-bottom: 0px !important;
}
.letztekommentare p {
	line-height:130%;
	margin:0 0 8px 0;
}
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}
.clearfix {
    *zoom: 1;
}
table {
	margin: 0 0 16px 0;
}
select {
/* 
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
 */

/* 
	display: inline-block;
	height: 30px;
	line-height: 24px;
	border-color:#999;
	padding: 8px;
 */
	
}
.styledselect {

}

.styledselect select {
	font-size:15px;
	line-height:1.5;
    color: var(--text-color);
    padding: 4px 28px 6px 10px;
    height: auto;
    box-sizing: border-box;
    margin: 0;
    border: 1px solid #aaa;
    width:100%;
    border-radius: 4px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: url(../images/doublearrows.svg) right 8px center no-repeat, linear-gradient(to bottom, #ffffff 0%,#e5e5e5 100%);
    background-size: 10px, cover;
    -webkit-box-shadow:	0px 0px 2px rgba(0, 0, 0, .2);
	-moz-box-shadow: 	0px 0px 2px rgba(0, 0, 0, .2);
	box-shadow: 		0px 0px 2px rgba(0, 0, 0, .2);
}
.thumbcrop {
	width:130px;
	height:130px;
	overflow:hidden;
	float:left;
	margin:0 20px 20px 0;
}
.thumbcrop2 {
	width:130px;
	height:130px;
	overflow:hidden;
	margin:0 0 6px 0;
	-moz-border-radius:var(--box-radius);
	-khtml-border-radius:var(--box-radius);	
	-webkit-border-radius:var(--box-radius);
	border-radius:var(--box-radius);
}
.thumbcrop2:hover {
	opacity:.5;
}
.similarthumb {
	width:130px;
	margin:0;
	font-size:14px;
	line-height:130%;
	-moz-hyphens: auto;
	-o-hyphens: auto;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	-hyphens: auto;
}
textarea, input[type='text'], input[type='password'], input[type='search'], input[type='email'], input[type='url'] {
	padding:4px;
	width:100%;
	border: 1px solid #ccc;
	background: var(--input-bg-color);
	box-sizing: border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing: border-box;
	-moz-border-radius:5px;
	-khtml-border-radius:5px;	
	-webkit-border-radius:5px;
	border-radius:5px;
}

input[type='search'] {
	font: 18px/130% "bodycopy", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans Regular", "Lucida Sans", "LucidaSans", "Trebuchet MS", Verdana, sans-serif;
	-webkit-appearance: none;
}
input[type='search']::-webkit-search-cancel-button{
    -webkit-appearance: none;
    position:relative;
    right:2px;  
    height:20px;
    width:20px;
    background-image: url(../images/cancel.svg);
    background-position: center center;
    background-size:18px;
    background-repeat: no-repeat;
    opacity:.5;
}
#help-wrapper {
	position: fixed;
	padding: 1px;
	width: 600px;
	height: 400px;
	text-align:left;
	top:50%;
	left:50%;
	margin-left: -300px;
	margin-top: -200px;
	z-index: 900;
	border: 1px solid #999;
	background: white;
	-webkit-box-shadow: 0px 2px 20px rgba(0, 0, 0, .9);
	-moz-box-shadow: 0px 2px 20px rgba(0, 0, 0, .9);
	box-shadow: 0px 2px 20px rgba(0, 0, 0, .9);
}
#help-wrapper iframe {
	border:none;
	width:100%;
	height:100%;
	text-align:left;
	margin:0;
	padding:0;
}

#help {
	height: 360px;
	width: 560px;
	margin:auto auto;
	padding: 0;
	overflow:auto;
}
.help-closebox {
	position:relative;
	float:left;
	top:-10px;
	right:-10px;
	z-index: 11;
}


.clear {
	clear:both;
}

@media only screen and (min-device-width:768px) and (max-device-width:1024px) and (orientation:portrait){ /*iPad hoch*/
	.spalten-wrapper {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	}
	
	#wrapper {
		position:relative;
		z-index:100;
		width: 90%;
		max-width:720px;
		margin-right: auto;
		margin-left: auto;
		margin-top: 20px;
		padding:20px;

	}
	.sidebutton {
		display:none;
	}
 
	#suchentop {
		display:none;
	}
	.nav-mobil {
		display:block;
	}
	.nav-desktop {
		display:none;
	}
	
	#header {
		height:auto;
		text-align: left;
		margin: 10px 0 0px -2.5%;
		width:100%;
		max-width:720px;
/* 
		background-size: 100%;
 */
		float:none;
	}
	#navigation {
		width:100%;
		max-width: 720px;
		padding: 0 0 0 0;
		text-align: left;
		float:none;
	}

	#content {
		width:100%;
		max-width: 720px;
		padding: 0;
		text-align: left;
		float:none;
		clear:both;
	}
	#seitenleiste {
		width:100%;
		max-width: 640px;
		padding: 0 0 0 0;
		text-align: left;
		float:none;
	margin-top:0px;
	}


	#prev_article, #next_article {
		position: fixed;
		background:none;
		text-align:right;
		right: 4px;
		top: 42%;
		z-index:10;
	}
	#next_article {
		left: 4px;	
		text-align:left;
	}
	#bg{
		background: none;
	}

}
@media only screen and (min-device-width:768px) and (max-device-width:1024px) and (orientation:landscape){ /*iPad quer*/
	.spalten-wrapper {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	}

	#wrapper {
		position:relative;
		z-index:100;
		width: 90%;
		margin-right: auto;
		margin-left: auto;
		margin-top: 20px;
		padding:20px;

	}
	.sidebutton {
		display:none;
	}

	body {
		font-size:14px;
	}
	h4 {
		font-size:17px;
	}
	#prev_article, #next_article {
		position: fixed;
		background:none;
	
		text-align:right;
		right: 4px;
		top: 42%;
		
		z-index:10;
	}
	#next_article {
		left: 4px;	
		text-align:left;
	}
	#bg {
		background: none;
		display: none;
	}
}

@media only screen and (max-width:760px) { /*760px*/
	.spalten-wrapper {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	}
	.sidebutton {
		display:none;
	}
	.eintraegeliste-wrapper {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}
	#wrapper {
		position:relative;
		z-index:100;
		width: 90%;
		max-width:960px;
		margin-right: auto;
		margin-left: auto;
		margin-top: 20px;
		padding:20px;

	}
	#header {
		height:auto;
		text-align: left;
		margin: 10px 0 0px -2.5%;
		width:100%;
		height:0;
		padding-top: 32%;
		float:none;
	}
	#navigation {
		width:100%;
		max-width: 720px;
		padding: 0 0 0 0;
		text-align: left;
		float:none;
		margin:0 0 24px 0;
	}

	#content {
		clear:both;
		width:100%;
		max-width: 720px;
		padding: 0;
		text-align: left;
		float:none;
	}
	#seitenleiste {
		width:100%;
		max-width: 720px;
		padding: 0 0 0 0;
		text-align: left;
		float:none;
		margin-top:0px;
	}
	#prev_article, #next_article, #topbutton {
		position: fixed;
		background:none;
		display:none;
		font-size: 60px;
		text-align:right;
		right: 4px;
		top: 42%;
		width:40px;
		z-index:10;
	}
	#next_article {
		left: 4px;	
		text-align:left;
	}
	h3, h4  { 
	margin: 0 0 6px 0;
}
	#topbutton {
		font-size: 40px;
		font-weight:500;
		background:none;
		right: 6px;
		top:95%;
		display:none;
		z-index:100;
	}

	.nav-mobil {
		display:block;
	}
	.nav-desktop {
		display:none;
	}
	#suchentop {
		display:none;
	}
	#bg {
		background: none;
	}

}

@media only screen and (min-device-width:320px) and (max-device-width:480px)  { /*iPhone*/
	.spalten-wrapper {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	}

	body {
		font-size:15px;
	}
	.sidebutton {
		display:none;
	}
	.textrahmen {
		width:100%;
		float:none;
	}
	.eingabe {
		width:100% !important;
	}
	#wrapper {
		position:relative;
		z-index:100;
		width: 100%;
		max-width:960px;
		margin-right: auto;
		margin-left: auto;
		margin-top: 0px;
		padding:12px;
		box-sizing: border-box;
		-webkit-box-sizing:border-box;
		-moz-box-sizing: border-box;
	}
	.nav-mobil {
		display:block;
	}
	.nav-desktop {
		display:none;
	}
	#suchentop {
		display:none;
	}
	#header {
		height:auto;
		text-align: left;
		margin: 10px 0 0px -2.5%;
		width:100%;
		float:none;
	}
	#navigation {
		width:100%;
		max-width: 640px;
		padding: 0 0 0 0;
		text-align: left;
		float:none;
		margin:0 0 24px 0;
	}

	#content {
		width:100%;
		max-width: 640px;
		padding: 0;
		text-align: left;
		float:none;
	}
	#seitenleiste {
		width:100%;
		max-width: 640px;
		padding: 0 0 0 0;
		text-align: left;
		float:none;
		margin-top:0px;
}
	#bg {
		background: none;
	}
	#rss {
		display:none;
	}
	.spalte1, .spalte2 {
		width: 100%;
		float:none;
		margin:0 0 0 0;
	}
}
@media print {
	body  {
		font: normal 13px/150% bodycopy, "Lucida Grande", "Trebuchet MS", Helvetica, Verdana, sans-serif;
		color:var(--text-color);
	}
	#wrapper, .wrapper {
		width: 100%;
		margin-top: 0px;
	}
	img.schatten {
		display:none;
	}
	.nonprint {
		display:none;
	}
	.nav-mobil {
		display:none;
	}
	.nav-desktop {
		display:none;
	}
	#suchentop {
		display:none;
	}
	#header {
		margin-top: 0px;
	}
	#navigation, #nav {
		display:none;
	}
	.sidebutton {
		display:none;
	}
	#bg {
		display:none;
	}
	.aehnlich {
		display:none;
	}
	form, hr {
		display:none;
	}
	#prev_article, #next_article {
		display:none;
	}
	h2.kommentare {
		display:none;
	}
	.kommentarzaehler, .kommentarzeile {
		display:none;
	}
	#topbutton {
		display:none;
	}
	
}
@media only screen and (min-width:1025px) {
	body  {
		font-size:20px;
	}
}
@media only screen and (min-width:1280px) {
	body  {
		font-size:22px;
	}

	#content li:before {
		font-size:32px;
		top:14px;
	}
	div.sprechblase, span.sprechblase {
		position: relative;
		width: 30px;
		height: 24px;
		margin:7px 8px 0 0;
		font-size:15px;
		line-height:24px;
	}

	div.sprechblase:before, span.sprechblase:before {
		right: 10px;
		top: 24px;
	}
	small {
		font-size: 18px;
	}
}
@media only screen and (min-width:1480px) {
	body  {
		font-size:22px;
	}
	#content li:before {
		margin: 0 10px 0 -0.87em;
	}
	h1 {
	font-size:54px;
	}

	h2 { 
		font-size: 48px;
	}
	h3.datum { 
		font-size: 26px;
	}
	h3 { 
		font-size: 36px;
		margin: 0 0 12px 0;
	}

	h4 { 
		font-size: 26px;
	}
	small {
		font-size: 19px;
	}
}
@media screen and (prefers-color-scheme: dark) {
	:root {  
		--text-color: #ddd;
		--text-light-color: #aaa:
		--text-menu-color: #999;
		--heading-color: #aaa;  
		--wrapper-bg-color: rgba(44,56,69,1);
		--bg-color: rgba(29,37,45,1);
		--bg-slider: rgba(29,37,45,1);
		--teaser-bg-color: rgba(78,64,66,.85);
		--bg-light-color: #6c767c;
	    --input-bg-color: rgba(90,90,90,1);
		--link-color: rgba(175,142,143,1);
		--link-light-color: #6c95cf;
		--link-hover-color: #aaa;
		--link-hover-bg-color: #6c767c;
		--box-color: #50575b;
		--bg-gradient-2: rgba(46,54,60,1);
		--bg-gradient-1: rgba(40,49,62,1);
	}
	#bg {
		opacity:.05;
		-moz-opacity: .05;
	}
	img {
		opacity: .95;
		transition: opacity .5s ease-in-out;
	}
	img:hover {
		opacity: 1;
	}
	.styledselect select {
	    background: url(../images/doublearrows.svg) right 8px center no-repeat, linear-gradient(to bottom, #666 0%,#333 100%);
		background-size: 10px, cover;

	}
	#header {
		background-image: url(../images/kitchn-logo.svg);
	}
	#headeroben, #headerunten {
		opacity: .75;
	}
	#seitentitel h2 {
		color: var(--bg-color);
	}
	blockquote {
		background: transparent url('/bilder/quote-dark.png') 0px 0px no-repeat;
	}

}