/*
		28.11.2018 - Tim - Die Button-Definition vom Anfrageformular habe ich so abgeaendert, dass sie generell fuer alle Buttons im gesamtnen Layout gelten
		09.09.2019 - David - Button "In den Warenkorb" auf den Artikelseiten mit zu den normalen Button hinzugef�gt (.buttonWarenkorb)
*/

@font-face{
	font-family:"CallunaSansW01-Regular";
	src:url("/fonts/904943/b300ea8d-24da-424c-bbff-d65387e29b05.eot?#iefix");
	src:url("/fonts/904943/b300ea8d-24da-424c-bbff-d65387e29b05.eot?#iefix") format("eot"),url("/fonts/904943/0642f2f1-5c52-464c-a4df-bd6e57c82f82.woff2") format("woff2"),url("/fonts/904943/d87f9a02-b0f8-467c-b7df-6f4bc96b4518.woff") format("woff"),url("/fonts/904943/04da1654-a9b3-41e5-9268-5767ef53a5e8.ttf") format("truetype");
}
@font-face{
	font-family:"Freeland W00 Regular";
	src:url("/fonts/1560923/1861867a-50e1-4970-a8e4-1638d38dac3d.eot?#iefix");
	src:url("/fonts/1560923/1861867a-50e1-4970-a8e4-1638d38dac3d.eot?#iefix") format("eot"),url("/fonts/1560923/c1e6ccf0-cfd8-449d-8747-50d0e8b7fc24.woff2") format("woff2"),url("/fonts/1560923/261e11ea-c8bf-48e3-a4ef-d7a7fd5e8d1d.woff") format("woff"),url("/fonts/1560923/4663945d-000c-43bb-adf3-c433878adf4a.ttf") format("truetype");
}


body {
	padding: 0;
	margin: 0;
	overflow-y: scroll;
}
body, input {		/* body vererbt die font-familiy nicht auf die Eingabfelder. Das wird mit dieser Anweisung getan */
	font-family: "CallunaSansW01-Regular", sans-serif;
}
.layoutNav, .layoutNav *, #main *, .hauptNavList, .hauptNavList * {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	list-style: none;
}


/* Tim: Die Style-Definition fuer die Buttons aus dem Anfrageforumlar verallgemeinert fuer alle Buttons */
button, #main button, .buttonWarenkorb, #loginForm button {		/* "#main button" hier nochmal erwaehnt, weil diese Angabe sonst von "#main *" mit padding ueberschrieben wird */
	text-transform: uppercase;
	text-align: center;
	padding-left: 2.35em;
	padding-right: 2.35em;
	padding-top: 0.8em;
	padding-bottom: 0.8em;
	font-size: 16px;
	letter-spacing: 2px;
	font-weight: 100;
	cursor: pointer;
}
button[type=button]
{
	border: 1px solid #c3c7b8;
	background: #fff;
	color: #999;
}
button[type=submit]
, button[type=button].buttonSubmit, .buttonWarenkorb {		/* mit der Klasse buttonSubmit hat man die moeglichkeit normale Buttons-als Submit-Button aussehen zu lassen */
	background: #000;
	color: #fff;
	border: 1px solid #000;
}


.layoutNav div:first-child, .layoutNav div:last-child {
	/*width: 19%;*/
}
.layoutNav div.wk > div:first-child > span {
	display: flex;
	flex-direction: column;
}
.layoutNav div.wk > div:first-child > span a {
	border: 0;
	height: 50px;
	background-position: 15px 80%;
}
.layoutNav div.wk > div:first-child > span a:last-child {
	background-position: 15px 20%;
}
#main {
	width: 90%;
	max-width: 1600px;
	margin: 0 auto 5em auto;
}
#layoutContent {
	font-size: 18px;
	padding-top: 1.8em;
}
.fixed ~ #layoutContent {
	padding-top: 100px;
}
.fixed ~ .hauptNavList {
	position: fixed;
}
.layoutNav {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background: #000;
	display: flex;
	border-bottom: 6px solid #c0c8b9;
}
.layoutNav.fixed {
	position: fixed;
	z-index: 10;
}
.layoutNav div {
	width:90%;
	display: flex;
	align-items: center;
}
.layoutNav div.hauptNav {
	/*
	width: 33.3333333%;
	margin: 0;
	*/
}
.layoutNav div.hauptNav > div {
	
	/*width: 320px;*/
	width: 600px;
	margin: auto;
	display: flex;
	
}

@media (max-width: 900px){
	
	.layoutNav div.hauptNav > div {
		width: 500px;
		margin: auto;
		display: flex;
		
	}
}

@media (max-width: 700px){
	
	.layoutNav div.hauptNav > div {
		width: auto;
		margin: auto;
		display: flex;
		
	}
}

