@charset "utf-8";

/*********
Allgemein
*********/
* {
	font-family: 'HelveticaNeueLTPro-LtCn', Helvetica, Arial, sans-serif;
}

html {
	height: 100%;
}

a:link,
a:visited,
a:hover,
a:active {
	outline: 0;
}

/*********
Allgemeine Responsive Klassen für Geräte
*********/
/* Desktop */
@media 
only screen and (min-width : 880px) {
	.desktop-off, 
	.tablet-on,
	.phone-on {
		display: none;
	}
	.desktop-on, 
	.tablet-off, 
	.phone-off {
		display: block;
	}
}
/* Tablets */
@media 
only screen and (min-width : 660px) and (max-width : 879px) {
	.tablet-off,
	.desktop-on, 
	.phone-on {
		display: none;
	}
	.tablet-on,
	.desktop-off, 
	.phone-off {
		display: block;
	}
}
/* Mobile */
@media 
only screen and (min-width : 220px) and (max-width : 659px) {
	.phone-off,
	.desktop-on, 
	.tablet-on
	 {
		display: none;
	}
	.phone-on, 
	.desktop-off, 
	.tablet-off {
		display: block;
	}
}

/*********
Allgemeine Content Styles
*********/
h1, h2, h3, p {
	margin: 0;
	padding: 0;
}

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

h1 {
	font-family: 'HelveticaNeueLTPro-ThCn';
	font-size: 3.75rem;
	line-height: 3.75rem;
	font-weight: normal;
	text-transform: uppercase;
	color: #000;
	margin-bottom: 30px;
}

h1 span {
	font-family: 'HelveticaNeueLTPro-MdCn';
	display: block;
}

h2 {
	font-family: 'HelveticaNeueLTPro-MdCn';
	font-size: 1.6rem; /* 30px 32/16 = 2 */
	font-weight: normal; 
	text-transform: uppercase;
	color: #000;
	margin-bottom: 15px;
	margin-top: 50px;
}

h3 {
	font-size: 1.15rem; /* 20px 20/16 = 1.25 */
	text-transform: uppercase;
	color: #000;
	margin-bottom: 10px;
	margin-top: 30px;
}

h2:first-child, 
h3:first-child {
	margin-top: 0;	
} 

p {
	font-size: 1.1rem;
	line-height: 1.6rem;
	margin-bottom: 15px;
}

p:last-child {
	margin-bottom: 0;
}

p.lead {
	font-size: 1.25rem;
	font-weight: 700;
}

li {
	font-size: 1.1rem;
}

.small {
	font-size: 0.9rem;
}

.hinweis {
	padding: 20px;
	background: #0f5043;
	color: #fff;
}

.hinweis a {
	color: #fff;
}
.hinweis a:hover {
	color: rgba(255,255,255,0.7);
	text-decoration: underline;
}

@media 
only screen and (min-width : 660px) and (max-width : 879px) {
	h1 {
		font-size: 2.75rem;
		line-height: 2.75rem;
	}
	h2 {
		font-size: 1.5rem;
	}
	h3 {
		font-size: 1.1rem;
	}
	p, 
	li {
		font-size: 1rem;
		line-height: 1.5rem;
	}
	p.lead {
		font-size: 1.1rem;
	}
}
@media 
only screen and (min-width : 220px) and (max-width : 659px) {
	h1 {
		font-size: 2rem;
		line-height: 2.25rem;
	}
	h2 {
		font-size: 1.3rem;
	}
	h3 {
		font-size: 1rem;
	}
	p, 
	li {
		font-size: 0.9rem;
		line-height: 1.4rem;
	}
	p.lead {
		font-size: 1rem;
	}
}

img {
	border: 0;
}

img.full {
	width: 100%;
	height: auto;
	display: block;
}

img.half {
	width: 50%;
	height: auto;
	display: block;
}

.img-right {
	float: right;
	margin-left: 15px;
	margin-bottom: 15px;
}

.img-left {
	float: left;
	margin-right: 15px;
	margin-bottom: 15px;
}

@media 
only screen and (min-width : 220px) and (max-width : 659px) {
	.img-right {
		float: none;
		display: block;
		width: 100%;
		margin-left: 0px;
	}
	.img-left {
		float: none;
		display: block;
		width: 100%;
		margin-right: 0px;
	}
}

ul, ol {
	padding: 0;
	margin: 0;
	margin-bottom: 15px;
} 

li {
	padding-bottom: 10px;
	padding-left: 8px;
	margin-left: 20px;
	list-style-type: disc;
}

ol li {
	list-style-type: decimal;
}

address {
	font-style: normal;
}

.halfbox {
	width: 48%;
	margin-right: 4%;
	float: left;
}

.halfbox.last-child {
	margin-right: 0;
}

.downloadlist li {
	background: left top url(../img/layout/icon-download.svg) no-repeat;
	background-size: 15px auto;
	list-style-type: none;
	margin-left: 0px;
	padding-left: 25px;
}

/*Links*/
a {
	color: #000;
	text-decoration: underline;
}

a:hover {
	color: #333;
	text-decoration: none;
}

