/* =================================================
Stylesheet fuer die GeBE CuP Website
Basis ist Responsive Design
Stand: v2.0
Datei: Tastaturen.css
Datum: 2018-01-16
Autor: Armin Egginger
Aufbau: A. Schriften
		1. Kalibrierung und Restauration
		2. Allgemeine Styles
		3. Styles fuer Layoutbereiche
			3.1 Allgemein
			3.2 Navigation
		4. Sonstige Styles
		5. Farben
		
Farbangaben:	Dunkelgrau-> Hex #707882 (EuF #5d656f) #5c6670
				Magenta -> Hex #d82f99 (EuF Gelb-> Hex #fcd91d)
				Dunkelgrau 50% -> Hex #aeb2b7
				Dunkelgrau 25% -> Hex #d6d8db
				Dunkelgrau 15% -> Hex #e7e8ea
				Dunkelgrau  7% -> Hex #f4f4f5
				Printer-> Hex #487aad
				HMI-> Hex #9d2631
				Verbrauchsmaterialien -> Hex 84b026
				Hex #965b39 (braun)
				Hex #00909b (tuerkisgruen)
				Hex #7c26ab (lila)

================================================== */

/* ======================================
A. Schriften
====================================== */
@font-face {
	font-family: 'roboto_condensedbold';
	src: url('../assets/RobotoCondensed-Bold-webfont.eot');
    src: url('../assets/RobotoCondensed-Bold-webfont.eot?#iefix') format('embedded-opentype'),
		url('../assets/RobotoCondensed-Bold-webfont.woff') format('woff'),
		url('../assets/RobotoCondensed-Bold-webfont.ttf') format('truetype'),
    url('../assets/RobotoCondensed-Bold-webfont.svg#roboto_condensedbold') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'roboto_condensedbold_italic';
	src: url('../assets/RobotoCondensed-BoldItalic-webfont.eot');
    src: url('../assets/RobotoCondensed-BoldItalic-webfont.eot?#iefix') format('embedded-opentype'),
    url('../assets/RobotoCondensed-BoldItalic-webfont.woff') format('woff'),
    url('../assets/RobotoCondensed-BoldItalic-webfont.ttf') format('truetype'),
    url('../assets/RobotoCondensed-BoldItalic-webfont.svg#roboto_condensedbold_italic') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'roboto_condensedregular';
	src: url('../assets/RobotoCondensed-Regular-webfont.eot');
    src: url('../assets/RobotoCondensed-Regular-webfont.eot?#iefix') format('embedded-opentype'),
	url('../assets/RobotoCondensed-Regular-webfont.woff') format('woff'),
    url('../assets/RobotoCondensed-Regular-webfont.ttf') format('truetype'),
    url('../assets/RobotoCondensed-Regular-webfont.svg#roboto_condensedregular') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'roboto_condenseditalic';
	src: url('../assets/RobotoCondensed-Italic-webfont.eot');
    src: url('../assets/RobotoCondensed-Italic-webfont.eot?#iefix') format('embedded-opentype'),
	url('../assets/RobotoCondensed-Italic-webfont.woff') format('woff'),
	url('../assets/RobotoCondensed-Italic-webfont.ttf') format('truetype'),
    url('../assets/RobotoCondensed-Italic-webfont.svg#roboto_condenseditalic') format('svg');
	font-weight: normal;
	font-style: normal;
}

/* ======================================
1. Kalibrierung und Restauration
====================================== */
/* Reset - alle Abstaende auf NULL */
/* Boder-Box model festlegen*/
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box; /*CSS3 border-box model*/
}

/* optional: erzwingt Scrollbar im Firefox */
html {
	height: 101%;
    background: transparent;
}

h2,p,ul,ol {
	margin-bottom: 1em;
	line-height: 1.7em;
}

ul ul {
	margin-bottom: 0;
}

li {
	margin-left: 1em;
}

/* hier ggfs. Abstaende fuer weitere Elemente restaurieren */

