html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;}

body {
	line-height: 1;
	font-size:0.9em
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

mark {
	background-color: transparent;
	color: inherit;
}

input, select, textarea {
	appearance: none;
}

/* Basic */

	@-ms-viewport {
		width: device-width;
	}

	body {
		-ms-overflow-style: scrollbar;
	}

	html {
		box-sizing: border-box;
	}

	*, *:before, *:after {
		box-sizing: inherit;
	}

	body {
		background: #ffffff;
	}

		body.is-preload *, body.is-preload *:before, body.is-preload *:after, body.is-resizing *, body.is-resizing *:before, body.is-resizing *:after {
			animation: none !important;
			transition: none !important;
		}

/* Type */

	body, input, select, textarea {
		color: var(--font-color);
		font-family: "Open Sans", sans-serif;
		font-size: 13pt;
		font-weight: 400;
		line-height: auto;
	}



	a {
		transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
		color: var(--primary-color);
		text-decoration: none;
	}
		a:link { color:blue }
		a:visited { color:purple }
			
		.pagination a { color:inherit}	
		
		.features a { color: var(--font-color);	}

	strong, b {
		color: black;
		font-weight: 600;
	}

	em, i {
		font-style: italic;
	}

	p {
		margin: 0 0 2em 0;
	}

	h1, h2, h3, h4, h5, h6, #sidebar b {
		font-family: "Roboto Slab", serif;
		font-weight: 700;
		line-height: 1.5;
	}
	
		main h2 {
			color:var(--heading-color)
		}

		h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
			color: inherit;
			text-decoration: none;
			border-bottom: 0;
		}

	h1 {
		font-size: 2em;
		margin: 0.5em 0;
		line-height: 1.3;
	}

	h2 {
		font-size: 1.75em;
	}

	h3 {
		font-size: 1.25em;
	}

	h4 {
		font-size: 1.1em;
	}

	h5 {
		font-size: 0.9em;
	}

	h6 {
		font-size: 0.7em;
	}



	sub {
		font-size: 0.8em;
		position: relative;
		top: 0.5em;
	}

	sup {
		font-size: 0.8em;
		position: relative;
		top: -0.5em;
	}

	blockquote {
		border-left: solid 3px rgba(210, 215, 217, 0.75);
		font-style: italic;
		margin: 0 0 2em 0;
		padding: 0.5em 0 0.5em 2em;
	}

	code {
		background: rgba(230, 235, 237, 0.25);
		border-radius: 0.375em;
		border: solid 1px rgba(210, 215, 217, 0.75);
		font-family: "Courier New", monospace;
		font-size: 0.9em;
		margin: 0 0.25em;
		padding: 0.25em 0.65em;
	}

	pre {
		-webkit-overflow-scrolling: touch;
		font-family: "Courier New", monospace;
		font-size: 0.9em;
		margin: 0 0 2em 0;
	}

		pre code {
			display: block;
			line-height: 1.75;
			padding: 1em 1.5em;
			overflow-x: auto;
		}

	hr {
		border: 0;
		border-bottom: solid 1px rgba(210, 215, 217, 0.75);
		margin: 2em 0;
	}

		hr.major {
			margin: 3em 0;
		}

	.align-left {
		text-align: left;
	}

	.align-center {
		text-align: center;
	}
	
	.align-middle {
		vertical-align:middle
	}
	.align-bottom {
		vertical-align:bottom
	}

	.align-right {
		text-align: right;
	}
	
	.nowrap {
		white-space:nowrap
	}
	
	small {
		font-size:0.8em;
		color:#333
	}