/* Buttons */
.btn a,
input[type=submit].btn {
	font-size: 1.1rem;
	line-height: 1.6rem;
	display: block;
	padding: 15px;
	background: #000;
	color: #fff;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}

input[type=submit].btn[disabled] {
	/*background: #333;*/
	background: #b2b2b2;
	border: none;
}

input[type=submit].btn[disabled]:hover {
	background: #b2b2b2;
}

.btn a:hover,
input[type=submit].btn:hover {
	background: #333;
}

.btn.inline a {
	display: inline-block;
}

.btn.inline.right {
	text-align: right;
}

.btn.wk a {
	background-image: url(../img/layout/icon-warenkorb-weiss.svg);
	background-position: 25px 18px;
    background-repeat: no-repeat;
    background-size: auto 35px;
    padding: 25px;
	padding-left: 75px;
    text-align: left;
	font-size: 1.25rem;
	font-family: 'HelveticaNeueLTPro-MdCn';
}

/* Teaserbox */
.teaser-box {
	background: #242b2d no-repeat;
	background-image: url(../img/layout/icon-anlaesse-weiss.svg);
	background-position: 20px 20px;
	background-size: auto 50px;
}
.teaser-box.kurse {
	background-color: #000;
}
.teaser-box.kurse, 
.kurse .teaser-box {
	background-image: url(../img/layout/icon-kurse-weiss.svg);
}
.teaser-box.rezepte {
	background-image: url(../img/layout/icon-rezept-weiss.svg);
}
.teaser-box.news {
	background-image: url(../img/layout/icon-news-weiss.svg);
}
.teaser-box.spezielles-aktionen {
	background-image: url(../img/layout/icon-speziell-weiss.svg);
}
.teaser-box.produkte {
	background-image: url(../img/layout/icon-produkte-weiss.svg);
}

.teaser-box a {
	text-decoration: none;
	display: block;
	padding: 20px;
}

.teaser-box p, 
.teaser-box h2 {
	color: rgba(255,255,255,0.7);
	margin: 0;
	padding: 0;
}

.teaser-box p.date, 
.teaser-box h2 {
	margin-left: 65px;
}

.teaser-box p.date {
	text-transform: uppercase;
}

.teaser-box h2 {
	margin-bottom: 5px;
}

.teaser-box .btn {
	background: #000;
	padding: 10px;
	text-align: center;
	text-transform: uppercase;
	color: rgba(255,255,255,1);
	margin-top: 2px;
}
.teaser-box.kurse .btn {
	background: #242b2d;
	background: #0f5043;
}

/*Newsletter PopUp*/
.ui-dialog {
	padding: 0;
	border: 0px;
	padding: 0 20px 20px 20px; 
	background: #242b2d;
}
.ui-dialog-titlebar {
	background: #242b2d;
	border-radius: 0;
	border: 0px;
	
}
.ui-dialog .ui-dialog-titlebar {
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 0;
	padding-right: 0;
}
.ui-dialog .ui-dialog-title {
	color: #fff;
	/*font-family: 'StymieBT-ExtraBoldCondensed';*/
	font-family: 'OPTIStymie-MediumCond';
	text-transform: uppercase;
	margin: 0;
	
	font-weight: normal;
	font-size: 1.6rem;
}
.ui-dialog .ui-button {
	background: none;
	border: 0;
}
.ui-dialog.ui-widget-content {
	border: 0px;
	background: #242b2d;
}
.ui-dialog .ui-dialog-content {
	border: none;
		/*background-image: url(../img/layout/white-paper-bg.png);*/
	background: #242b2d; /*vorher #0f5043*/
	padding: 0rem; /*vorher 1rem*/
}
.ui-dialog .ui-dialog-content p {
	margin-bottom: 1rem;
}
.ui-dialog .ui-dialog-content h2,
.ui-dialog .ui-dialog-content p {
	font-size: 1.1rem;
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br {
	border-radius: 0;
}

.ui-widget {
	font-family: 'StymieBT-ExtraBoldCondensed';
}

.ui-widget.ui-widget-content {
	border-top: 0;
}

.ui-menu .ui-menu-item {
	padding: 0;
	list-style-type: none;
	font-size: 0.75rem;
	line-height: 0;
}

.ui-menu .ui-menu-item-wrapper {
	display: grid;
	grid-template-columns: 20% auto 105px;
	align-items: center;
	column-gap: 10px;
	padding: 0;
	padding-right: 10px;
}

.ui-menu-item:last-child .ui-menu-item-wrapper {
	border: 0;
}

.ui-menu-item img {
	width: 100%;
	border: 6px solid #ffffff;
	box-sizing: border-box;
}

.ui-menu-item span {
	word-break: break-word;
	line-height: 0.75rem;
}

.ui-menu-item .price {
	text-align: right;
}

.ui-widget-content .ui-state-active {
	border: 0;
	margin: 0;
}

.ui-menu {
	container-type: inline-size;
	container-name: search;
}

/*@container search (max-width: 300px),*/
@media only screen and (min-width : 660px) and (max-width : 679px),
only screen and (min-width : 880px) and (max-width : 1023px),
only screen and (min-width : 1200px) and (max-width : 1439px)  {
	.ui-menu .ui-menu-item-wrapper {
		grid-template-columns: 20% 80% 80%;
		grid-auto-flow: column;
	}

	.ui-menu-item img {
		grid-row: 1 / 3;
	}

	.ui-menu-item span {
		align-self: end;
	}

	.ui-menu-item .price {
		text-align: left;
		align-self: start;
	}
}

#newsletter {
	display: none;
}

#newsletter span,
#newsletter p {
	color: #fff;
}