/* clear fuer alle div Elemente mit float -> damit werden die nachfolgenden Elemente richtig im Fluss (float) dargestellt */
/* siehe auch framework 'boilerplate' - Facebook & Twitter als Bsp.*/
/* alle div Entitaeten mit einem zusaetzlichen Element p/br/div class="clear" abschliessen, falls Probleme bei float auftreten */
.clear:before,.clear:after {
	content: " ";
	display: table;
}

.clear:after {
	clear: both;
}

.clear {
	clear: both
}

/* ======================================
2. Allgemeine Styles
====================================== */
body {
	background-color: #e7e8ea;
	color: white;
	/*font-family: Verdana, Arial, Helvetica, sans-serif;*/
	font-family: roboto_condensedregular;
	/*font-family: roboto_condensedbold, roboto_condensedbold_italic, roboto_condensedregular, roboto_condenseditalic ;*/
	font-size: small;
}

h1 {
    font-family: roboto_condensedbold;
    color: #5d656f;
    font-size: 2em;
    line-height: 1.5em;
    font-weight: normal;
	letter-spacing: normal;
}

h2 {
    font-family: roboto_condensedregular;
	/*font-size: small;*/
	/*font-weight: 100;*/
}

p span {
	font-family: roboto_condensedbold;
	font-size: 1.5em;
	color: #5d656f;
}

p.class {
	padding-bottom: 0;
}

td {
	color: black;
	padding: 1em;
}

/*Skeleton ueberschreiben */
th, td {
	padding: 6px 6px;
	border-bottom: 0px;
}
.ProdArtikelListe td, .ProdArtikelListe th {
	border-bottom: 1px solid #E1E1E1;
}

address {
	text-align: center;
	font-size: 80%;
	font-style: normal;
	letter-spacing: 2px;
	line-height: 1.5;
}

a {
	text-decoration: none;
	/* outline: none; */ /* nur wenn es Sie wirklich stoert */
}

a:link {
	color: #5d656f;
}

a:visited {
	color: #5d656f;
}

a:hover,a:focus {
	/*font-size: 110%;*/
	/*border-bottom: 1px solid #5d656f;*/
	border-bottom: none;
	text-decoration: none;
	
}

a:active {
	color: white;
	background-color: #5d656f;
}

form {
	margin-left: 20%;
}

fieldset {
	border: none;
}

label {
	font-size: 1.2em;
	width: 10em;
	display: block;
	float: left;
}

input, textarea, select, button{
	font-size: 1.2em;
	width: 50%;
	margin: 0;
	padding: 0.2em;
}
select{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

button {
	width: 50%;
	padding: 1.2em;
	font-size: 120%;
	margin-left: 25%;
	padding: 0.2em;
}
.placeholder {
	/* special for placeholder only*/
}

textarea {
	height: auto;
}
/* Allgemeine Klassen und IDs */
/* ======================================
3. Styles fuer die Layoutbereiche
====================================== */
/* ------   Rahmen fuer die komplette Site - nichts ist groesser als dieser Rahmen und alle Elemente sind in diesem Rahmen inkludiert   ----*/
#Wrapper {
	background-color: white;
	color: black;
	width: 1024px;
	margin: 0 auto;
}
/* ------   Kopfbereich - auf jeder Site gleich ----*/
#HeaderBox {
	background: #5d656f;
	color: white;
	height: 140px;
	width: 1024px;
	position: fixed;
	top: 0;
	z-index: 1;
}
#HeaderBoxMobileNav {
    background: #5d656f;
    color: white;
    height: 96px;
    position: fixed;
    top: 0;
    z-index: 1;
}
section#Header {
    /*height: 354px;*/
}
#HeaderPict {
	color: white;
	margin-top: 6em;
	height: 354px;
	overflow: hidden;
}
div#NaviBoxSecond{
	float: right;
	margin-right: 20px;
	display: inline-flex;
}
ul#NavBoxSecondUl {
	text-align: right;
	margin-right: 2em;
}
ul#NavBoxSecondUl li{
	padding: 0;
	margin: 0;
	display:inline-block;
	list-style-type: none;
}
input#NavSuchtext{
	width: 100%;
	margin:0;
	border-radius: 0;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	height: 1.9em;
	border: solid #bbb 1px;
	border-right: 0;
}
li#NavShoppingCart.TXTwhite{
	margin-left: 1em;
	margin-right: 1em;
}