.layoutNav div.hauptNav span, .layoutNav div.hauptNav a {
	padding: 0 0.9em;
}
#otherBoxMain > span {
	display: none;
}
#otherBoxMain {
	border-radius: 0;
	border: 0;
}
#otherBoxContent, div#otherBoxItem, #otherBoxMain {
	padding: 0;
	background: transparent;
	border-radius: 0;
	border: 0;
}
.hauptNav .suchForm {
	padding: 2em 0 2em 1em;
}
.hauptNav .suchForm input,
#otherBoxItem .suchForm input {
	padding: 0.5em;
}
#otherBoxItem .suchForm input {
	padding: 0.5em;
	font-size: 1.4em;
}
.hauptNav .suchForm input[type=text],
#otherBoxItem .suchForm input[type=text] {
	border: 1px solid #c0c8b9;
	border-right: 0;
	background: #000;
	color: #c0c8b9;
	width: calc(100% - 2.5em);
}
.hauptNav .suchForm input[type=submit],
#otherBoxItem .suchForm input[type=submit] {
	border: 1px solid #c0c8b9;
	border-left: 1px solid #c0c8b9;
	width: 2.5em;
	cursor: pointer;
	background: #000 url(/1/layout/lupe.svg) no-repeat 50% 50%;
	background-size: auto 50%;
}
.layoutNav a, .layoutNav span.prodBtn {
	text-decoration: none;
	color: #fff;
	text-transform: uppercase;
	background: #000;
	height: 100px;
	line-height: 100px;
	border-bottom: 6px solid #c0c8b9;
	cursor: pointer;
	transition: background-color 0.25s, color 0.25s, border-color 0.25s;
}
.layoutNav a:hover, .layoutNav .wk a:hover {
	border-bottom-color: #a7ada1;
}
.layoutNav span.prodBtn {
	background: #000 url(../1/layout/arrow_dropdown.svg) no-repeat 50% 112%;
	background-size: 20px auto;
	transition: background 0.25s;
}
.layoutNav span.prodBtn:hover, .layoutNav span.prodBtn.aktiv {
	background: #404040 url(../1/layout/arrow_dropdown.svg) no-repeat 50% 100%;
	background-size: 20px auto;
	border-bottom-color: #a7ada1;
}
.layoutNav .hauptNav a.logo, .layoutNav .logo {
	max-width: 143px;
	width: 100%;
	padding: 0;
	border-bottom-width: 0;
}
.layoutNav .hauptNav a.logo:hover, .layoutNav .logo:hover {
	background: #000;
}
.layoutNav.logo img {
	width: 143px;
	height: 40px;
}
.layoutNav a:hover {
	background: #404040;
}
.layoutNav .logo {
	max-width: 143px;
	height: auto;
	width: 100%;
	margin:30px auto;
	line-height: normal;
}
.layoutNav .logo img {
	width: 100%;
}
.layoutNav .wk {
	/*width: 180px;
	margin: auto;*/
}
.layoutNav .wk div {
	width: auto;
	margin: auto;
}
.layoutNav .wk a {
	color: #c0c8b9;
	padding: 0 0.5em;
	display: inline-block;
	border-bottom: 6px solid #c0c8b9;
}
.layoutNav .wk a.login, .layoutNav .wk a.logout {
	background: url("../1/layout/login.png") no-repeat 5px 52.5%;
	background-size: auto 20px;
	padding-left: 30px;
}
.layoutNav .wk a.logout {
	background-image: url("../1/layout/logout.png");
	opacity: 0.25;
	cursor: default;
}
.layoutNav .wk a ~ span {
	color: #fff;
	line-height: 100px;
}
.layoutNav .wk .lang span {
	font-size: 0.9em;
	color: #ccc;
}
.layoutNav .wkBtn div {
	background: url(../1/layout/warenkorb_nd.svg) no-repeat 20% 37px;
	background-size: 24px 26px;
	height: 100px;
	border-bottom: 6px solid #c0c8b9;
	width: 4em;
	transition: border 0.25s, background 0.25s;
}
.layoutNav .wkBtn div:hover {
	background: #404040 url(../1/layout/warenkorb_nd.svg) no-repeat 20% 37px;
	border-bottom: 6px solid #a9aea7;
}
.layoutNav .wkBtn span {
	position: relative;
	top: 26px;
	top: 16px;
	left: 34px;
	left: 35px;
	display: block;
	width: 1.9em;
	height: 1.9em;
	line-height: 1.4em;
	text-align: center;
	padding: 0.25em;
	/*border: 2px solid #c0c8b9;*/
	border-radius: 100%;
	font-size: 0.9em;
	color: #fff;
	font-family: "Open Sans";
	box-shadow: 0em 0px 0.15em #c0c8b9, 0em 0px 0.15em #c0c8b9, 0px 0em 0.15em #c0c8b9,  0px 0em 0.15em #c0c8b9;
}
.layoutNav .wk .akt span {
	color: #fff;
	text-decoration: underline;
}
.layoutNav .desktop {
	display: block;
}
.layoutNav .logo{
	display: flex;
	align-items: center;
}