#newsletter .ui-dialog {
	padding: 0;
}

#newsletter span, #newsletter p.btn {
	margin-bottom: 0;
}

.ui-button-icon-only .ui-icon {
    position: absolute;
    top: 0%;
    left: 0%;
    margin-top: 0px;
    margin-left: 0px;
}

.ui-button .ui-icon {
	background-image: url(../img/layout/icon-close.svg);

    position: absolute;
    left: 0px;
    right: 0px;
    background-size: 20px 20px;
    background-position: center;
}

.ui-state-hover .ui-icon, 
.ui-state-focus .ui-icon, 
.ui-button:hover .ui-icon, 
.ui-button:focus .ui-icon {
	background-image: url(../img/layout/icon-close-on.svg);
	
}

.ui-button:hover {
	background: none;
	border: none;
}

/*.teaser-box.newsletter {
	    background-image: url(../img/layout/icon-news-weiss.svg);
}*/

.teaser-box.newsletter {
	/*background: #0f5043;*/
	background: #242b2d;
}

.teaser-box.newsletter .textbox {
    /*background-image: url(../img/layout/white-paper-bg.png);*/
	background: #242b2d;
   /* padding: 1rem;*/
	padding: 0;
}

.teaser-box.newsletter h2 {
	 
	font-family: 'OPTIStymie-MediumCond';
	text-transform: uppercase;
	margin: 0;
	 /*margin-left: 65px;*/
	color: #fff;
	
	    font-size: 1.6rem;
	
	padding-top: 0px;
    padding-bottom: 20px;
}

/*.teaser-box.newsletter a .textbox h3*/
.teaser-box.newsletter a .textbox p{
	font-size: 1.1rem;
	  
	/*color: #0f5043;*/
	color: #fff;
	font-family: 'StymieBT-ExtraBoldCondensed';
	text-transform: uppercase;
	margin-bottom: 1rem;
}

/*.teaser-box.newsletter a .textbox p {
	color: #000;    
	margin-bottom: 1rem;
}*/

.teaser-box.newsletter a .textbox p.btn {
	margin-bottom: 0px;
	color: #fff;
}

.teaser-box.newsletter a .textbox p.btn
.teaser-box.newsletter a:link .textbox p.btn {

	background: #0f5043;
	margin-bottom: 0;
	
	
}

.teaser-box.newsletter a:hover .textbox p.btn {
	background: #333;
	color: #fff;
}

/*Zwischengrösse*/
@media 
only screen and (min-width : 1200px) and (max-width : 1490px) {
	.teaser-box h2,
	.testimonial h2{
		font-size: 1.3rem;
	}
	
	.teaser-box {
	background: #242b2d no-repeat;
	background-image: url(../img/layout/icon-anlaesse-weiss.svg);
	background-position: 20px 20px;
	background-size: auto 40px;
}
	
	.teaser-box p.date, 
	.teaser-box h2 {
	margin-left: 55px;
}
}

@media 
only screen and (min-width : 660px) and (max-width : 1199px) {
	.teaser-box h2,
	.testimonial h2{
		font-size: 1.3rem;
	}
	.teaser-box p.date, .teaser-box h2 {
		margin-left: 50px;
	}
	.teaser-box {
	background-size: auto 35px;
	}
}

@media 
only screen and (min-width : 220px) and (max-width : 659px) {
	.content-block-center .teaser-box {
		background-image: none;
	}
	.teaser-box p.date, 
	.teaser-box h2 {
		margin-left: 0px;
	}
}

/* Map */
#map {
	width: 100%; 
	height: 400px;
	margin-bottom: 20px;
}
.index-site #map {
	height: 270px;
}

.gm-style-iw h4, 
.gm-style-iw p {
	font-size: 1em !important;
	line-height: 1rem !important;
}
.gm-style-iw h4 {
	margin: 0 !important;
	font-weight: 700 !important;
}

.gm-style-iw a {
	text-decoration: none !important;
}

.gm-style-iw img {
	display: block !important;
}

/*********
Raster-Styles
*********/
body {
	font-size: 100%; /* 16px = 1rem */
	/*height: 100%;*/
}

body, img, p, tr, td {
	color: #000;
}

header {
	position: fixed;
	left: 0;
	top: 0;
	width: 200px;
	height: 100%;
	height: calc(100% - 160px);
	padding: 80px 25px;
	background: #000;
	border-right: 1px solid #fff;
	text-align: right;
	z-index: 100;
}
header.close {
	left: -220px;
}

header #logo {
	left: 0;
}

header #logo img {
	width: 50%;
	height: auto;
	/*margin-bottom: 40px;*/
}

header .menuicon {
	/*
	position: fixed;
	left: 230px;
	top: 65px;
	*/
	cursor: pointer;
	/*position: relative;
	left: 205px;
	top: -103px;*/
	position: absolute;
	left: 225px;
	top: 70px;
	width: 51px;
	height: 102px;
}

header .main-nav,
header .social-nav {
	/*top: -62px;*/
	/*top: 25px;*/
	margin-top: 25px;
	position: relative;
}