td.OrderPrice{
	text-align: right;
}
label.LieferanschriftRadioLabel, label.AGBCheckboxLabel{
	width: 20em;
}
/*
#ContentNavigation {
	background: #d82f99;
	height: 41px;
}
*/
img.ShoppingCartImg {
	max-height: 25px;
	margin-top: 2px;
}
img.ForwarderLogo{
	max-height: 55px;
	margin-top: 20px;
}
div#NaviBoxSite p span {
	color: #d90000;
}
img#MagnifyImg{
	color: green;
	height: 25px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	clear: right;
	padding-left: 5px;
	padding-right: 5px;
}

#ImgLogo {
	margin-right: 40px;
	text-align: right;
}

/* --- Ende Kopfbereich --- */
/* ======================================
3.2 Navigation 
====================================== */
/* --- Navigation Allgemein ---*/
nav {
	list-style: none;
	margin: 0;
	font-size: 1.2em;
	background: #d82f99;
	overflow: visible;
}

nav li {
	display: inline;
	padding: 0;
	margin: .24em 0;
}

/* #Main Menu
================================================== */
.NavBoxTop select {
    display: none;
}
.NavMenue, .NavMenue * {
	/*font-family: 'Arvo', serif;*/
	margin:0; 
	padding:0; 
	list-style:none;
}
.NavMenue ul {
	position:absolute;
	top:-999em;
	width:10em;
}
.NavMenue ul li {width:100%;}
.NavMenue a{
	text-decoration: none;
	display: block;
	position: relative;
	color: #ffffff;
	transition:all 0.3s;
	-webkit-transition:all 0.3s;
	-o-transition:all 0.3s;
	-moz-transition:all 0.3s;
	-ms-transition:all 0.3s;
}
.NavMenue a:hover{
	color:#333333;
	text-decoration: none;
}
.NavMenue li ul li{
	border-bottom:1px solid #dbdbdb;
	border-left: 0;
	display: block;
	width: 180px;
	padding: 0px 14px;
	font-size: 14px;
	transition:all 0.3s;
	-webkit-transition:all 0.3s;
	-o-transition:all 0.3s;
	-moz-transition:all 0.3s;
	-ms-transition:all 0.3s;
}
.NavMenue li ul li:last-child{
	border-bottom:none;
}
.NavMenue li ul li:hover{}
.NavMenue li ul li:hover > a {
	color:#fff;
	text-decoration: none;
}
/*.NavMenue li ul li a {padding:7px 0px;}*/
.NavMenue li ul li a:hover {
	/*color:#fff;*/
	border-bottom: 0;
	font-size: 110%;
	text-decoration: none!important;
}

.NavMenue li {
/*	float:left;*/
	position:relative;
	padding: 0.4em 0.60em;
	text-align: center;
	background-color: #d82f99;
	/*margin-bottom: 1em;*/
	display: inline-block;
	border-left: solid 0.15em white;
	cursor: pointer;
	margin-right: -4px;
}
.NavMenue li:first-child{
	border-left: 0;
}
.NavMenue li:hover{
		background-color: #aeb2b7;
}
.NavMenue li:hover ul,
.NavMenue li.sfHover ul {
	left:0;
	top:38px;
	z-index:99;
}

.NavMenue li a.active,
/*.NavMenue > li:hover > a { border-bottom:3px solid #0aa4d7; color: #000; }*/

ul.NavMenue li:hover li ul,
ul.NavMenue li.sfHover li ul {
	top:-999em;
}

ul.NavMenue li li:hover ul,
ul.NavMenue li li.sfHover ul {
	left:180px;
	top:0;
}