.layoutNav a.response, .response {
	display: none;
}
.hauptNavList {
	position: absolute;
	top: 100px;
	left: calc(50% - 250px);
	width: 320px;
	background: #000;
	overflow: hidden;
	height: 0;
	z-index: 10;
	text-transform: uppercase;
	transition: height 0.5s;
}
.hauptNavList ul {
	padding: 0 2em 1.6em 2em;
	border-bottom: 6px solid #c0c8b9;
}
.hauptNavList a {
	/*text-align: center;*/
	text-decoration: none;
	background: #000;
	border-bottom: 1px solid #c0c8b9;
	color: #c0c8b9;
	display: block;
	padding: 1.3em 0 1.3em 4em;
	transition: background 0.25s, color 0.25s;
}
.hauptNavList ol a {
	padding-left: 4.75em;
}
.hauptNavList a:hover {
	color: #fff;
	background: #404040;
}
/*	Neu 23.04.2021	Swen	*/

.topLink.submenu, .topLink.submenu:hover {
	background-image: url("/1/layout/down-arrow.png");
	background-repeat:  no-repeat;
	background-position:  10% 50%;
	background-size: 1em auto;
}
.topLink.submenu.open, .topLink.submenu.open:hover {
	background-image: url("/1/layout/r-arrow.png");
}

.hauptNavList a + div {
	height: 0;
	overflow: hidden;
	transition: height 0.5s;
}

/*	Neu Ende	*/
li.responsItem a {
	line-height: 94px;
	height: 94px;
	width: 142px;
	height: 40px;
	display: block;
}
li.responsItem img {
	width: 142px;
	height: 40px;
	display: block;
}

#btnWarenkorb {
	width: 5em;
	background-image: url(/1/layout/warenkorb_nd.svg);
	background-repeat: no-repeat;
	background-position: 1em 50%;
	background-size: auto 25px;
}
#btnWarenkorb span {
	font-family: "CallunaSansW01-Regular", sans-serif;
	font-weight: 400;
	border: 2px solid #c1c7b9;
	border-radius: 100%;
	width: 1.6em;
	height: 1.6em;
	position: relative;
	top: 28px;
	left: 28px;
	padding: 0.15em;
	display: block;
	line-height: 0.9em;
	text-align: center;
	font-size: 1.2em;
}

.motionBlinds {
	position: absolute;
	bottom: 0;
	left: 0%;
	width: 45%;
	height: 11%;
}
.lutron {
	position: absolute;
	bottom: 0;
	left: 0%;
	width: 15%;
}
.sliderimageWrapper {
	position: relative;
}

#slider {
	/*font-family: "Freeland W00 Regular";*/
	font-family: "CallunaSansW01-Regular", sans-serif;
}
#slider ul {
	margin: auto;
	text-align: center;
	font-size: 1.8em;
}
#slider ul li:first-child {
	padding:0;
	padding-bottom: 0.5em;
}
#slider ul li:first-child img {
	height: 40px;
	width: 142px;
}
#slider ul li:first-child + li {
	padding:0; 
}
#controller {
	text-align: right;
	line-height: 15px;
}
#controller span {
	display: inline-block;
	width: 15px;
	height: 15px;
	margin-left: 5px;
	margin-bottom: 5px;
	border: 1px solid #000;
	background: #fff;
	cursor: pointer;
	transition: background 1s, border 1s;
}
#controller span.aktiv {
	background: #c1c7b9;
	border-color: #c1c7b9;
}
#sliderLi {
	position: relative;
	max-width: 1200px;
	margin: auto;
}
#controller {
	max-width: 1200px;
	margin: auto;
}
#sliderLi > div {
	width: 100%;
	overflow: hidden;
	margin-bottom: 2em;
}
#sliderLi > div > div {
	width: 1000%;
	margin-left: 0;
	transition: margin-left 2s;
}
#sliderLi div[id^=btn] {
	position: absolute;
	top: 41%;
	width: 1em;
	height: 0.8em;
	cursor: pointer;
}
div[id^=item] {
	/* width: 12.5%; */
	width: 10%; 
	float: left;
}

div[id^=item] img {
	width: 100%;
	height: auto;
}
/*
#layoutContent div[id^=item] span {
	display: block;
	line-height: 1.5em;
	position: relative;
	top: -1.9em;
	color: #fff;
	text-align: left;
	padding-left: 25%;
	/ *background-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.5) 50%);* /
}
*/
/*
#layoutContent div[id^=item] span:last-child {
	color: #000;
	background: transparent;
}
*/
#sliderLi #btnLeft {
	left: -1.5em;
	background: url(/1/layout/arrow_l_inaktiv.svg) no-repeat 50% 50%;
	background-size: auto 100%;
	margin-bottom: 0;
	cursor: default;
	/*transform: scale(0);*/
}
#sliderLi #btnRight {
	right: -1.5em;
	margin-bottom: 0;
	background: url(/1/layout/arrow_r.svg) no-repeat 50% 50%;
	background-size: auto 100%;
}
footer {
	width: 100%;
	background: #000;
	height: 120px;
	text-align: center;
	color: #fff;
	display:flex;
	justify-content:center;
	align-items: center;
}