/* Row */

	.row {
		display: flex;
		flex-wrap: wrap;
		box-sizing: border-box;
		align-items: stretch;
	}

		.row > * {
			box-sizing: border-box;
		}

		.row.gtr-uniform > * > :last-child {
			margin-bottom: 0;
		}

		.row.aln-left {
			justify-content: flex-start;
		}

		.row.aln-center {
			justify-content: center;
		}

		.row.aln-right {
			justify-content: flex-end;
		}

		.row.aln-top {
			align-items: flex-start;
		}

		.row.aln-middle {
			align-items: center;
		}

		.row.aln-bottom {
			align-items: flex-end;
		}

		.row > .imp {
			order: -1;
		}

		.row > div {
			width: 100%
		}

		.row > .off-1 {
			margin-left: 8.33333%;
		}

		.row > .col-2 {
			width: 16.66667%;
		}

		.row > .off-2 {
			margin-left: 16.66667%;
		}

		.row > .col-3 {
			width: 25%;
		}

		.row > .off-3 {
			margin-left: 25%;
		}

		.row > .col-4 {
			width: 33.33333%;
		}

		.row > .off-4 {
			margin-left: 33.33333%;
		}

		.row > .col-5 {
			width: 41.66667%;
		}

		.row > .off-5 {
			margin-left: 41.66667%;
		}

		.row > .col-6 {
			width: 50%;
		}

		.row > .off-6 {
			margin-left: 50%;
		}

		.row > .col-7 {
			width: 58.33333%;
		}

		.row > .off-7 {
			margin-left: 58.33333%;
		}

		.row > .col-8 {
			width: 66.66667%;
		}

		.row > .off-8 {
			margin-left: 66.66667%;
		}

		.row > .col-9 {
			width: 75%;
		}

		.row > .off-9 {
			margin-left: 75%;
		}

		.row > .col-10 {
			width: 83.33333%;
		}

		.row > .off-10 {
			margin-left: 83.33333%;
		}

		.row > .col-11 {
			width: 91.66667%;
		}

		.row > .off-11 {
			margin-left: 91.66667%;
		}

		.row > .col-12 {
			width: 100%;
		}

		.row > .off-12 {
			margin-left: 100%;
		}
		
		.row > .col-12-print {
			width: 100% !important
		}

		.row.gtr-0 {
			margin-top: 0;
			margin-left: 0em;
		}

			.row.gtr-0 > * {
				padding: 0 0 0 0em;
			}

			.row.gtr-0.gtr-uniform {
				margin-top: 0em;
			}

				.row.gtr-0.gtr-uniform > * {
					padding-top: 0em;
				}

		.row.gtr-25 {
			margin-top: 0;
			margin-left: -0.375em;
		}

			.row.gtr-25 > * {
				padding: 0 0 0 0.375em;
			}

			.row.gtr-25.gtr-uniform {
				margin-top: -0.375em;
			}

				.row.gtr-25.gtr-uniform > * {
					padding-top: 0.375em;
				}

		.row.gtr-50 {
			margin-top: 0;
			margin-left: -0.75em;
		}

			.row.gtr-50 > * {
				padding: 0 0 0 0.75em;
			}

			.row.gtr-50.gtr-uniform {
				margin-top: -0.75em;
			}

				.row.gtr-50.gtr-uniform > * {
					padding-top: 0.75em;
				}

		.row {
			margin-top: 0;
			margin-left: -1.5em;
		}

			.row > * {
				padding: 0 0 0 1.5em;
			}

			.row.gtr-uniform {
				margin-top: -1.5em;
			}

				.row.gtr-uniform > * {
					padding-top: 1.5em;
				}

		.row.gtr-150 {
			margin-top: 0;
			margin-left: -2.25em;
		}

			.row.gtr-150 > * {
				padding: 0 0 0 2.25em;
			}

			.row.gtr-150.gtr-uniform {
				margin-top: -2.25em;
			}

				.row.gtr-150.gtr-uniform > * {
					padding-top: 2.25em;
				}

		.row.gtr-200 {
			margin-top: 0;
			margin-left: -3em;
		}

			.row.gtr-200 > * {
				padding: 0 0 0 3em;
			}

			.row.gtr-200.gtr-uniform {
				margin-top: -3em;
			}

				.row.gtr-200.gtr-uniform > * {
					padding-top: 3em;
				}

			.hide {
				display:none
			}
			
		
/* Section/Article */

	section.special, article.special {
		text-align: center;
	}

	header p {
		font-family: "Roboto Slab", serif;
		font-size: 1em;
		font-weight: 400;
		letter-spacing: 0.075em;
		margin-top: -0.5em;
		text-transform: uppercase;
	}

	header.major > :last-child {
		border-bottom: solid 3px var(--primary-color);
		display: inline-block;
		margin: 0 0 2em 0;
		padding: 0 0.75em 0.5em 0;
	}

/*
	header.main > :last-child {
		margin: 0 0 1em 0;
	}
*/	

