@charset "utf-8";

header,
nav,
main,
aside,
footer,
figure,
figcaption {
	display: block;
	}

@media screen {

@supports (font: var(--name)) and (grid: auto / 1fr) {

@font-face {
	font-family: 'Source Sans Pro';
	src: url('/css/font-face/source-sans-pro-regular.woff2') format('woff2'),
		url('/css/font-face/source-sans-pro-regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
	}

@font-face {
	font-family: 'Source Sans Pro';
	src: url('/css/font-face/source-sans-pro-italic.woff2') format('woff2'),
		url('/css/font-face/source-sans-pro-italic.woff') format('woff');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
	}

@font-face {
	font-family: 'Source Sans Pro';
	src: url('/css/font-face/source-sans-pro-semibold.woff2') format('woff2'),
		url('/css/font-face/source-sans-pro-semibold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
	}

:root {
	--dist-lr: 15px;

	--logo-blue: #3e71b2;
	--logo-green: #94ba10;

	--standard-trans: .35s;
	}

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	border: none;
	color: inherit;
	font: inherit;
	vertical-align: baseline;
	text-align: inherit;
	box-sizing: border-box;
	}

html {
	background: #fff;
	font-size: 100%; /* Initialisierung */
	overflow-y: scroll;
	-ms-text-size-adjust: none;
	-moz-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
	}

html::before {
	display: none !important; /* Meldung für veraltete Browser ausblenden */
	}

body {
	background: #fff;
	font: 400 1.2rem/1.4 'Source Sans Pro', sans-serif;
	color: rgb(50, 50, 50);
	}

main,
footer {
	-ms-hyphens: auto;
	-moz-hyphens: auto;
	-webkit-hyphens: auto;
	hyphens: auto;
	word-wrap: break-word; /* ältere Browser, vor allem IE */
	word-break: break-word; /* ältere Webkits */
	overflow-wrap: break-word; /* neuere Browser */
	overflow-wrap: anywhere; /* moderne Browser */
	}

ul,
ol {
	list-style: none;
	}

h1,
h2 {
	line-height: 1.2;
	font-weight: 600;
	}

h1 {
	font-size: 1.8em;
	padding-bottom: .1em;
	}

h2 {
	color: var(--logo-green);
	font-size: 1.3em;
	padding-bottom: 1em;
	}

main ul:not([id]):not([class]) li,
main dl:not([id]):not([class]) dd {
	position: relative;
	padding-left: 15px;
	}

main ul:not([id]):not([class]) li::before,
main dl:not([id]):not([class]) dd::before {
	content: "";
	position: absolute;
	left: 0;
	top: .5em;
	width: .4em;
	height: .4em;
	background: linear-gradient(#E0F78C, #6A840D);
	border-radius: 100%;
	}

a {
	text-decoration: none;
	}

main a,
footer a {
	color: var(--logo-blue);
	text-decoration: underline;
	}

main a:hover,
footer a:hover {
	text-decoration: none;
	}

main p,
main ul,
main dl,
main address {
	padding-bottom: 1.2em;
	}

table {
	margin-bottom: 1.2em;
	}

main strong,
dt {
	font-weight: 600;
	}

main dd {
	padding-left: 20px;
	}

main dd + dt {
	padding-top: 1.2em;
	}

img {
	display: block;
	height: auto;
	max-width: 100%;
	}

table {
	background: #EFF4F7;
	/*border-collapse: collapse;*/
	border-collapse: separate;
	border-spacing: 0;
	border: 1px solid rgb(100, 100, 100);
	border-radius: 8px;
	}

th,
td {
	vertical-align: top;
	padding: 15px 10px;
	}

th + th,
td + td {
	border-left: 1px solid rgb(100, 100, 100);
	}

td {
	border-top: 1px solid rgb(100, 100, 100);
	}

/* font-boosting in Chrome verhindern - leider immer noch (2022) ein Thema.
	Interessanterweise hilft bei Text in einfachen Listen nicht max-height
	für <li>, sondern nur für <ul>. */

p, ul, dl, address,
h1, h2, h3, h4, h5, h6,
header, nav, footer,
table, tr, th, td {
	max-height: 9999em;
	}

/* ============================================================ */
/* zentrale Elemente */

header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 5;
	}

div#header-elements {
	position: relative;
	background: #fff;
	transition: padding-top .35s;
	}

strong#logo,
strong#logo * {
	display: block;
	}

strong#logo {
	position: relative;
	z-index: 2;
	transition: width .35s, margin-bottom .35s;
	}

strong#logo img {
	width: auto;
	}

main {
	min-height: 700px;
	padding-left: var(--dist-lr);
	padding-right: var(--dist-lr);
	}

footer {
	text-align: center;
	padding: 15px var(--dist-lr);
	}

/* ============================================================ */
/* Navigation */