footer a{
	color: white;
	text-decoration: none;
}

footer p{
	margin-left:10px;
	margin-right: 10px;
}

#linkList {
	width: 100%;
	/*margin: auto;*/
	/*padding: 3em;*/
	display: flex;
	flex-wrap: wrap;
}
#linkList div {
	width: 31%;
	margin-left: 2%;
	margin-bottom: 2%;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: 100% auto;
	transition: background-size 0.65s;
	/*filter: grayscale(75%);
	transition: filtr 0.25s;*/
}

#linkList div:hover {
	background-size: 105% auto;
}

div.pic {
	text-transform: uppercase;
	transition: background-size 0.25s;
}

#linkList.jalousie {
	
}

#linkList.rollup {
	width: 65.4%;
	margin: auto;
}

#linkList.raffrollo {
	width: 65.4%;
	margin: auto;
}

.serviceSetup, #linkList.trends  {
	width: 65.4%;
	margin: auto;
	margin-top: 3em;
}
#linkList.service{
	margin-top: 3em;
}
#linkList.samplebox  {
	width: 50%;
}
#linkList.trends {
	display: block;
	text-align: center;
}
#linkList.trends img {
	width: 100%;
	margin-bottom: 2em;
}
#linkList.trends .inspirationImg {
	width: 50%;
}
#main .showroomSetup {
	/*margin-top: 3em;*/
}

#linkList.rollo {
	width: 50%;
}
#linkList.rollo a {
	padding-top: calc(150% - 3em);
}
#linkList.rollup div, #linkList.raffrollo div {
	width: 48.5%;
	margin-left: 3%;
	margin-bottom: 3%;
}
#linkList.rollup div:nth-child(3n + 1), #linkList.raffrollo div:nth-child(3n + 1){
	margin-left: 3%;
}
#linkList.rollup div:nth-child(odd), #linkList.raffrollo div:nth-child(odd) {
	margin-left: 0;
}

#linkList div:nth-child(3n + 1) {
	margin-left: 0;
}






#picList {
	display: flex;
	flex-wrap: wrap;
	max-width: 1235px;
	margin: auto;
	font-family: "CallunaSansW01-Regular", sans-serif;
}
#picList a {
	background-image: linear-gradient(transparent 75%, rgba(0, 0, 0, 0.5) 90%), url(/1/layout/01_nd_jalousie.jpg);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: 50% 50%;
	width: calc(50% - 0.5em);
	padding-top: 28%;
	margin-bottom: 1em;
	display: block;
	padding-bottom: 1em;
	color: #fff;
	text-decoration: none;
	text-align: center;
	font-size: 1.4em;
	transition: color 0.25s, background-size 0.65s;
}
#picList a:hover {
	background-size: 105% auto;
	color: #fff;
}
#picList a + a {
	background-image: linear-gradient(transparent 75%, rgba(0, 0, 0, 0.5) 90%), url(/1/layout/02_nd_rollo.jpg);
	margin-left: 1em;
}
#picList a + a + a {
	background-image: linear-gradient(transparent 75%, rgba(0, 0, 0, 0.5) 90%), url(/1/layout/03_nd_rollup.jpg);
	margin-left: 0;
}
#picList a + a + a + a {
	background-image: linear-gradient(transparent 75%, rgba(0, 0, 0, 0.5) 90%), url(/1/layout/04_nd_raffrollo.jpg);
	margin-left: 1em;
}

.centerPicList {
	display: flex;
	justify-content: center;
}

#picList .picListDiv {
	width: calc(50% - 1.5em);
	margin: 0.7em;
	text-align: center;
	/*font-family: "Freeland W00 Regular", sans-serif;*/
	font-family: "CallunaSansW01-Regular", sans-serif;
	font-size: 21px;
}



#picList .picListDiv:hover  a{
	background-size: 105% auto;
	color: #fff;
}

#picList .picListDiv a {
	padding-top: 53%;
	width: 100%;
	font-family: "CallunaSansW01-Regular", sans-serif;
	font-size: 1.4em;
}