ul.NavMenue li li:hover li ul,
ul.NavMenue li li.sfHover li ul {
	top:-999em;
}

ul.NavMenue li li li:hover ul,
ul.NavMenue li li li.sfHover ul {
	left:20em;
	top:0;
}

.NavTopMenue li a {
	float:left;
	position:relative;
	padding:29px 21px 29px 12px;
}
.NavTopMenue li{
		padding:30px 10px 29px 12px;
}
.NavTopMenue li:hover {
	background-color: transparent;
}

.NavTopMenue li a {
	float:left; 
	position:relative;
	padding:20px 10px 29px 12px;
}
.NavTopMenue li a:hover {
	float:left; 
	position:relative;
	padding:20px 10px 29px 12px;
	border-bottom:none;
	color: #d82f99;	
}
.NavTopMenue li a:visited {
	border-bottom:none;
}

.NavMainMenue li , .NavMainMenue li ul li {
	padding: 0.4em 0.60em;
	text-align: center;
	background-color: #d82f99;
	display: inline-block;
/*	float: left;*/
	position: relative;
	border-left: solid 0.15em white;
	cursor: pointer;
	color: #ffffff;
}
.NavMainMenue > li:hover > a , .NavMainMenue > li ul li:hover > a {
	background: #aeb2b7;
	color: #ffffff;
	border-bottom:0;
}
.NavMainMenue li ul li {
	margin-left: 0;
	border-left: 0;
}

.NavFooterM li {
	color: #ffffff;
	border-bottom:0;
	padding:10px 10px 10px 0px;
	display: inline-block;
}
.NavFooterM > li:hover > a {
	border-bottom:0;
	padding:0;
}

/* --- Navigation im Kopfbereich ---*/
header div#NaviBoxSite {
	margin-top: 35px;
	float: left;
	font-size: 1.2em;
}

header div#NaviBoxSite li,header ul#NaviBoxFooter li {
	display: inline; /* li nebeneinander anzeigen */
	list-style-type: none; /* ohne Aufzaehlungspunkte */
}

#NaviBoxSite li a:hover {
	color: #d82f99;
}

#NaviBoxSite li a:visited {
}

#NaviBoxSite li+li a:link {
	color: #aeb2b7;
}

#NaviBoxSite li+li a:visited {
	color: white;
}

#NaviBoxSite li+li a:hover {
	color: #d82f99;
}
/* --- Ende Navigation im Kopfbereich ---*/

/* --- Navigation im Modulbereich - unterscheidet sich zur Navigation im Kopfbereich - dynamischer Content ---*/
.NavBox {
	padding: 0;
	/*background: #d82f99;*/
	position: relative;
}

.NavBoxModulClass {
	
}

#NaviBoxModul {
	list-style: none outside none;
	margin: 0;
	padding: 0;
	width: 1024px;
}

#NaviBoxModulDeakt li,#NavBoxThermodrucker li,#NavBoxHMI li,#NavBoxTastaturen li,#NavBoxPapier li,#NavBoxKomponenten li,#NavBoxIndividualisierung li,#NavBoxDownloads li,#NavBoxPresse li,#NavBoxUeberUns li
{
	padding: 0.4em 1.042em;
	text-align: center;
	background-color: #d82f99;
	/*margin-bottom: 1em;*/
	display: inline;
	float: left;
	position: relative;
	border-left: solid 0.15em white;
	cursor: pointer;
}

#NavHome.NavHomeActive {
	background-color: #ff800a;
}

#NavHome.NavHomeActive a {
	color: #ffffff;
}

#NavThermodrucker.NavThermodruckerActive {
	background-color: #487aad;
}

#NavThermodrucker.NavThermodruckerActive a {
	color: #ffffff;
}

#NavHMI.NavHMIActive {
	background-color: #9d2631;
}

#NavHMI.NavHMIActive a {
	color: #ffffff;
}

#NavTastaturen.NavTastaturenActive {
	background-color: #14149d;
}