/* Form */

	form {
		margin: 0 0 0 0;
	}

	label {
		color: #3d4449;
		display: block;
		font-size: 0.9em;
		font-weight: 600;
		margin: 0 0 1em 0;
	}
	
	input[type="text"],
	input[type="number"],
	input[type="password"],
	input[type="email"],
	input[type="tel"],
	input[type="search"],
	input[type="url"],
	input[type="date"],
	input[type="time"],
	select,
	textarea {
		appearance: none;
		background: #ffffff;
		border-radius: 0.375em;
		border: none;
		color: inherit;
		display: block;
		outline: 0;
		padding: 0;
		text-decoration: none;
		width: 100%;
	}

		input[type="text"]:invalid,
		input[type="number"]:invalid,
		input[type="password"]:invalid,
		input[type="email"]:invalid,
		input[type="tel"]:invalid,
		input[type="search"]:invalid,
		input[type="url"]:invalid,
		input[type="date"]:invalid,
		input[type="time"]:invalid,
		select:invalid,
		textarea:invalid {
			box-shadow: none;
		}

		input[type="text"]:focus,
		input[type="number"]:focus,
		input[type="password"]:focus,
		input[type="email"]:focus,
		input[type="tel"]:focus,
		input[type="search"]:focus,
		input[type="url"]:focus,
		input[type="date"]:focus,
		input[type="time"]:focus,
		select:focus,
		textarea:focus {
			border-color: var(--primary-color);
			box-shadow: 0 0 0 1px var(--primary-color);
		}

	select {
		height: auto;
	}

		select option {
			color: #3d4449;
			background: #ffffff;
		}
			
		select:focus::-ms-value {
			background-color: transparent;
		}

		select::-ms-expand {
			display: none;
		}

	input[type="text"],
	input[type="number"],
	input[type="password"],
	input[type="email"],
	input[type="tel"],
	input[type="search"],
	input[type="url"],
	input[type="date"],
	input[type="time"],
	select {
		height: auto;
	}

	textarea {
		padding: 0.75em 1em;
	}

	input[type="checkbox"],
	input[type="radio"] {
		appearance: none;
		display: block;
		float: left;
		margin-right: -2em;
		opacity: 0;
		width: 1em;
		z-index: -1;
	}

		input[type="checkbox"] + label,
		input[type="radio"] + label {
			text-decoration: none;
			color: var(--font-color);
			cursor: pointer;
			display: inline-block;
			font-size: 1em;
			font-weight: 400;
			padding-left: 2.4em;
			padding-right: 0.75em;
			padding-top:0.75em;
			position: relative;
		}

			input[type="checkbox"] + label:before,
			input[type="radio"] + label:before {
				-moz-osx-font-smoothing: grayscale;
				-webkit-font-smoothing: antialiased;
				display: inline-block;
				font-style: normal;
				font-variant: normal;
				text-rendering: auto;
				line-height: 1;
				text-transform: none !important;
				font-family: 'Font Awesome 5 Free';
				font-weight: 900;
			}

			input[type="checkbox"] + label:before,
			input[type="radio"] + label:before {
				background: #ffffff;
				border-radius: 0.375em;
				border: solid 1px rgba(210, 215, 217, 0.75);
				content: '';
				display: inline-block;
				font-size: 0.8em;
				height: 2.0625em;
				left: 0;
				line-height: 2.0625em;
				position: absolute;
				text-align: center;
				top: 0.75em;
				width: 2.0625em;
			}

		input[type="checkbox"]:checked + label:before,
		input[type="radio"]:checked + label:before {
			background: #3d4449;
			border-color: #3d4449;
			color: #ffffff;
			content: '\f00c';
		}

		input[type="checkbox"]:focus + label:before,
		input[type="radio"]:focus + label:before {
			border-color: var(--primary-color);
			box-shadow: 0 0 0 1px var(--primary-color);
		}

	input[type="checkbox"] + label:before {
		border-radius: 0.375em;
	}

	input[type="radio"] + label:before {
		border-radius: 100%;
	}

	::-webkit-input-placeholder {
		color: #9fa3a6 !important;
		opacity: 1.0;
	}

	:-moz-placeholder {
		color: #9fa3a6 !important;
		opacity: 1.0;
	}

	::-moz-placeholder {
		color: #9fa3a6 !important;
		opacity: 1.0;
	}

	:-ms-input-placeholder {
		color: #9fa3a6 !important;
		opacity: 1.0;
	}