#linkList div a, #linkList div .linkPlatzhalter {
	text-decoration: none;
	color: #fff;
	transition: color 0.25s;
	display: block;
	padding-top: calc(56.1% - 3em);
	padding-bottom: 1em;
	padding-right: 1em;
	text-align: right;
	text-transform: uppercase;
	font-size: 0.9em;
	width: 100%;
}
#main .showroomSetup {
	display: flex;
	flex-wrap: wrap;
}
#main .showroomSetup.dark {
	color: #fff;
}
#main .showroomSetup.dark {
	color: #fff;
}
#main .showroomSetup.dark div.setup > div li {
	list-style-image: url(/1/layout/bindestrich_weiss.svg) !important;
}
#main .showroomSetup div.setup {
	width: calc(50% - 1em);
	margin-right: 1em;
	margin-bottom: 2em;
	min-height: 380px;
}
#main .showroomSetup div.setup p {
	font-size: 0.9em;
	text-align: left;
	width: 50%;
	max-width: 150px;
	margin-bottom: 1em;
}
#main .showroomSetup div.setup:nth-child(even) {
	margin-right: 0;
	margin-left: 1em;
}
#main .showroomSetup div.setup > div {
	width: 50%;
	padding: 1em;
	float: left;
	font-weight: 400;
}
#main .showroomSetup div.setup > div:nth-child(even) {
	text-align: right;
}
#main .showroomSetup div.setup > div ul {
	display: inline-block;
	font-size: 0.8em;
	text-align: left;
	margin-left: 0.5em;
	width: 50%;
	min-width: 150px;
}
#main .showroomSetup div.setup > div ul, #main .showroomSetup div.setup > div li {
	list-style-image: url(/1/layout/bindestrich.svg);
	margin-bottom: 0.75em;
}
#linkList div a:hover {
	color: #fff;
}
#main .serviceSetup {
	margin: auto;
	margin-top: 3em;
	display: flex;
	flex-wrap: wrap;
	text-transform: uppercase;
}
#main .serviceSetup > div {
	width: calc(33.33333% - 1.333333333333em);
	margin-left: 2em;
	text-transform: none;
}
#main .serviceSetup > div span {
	display: block;
	text-align: center;
	text-transform: uppercase;
	text-decoration: underline;
	margin-bottom: 1em;
	font-weight: bold;
}
#main .serviceSetup > div p {
	margin: 0 0 1em;
	text-align: left;
}
#main .serviceSetup > div:nth-child(3) {
	margin-left: 0;
}
#main .serviceSetup > div ul {
	text-align: left;
	margin-bottom: 2em;
}
#main .serviceSetup > div ul, #main .serviceSetup > div ul  li {
	list-style-type: circle;
	list-style-position: outside;
}
#main .serviceSetup > div ul  li {
	margin-left: 1em;
	margin-bottom: 0.5em;
}
#main .serviceSetup div.setupTop {
	width: calc(50% - 1em);
	margin-left: 1em;
	margin-bottom: 2em;
	padding-top: calc(1% - 0em);
}

#main .serviceSetup div.setupTop:first-child {
	margin-left: 0;
	margin-right: 1em;
	text-align: right;
	padding-top: 0;
}
#main .serviceSetup div.setupTop:nth-child(2) {
	display: flex;
	justify-content: center;
	flex-direction: column;
}
#main .serviceSetup div.setupTop:nth-child(2) span {
	text-decoration: none;
	font-weight: normal;
}
#main .serviceSetup div.setupTop div {
	text-align: center;
	width: 8em;
}
#main .serviceSetup:last-child div.setupTop ~ div img {
	width: 100%;
}
#main .serviceSetup div.setupTop b {
	display: block;
}
.setupTop img {
	width: 75%;
}
#linkList div a span {
	font-family: "Freeland W00 Regular";
	text-transform: none;
	display: block;
	font-size: 20px;
}
#main .top {
	text-align: center;
	font-size: 1.8em;
	margin-bottom: 23px;
	font-family: "Freeland W00 Regular";
}

#main h1{
	margin-top: 1em;
	font-size: 1.4em;
	text-align: center;
	text-transform: uppercase;
}

#main p {
	margin-top: 0.8em;
	font-size: 1.1em;
	text-align: center;
}

.top img {
	height: 40px;
	width: 142px;
}

#sortierung {
	margin-right: 1em;
}

/* +++++++++++ Kontaktseite ++++++++++++ */

#kontaktMain {
	display: flex;
	justify-content: center;
	margin-top: 3em;
	margin-bottom: 5%;
}


#kontaktMain form, #kontaktMain ul {
	border: 1px solid #c3c7b8;
	padding: 0.8em 1em;
	margin-bottom: 2em;
}
#kontaktMain h2,
#loginForm h2 {
	border-bottom: 1px solid #c3c7b8;
	text-align: center;
	font-size: 1.2em;
	padding-top: 1em;
	padding-bottom: 1.4em;
}

#kontaktMain p, #loginForm p {
	font-size: 0.95em;
	padding: 1.2em 1.5em 2em 1.5em;
	text-align: left;
}

#kontaktMain form {
	width: 50%;
	margin-right: 1em;
}

#kontaktMain input,
#kontaktMain textarea,
#kontaktMain select,
.form input,
.form select {
	color: #aaa;
	font-family: "CallunaSansW01-Regular", sans-serif;
	font-size: 18px;
	display: block;
	margin-bottom: 0.5em !important;
	padding: 0.5em !important;
	width: 100%;
	resize: none;
	border: 1px solid #c3c7b8;
}
.form input:focus,
#kontaktMain textarea:focus,
#kontaktMain select:focus,
#loginForm input:focus {
	color: #666;
}
#kontaktMain #anrede {
	width: 25%;
	min-width: 6em;
}
#kontaktMain span {
	display: block;
	text-align: left;
	margin-bottom: 2em;
	line-height: 1.7em;
}