#NavTastaturen.NavTastaturenActive a {
	color: #ffffff;
}

#NavPapier.NavPapierActive {
	background-color: #84b026;
}

#NavPapier.NavPapierActive a {
	color: #ffffff;
}

#NavKomponenten.NavKomponentenActive {
	background-color: #84b026;
}

#NavKomponenten.NavKomponentenActive a {
	color: #ffffff;
}

#NavIndividualisierung.NavIndividualisierungActive {
	background-color: #00909b;
}

#NavIndividualisierung.NavIndividualisierungActive a {
	color: #ffffff;
}

#NavDownloads.NavDownloadsActive {
	background-color: #7c26ab;
}

#NavDownloads.NavDownloadsActive a {
	color: #ffffff;
}

#NavPresse.NavPresseActive {
	background-color: #563aff;
}

#NavPresse.NavPresseActive a {
	color: #ffffff;
}

#NavUeberUns.NavUeberUnsActive {
	background-color: #ff800a;
}

#NavUeberUns.NavUeberUnsActive a {
	color: #ffffff;
}

#NavBoxPresse li:first-child, #NavBoxUeberUns li:first-child, #NavBoxDownloads li:first-child {
	border-left: none;
}
#HeaderBanner {
    display: inline;
}

#HeaderBannerMobile {
    display: none;
}
#ContentNavigation.NavBoxTopDesktop{
    display: inline-block;
}
#NavBoxSearchDiv{
	margin: 0;
	padding: 0;
	max-width: none;
	width: auto;
	display: inline;
}
#NavBoxSearchFormID{
	margin: 0;
}
#NavSearchFormId{
	margin: 0;
	padding: 0;
}
#NavBoxShoppingCartDiv{
margin-left: 1em;
}
#NavBoxSearchInputDiv{
	display: inline;
}

input#NavSuchtext{
	width:auto;
}
#NavBoxSearchButtonDiv{
	display: inline;
}
#NaviDesktop {
	display: block;
}
#NaviMobil, #ContentNavigationMobile {
	display: none;
}

menuToggle input[type="checkbox"]{

}
menuToggle ul{
	display: block;
}

#menuToggle
{
	display: block;
	position: relative;
	top: 50px;
	left: 50px;

	z-index: 1;

	-webkit-user-select: none;
	user-select: none;
}

#menuToggle input
{
	display: block;
	width: 40px;
	height: 32px;
	position: absolute;
	top: -7px;
	left: -5px;

	cursor: pointer;

	opacity: 0; /* hide this */
	z-index: 2; /* and place it over the hamburger */

	-webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
	display: block;
	width: 33px;
	height: 4px;
	margin-bottom: 5px;
	position: relative;

	background: #cdcdcd;
	border-radius: 3px;

	z-index: 1;

	transform-origin: 4px 0px;

	transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
	background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
	opacity 0.55s ease;
}

#menuToggle span:first-child
{
	transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
	transform-origin: 0% 100%;
}

/*
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
	opacity: 1;
	transform: rotate(45deg) translate(-2px, -1px);
	background: #232323;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
	opacity: 0;
	transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
	transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
	position: absolute;
	width: 300px;
	margin: -100px 0 0 -50px;
	padding: 50px;
	padding-top: 125px;

	background: #ededed;
	list-style-type: none;
	-webkit-font-smoothing: antialiased;
	/* to stop flickering of text in safari */

	transform-origin: 0% 0%;
	transform: translate(-100%, 0);

	transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
	padding: 10px 0;
	font-size: 22px;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul
{
	transform: none;
}

/* --- Navigation Allgemein ---*/

/* --- wurde ausgelagert fuer Neuaufbau 06.01.2016---*/

/* --- Ende Navigation im Modulbereich ---*/