/* Box */

	.box {
		border: none;
		margin-bottom: 0;
		padding: 0.5em;
	}

		.box > :last-child,
		.box > :last-child > :last-child,
		.box > :last-child > :last-child > :last-child {
			margin-bottom: 0;
		}

		.box.alt {
			border: 0;
			border-radius: 0;
			padding: 0;
		}
		
			#suchergebnisse .box {
				box-shadow: 0 0 10px silver;
			}

		.box.result {
			font-weight:bold;
			text-align:center;
			background:#eee
		}
		
		.box.ergebnis { 
			text-align: center !important;
			background: whitesmoke;
			box-shadow: 0 0 10px black; 
		}	

			.box.ergebnis strong { 
				font-size: 2em
			}	
		
		

/* Icon */

	.icon {
		text-decoration: none;
		border-bottom: none;
		position: relative;
		z-index:0
	}

		.icon:before {
			-moz-osx-font-smoothing: grayscale;
			-webkit-font-smoothing: antialiased;
			display: inline-block;
			font-style: normal;
			font-variant: normal;
			text-rendering: auto;
			line-height: 1;
			text-transform: none !important;
			font-family: 'Font Awesome 5 Free';
			font-weight: 400;
		}

		.icon > .label {
			display: none;
		}

		.icon:before {
			line-height: inherit;
		}

		.icon.solid:before {
			font-weight: 900;
		}

		.icon.brands:before {
			font-family: 'Font Awesome 5 Brands';
		}

/* Image */

	.image {
		border-radius: 0.375em;
		border: 0;
		display: inline-block;
		position: relative;
	}

		.image img {
			border-radius: 0.375em;
			display: block;
		}

		.image.left, .image.right {
			max-width: 40%;
		}

			.image.left img, .image.right img {
				width: 100%;
			}

		.image.left {
			float: left;
			padding: 0 1.5em 1em 0;
			top: 0.25em;
		}

		.image.right {
			float: right;
			padding: 0 0 1em 1.5em;
			top: 0.25em;
		}

		.image.fit {
			display: block;
			margin: 0 0 2em 0;
			width: 100%;
		}

			.image.fit img {
				width: 100%;
			}

		.image.main {
			display: block;
			margin: 0 0 3em 0;
			width: 100%;
		}

			.image.main img {
				width: 100%;
			}

	a.image {
		overflow: hidden;
	}

		a.image img {
			transition: transform 0.2s ease;
		}


/* List */

	ol {
		list-style: decimal;
		margin: 0 0 2em 0;
		padding-left: 1.25em;
	}

		ol li {
			padding-left: 0.25em;
		}

	ul {
		list-style: disc;
		margin: 0 0 2em 0;
		padding-left: 1em;
	}

		ul li {
			padding-left: 0.5em;
		}

		ul.alt {
			list-style: none;
			padding-left: 0;
		}

			ul.alt li {
				border-top: solid 1px rgba(210, 215, 217, 0.75);
				padding: 0.5em 0;
			}

				ul.alt li:first-child {
					border-top: 0;
					padding-top: 0;
				}

	dl {
		margin: 0 0 2em 0;
	}

		dl dt {
			display: block;
			font-weight: 600;
			margin: 2em 0 0.5em 0;
			border-bottom: 1px dotted var(--font-color)
		}
		dl dd {
			margin-left: 2em;
		}

/* Actions */

	ul.actions { 
		display: flex;
		cursor: default;
		list-style: none;
		margin-left: -1em;
		padding-left: 0;
	}

		ul.actions li {
			padding: 0 0 0 1em;
			vertical-align: middle;
		}

		ul.actions.special {
			justify-content: center;
			width: 100%;
			margin-left: 0;
		}

			ul.actions.special li:first-child {
				padding-left: 0;
			}

		ul.actions.stacked {
			flex-direction: column;
			margin-left: 0;
		}

			ul.actions.stacked li {
				padding: 1.3em 0 0 0;
			}

				ul.actions.stacked li:first-child {
					padding-top: 0;
				}

		ul.actions.fit {
			width: calc(100% + 1em);
		}

			ul.actions.fit li {
				flex-grow: 1;
				flex-shrink: 1;
				width: 100%;
			}

				ul.actions.fit li > * {
					width: 100%;
				}

			ul.actions.fit.stacked {
				width: 100%;
			}