nav#navigation {
	line-height: 1.2;
	text-align: center;
	}

nav#navigation a,
nav#navigation li > strong {
	display: block;
	color: var(--logo-blue);
	}

nav#navigation li:nth-child(7) a,
nav#navigation li:nth-child(7) > strong {
	background: var(--logo-green);
	color: #fff;
	}

/* ============================================================ */
/* Startseite */


/* ============================================================ */
/* weitere Formatierungen */

html#seite-preise main dl {
	display: grid;
	grid: auto / 1fr 7em;
	max-width: 700px;
	border-bottom: 1px solid #c0c0c0;
	margin-bottom: 2em;
	padding-bottom: .6em;
	}

html#seite-preise main dt,
html#seite-preise main dt {
	min-width: 0;
	}

html#seite-preise main dl dt {
	grid-column: 1;
	}

html#seite-preise main dl dd + dt,
html#seite-preise main dl dd + dt + dd {
	border-top: 1px solid #c0c0c0;
	margin-top: .6em;
	padding-top: .6em;
	}

html#seite-preise main dl dt + dd {
	grid-column: 2;
	grid-row: span 2;
	padding: 0 0 0 10px;
	}

html#seite-preise main dl dt + dd + dd {
	grid-column: 1;
	font-size: .9em;
	font-style: italic;
	padding-left: 20px;
	padding-right: 20px;
	}

/* ============================================================ */
/* Produktseiten */

html#seite-unser-shop ul#produktliste {
	display: grid;
	grid: auto / repeat(auto-fill, minmax(230px, 1fr));
	grid-gap: 40px;
	gap: 40px;
	margin: 20px 0 50px;
	padding: 0;
	}

html#seite-unser-shop ul#produktliste li {
	min-width: 0;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .2);
	border: 2px solid #fff;
	border-radius: 8px;
	}

html#seite-unser-shop ul#produktliste li * {
	display: block;
	}

html#seite-unser-shop ul#produktliste a,
html#seite-unser-shop ul#produktliste h2 {
	color: inherit;
	}

html#seite-unser-shop ul#produktliste a {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	}

html#seite-unser-shop ul#produktliste a figure,
html#seite-unser-shop ul#produktliste a figure img {
	border-radius: 6px 6px 0 0;
	}

html#seite-unser-shop ul#produktliste a figure {
	order: -1;
	}

html#seite-unser-shop ul#produktliste a h2 {
	font-size: 1.1em;
	padding: .4em 10px .25em;
	}

html#seite-unser-shop ul#produktliste a p {
	font-size: .9em;
	padding: 0 10px 10px;
	}

html#seite-unser-shop ul#produktliste a strong {
	font-size: 1.222em;
	}

html#seite-einzel-produkt h1 {
	padding-bottom: 30px;
	}

html#seite-einzel-produkt div#foto-preis {
	max-width: 360px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .2);
	border: 2px solid #fff;
	border-radius: 8px;
	margin-bottom: 30px;
	}

html#seite-einzel-produkt div#foto-preis figure,
html#seite-einzel-produkt div#foto-preis figure img {
	border-radius: 6px 6px 0 0;
	}

html#seite-einzel-produkt div#foto-preis p {
	padding: 5px 10px 10px;
	}

html#seite-einzel-produkt div#foto-preis p strong {
	display: block;
	font-size: 1.2em;
	}

/* ============================================================ */
/* Clearfix */

div#inhalt::after {
	content: "";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
	font-size: 0;
	overflow: hidden;
	}

/* ============================================================ */
/* Layout in Abhängigkeit von der Viewport-Breite */

@media (min-width: 500px) {

html#seite-einzel-produkt div#foto-preis {
	float: right;
	width: 50%;
	margin: 0 0 30px 30px;
	padding: 0;
	}

}

@media (min-width: 768px) {

:root {
	--dist-lr: 25px;
	}

}

@media (min-width: 1024px) {

:root {
	--dist-lr: 40px;
	}

}

@media (min-width: 1200px) {

:root {
	--dist-lr: 55px;
	}

}

@media (min-width: 1280px) {

html {
	background: #c0c0c0;
	}

body,
div#header-elements {
	max-width: 1200px;
	margin: 0 auto;
	}

body {
	box-shadow: 0 3px 15px rgba(0, 0, 0, .2);
	}

}


/* ============================================================ */
/* mobile Navigation */

@media not screen and (min-width: 61em) {

strong#logo {
	width: 230px;
	margin-left: calc(var(--dist-lr) - 5px);
	}

html.scrolled strong#logo {
	width: 120px;
	}

div#header-elements {
	box-shadow: 0 3px 15px rgba(0, 0, 0, .2);
	padding: 10px 0;
	}

html.scrolled div#header-elements {
	padding-top: 5px;
	}