header #logo, 
header nav.main-nav, 
header nav.social-nav {
	position: relative;
}
header #logo.close, 
header nav.main-nav.close, 
header nav.social-nav.close {
	left: -5px;
}
header .ct-scrolling {
	overflow: hidden;
	height: calc(100% + 80px);
}
header .scrolling {
	width: 215px;
	height: 100%;
	padding-right: 40px;
	overflow-x: hidden;
	overflow-y: scroll;
}
header .col-nav {
	float: left;
	width: 200px;
}
header .col-hidden {
	float: right;
	width: 50px;
}
/*
header.close #logo, 
header.close nav.main-nav, 
header.close nav.social-nav {
	position: absolute;
	left: -400px;
}

header.close .menuicon {
	left: 10px;
	top: 60px;
}
*/

.content-block-center {
	/*width: 100%;
	max-width: 1300px;
	margin-left: auto;
	margin-right: auto;*/
	
	width: calc(100% - 20vw - 250px);
	margin-right: 10vw;
	margin-left: calc(250px + 10vw);
}

.content {
	margin-top: 80px;
}

#warenkorb {
	position: fixed;
	right: 0;
	top: 80px;
}

footer {
	padding: 20px;
	margin-top: 40px;
	text-align: right;
	background: #242b2d;
	
	margin-left: 25px;
}

footer div.rechtliches,
footer div.greeneggbedingungen {
	display: inline;
	}

footer, 
footer a, 
footer a:hover {
	color: rgba(255,255,255,0.7);
}

footer a {
	padding-right: 10px;	
}

@media 
only screen and (min-width : 1490px) and (max-width : 1640px) {
	.content-block-center {
		/*margin-left: 95px;
		margin-right: 95px;
		width: auto;*/
		width: calc(100% - 250px - 10vw);
		margin-right: 5vw;
		margin-left: calc(250px + 5vw);
		
	}
}

@media 
only screen and (min-width : 677px) and (max-width : 1489px) {
	.content-block-center {
		width: calc(100% - 250px - 12vw);
		margin-right: 6vw;
		margin-left: calc(250px + 6vw);	
	}
	
	
	
}

@media 
only screen and (min-width : 677px) and (max-width : 1024px) {
footer div.rechtliches,
footer div.greeneggbedingungen {
	display: block;
	}
}

@media 
only screen and (min-width : 220px) and (max-width : 676px) {
	body {
		font-size: 90%; 
	}
	.content-block-center {
		margin-left: 80px; /*vorher 65px*/
		margin-right: 55px;
		width: auto;
	}
	header {
		/*overflow: scroll;*/
	}
	header #logo img {
		width: 40%;
	}
	header .menuicon {
		width: 40px;
		/*top: -81px;*/
		top: 71px;
		left: 231px;
	}
		
	footer {
		margin-left: 30px;
		text-align: center;
	}
	footer a {
		padding-right: 0px;
		padding-bottom: 8px;
		display: block;
	}
}

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
}

.skipp {
	position: absolute;
	left: 10px;
	bottom: 10px;
}

.skipp img {
	display: block;
	
	/* IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
	/* IE 5-7 */
	filter: alpha(opacity=70);
	/* Netscape/FireFox */
	-moz-opacity: 0.7;
	/* Safari 1.x */
	-khtml-opacity: 0.7;
	/* aktuelle Browser */
	opacity: 0.7;
}
@media 
only screen and (min-width : 220px) and (max-width : 659px) {
	.skipp {
		display: none;
	}
}

/*********
Tools & spezifische Content-Styles
*********/
ul.list {
	margin: 0;
	padding: 0;
	overflow: hidden;
}