/* Icons */

	ul.icons {
		cursor: default;
		list-style: none;
		padding-left: 0;
	}

		ul.icons li {
			display: inline-block;
			padding: 0 1em 0 0;
		}

			ul.icons li:last-child {
				padding-right: 0;
				vertical-align:top
			}

			ul.icons li .icon {
				color: inherit;
			}

				ul.icons li .icon:before {
					font-size: 1.25em;
				}

/* Contact */

	ul.contact {
		list-style: none;
		padding: 0;
	}

		ul.contact li {
			text-decoration: none;
			border-top: solid 1px rgba(210, 215, 217, 0.75);
			margin: 1.5em 0 0 0;
			padding: 1.5em 0 0 3em;
			position: relative;
		}

			ul.contact li:before {
				-moz-osx-font-smoothing: grayscale;
				-webkit-font-smoothing: antialiased;
				display: inline-block;
				font-style: normal;
				font-variant: normal;
				text-rendering: auto;
				line-height: 1;
				text-transform: none !important;
				font-family: 'Font Awesome 5 Free';
				font-weight: 400;
			}

			ul.contact li:before {
				color: var(--primary-color);
				display: inline-block;
				font-size: 1.5em;
				height: 1.125em;
				left: 0;
				line-height: 1.125em;
				position: absolute;
				text-align: center;
				top: 1em;
				width: 1.5em;
			}

			ul.contact li:first-child {
				border-top: 0;
				margin-top: 0;
				padding-top: 0;
			}

				ul.contact li:first-child:before {
					top: 0;
				}

			ul.contact li a {
				color: inherit;
			}
/* Table */

	table {
		margin: 0 0 2em 0;
		width: 100%;
	}

		table tbody tr {
			border: solid 1px rgba(210, 215, 217, 0.75);
			border-left: 0;
			border-right: 0;
		}

		table td {
			padding: 0.1em 0.1em;
		}
		
		table td.upright {
			writing-mode:vertical-rl;
			vertical-align:middle;
			text-align:center
		}	

		table th {
			color: black;
			font-size: 0.9em;
			font-weight: 600;
			padding: 0;
			text-align: left;
		}

		table thead {
			border-bottom: solid 2px rgba(210, 215, 217, 0.75);
		}
		
			table thead.alt th {
				border: solid 1px rgba(210, 215, 217, 0.75);
				padding: 0;
			}
		
			table thead.sticky th {
				position: sticky;
				top: 0;
				background: white;
				box-shadow: 0 0 5px silver;
				padding: 0em;
			}

		table tfoot {
			border-top: solid 2px rgba(210, 215, 217, 0.75);
		}

		table.alt {
			border-collapse: collapse;
		}

			table.alt tbody tr td {
				border: solid 1px black;
			}

			table.alt thead {
				border-bottom: 0;
				z-index:10;
				position:relative
			}

			table.alt tfoot {
				border-top: 0;
			}
		
		table.center td,
		table.center th {
			text-align:center
		}
		
		table.naehrstofftabelle {
			margin-bottom:4em
		}
			table.naehrstofftabelle tbody tr {
				border: none;
			}

			table.naehrstofftabelle td {
				white-space: nowrap;
				overflow-x: clip;
				max-width: 140px;
				-webkit-overflow-scrolling: touch; 
			}
			
				table#deine-berechnung td {
					width:20%
				}
			
				table.naehrstofftabelle tfoot td {
					font-weight:bold
				}
							
/* Button */

	input[type="submit"],
	input[type="reset"],
	input[type="button"],
	button,
	.button {
		display:none
	}
	
		button[value="changeQuantity"] {
			display:inline;
			background: white;
			border: none;
			font:inherit;
		}
	
/* Features */

	.features {
		display: flex;
		flex-wrap: wrap;
		margin: 0 0 2em -3em;
		width: calc(100% + 3em);
		align-items: flex-start;
	}
		.features article {
			align-items: flex-start;
			display: flex;
			margin: 0 0 3em 3em;
			position: relative;
			width: (100% - 3em);
		}


			.features article .icon {
				flex-grow: 0;
				flex-shrink: 0;
				display: block;
				height: 10em;
				line-height: 10em;
				margin: 0 2em 0 0;
				text-align: center;
				width: 10em;
				position:relative
			}

				.features article .icon:before {
					color: var(--primary-color);
					font-size: 2.75rem;
					position: relative;
					top: 0.05em;
				}

				.features article .icon:after {
					transform: rotate(45deg);
					border-radius: 0.25rem;
					border: solid 2px rgba(210, 215, 217, 0.75);
					content: '';
					display: block;
					height: 7em;
					left: 50%;
					margin: -3.5em 0 0 -3.5em;
					position: absolute;
					top: 50%;
					width: 7em;
				}

			.features article .content {
				flex-grow: 1;
				flex-shrink: 1;
				width: 100%;
			}

				.features article .content > :last-child {
					margin-bottom: 0;
				}