#kontaktForm input#nws,
#kontaktForm input#ds,
#kontaktForm input#agbs,
#newsletterForm input#nws,
#newsletterForm input#ds,
#newsletterForm input#agbs {
	display: none;
	width: auto;
}

#kontaktForm input#nws ~ label[for=nws],
#kontaktForm input#ds ~ label[for=ds],
#kontaktForm input#agbs ~ label[for=agbs],
#newsletterForm input#nws ~ label[for=nws],
#newsletterForm input#ds ~ label[for=ds],
#newsletterForm input#agbs ~ label[for=agbs] {
	cursor: pointer;
	width: 2em;
	height: 2em;
	display: inline-block;
	border: 1px solid #c0c8b9;
	margin-right: 0.5em;
	background-image: url(/1/layout/hacken.png);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: 0% auto;
	transition: background-size 0.25s;
}

#kontaktForm input#nws:checked ~ label[for=nws],
#kontaktForm input#ds:checked ~ label[for=ds],
#kontaktForm input#agbs:checked ~ label[for=agbs],
#newsletterForm input#nws:checked ~ label[for=nws],
#newsletterForm input#ds:checked ~ label[for=ds],
#newsletterForm input#agbs:checked ~ label[for=agbs] {
	background-size: 33% auto;
}

#kontaktForm hr,
#newsletterForm hr {
	visibility: hidden;
	padding: 0.3em;
}
#kontaktMain a {
	color: #000;
	font-weight: bold;
}
#kontaktMain > div {
	width: 25%;
	margin-left: 1em;
}
#kontaktMain small {
	display: block;
	width: 100%;
	text-align: left;
	margin: 1.5em 0;
}

#kontaktMain .buttons {
	text-align: right;
}

#kontaktMain ul li{
	text-align: left;
}

#kontaktMain ul a {
	font-weight: normal;
	text-decoration: none;
	padding: 1em 0;
	display: block;
}

#loeschen {
	margin-right: 0.6em;
}
.hidden {
	display: none;
}
#kontaktMain .err {
	color: #c00;
	border: 1px solid #c00;
}
#kontaktMain .cap img {
	display: block;
	margin: auto;
	width: 100%;
	max-width: 250px;
}

#layoutContent a.btnBack {
	display: block;
	width: 6em;
	background: #fff;
	text-align: center;
	padding: .5em 1em;
	border: 1px solid #c0c8b9;
	text-decoration: none;
	color: #c0c8b9;
	position: relative;
	top: -1.5em;
	left: 0;
}

/* _layout_swen.php Login-Form	14.07.2021	*/
#hiddenLogin {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.75);
	z-index: 1000;
	display: none;
}
#loginForm, #loginForm * {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
#loginForm {
	position: fixed;
	top: calc(40% - 100px);
	left: calc(50% - 150px);
	width: 300px;
	background: #efefef;
	border: 1px solid #e0e0e0;
	padding: 0 .5em .5em .5em;
	z-index: 1100;
	display: none;
}
#loginForm button {
	width: 100%;
}
#loginForm .noError, #loginForm .error {
	padding: 0.5em;
	margin-bottom: 0.5em;
	border: 2px solid #c00;
	border-radius: 2px;
	color: #c00;
	background: rgba(204, 0, 0, 0.1);
	text-align: center;
}
#loginForm .noError {
	border-color: transparent;
	color: transparent;
	background: transparent;
}
#loginForm button + p {
	text-align: center;
	line-height: 2.5em;
	padding: 0;
}
/* uebersicht.php Adress-Form	16.07.2021	*/
#main .adr, #main .adr ~ div {
	/*width: 75%;*/
	/*min-width: 300px;*/
	margin: auto;
	overflow: hidden;
	height: 0;
	transition: height 0.25s;
}
#main .adr + div, #main .adr + div + div {
	height: auto;
	text-align: center;
	overflow: visible;
}
.adr label, .adr input, .adr select {
	display: inline-block;
}
.adr label {
	width: 10em;
}
.adr input, .adr select {
	width: calc(100% - 10em);
}