/*IE workaround*/
/*All IE browsers*/
/*
* html #NaviBoxModul li {
	list-style: none;
	border-left: 1px solid black;
	padding: 0 0.4em 0 0.4em;
	margin: 0 0.4em 0 -0.4em;
}
*/
/*Win IE browsers - hide from Mac IE\*/
/*
* html #NaviBoxModul {
	height: 1%;
}

* html #NaviBoxModul li {
	list-style: none;
	display: block;
	float: left;
}
*/

/*End hide*/
/*Mac IE 5*/
/*
* html #NaviBoxModul li:first-child {
	border-left: 0;
}
*/
/* --- Ende Navigation Modulbereich ---*/

/* ======================================
3.2 Navigation ENDE
====================================== */

#BodyBox {
	padding: 20px 10px 20px 20px;
}

#BodyBox a {
	/*border-bottom: 1px dotted #cc0000;*/
}

#BodyBox a:hover,#BodyBox a:focus {
	/*border-bottom: 1px solid #5d656f;*/
}

#BodyBox a:active {
	color: #5d656f;
	background-color: #ffffff;
}

#BodyBox * span {
	font-size: 2em;
	line-height: 1.5em;
	/*font-weight: bold;*/
}
/* ======================================
Zeilen in BodyBox 
====================================== */
.RowInABoxLeft {
	height: 319px;
	padding-right: 100px;
	padding-left: 100px;
	background-color: #ffffff;
	border-bottom-color: #e7e8ea;
	border-bottom-style: solid;
}
.RowInABoxLeftDynHeight {
	padding-right: 100px;
	padding-left: 100px;
	background-color: #ffffff;
	border-bottom-color: #e7e8ea;
	border-bottom-style: solid;
}

.RowInABoxRight {
	height: 319px;
	padding-right: 100px;
	padding-left: 100px;
	background-color: white;
	border-bottom-color: #e7e8ea;
	border-bottom-style: solid;
}

.RowInABoxDetailViewWhite {
	padding-right: 100px;
	padding-left: 100px;
	background-color: white;
	border-bottom-color: #e7e8ea;
	border-bottom-style: solid;
	min-height: 319px;
}
.RowInABoxDetailViewWhiteDynHeight {
	padding-right: 100px;
	padding-left: 100px;
	background-color: white;
	border-bottom-color: #e7e8ea;
	border-bottom-style: solid;
}

.RowInABoxDetailViewGrey {
	padding-right: 100px;
	padding-left: 100px;
	/*background-color: #e7e8ea;*/
	background-color: white;
	border-bottom-color: #e7e8ea;
	border-bottom-style: solid;
	min-height: 319px;
}
.RowLeft {
	padding-right: 100px;
	padding-left: 100px;
	background-color: #ffffff;
	border-bottom-color: #e7e8ea;
	border-bottom-style: solid;
}
/* ======================================
Bilder in BodyBox 
====================================== */
.PictInABoxLeft {
	/*width: 300px;*/
	/* height: 100%; */
	/*height: 319px;*/
	float: left;
	margin-right: 35px;
}

.PictInABoxRight {
	/*width: 300px;*/
	max-width: 300px;
	/* height: 100%; */
	/*height: 319px;*/
	float: right;
	margin-left: 35px;
}

.PictInABoxRightMaxWidth {
	max-width: 300px;
	float: right;
	margin-left: 35px;
}

.PictInABoxLeftDetail {
	width: 300px;
	/*height: 319px;*/
	float: left;
	margin-right: 35px;
}

.PictInABoxRightDetail {
	width: 300px;
	/*height: 319px;*/
	float: right;
	margin-left: 35px;
}

.PictInABoxLeftSmall {
	width: 90px;
	float: left;
	margin-right: 35px;
}

.PictInABoxRightSmall {
	width: 90px;
	float: right;
	margin-left: 35px;
}

.PictNews {
	width: 150px;
}

.Pict100height {
	/*height: 100%;
	max-height: 315px;
	*/
	max-height: 315px;
	max-width: 315px;
}