/* Posts */

	.posts {
		display: flex;
		flex-wrap: wrap;
		margin: 0 0 2em -6em;
		width: calc(100% + 6em);
	}

		.posts article {
			flex-grow: 0;
			flex-shrink: 1;
			margin: 0 0 6em 6em;
			position: relative;
			width: 100%;
		}


			.posts article > :last-child {
				margin-bottom: 0;
			}

			.posts article .image {
				display: none;
				margin: 0 0 2em 0;
			}

				.posts article .image img {
					display: none;
					width: 100%;
				}

/* Wrapper */

	#wrapper {
		display: flex;
		flex-direction: row-reverse;
		min-height: 100vh;
	}

/* Main */

	#main {
		flex-grow: 1;
		flex-shrink: 1;
		width: 100%;
	}

		#main > .inner {
			padding: 0 6em 0.1em 6em ;
			margin: 0 auto;
			max-width: 110em;
		}

	
/* Sidebar */

	#sidebar {
		display:none
	}
	
/* Header */

	#header {
		display: flex;
		border-bottom: solid 5px var(--primary-color);
		padding: 6em 0 1em 0;
		position: relative;
	}

		#header > * {
			flex: 1;
			margin-bottom: 0;
		}

		#header .logo {
			border-bottom: 0;
			color: inherit;
			font-family: "Roboto Slab", serif;
			font-size: 1.125em;
		}

		#header .icons {
			text-align: right;
		}

/* Banner */

	#banner {
		padding: 6em 0 4em 0 ;
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
	}

		#banner h1 {
			margin-top: -0.125em;
		}

		#banner .content {
			-moz-flex-grow: 1;
			-webkit-flex-grow: 1;
			-ms-flex-grow: 1;
			flex-grow: 1;
			-moz-flex-shrink: 1;
			-webkit-flex-shrink: 1;
			-ms-flex-shrink: 1;
			flex-shrink: 1;
			width: 50%;
		}

		#banner .image {
			-moz-flex-grow: 0;
			-webkit-flex-grow: 0;
			-ms-flex-grow: 0;
			flex-grow: 0;
			-moz-flex-shrink: 0;
			-webkit-flex-shrink: 0;
			-ms-flex-shrink: 0;
			flex-shrink: 0;
			display: block;
			margin: 0 0 2em 4em;
			width: 50%;
		}

			#banner .image img {
				height: 100%;
				object-fit: cover;
				object-position: center;
				width: 100%;
			}

/* Footer */

	#footer .copyright {
		color: #9fa3a6;
		font-size: 0.9em;
	}

		#footer .copyright a {
			color: inherit;
		}