#main .adr + div button, #main .adr + div + div button {
	margin: 0em 0.5em 1em 0.5em;
	width: 17em;
	display: inline-block;
}
#main #adrSpeichernBtn {
	display: none;
}
.bestellungen table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 1em;
}
.bestellungen table table {
	width: 100%;
	border-collapse: collapse;
	margin: 0;
	font-size: 0.9em;
}
.bestellungen table th,
.bestellungen table table th,
.bestellungen table table td {
	padding: 0.25em;
}
.bestellungen table table th {
	background: rgba(0, 0, 0, 0.1);
	color: #333;
}
.bestellungen table table th:first-child,
.bestellungen table table td:first-child {
	border-left-width: 0;
}
.bestellungen table table th:last-child,
.bestellungen table table td:last-child {
	border-right-width: 0;
}
.bestellungen table table tr:last-child td {
	border-bottom-width: 0;
}
.bestellungen table table tr:first-child th {
	border-top-width: 0;
}
.bestellungen td, .bestellungen th {
	padding: 0.5em !important;
	text-align: left;
	font-size: inherit;
	border: 1px solid #000;
	/*width: 8em;*/
	vertical-align: top;
}
.bestellungen th {
	background: #000;
	color: #fff;
}
.bestellungen tr th:first-child, .bestellungen tr td:first-child {
	text-align: center;
}
.bestellungen table tr td:last-child {
	width: 80%;
	padding: 0 !important;
}
.posTable ul, .posTable li {
	list-style: none;
}
.bestellungen .posTable {
	line-height: 1.4em;
}
.bestellungen .posTable tr td:last-child {
	width: auto;
	vertical-align: middle;
	background: url("../1/layout/info.png") no-repeat 50% 0.5em;
	background-size: 1em auto;
	padding: 0.5em 0.5em !important;
	cursor: pointer;
}
.bestellungen .posTable tr td:last-child.noInfo {
	background: none;
	cursor: default;
}
.bestellungen .posTable tr th:first-child {
	width: 3em;
}
.bestellungen .posTable tr th:nth-child(2),
.bestellungen .posTable tr td:nth-child(2) {
	width: 6em;
	text-align: center;
}
.bestellungen .posTable tr th:nth-child(3),
.bestellungen .posTable tr td:nth-child(3) {
	width: 6em;
	text-align: right;
}
.bestellungen .posTable tr td:nth-child(4) {
	width: 70%;
	/*padding: 0;*/
}
.bestellungen .posTable tr td:last-child {
	padding: 0.25em;
}
#main .adrUpdate {
	margin: 1em auto;
	color: transparent;
	transition: color 0.25s;
}
#main .info {
	color: #080;
}
#main .error {
	color: #800;
}
#main input.inputError {
	border-color: #800;
}
.bestellungen table div.hidden {
	height: 0;
	display: block;
	overflow: hidden;
	transition: height 0.25s;
}
#main table span.info {
	display: block;
	color: initial;
	font-size: 0.9em;
}
#main table span.info ul {
	margin-left: 1em;
}
.bestellungen table.kundenTab tr td:last-child {
    padding: 0.25em;
}
div[id^=kn] {
	display: none;
}
.bestellungen {
	background: #fff;
	padding: 0.5em;
}













@media(max-width: 1080px) {
	#main .serviceSetup div.setupTop, #main .serviceSetup div.setupTop:first-child {
		width: 100%;
		max-width: 800px;
		margin-right: auto;
		margin-left: auto;
		margin-bottom: 0;
	}
	#main .serviceSetup div.setupTop div {
		width: 100%;
		max-width: 800px;
	}
	#main .showroomSetup div.setup, #main .showroomSetup div.setup:nth-child(even) {
		width: 100%;
		max-width: 800px;
		margin-right: auto;
		margin-left: auto;
	}
	#linkList.samplebox {
		width: 75%;
	}
	
	#main .adr, #main .adr ~ div {
		width: 90%;
	}
	.bestellungen table {
		font-size: 0.8em;
	}
	#main .adr + div button {
		margin-left: auto;
		margin-right: auto;
	}
	
}