.list li {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.list li a {
	text-decoration: none;
	display: block;
}

.list.vier-spalten li {
	width: 21.25%;
	margin-right: 5%;
	margin-bottom: 5%;
	float: left;
}

.list.drei-spalten li {
	width: 30%;
	margin-right: 5%;
	margin-bottom: 5%;
	float: left;
}

.list.zwei-spalten li, 
.list.zwei-spalten.news.front li {
	width: 47.5%;
	margin-right: 5%;
	margin-bottom: 5%;
	float: left;
}

.list.vier-spalten li:nth-child(4n),
.list.drei-spalten li:nth-child(3n), 
.list.zwei-spalten li:nth-child(2n), 
.list.zwei-spalten.news.front li:nth-child(2n) {
	margin-right: 0;
}

.list.eine-spalte li {
	width: 100%;
	margin-right: 0%;
}

/*** Shop ***/
/* Produkteliste */
ul.list.produkte {
	/*display: flex;
	flex-flow: row wrap;*/
}
.list.produkte li {
	position: relative;
	text-align: center;
	/*height: 100%;*/
	border: 1px solid #fff;
	width: calc(30% - 2px);
		overflow: hidden;
}

.list.produkte.gruppe li {
	width: calc(21.25% - 2px);
}

.list.produkte li:hover {
	border: 1px solid #f2f2f2;
}

.list.produkte a {
	display: flex;
    flex-direction: column;
	justify-content: space-between;
	height: 100%;
    position: relative;
}

.list.produkte li .image {
	/*display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;*/
}

.list.produkte li img {
	display: inline-block;
	height: auto;
	max-height: 100%;
	max-width: 70%;
	padding: 20px;
}

.list.produkte li .infos {
}

.list.produkte h2 {
	margin: 0;
}

.list.produkte p.preis {
	font-size: 0.95rem;
    line-height: 1.4rem;
}

.list.produkte p.btn {
	display: block;
	padding: 15px;
	background: #242b2b;
	color: #fff;
	text-align: center;
	text-decoration: none;
	vertical-align: bottom;
}

.list.produkte a:hover p.btn {
	background: #000;
}

.list.produkte li.more a {
	background: #242b2b; 
	justify-content: center;
	color: #fff;
	text-transform: uppercase;
	font-family: 'HelveticaNeueLTPro-MdCn';
	font-size: 1.5rem;
}

.list.produkte li.more a:hover {
	background: #000;
}

.filter h2 {
	margin-bottom: 10px;
}

.grid-1.filter,
.grid-1.search {
	margin-bottom: 30px;
}

.grid-1.filter select,
.grid-1.search input {
	margin-bottom: 0;
}

/*Produktedetail*/
.detail .list.galerie li {
	width: 30%;
	margin-right: 5%;
	margin-bottom: 5%;
	float: left;
}

.detail .list.galerie li:first-child {
	width: 100%;
	margin-right: 0;
}

.detail.produkte .bestellen .grid-2:first-child {
	float: right;
}
.detail.produkte .bestellen .grid-2:last-child {
	float: left;
}

.detail.produkte .bestellen {
	margin-top: 40px;
}

.detail.produkte .bestellen .preis {
	font-size: 2rem;
	font-family: 'HelveticaNeueLTPro-MdCn';
	line-height: 1.6rem;
	margin-bottom: 10px;
}

.detail.produkte .preiszusatz {
	font-size: 0.9rem;
	line-height: 1.3rem;
}

.detail.produkte .list.produkte h2 {
	font-size: 1.2rem;
}

/* Warenkorb */
#warenkorb .btn.wk {
	margin: 0;
}
#warenkorb .btn.wk a {
	background-position: 10px 10px;
	background-size: auto 40px;
	padding: 26px;
	padding-top: 35px;
	color: #000;
	font-size: 1.3rem;
	line-height: 0;
	border-bottom: 1px solid white;
}
#warenkorb .btn.wk a:hover {
	color: #333;
}

#warenkorb .detail, 
#warenkorb .btn.wk.leer:hover ~ .detail {
	display: none;
}

#warenkorb .btn.wk:hover ~ .detail,
#warenkorb .detail:hover {
	display: block;
}

#warenkorb .detail {
	width: 345px;
	background: #fff;
	border: 1px solid #333;
	border-right: 0;
}

#warenkorb .detail h3 {
	margin: 0;
	padding: 20px;
	background: #333;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
	font-family: 'HelveticaNeueLTPro-MdCn';
}

#warenkorb table.wk-tab {
	margin: 12px;
	margin-bottom: 0;
	width: auto;
}

#warenkorb .preiszusatz {
	padding: 0px 12px;
	font-size: 0.9rem;
	text-align: right;
}

#warenkorb .detail .btn {
	padding: 12px;
}

.warenkorb .delete a {
	padding-left: 10px;
	color: #b2b2b2;
	text-decoration: none;
	font-family: 'HelveticaNeueLTPro-MdCn';
}

.warenkorb .delete a:hover {
	color: #000;
}

.warenkorb .montage .image img {
	width: 60%;
	display: inline;
}

.warenkorb .anzahl lable {
	 font-size: 0.8rem;
}
.warenkorb .anzahl select {
	padding: 4px;
}

#warenkorb .bestellmenge {
	padding: 0px 12px;
	font-size: 0.9rem;
	line-height: 1.1rem;
}

/* Kurse */
.kurse.detail td {
	vertical-align: middle;
}
.kurse.detail td p.btn {
	padding-bottom: 0;
	margin-bottom: 0;
}
.kurse.detail td .btn a {
	font-family: 'HelveticaNeueLTPro-MdCn';
	background: #242b2d;
	padding: 5px;
	font-size: 1rem;
	float: right;
}
.kurse.detail td .status {
	height: 12px;
	width: auto;
	padding-left: 5px;
}
.kurse.detail .info {
}
.kurse.detail .anmeldung {
	width: 172px;
}
.kurse.detail .deadline {
	font-size: 0.8rem;
	float: left;
}

/* Stores */
.stores h2 {
	margin-top: 25px;
	margin-bottom: 10px;
}
.store.detail img.logo {
	height: 60px;
	width: auto;
	padding-right: 25px;
	display: inline-block;
	vertical-align: bottom;
}
.front.stores p.small {
	margin-top: -15px;
}
.premium {
	height: 20px;
	width: auto;
	padding-right: 10px;
}
.store.detail .premium {
	height: 30px;
}

/* Testimonial */
.testimonial li {
	overflow: hidden;
	background: #0f5043;
	margin-bottom: 40px;
	
	/*display: flex;
	align-items: center;*/
}

.testimonial .referenzimg {
	width: 50%;
	overflow: hidden;
	    float: left;
}

.testimonial img {
	width: 100%;
	height: auto;
	display: block;
	float: left;
}

.testimonial .info {
	width: calc(50% - 80px);
	padding: 40px;
	float: right;
}

.testimonial h2, 
.testimonial p, 
.testimonial q {
	margin: 0;
	padding: 0;
	color: #fff;
}
.testimonial p.funktion {
	font-size: 0.9rem;
	margin-bottom: 20px;
}
.testimonial q {
	quotes: "«" "»";
	font-size: 1.1rem;
}