/* Menu */

	#menu ul {
		-moz-user-select: none;
		-webkit-user-select: none;
		-ms-user-select: none;
		user-select: none;
		color: #3d4449;
		font-family: "Roboto Slab", serif;
		font-weight: 400;
		letter-spacing: 0.075em;
		list-style: none;
		margin-bottom: 0;
		padding: 0;
		text-transform: uppercase;
	}

		#menu ul a, #menu ul span {
			border-bottom: 0;
			color: inherit;
			cursor: pointer;
			display: block;
			font-size: 0.9em;
			padding: 0.625em 0;
		}


			#menu ul a.opener, #menu ul span.opener {
				transition: color 0.2s ease-in-out;
				text-decoration: none;
				-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
				position: relative;
			}

				#menu ul a.opener:before, #menu ul span.opener:before {
					-moz-osx-font-smoothing: grayscale;
					-webkit-font-smoothing: antialiased;
					display: inline-block;
					font-style: normal;
					font-variant: normal;
					text-rendering: auto;
					line-height: 1;
					text-transform: none !important;
					font-family: 'Font Awesome 5 Free';
					font-weight: 900;
				}

				#menu ul a.opener:before, #menu ul span.opener:before {
					-moz-transition: color 0.2s ease-in-out, -moz-transform 0.2s ease-in-out;
					-webkit-transition: color 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
					-ms-transition: color 0.2s ease-in-out, -ms-transform 0.2s ease-in-out;
					transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
					color: #9fa3a6;
					content: '\f078';
					position: absolute;
					right: 0;
				}


				#menu ul a.opener.active + ul, #menu ul span.opener.active + ul {
					display: block;
				}

				#menu ul a.opener.active:before, #menu ul span.opener.active:before {
					-moz-transform: rotate(-180deg);
					-webkit-transform: rotate(-180deg);
					-ms-transform: rotate(-180deg);
					transform: rotate(-180deg);
				}

	#menu > ul > li {
		border-top: solid 1px rgba(210, 215, 217, 0.75);
		margin: 0.5em 0 0 0;
		padding: 0.5em 0 0 0;
	}

		#menu > ul > li > ul {
			color: #9fa3a6;
			display: none;
			margin: 0.5em 0 1.5em 0;
			padding-left: 1em;
		}

			#menu > ul > li > ul a, #menu > ul > li > ul span {
				font-size: 0.8em;
			}

			#menu > ul > li > ul > li {
				margin: 0.125em 0 0 0;
				padding: 0.125em 0 0 0;
			}

		#menu > ul > li:first-child {
			border-top: 0;
			margin-top: 0;
			padding-top: 0;
		}
		
.features article .number {
	flex-grow: 0;
	flex-shrink: 0;
	display: block;
	margin: 0 0.1em 0 0;
	text-align: center;
	font-size:10em;
	font-family: 'Itim', cursive;
	color:var(--primary-color);
	border:2px solid #ddd;
	border-radius:50%;
	line-height:1em;
	width:1em
}		

.flex {
	display:flex
}

span[data-unit] > input {
	width: calc(100% - var(--unit-width));
	display: inline-block;
	border-right: none;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	white-space:nowrap;
}	
	span[data-unit]::after {
		content: attr(data-unit);
		font-family: Arial,sans-serif !important;
		font-size: 0.75em;
		letter-spacing: -1px;
		background: #ddd;
		color: #666;
		height: 3.65em;
		line-height: 3.65em;
		display: inline-block;
		vertical-align: bottom;
		width: calc(var(--unit-width) + 1.7em);
		text-align: center;
		padding: 0 0.5em;
		border: solid 1px rgba(210, 215, 217, 0.75);
		border-radius: 0.375em;
		border-top-left-radius: 0;
		border-bottom-left-radius: 0;
		overflow:hidden
	}
	span.unit-big[data-unit] > input {
		width: calc(98% - var(--unit-width-big));
	}	
		span.unit-big[data-unit]::after {
			width: var(--unit-width-big);
		}


figure.rechner,
details.rechner {
	background:#eee;
	padding:1em;
	background: linear-gradient(135deg,  rgba(229,229,229,1) 0%,rgba(255,255,255,1) 100%);
	box-shadow: 0px 0px 5px silver;
	margin-bottom:4em
}

	
figure.zusatzinformation {
	float: left;
	max-width: 200px !important;
	font-size: 12px;
	line-height: 1.5;
	margin: 0.75em 1em 0 0;
	box-shadow: 0 0 2px silver;
	padding: 1em;
}

.alert {
	padding: .75rem 1.25rem;
	margin: 1rem 0;
	border: 1px solid transparent;
	border-radius: .25rem;
	box-shadow: 0 0 5px silver;	
}
.alert-danger {
	color: #721c24;
	background-color: #f8d7da !important;
	border-color: #f5c6cb;
}
.alert-warning {
	color: #856404;
	background-color: #fff3cd !important;
	border-color: #ffeeba;
}
.alert-success {
	color: #155724;
	background-color: #d4edda !important;
	border-color: #c3e6cb;
}

	.warning4 {
		color: rgba(255,0,0,1);
	   border: 3px solid rgba(255,0,0,1);
	   background: rgba(255,0,0,0.25)
	}

	.warning3 {
		color: rgba(255,85,85,1);
	   border: 3px solid rgba(255,85,85,1);
	   background: rgba(255,85,85,0.25)
	}
	.warning2 {
		color: rgba(255,170,170,1);
	   border: 3px solid rgba(255,170,170,1);
	   background: rgba(255,170,170,0.25)
	}
	.warning1 {
		color: orange;
	   border: 3px solid orange;
	   background: rgba(255,193,132,0.25)
	}