@media(max-width: 800px) {
	.desktop,.layoutNav .desktop, .layoutNav .desktop.lang, .layoutNav .wk a ~ span {
		display: none;
	}
	.layout .response, .layoutNav a.response, .response {
		display: block;
	}
	.layoutNav div:first-child .burger.menuClose, .layoutNav div:first-child .burger.menuOpen,
	/*.layoutNav div:first-child .burger.menuClose:hover, .layoutNav div:first-child .burger.menuOpen:hover,*/
	.layoutNav div:first-child .topNavSuche, .layoutNav div:first-child .topNavSuche:hover {
		display: block;
		text-align: center;
		width: 100%;
		background: #000 url(/1/layout/burger_menu_nd.svg) no-repeat 50% 50%;
		background-size: 30px auto;
		cursor: pointer;
		height: 100px;
		border-bottom: 6px solid #c0c8b9;
		transition: background-color 0.25s, border 0.25s;
	}
	.layoutNav div:first-child .burger.menuClose:hover, .layoutNav div:first-child .burger.menuOpen:hover {
		background-color: #000;
	}
	.layoutNav div:first-child .burger.menuOpen {
		
		background: url(/1/layout/burger_menu_close_nd.svg) no-repeat 50% 50%, url(/1/layout/arrow_dropdown_hell.svg) no-repeat 50% 100%;
		background-size: 30px auto, 18px auto;
		
	}
	.layoutNav div:first-child .burger:hover {
		background-color: #404040;
		border-bottom: 6px solid #a7ada1;
	}
	.layoutNav div:first-child .topNavSuche, .layoutNav div:first-child .topNavSuche:hover {
		background: #000 url(/1/layout/lupe.svg) no-repeat 50% 50%;
		background-size: 25px auto;
	}
	.layoutNav .wk div {
		width: 100%;
	}
	.layoutNav .wk a div {
		width: 70px;
		margin: auto;
	}
	.layoutNav .wkBtn span {
		left: 37px;
		top: 16px;
	}
	.layoutNav .wk a, .layoutNav .wk a:hover {
		padding: 0;
		display: block;
		width: 100%;
	}
	.layoutNav div.hauptNav > div{
		height: 100%;
	}

	nav.response {
		display: flex;
	}
	nav.response a, nav.response span {
		width: 33.333333%;
		display: block;
		text-align: center;
	}
	.layoutNav .burger {
		color: #fff;
		line-height: 100px;
	}
	nav.response {
		text-transform: uppercase;
		color: #c0c8b9;
		border-bottom: 1px solid #c0c8b9;
		padding: 0.75em 0;
	}
	.fixed ~ #layoutContent {
		padding-top: 0;
	}
	.fixed ~ nav.response {
		margin-top: 100px;
	}
	nav.response a {
		text-decoration: none;
		color: #c0c8b9;
	}
	nav.response span a {
		display: inline-block;
	}
	nav.response .akt {
		text-decoration: underline;
	}
	.hauptNavList {
		width: 100%;
		left: 0;
	}
	#sliderLi, #controller {
		display: none;
	}
	#picList a {
		width: 100%;
		padding-top: 50%;
	}
	
	#picList .picListDiv {
		width: 100%;
	}
	
	#picList a + a, #picList a + a + a + a {
		margin-left: 0;
	}
	#main #slider li.slogan {
		background: #000;
		color: #fff;
		padding: 0.5em;
		margin-bottom: 1em;
		line-height: 1em;
	}
	#kontaktMain ul li:first-child + li {
		background: #fff;
		color: #000;
	}
	#main .top li:first-child {
		display: none;
	}
	#linkList.raffrollo, #linkList.rollup, #linkList.service {
		width: 100%;
	}
	#linkList div, #linkList.rollup div, #linkList.raffrollo div, #linkList.service div {
		width: 100%;
		margin-left: 0;
		margin-bottom: 1em;
	}
	#linkList.rollup div:nth-child(3n+1), #linkList.raffrollo div:nth-child(3n+1), #linkList.service div:nth-child(3n+1) {
		margin-left: 0;
	}
	
	.layoutNav span.prodBtn, .layoutNav span.prodBtn:hover, .layoutNav span.prodBtn.aktiv {
		background: #000 url(../1/layout/arrow_dropdown.svg) no-repeat 50% 112%;
		background-size: 20px auto;
		transition: background 0.25s;
	}
	#kontaktMain {
		display: block;
	}
	#kontaktMain form {
		margin-bottom: 5%;
	}
	#kontaktMain form, #kontaktMain > div {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
	#main .serviceSetup ul li:first-child + li {
		background: transparent;
		color: #000;
		padding: 0;
		margin: 0;
		margin-left: 1em;
		margin-bottom: 0.5em;
	}
	#linkList.service, .serviceSetup {
		width: 100%;
	}
	.setupTop img {
		width: 100%;
	}
	#linkList.samplebox div {
		width: 48.5%;
		margin-left: 3%;
		margin-bottom: 3%;
	}
	/*
	#main .serviceSetup div.setupTop, #main .serviceSetup div.setupTop:first-child {
		width: 100%;
		margin-right: 0;
		margin-left: 0;
		margin-bottom: 0;
	}
	#main .serviceSetup div.setupTop div {
		width: 100%;
	}
	#main .showroomSetup div.setup, #main .showroomSetup div.setup:nth-child(even) {
		width: 100%;
		margin-right: 0;
		margin-left: 0;

	}
	*/
	
	#linkList.trends {
		width: 100%;
		margin: auto;
		margin-top: 1.5em;
	}
	#linkList.trends h2 {
		font-size: 5vw;
		margin-bottom: 0.5em;
	}
	
}
@media(max-width: 410px) {
	button, #main button {
		width: 100%;
		margin: 0;
	}
	#main .adr + div button, #main .adr + div + div button {
		width: 100%;
	}
	.adr label, .adr input {
		display: block;
		width: 100%;
	}
	.bestellungen td, .bestellungen th {
		padding: 0;
	}
	#main #loeschen {
		margin-bottom: 1em;
	}
	#kontaktMain select {
		width: 100%;
	}
	#main .showroomSetup div.setup > div ul {
		width: auto;
		min-width: 0;
	}
	#linkList.samplebox div {
		width: 100%;
		margin-left: 0;
	}
	footer {
		font-size: 0.9em;
	}
}