/*FlavourFair*/
.ff-koeche li {
	margin-bottom: 20px;
	padding: 15px;
	background: rgba(178,178,178,0.25);
}
.ff-koeche h3 {
	margin-bottom: 5px;
}
.ff-koeche li a {
	display: inline;
}

.ff-koeche li img.icon {
	height: 15px; 
	width: auto;
	padding-left: 5px;
}

/*** Team ***/
.team.list {
	display: flex;
	flex-wrap: wrap;
	column-gap: 5%;
}
.team.list li {
	width: 21.25%;
	margin-bottom: 5%;
}
@media 
only screen and (min-width : 880px) and (max-width : 1199px) {
	.team.list li {
		width: 30%;
	}
}
@media 
only screen and (min-width : 660px) and (max-width : 879px) {
	.team.list li {
		width: 47.5%;
	}
}
@media 
only screen and (min-width : 220px) and (max-width : 659px) {
	.team.list li {
		width: 100%;
	}
}


.team.list p {
	background: rgb(36, 43, 45);
	color: #fff;
	font-weight: 700;
	padding: 10px;
}

.team.list p em {
	font-weight: 500;
}

@media 
only screen and (min-width : 880px) and (max-width : 1199px) {
	.testimonial img {
		width: 100%;
	}
	.testimonial .referenzimg{
		width: 100%;
	}
	.testimonial .info {
		width: calc(100% - 40px);
		padding: 20px;
	}
	.list.vier-spalten li {
		width: 30%;
	margin-right: 5%;
	}
	ul.list.team  {
		
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
		
	}
	.list.team li {
		
	}
	.list.vier-spalten li:nth-child(3n) {
		margin-right: 0px;
	}
	.list.vier-spalten.team li:nth-child(4n) {
		margin-right: 5%;
	}
}

@media 
only screen and (min-width : 660px) and (max-width : 879px) {
	.list.vier-spalten li, 
	.list.vier-spalten li:nth-child(4n), 
	.list.drei-spalten li, 
	.list.drei-spalten li:nth-child(3n) {
		width: 47.5%;
		margin-right: 5%;
	}
	.list.vier-spalten li:nth-child(2n), 
	.list.drei-spalten li:nth-child(2n) {
		margin-right: 0;
	}
	
	.index-site .grid-1.news {
		margin-right: 4%;
	}
	.index-site .grid-1.news:nth-child(2n+1) {
		margin-right: 0;
	}
	
	.index-site .grid-1.news:nth-child(3n) {
		display: none;
	}
	
	.list.produkte li {
		width: calc(47.5% - 2px) !important;
	}
	.list.produkte.gruppe li {
		width: calc(30% - 2px);
		margin-right: 5%;
	}
	.list.produkte.gruppe li:nth-child(2) {
		margin-right: 0;
	}
	.list.produkte.gruppe li:nth-child(3) {
		display: none;
	}
	.list.produkte.gruppe li.more {
		margin-right: 0;
		width: 100% !important;
	}
	
	/*.testimonial .info {
		width: calc(50% - 40px);
		padding: 20px;
	}*/
	
	.testimonial .referenzimg{
		width: 100%;
	}
	
	.testimonial img {
		width: 100%;
	}
	.testimonial .info {
		width: calc(100% - 40px);
		padding: 20px;
	}
		
}

@media 
only screen and (min-width : 220px) and (max-width : 659px) {
	.list.zwei-spalten li, 
	.list.zwei-spalten.news.front li, 
	.list.zwei-spalten li:nth-child(2n), 
	.list.zwei-spalten.news.front li:nth-child(2n),
	.list.drei-spalten li, 
	.list.drei-spalten li:nth-child(3n), 
	.list.drei-spalten li:nth-child(2n), 
	.list.vier-spalten li, 
	.list.vier-spalten li:nth-child(4n), 
	.list.vier-spalten li:nth-child(2n) {
		width: 100%;
		margin-right: 0%;
		float: none;
		display: block
	}
	#warenkorb .btn.wk a {
		background-size: auto 30px;
		padding: 22px;
		padding-top: 30px;
		font-size: 1rem;
	}
	
	.list.produkte.gruppe li {
		width: calc(100% - 2px);	
	}
	
	.testimonial img {
		width: 100%;
	}	
	.testimonial .info {
		width: calc(100% - 40px);
		padding: 20px;
	}
	.testimonial .referenzimg{
		width: 100%;
	}
}

@media 
only screen and (min-width : 350px) and (max-width : 438px),
only screen and (min-width : 660px) and (max-width : 835px) {
	.g-recaptcha > div {
		transform:scale(0.7) !important;
		-webkit-transform:scale(0.7) !important;
		transform-origin:0 0 !important;
		-webkit-transform-origin:0 0 !important;
	}
}

@media 
only screen and (min-width : 220px) and (max-width : 349px) {
	.g-recaptcha > div {
		transform:scale(0.55) !important;
		-webkit-transform:scale(0.55) !important;
		transform-origin:0 0 !important;
		-webkit-transform-origin:0 0 !important;
	}
}

@media 
only screen and (min-width : 220px) and (max-width : 879px) {
	.list.produkte.gruppe li.more a {
		font-size: 1.1rem;
		padding: 15px;
	}
}

/*********
Navigation
*********/
.main-nav ul, 
.social-nav ul {
	margin: 0;
	padding: 0;
	overflow: hidden;
	text-align: right;
}