form.steadylogin {
	margin:0
}

	form.steadylogin > button {
		background:#7F888F;
		border:none;
		box-shadow:none;
		padding:0;
		height:2.5em;
		line-height:initial;
		border-radius:0
	}
		form.steadylogin > button > img{
			margin:0;
			display:block
		}
		

.pie {
	display: block;
	width:100%;
	max-width:150px;
	height: 100%;
	border-radius: 50%;
	margin: auto;
	box-shadow: 0px 0px 10px #666;
}

.pielegend {
	display:inline-block;
	width:1em;
	height:1em
}
.pielegends {
	font-size:0.8em;
	line-height:13px
}

	.fettcol {background-color:#3366CC}
	.khcol {background-color:#DC3912}
	.eiweisscol {background-color:#FF9900}
	.zbcol {background-color:#109618}
	.zacol {background-color:#D801f7}
	.zocol {background-color:#FFEC85}
	
.close-dialog {
	position:absolute;
	top:1em;
	right:1em
}

kbd {
	font-family: "Courier New", Courier, monospace;
	background: #eee;
	padding: 0.25em;
	border: 1px #666 solid;
	border-radius: 5px;
	font-size: 0.8em;
	vertical-align: text-top;
}

summary {
	font-weight: unset;
	color: #3d4449;
	font-family: "Roboto Slab", serif;
	font-weight: 700;
	font-size: 1.5em;
}
	details[open] summary {
		margin-bottom: 1em;
	}
	
		details[open] > summary.hideopen { 
			display:none
		}
	
nav .deine-berechnung > a::after {
	background: red;
	color: white;
	font-family: Verdana,Arial,sans-serif;
	width: 1.5em;
	height: 1.5em;
	line-height: 1.5em;
	text-align: center;
	font-size: 0.8em;
	border-radius: 1em;
	display: inline-block;
	vertical-align: top;
}


dialog {
	width:736px
}

cite {
	font-style: italic;
	margin-bottom: 1em;
	display: inline-block;
	font-size:0.9em;
	color: var(--font-light-color) !important;
}
	
	cite a {
		color: var(--font-light-color) !important;
		text-decoration:none
	}
	
caption {
	caption-side: bottom;
	font-size: 0.75em;
	margin-top: 1em;
}	
.td-active {
	border:3px solid blue !important;
	background:lavender !important
}

.formel {
	box-shadow: 0 0 10px silver;
	padding: 1em 1em 2em 1em;
	margin: 0 0 2em 0;
	position: relative;
	font-size: 1.1em;
	transition: .5s all;
	z-index: 100;
	background: floralwhite;
}

	.formel figcaption {
		font-size: 0.5em;
		position: absolute;
		right: 1em;
		bottom: 1em;
	}	
	
details#katchmcardle,
details#details {
	margin-top:1em
}

details.box {
	background: #ffffff91;
}

	details[open].box {
		box-shadow:0 0 10px silver
	}
		
	

aside {
	width: calc(100vW - var(--article-width) - 22em);
	max-width: 800px;
	float: right;
	margin-left: 2em;
}
	aside > img {
		width: 100%;
		height: auto;
		border-radius: 10px;
		margin-bottom:2em
	}
	

.herstellerlink {
	font-size:0.75em
}

.ampel {
	margin-bottom: 0;
	text-align: center;
	color: #444;
	height: 3.7em;
	font-size: 0.75em;
}

	.ampel td {
		padding:5px;
		vertical-align:middle
	}

.showMobile {
	display:none
}

figure, 
aside,
#header, 
#sidebar, 
.noprint, 
.actions, 
.adsbygoogle,
table#naehrstoffsummen tr td:nth-child(4),
#taboolafeed,
.prefOpen
{
	display: none !important
}

#main > .inner {
	padding: 0;
	margin: 1cm;
	max-width: none;
}

a { color: black !important}

table#deine-berechnung tr:nth-child(odd) td {
	text-align:left !important
}
table#naehrstoffsummen td:nth-child(1) {
	text-align:left !important
}
meter {
	display:none
}
.maincontent {
	width:100vW !important
}

select {
	border:none;
	background:none
}