.Pict100width {
	max-width: 300px;
	height: auto;
}
.PictTech img{
	float: right;
	max-height: 200px;
}
/* ======================================
Liste in BodyBox
====================================== */
.ProdCross li,.ProdDwl li,.ProdEmail li , .ProdArtikelListe li {
	display: inline-block;
	cursor: pointer;
}

.ProdCrossLeft,.ProdDwlLeft,.ProdEmailLeft , .ProdArtikelListe {
	text-align: left;
}

.ProdCrossRight,.ProdDwlRight,.ProdEmailRight {
	text-align: right;
}

.ProdCrossLeft li,.ProdDwlLeft li,.ProdEmailLeft li , .ProdArtikelListe li {
	display: block;
}

.ProdCrossRight li,.ProdDwlRight li,.ProdEmailRight li , .ProdArtikelListe li {
	display: block;
}
.ProdArtikelListe li {
	display: inline;
}

.xBtnAddProductToCart{
	background-color: #d82f99;
	color: white;
	width: 120%;
	margin-left: 0;
	font-size: 0.3em;
}
button.xBtnProductCartChange, button.xBtnProductCartDelete{
	width: 2.3em;
	margin: 0;
}
button:hover.xBtnAddProductToCart.xNoUnderline {
	text-decoration: none;
}
a:hover.xNoUnderline {
	text-decoration: none;
}
#ProductPriceListingThead{
	background-color: lightgray;
}
.ProdDetailInputQty{
	width: 40px;
	margin-left: 10px;
}
.ProductListPrice, .ProductListDTPrice{
	text-align: right;
	padding-right: 2em;
}


#BodyBox .PriceBasketBtnBox{
	display: inline-flex;

}
#BodyBox .PriceBox{
	margin-right: 5em;
}
#BodyBox .BtnBasketBox{
}

#BodyBox .BtnInBasketAll{
	background-color: #d82f99;
	border: none;
	color: white;
	padding: 15px 32px;
	margin-left: 0;
	margin-top: 2em;
	text-align: center;
	text-decoration: none;
	font-size: 1em;
	line-height: 0;
	width: 100%;
}
#BodyBox .TxtPriceLabel{
	padding-left: 0.1em;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 3px
}
#BodyBox .TxtPriceFrom{
}
#BodyBox .TxtPriceBig{
	padding-left: 0.4em;
	color: #d82f99;
	font-size: 5rem;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 3px
}
#BodyBox .TxtPriceSmall{
	color: #d82f99;
	font-size: 4rem;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 3px
}
#BodyBox .TxtPriceCurrency{
	padding-left: 0.5em;
	font-size: 1.7rem;
}
#BodyBox .TxtPriceAdditional{
	margin-top: -1em;
}

.MessageRed{
	font-size: 1.2em;
	padding-left: 26%;
	color: red;
}
.MessageGreen{
	font-size: 1.8em;
	text-align: center;
	color: darkgreen;
}

.Downloads {
	list-style: none;
	cursor: pointer;
}

.Downloads li {
	display: inline-block;
	cursor: default;
}

.Email {
	list-style: none;
	cursor: pointer;
}

.Email li {
	display: inline-block;
	cursor: default;
}

.Zubehoer {
	list-style: none;
	cursor: pointer;
}

.Zubehoer li {
	display: inline-block;
	cursor: default;
}

#NewsContent {
	padding-left: 100px;
}

.NewsDiv {
	float: left;
	width: 150px;
	margin-right: 70px;
}

.NewsDate {
	font-size: 0.4em;
}


#SbBtnSearch, #SbBtnAnmelden, #SbBtnAbmelden{
	width: 20%;
	margin-left:2%;
}
#Suchtext, #xEmailAbmeldung, #xEmailAnmeldung{
	width: 50%;
}
button#NavSbBtnSearch.NavButtons{
	padding:0;
	margin:0;
	background-color: #d82f99;
	width: auto;
	float: right;
	height: 1.9em;
	border-radius: 0;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;


}

input#Kommentar {
}