.main-nav ul li, 
.social-nav ul li {
	margin: 0;
	padding: 0;
}

.main-nav li a {
	display: block;
	margin-bottom: 10px;
	color: rgba(255,255,255,0.7);
	font-size: 1.25rem;
	font-family: 'HelveticaNeueLTPro-ThCn';
	text-decoration: none;
	text-transform: uppercase;
}

.main-nav li a.active, 
.main-nav li a:hover, 
.main-nav li.active ul li a.active, 
.main-nav li.active ul li a:hover {
	color: rgba(255,255,255,1);
}

.main-nav li a.active {
	/*border-bottom: 1px solid rgba(255,255,255,0.4);
	padding-bottom: 5px;*/
}

/* Sub-Navigation */
.main-nav ul ul {
	display: none;
}

.main-nav li.active ul {
	display: block;
	border-top: 1px solid rgba(255,255,255,0.4);
	border-bottom: 1px solid rgba(255,255,255,0.4);
	margin-bottom: 10px;
	padding-top: 10px;
}

.main-nav li.active ul li a {
	color: rgba(255,255,255,0.4);
	font-size: 1rem;
	margin-right: 10px;
	padding-bottom: 0;
	border-bottom: 0;
}

/* Social-Navigation */
.social-nav ul {
	margin-top: 20px;
}

.social-nav ul li {
	display: inline-block;
	margin-left: 10px;
}

.social-nav li a {
	display: block;
}

.social-nav li img {
	width: 30px;
	height: auto;
}

/*********
Tabellen
*********/
table, tbody, thead {
	width: 100%;
	padding: 0;
	margin: 0;
	border: 0px;
	margin-bottom: 15px;
}

tr, td, th {
	border: 0px;
	font-size: 1.1rem;
}

/*tr:nth-child(even) {
	background-image:url(../img/layout/bg_weiss60.png);
}*/

tr {
	padding: 0px;
	margin: 0px;
}

tbody tr {
    border-bottom: 1px solid #000;
}

tbody tr:hover {
	background-color: rgba(0,0,0,0.2);
}
.wk-tab tbody tr:hover {
	background-color: transparent;
}

th {
	padding: 8px;
	padding-left: 0;
	vertical-align: top;
	text-align: left;
	color: #fff;
	font-weight: bold;
	border-bottom: 1px solid #000;
    background-color: #242b2d;
}

td {
	margin: 0;
	padding: 8px;
	padding-left: 0;
	/*border-bottom: 1px dotted #000;*/
	vertical-align: top;
	text-align: left;
}

td.right, 
th.right {
	text-align:right; 
}

.wk-tab td {
	vertical-align: middle;
	padding: 0;
	padding-bottom: 6px;
	padding-top: 6px;
}

.wk-tab td.image {
	width: 85px;
	padding-right: 12px;
	text-align: center;
}
#warenkorb .wk-tab td.image {
	width: 20%;
}
.wk-tab td.preis.einzel {
	width: 150px;
	text-align: right;
	color: rgba(0,0,0,0.5);
}
.wk-tab td.anzahl {
	width: 55px;
}
.wk-tab td.preis {
	width: 116px;
	text-align: right;
}
.wk-tab .versand td {
	vertical-align: top;
}

.wk-tab td.preis span {
	font-size: 0.9rem;
}

.wk-tab .montage td:nth-child(2) {
	background-image: url(../img/layout/icon-montage.svg);
	background-repeat: no-repeat;
	background-size: 20px auto;
	background-position: 0 6px;
	padding-left: 30px;
}

.wk-tab .total td {
	border-top: 1px solid #000;
	padding-top: 12px;
	font-size: 1.2rem;
	font-family: 'HelveticaNeueLTPro-MdCn';
	text-transform: uppercase;
}

@media 
only screen and (min-width : 220px) and (max-width : 1199px) {
	table.tab-resp, 
	.tab-resp tbody, 
	.tab-resp tr {
		display: block;
	}
	
	.tab-resp thead {
		display: none;
	}

	.tab-resp tr {
		padding-bottom: 10px;
		padding-top: 10px;
	}

	.tab-resp td {
		display: block;
		text-align: left;
		padding: 2px 0px;
		width: auto;
		border-bottom: 0;
	}

	.kurstermine td:nth-child(1), 
	.kurstermine td:nth-child(2), 
	.kurstermine td:nth-child(3),
	#stores td:nth-child(1), 
	#stores td:nth-child(2) {
		display: inline-block;
		font-weight: 700;
	}

	.kurstermine td:nth-child(2)::after {
		content: ", ";
	}
	.kurstermine td:nth-child(3)::after {
		content: " Uhr";
	}
	.kurstermine td:nth-child(4)::before {
		content: "Kursort: ";
	}
	.kurstermine td:nth-child(5)::after {
		content: " pro Person";
	}
	.kurstermine td:nth-child(4), 
	.kurstermine td:nth-child(5) {
		padding-left: 5px;
	}
	.kurstermine td:nth-child(6) {
		font-style: italic;
	}
	
	.kurse.detail .anmeldung {
		overflow: hidden;
		width: 180px;
	}
	.kurse.detail td p.btn {
		float: left;
		margin-left: 5px;
	}
	.kurse.detail .deadline {
		float: right;
	}
	
	#stores tr {
		position: relative;
	}
	#stores td {
		padding-left: 5px;
	}
	#stores td .premium {
		height: 30px;
		width: auto;
		padding-right: 00px;
		position: absolute;
		right: 15px;
		top: 15px;
	}
	#stores td:nth-child(3)::before{
		content: "Standort: ";
	}
	#stores td:nth-child(4)::before{
		content: "Distanz: ";
	}
	#stores td:nth-child(5)::before{
		content: "Fahrzeit: ";
	}
	
	.tab-resp.wk-tab td.anzahl {
		text-align: left; /*vorher right*/
		width: auto;
	}
	.tab-resp.wk-tab td.anzahl select {
		width: 40%;
	}
	.tab-resp.wk-tab td.preis {
		text-align: left; /*vorher right*/
		font-weight: 700;
		width: auto;
	}
	.tab-resp.wk-tab .versand td:nth-child(1) {
		font-weight: 700;
	}
	.tab-resp.wk-tab .total td {
		text-align: left; /*vorher center*/
		width: auto;
		border-top: none;
	}

	
}
@media 
only screen and (min-width : 220px) and (max-width : 499px) {
	input[type=submit].btn {
		font-size: 0.75rem;
		padding: 10px 5px
	}
}