nav#navigation a,
nav#navigation > ul > li > strong {
	padding: 10px 0;
	}

main {
	padding-top: 145px;
	}

/* fixiertes Menü öffnet per Klick */

nav#navigation > b:first-child {
	position: absolute;
	top: 30px;
	right: var(--dist-lr);
	z-index: 2;
	width: 34px;
	height: 34px;
	cursor: pointer;
	transition: top .35s;
	}

html.scrolled nav#navigation > b:first-child {
	top: 12px;
	}

nav#navigation > b:first-child b,
nav#navigation > b:first-child b::before,
nav#navigation > b:first-child b::after {
	position: absolute;
	width: 24px;
	height: 2px;
	background: #000;
	transition: all .5s;
	}

nav#navigation > b:first-child b {
	top: 50%;
	left: 5px;
	}

nav#navigation > b:first-child b::before,
nav#navigation > b:first-child b::after {
	content: "";
	left: 0;
	}

nav#navigation > b:first-child b::before {
	top: -8px;
	}

nav#navigation > b:first-child b::after {
	top: 8px;
	}

html.mobile-nav nav#navigation > b:first-child b {
	background: transparent;
	}

html.mobile-nav nav#navigation > b:first-child b::before,
html.mobile-nav nav#navigation > b:first-child b::after {
	top: 0;
	}

html.mobile-nav nav#navigation > b:first-child b::before {
	transform: rotate(45deg);
	}

html.mobile-nav nav#navigation > b:first-child b::after {
	transform: rotate(-45deg);
	}

/* Menü geschlossen/geöffnet */

nav#navigation > ul {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1;
	bottom: calc(100% - 110px);
	background: #fff;
	opacity: 0;
	border-style: solid;
	border-color: #fff;
	border-top-width: 110px;
	border-bottom-width: 0;
	overflow-y: scroll;
	transition: top var(--standard-trans), border-top-width var(--standard-trans), bottom var(--standard-trans), border-bottom-width 0s, opacity var(--standard-trans);
	}

html.mobile-nav nav#navigation > ul {
	border-bottom-width: 400px;
	bottom: -400px !important;
	opacity: 1;
	transition: top var(--standard-trans), border-top-width var(--standard-trans), bottom var(--standard-trans), border-bottom-width 0s var(--standard-trans), opacity var(--standard-trans);
	}

}

/* ============================================================ */
/* Desktop-Navigation */

@media (min-width: 61em) {

:root {
	}

div#header-elements {
	padding-top: 10px;
	}

html.scrolled div#header-elements {
	padding-top: 5px;
	}

strong#logo {
	width: 350px;
	margin-left: calc(var(--dist-lr) - 5px);
	margin-bottom: 20px;
	}

html.scrolled strong#logo {
	width: 180px;
	margin-bottom: 5px;
	}

nav#navigation > b:first-child {
	display: none;
	}

nav#navigation > ul {
	display: flex;
	background: rgb(240, 240, 240);
	background: #EFF4F7;
	border-top: 2px solid #fff;
	border-bottom: 2px solid #fff;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .2);
	}

nav#navigation > ul > li {
	display: flex;
	flex: 1 1 0;
	/*width: min-content;
	min-width: 0;*/
	}

nav#navigation > ul > li:nth-child(2) {
	/*min-width: 6em;*/
	}

nav#navigation > ul > li:nth-child(2) span {
	white-space: nowrap;
	}

nav#navigation > ul > li + li {
	border-left: 2px solid #fff;
	}

nav#navigation > ul > li > * {
	flex: 1 1 auto;
	color: var(--logo-blue);
	padding: 8px 5px;
	transition: padding-top .35s, padding-bottom .35s;
	}

html.scrolled nav#navigation > ul > li > * {
	padding-top: 2px;
	padding-bottom: 2px;
	}

main {
	padding-top: calc(180px + 4em);
	}

}

}

/* ============================================================ */
/* veraltete Browser zeigen Hinweis */

html {
	font-family: sans-serif;
	}

html::before {
	content: "Ihr Browser wird nicht mehr unterstützt. Die Website wird daher in einem stark vereinfachten Design angezeigt.";
	display: block;
	max-width: 27em;
	background: rgb(247, 247, 247);
	color: #000;
	font: 100%/1.2 sans-serif;
	border: 2px solid orange;
	margin: 12px 8px 25px;
	padding: 10px;
	border-radius: 10px;
	}

}

/* ============================================================ */
/* Drucken */

@media print {

* {
	background: none !important;
	color: rgb(50, 50, 50) !important;
	font-family: Arial, sans-serif !important;
	font-style: normal !important;
	border: none !important;
	}

li,
img {
	page-break-inside: avoid !important;
	}

img {
	height: auto !important;
	width: auto !important;
	max-width: 50% !important;
	}

nav#site-navigation,
footer {
	display: none !important;
	}

}