input:required:invalid, input:focus:invalid , textarea:required:invalid, select:required:invalid{
	background-image: url(../bilder_cup/missing.png);
	background-size: 8%;
	background-position: right;
	background-repeat: no-repeat;
	border: 1px solid red;
}

input:required:valid, textarea:required:valid, select:required:valid{
	background-image: url(../bilder_cup/valid.png);
	background-size: 8%;
	background-position: right top;
	background-repeat: no-repeat;
	border: 1px solid darkgreen;
}
input:required:invalid, textarea:required:invalid, select:required:invalid {
	background-color: #d82f99;
}

.xNoUnderline.xOtherClass.xZ a:hover{
	border-bottom: 0px;
}
.ProductHeadline a:hover, .DownloadLink a:hover, .xProdCrossLink a:hover {
	border-bottom: 1px solid #5d656f;
}
.SCPriceNetText{
	text-align: right;
}
#BodyBox span.OrderOptionShippingCostsInfoClass{
	/* Von Body kopiert */
	font-family: roboto_condensedregular;
	font-size: small;
	text-decoration: underline ;
	color: #5d656f;
}
/* ======================================
Fussbereich 
====================================== */
#FooterNav{
	height: 3em;
	padding-top: 0.4em;
	padding-left: 1.4em;
}

#FooterBox {
	background: #5d656f;
	color: white;
	margin-top: 0;
}
/* --- Navigation im Fussbereich ---*/
#FooterBox nav {
	padding: 10px 20px 0 20px;
	background: #5d656f;
}

.FooterBoxPinkLinks li a:link {
}

.FooterBoxPinkLinks li a:link {
	color: white;
}

.FooterBoxPinkLinks li a:hover {
	color: #5d656f;
	text-decoration: none;
}

.FooterBoxPinkLinks li a:visited {
}
#CookieBannerWrapperDivID{
	width: 1024px;
	background-color: #3d464c;
	color: #fff;
	z-index: 10000;
	position: fixed;
	bottom: 0
}
#CookieBannerFormID{
	padding: 0;
	margin:0;
	margin-left: 25px;
	margin-right: 25px;
	margin-top: 10px;
}

#CookieBannerButtonID{
	float: right;
	max-width: 140px;
	background-color: #d82f99;
	color: white;
	font-size: 9px;
}

#NaviBoxFooter li a:link {
	margin-left: 1em;
	padding-bottom: 3em;
}

#NaviBoxFooter li a:link {
	color: #5d656f;
}

#NaviBoxFooter li a:hover {
	color: #ffffff;
	text-decoration: none;
}

#NaviBoxFooter li a:visited {
	color: #5d656f;
}


#FooterBox p {
	text-align: center;
	padding: 0 40px 5px 40px;
}

p#FooterLine1 {
	padding-top: 0.2em;
	padding-bottom: 0;
	margin-bottom: 0;
	font-size: 0.8em;
}

p#FooterLine2 {
	padding-bottom: 1.2em;
	margin-bottom: 1.2em;
	font-size: 0.8em;
}

.FooterLinks {
	float: left;
}
.FooterLinks ul {
	list-style: none;
	padding-left: 10px;
	padding-right: 40px;
}
.FooterLinks ul li {
	margin-bottom: 0;	
	display: inline;
	padding-left: 1em;
}

.FooterLinks ul li a:hover {
	color: #d82f99;
	border-bottom: none;
	
}
.FooterBoxPinkLinks {
	float: left;
}
.FooterBoxPinkLinks ul {
	list-style: none;
	padding-left: 10px;
	padding-right: 40px;
}
.FooterBoxPinkLinks ul li {
	margin-bottom: 0;	
	display: inline;
	padding-left: 1em;
}

.FooterBoxPinkLinks ul li a:hover {
	color: #5d656f;
	border-bottom: none;
	
}
/* --- Ende Navigation im Fussbereich ---*/

/* ======================================
Fussbereich ENDE
====================================== */

/* ======================================
4. Sonstige Styles
====================================== */


/* =======================================
E N D E   D E S   S T Y L E S H E E T S
======================================= */