/*********
Formulare
*********/
form {
	overflow: hidden;
}

fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}

form p {
	padding-bottom: 10px;
}

legend {
	padding: 0;
	margin: 0;
	margin-bottom: 7px;
	font-size: 1rem;
	text-transform: uppercase;
}

label {
	display: block;	
	font-size: 1rem;
	margin-bottom: 5px;
}

label.inline {
	display: inline;
}

input, 
select, 
textarea {
	background-color: #ffffff;
	color: #000;
	border: 1px solid #000;
	padding: 8px;
	font-size: 0.75rem;
	width: 100%;
	margin-bottom: 8px;
	-webkit-appearance: none;
	-webkit-border-radius: 0;
	border-radius: 0;
}

input, 
textarea {
	width: 90%;
	width: calc(100% - 18px);
}

textarea {
	height: 120px;
}

input:focus {
	/*border-color: #2A8E01;*/
}

input[type="checkbox"], 
input[type="radio"] {
	width: 1rem;
	height: 1rem;
	margin-bottom: 0;
	margin-right: 5px;
	-webkit-appearance: auto;
	border: 0;
}

input[type="checkbox"] {
	border: 0;
	background: #fff;
	padding: 0px;
}

input[type="submit"], 
button[type="submit"] {
	background-color: #fff;
	width: 100%;
}

input[type="submit"]:hover {
	border-color: #333;
}

input.pflicht, 
textarea.pflicht {
	/*border-right: 3px solid #000;*/
}

input:focus-visible {
	outline: 0;
}

.validationerror {
	background: #CB0003;
	color: #fff;
	padding: 8px;
	margin-bottom: 1px;
	width: 100%;
	font-size: 0.9rem;
	
}

@media 
only screen and (min-width : 220px) and (max-width : 879px) {
	input, 
	select,
	textarea,
	input[type="submit"],
	button[type="submit"],
	input[type="submit"]:hover, 
	.validationerror
	 {
		width: 90%;
		width: calc(100% - 18px);
	}

	/*input */
	select, 
	input[type="submit"],
	button[type="submit"],
	input[type="submit"]:hover {
		width: 100%;
	}
}

/*********
Masonry Box-System
*********/
.masonry-box {
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.masonry-box .box-item {
	margin-bottom: 35px;
	
}

/* Salvattore - Masonry */
/* These are the classes that are going to be applied: */
.masonry-box .column { 
	float: left;
}

.masonry-box .size-1of4, 
.masonry-box .size-1of3, 
.masonry-box .size-1of2 { 
	margin: 0;
	padding: 0;
	float: left;
	width: 22.375%;
	margin-right: 3.5%;
}

.masonry-box .size-1of3 { 
	width: 31%;
}

.masonry-box .size-1of2 {
	width: 48%;
	margin-right: 4%;
}

.masonry-box .size-1of1 {
	width: 100%;
	margin-right: 0;
}

.masonry-box .size-1of4:nth-child(4n), 
.masonry-box .size-1of3:nth-child(3n), 
.masonry-box .size-1of2:nth-child(2n) {
	margin-right: 0;
}

@media screen and (min-width: 1200px) and (max-width: 5000px) {
	.masonry-box[data-columns]::before {
		content: '3 .column.size-1of3';
	}
	.vier-spalten.masonry-box[data-columns]::before {
		content: '4 .column.size-1of4';
	}
}

@media screen and (min-width: 880px) and (max-width: 1199px) {
	.masonry-box[data-columns]::before {
		content: '2 .column.size-1of2';
	}
}

@media screen and (min-width: 800px) and (max-width: 879px) {
	.masonry-box[data-columns]::before {
		content: '1 .column.size-1of1';
	}
}

@media screen and (min-width: 677px) and (max-width: 799px) {
	.masonry-box[data-columns]::before {
		content: '1 .column.size-1of1';
	}
}

@media screen and (min-width: 560px) and (max-width: 676px) {
	.masonry-box[data-columns]::before {
		content: '2 .column.size-1of2';
	}
}

@media screen and (max-width: 559px){
	.masonry-box[data-columns]::before {
		content: '1 .column.size-1of1';
	}
}
