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

/* **************** Globale CSS Anweisungen ******************* */
*, ::after, ::before { box-sizing: border-box; }

body {
	text-align: left;
	font-family: verdana, arial, "sans serif";
	color: #525252;
	font-size: 14px;
	margin: 0;
	padding: 0;
    line-height: 1.3em;
    /* background-image: 	url(../images/body_back.gif); */
	/* background-repeat: 	repeat-x; */
}

a { color: #000000; transition: all 0.5s ease; }
p { line-height: 160%; margin-bottom: 15px; }
u { text-decoration: underline; }
em { font-style: italic; }
strong { font-weight: bold; }
small { font-size: 11px; line-height: 1.2em; }

h1 { font-size: 26px; padding-bottom: 16px; line-height: 140%; color: #000; }
h2 { font-size: 130%; }
h3 { font-size: 110%; }
h4 { font-size: 100%; }
.sub-headline { font-size: 130%; display: block; }


div.site {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto auto 1fr auto auto;
    grid-template-areas:
            "topper topper topper"
            "header header header"
            "nav nav nav"
            "main main main"
            "footer footer footer"
            "copyfooter copyfooter copyfooter";
}

div.site header { grid-area: header; padding-top: 15px; padding-bottom: 15px; }
.topper { grid-area: topper; min-height: 15px; background-color: #454545; padding: 8px; }
.mainContent { grid-area: main; }
.sidebar { grid-area: sidebar; }
nav { grid-area: nav; margin: 15px 0 0 0; }
footer { grid-area: footer; background-color: #454545; margin-top: 35px; }
.copyfooter { grid-area: copyfooter; background-color: #000; padding: 15px; text-align: center; font-size: 11px; }

header, .nav, footer, .container { padding: 0 5% 0 5%; }
header div div.flex-item { margin-bottom: 0; }
section { padding-top: 25px; padding-bottom: 25px; }

/* Globale Nützlinge */
.komplett-box { display: block; width: 100%; }
.position-rechts { text-align: right; }
.top-space { padding-top: 25px; }
.bottom-space { padding-bottom: 25px; }
.spaces-right { margin-right: 25px; }
.spaces-left { margin-left: 25px; }
.text-position-right { text-align: right; }
.text-position-left { text-align: left; }
.standard-text-indent { text-indent: 12px; }
.hide { display: none; }
.hundert-prozent { width: 100%; }
.fuenfzig-prozent { width: 50%; }
.desktop-hidden, .table .table-row .desktop-hidden { display: none; }
.no-list { list-style: none; margin: 0; }
.clear { clear: both; float: none; }

/* ************** Abstände ************** */

.vertikal-abstand-5 { margin: 5px 0 5px 0; }
.vertikal-abstand-15 { margin: 15px 0 15px 0; }
.vertikal-abstand-25 { margin: 25px 0 25px 0; }

/* *********** Globale Flex Box ************ */

.flex-container {
    display: flex;
    flex-direction: row; /* Positionierung Elemente links rechts, oben, unten. */
    /* justify-content: space-between; */ /* Verteilung der Boxen auf der Achse von links nach rechts */
    /* align-items: flex-start; */ /* Inhalte positionieren, von oben nach unten, oben, mittig, unten */
    flex-wrap: wrap; /* Erlaubt Umrechen */
}

.flex-item {
    flex-grow: 0; /* Items dürfen nicht grösser werden als festgelegt */
    flex-shrink: 1; /* Items dürfen kleiner werden als festgelegt */
    flex-basis: auto; /* Grösse wird automatisch festgelegt */
    order: 0; /* Sortierung entspricht der HTML Reihenfolge */
    position: relative;
    margin-bottom: 45px;
}

.flex-vertical-center { align-items: center; }
.flex-basis-10 { flex-basis: 10%; }
.flex-basis-25 { flex-basis: 25%; }
.flex-basis-33, .flex-item-suche { flex-basis: 33.3%; }
.flex-basis-50 { flex-basis: 50%; }
.flex-basis-75 { flex-basis: 75%; }
.flex-basis-90 { flex-basis: 90%; }

.flex-item-1 { order: 1; }
.flex-item-2 { order: 2; }
.flex-item-3 { order: 3; }

/* ****************** Formulare ********************** */

input[type=text], input[type=password], select, textarea {
    width: 100%;
    background-color: #f8f8f8;
    border: 1px solid #c7c7c7;
    border-radius: 3px;
    height: 44px;
    line-height: 44px;
    text-indent: 10px;
    font-size: 110%;
    transition: all 0.5s ease;
    margin-bottom: 5px;
    cursor: pointer;
}

input[type=text]:focus, select:focus, textarea:focus {
    background-color: #fff;
    border: 1px solid #656565;
}

input.error { background-color: #cc0000; }
.fehler-meldung { background-color: #cc0000; color: #fff; padding: 10px; display: block; }
div .formFehler { background-color: #fadac8; }
.erfolgs-meldung { background-color: #005d00; color: #fff; padding: 10px; display: block; }

textarea { height: 100px; }

/* Sonderbehandlung für Selects, damit es schicker aussieht. */

select {
    margin-bottom: 0px;
    background-color: #f8f8f8;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    border: 1px solid #c7c7c7;
    border-radius: 3px;
    height: 44px;
    line-height: 44px;
    text-indent: 10px;
    font-size: 110%;
}

.selectWrapper {
    /* ... */
    position: relative;
    width: 100%;
    margin-bottom: 5px;
}

.selectWrapper select {
    text-indent: 3px;
    color: #525252;
}

.selectWrapper::before {
    font-size: 20px;
    position: absolute;
    right: 15px;
    top: 19px;
    pointer-events: none;
}

/* ********************* Listen *********************** */

ul.horizontal, ol.horizontal { list-style: none; }
ul.horizontal li, ol.horizontal li { display: inline-block; }

article ul, footer ul { list-style: disc; margin: 0 0 15px 15px; line-height: 140%; }
article ol, footer ol { list-style: decimal; margin: 0 0 15px 19px; line-height: 140%; }


/* *************** Individuelle CSS Anweisungen **************** */

.shop-logo img { width: auto; height: 100px; }

.mbri-user, .mbri-unlock, .mbri-shopping-basket {
    font-size: 25px;
    float: left;
    margin-right: 10px;
}

.mein-konto { text-align: center; }
.mein-konto li { line-height: 25px; margin-right: 25px; margin-bottom: 15px; }
.warenkorbBox { position: relative; }
.warenkorbAnzahl { 
    position: absolute;
    background-color: red;
    border-radius: 40px;
    padding: 0px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    left: 10px;
    top: -10px;
    color: #ffffff;
}

.addWarenkorbPopup, .addWarenkorbPopupDetail {
    display: none;
    background-color: #1d8a27;
    padding: 15px;
    color: #fff;
}

/* ********* Artikel / Kategorien ********** */

.flex-container .flex-article { margin-bottom: 25px; }

.flex-container .flex-article > div {
    margin: 10px 0;
    transition: all 0.4s ease 0s;
    text-align: center;
    height: 100%;
}

.flex-container .flex-article > div:hover { box-shadow: 0px 0px 4px 4px rgba(0, 0, 0, 0.1), 0px 0px 4px 4px rgba(0, 0, 0, 0.1) }

.flex-container .flex-article div span.artikelname {
    height: 50px;
    overflow: hidden;
    padding: 10px;
    line-height: 1.2em;
    font-size: 16px;
    display: block;
}

.flex-container .flex-article span.artikel-bild { display: block; height: 330px; overflow: hidden; padding: 20px 8px 8px 8px; }
.flex-container .flex-article span.artikel-bild a, .flex-container .flex-article span.kategorie-bild a { display: block; text-align: center; }
.flex-container .flex-article span.artikel-bild a img, .flex-container .flex-article span.kategorie-bild a img { width: 80%; height: auto; position: relative; }

.flex-container .flex-article span.kategorie-bild { display: block; height: 200px; overflow: hidden; padding: 8px; }

.flex-container .flex-article small.artikelpreis {
    font-size: 24px;
    font-weight: bold;
    color: #ff9100;
}

.flex-container .flex-article small {
    display: block;
    padding: 5px;
}

.flex-container .flex-article small.artikel-bewertung { position: absolute; margin: auto; top: 7px; width: 100%; }

.flex-container .flex-article small img { width: 12px; height: auto; }

.flex-container .flex-article button {
    border: 0;
    background: transparent;
    touch-action: manipulation;
    cursor: pointer;
    width: 95%;
}

.flex-container .flex-article button a.btn {
    transition: all 0.3s ease 0s;
    margin-bottom: 15px;
    margin-top: 15px;
    font-size: 130%;
    display: block;
    background-color: #8E8E8E;
    padding: 12px;
    border: 0;
}

.flex-container .flex-article button a.btn, .flex-box .flex-article div.detailLink a {
    color: #fff;
}

.flex-container .flex-article:hover button a.btn, .flex-box .flex-article:hover button a {
    color: #ff9100;
    background-color: #454545;
}

/* Artikel Details */ 

.artikel-bild-box { position: relative; overflow: hidden; width: 90%; margin: auto; }
.artikel-detail-bild img { width: 100%; height: auto; }
.mehr-bilder-box a { display: inline-block; width: 100px; height: 100px; overflow: hidden; border: 1px solid #eeeeee; margin: 2px; padding: 5px; text-align: center; }
.mehr-bilder-box a img { width: auto; height: 100%; }
.swiper-container { width: 100%; height: auto; }
.swiper-image { width: 100%; height: auto; }
.artikel-detail-infos strong { display: block; font-size: 20px; color: #ff9100; margin-bottom: 10px; text-align: right; }
.artikel-detail-infos p, .artikel-detail-infos small, .artikelMenge { display: block; margin-bottom: 5px; text-align: right; }
.artikelMenge input { width: 120px; }

span.brotkrum { display: block; font-style: italic; font-size: 11px; }
.au_page_active, .au_page_link { display: inline-block; padding: 8px; background-color: #000; margin-left: 2px; margin-right: 2px; color: #fff; }
.au_page_link { background-color: #a2a2a2; }
.au_page_link:hover { background-color: #000; }


/******************** Tabellen Definition ************** */

.table { display: table; width: 100%; }
.table-row { display: table-row; }
.table-cell { display: table-cell; padding: 8px; border: 2px solid #fff; vertical-align: top; min-width: 90px; }
.farbwechsel:nth-child(even) { background-color: #f2f2f2; }
.table-head { background-color: #bfbfbf; color: #fff; padding: 12px; }
.summe-format { font-weight: bold; font-size: 130%; }
.summe-format-light { font-weight: bold; font-size: 110%; }


/************* Button Definition **************** */

.button-box { display: block; }
.submit-button {
    background-color: #e96147;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    margin-top: 10px;
    font-size: 120%;
    min-width: 130px;
    display: block;
    color: #ffffff;
    border: 0;
    transition: all 0.5s ease;
    cursor: pointer;
}
.submit-button:hover { background-color: #1d8a27; }

.button-alternative { background-color: #8b8b8b; }
.button-alternative:hover { background-color: #000; }
.button-alternative-line { background-color: #fff; color: #8b8b8b; border: 1px solid #8b8b8b; }
.button-alternative-line:hover { background-color: #8b8b8b; color: #fff; }
.wk-button, div.table div.table-row div.table-cell .wk-button { padding: 8px; min-width: 100px; display: inline-block; background-color: #bfbfbf; margin-top: 0; }
.ticket-button, div.table div.table-row div.table-cell .ticket-button { padding: 8px; min-width: 100px; display: inline-block; background-color: #1d8a27; margin-top: 0; color: #fff; }

#addwarenkorbError {
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
    white-space: nowrap;
    color: red;
    margin: 10px;
}

/* *********** Listen ************ */

.list-container { margin-bottom: 15px; }
.list-container span { display: block; padding: 10px; margin: 2px; background-color: #f1f1f1; }
.list-container span:nth-child(even) { background-color: #fafafa; }

.tab-container { width: 100%; margin-top: 45px; border-bottom: 1px solid #8b8b8b; }
.tab-container a, .tab-container span { padding: 15px; background-color: #8b8b8b; margin: 1px; color: #fff; display: inline-block; }
.tab-container a:hover, .tab-container span:hover { background-color: #8b8b8b; }

.checkout-list-container { margin-bottom: 15px; }
.checkout-list-container div div div img { width: 100px; height: auto;}


/* ************* Checkout Steps ***************** */

/* Checkoutsymbole */

ol.steps {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', 'DejaVu Sans', 'Bitstream Vera Sans', 'Liberation Sans', Verdana, 'Verdana Ref', sans-serif;
    font-size: 13px;
    line-height: 20px;
    font-weight: bold;
    counter-reset: li;
    margin-top: 25px;
    margin-bottom: 25px;}
ol.steps li {
    list-style-image: none;
    list-style-type: none;
    margin-left: 0;
    text-align: center;
    color: #3a3a3a;
    background: #cccccc;
    position: relative;
    margin-left: 43px; }
ol.steps li:after {
    position: absolute;
    top: 50%;
    left: 100%;
    content: " ";
    height: 0;
    width: 0;
    pointer-events: none;
    border: solid transparent;
    border-left-color: #cccccc;
    border-width: 19px;
    margin-top: -19px; }
ol.steps li:first-child { margin-left: 0; }
ol.steps li:first-child span { padding: 9px;}
ol.steps li:first-child span:after { border: none; }
ol.steps li:last-child:after { border-width: 0; }
ol.steps li span { display: block; padding: 9px 15px 9px 0px; }
ol.steps li span:after { 
    position: absolute;
    top: 50%;
    right: 100%;
    content: " ";
    height: 0;
    width: 0;
    pointer-events: none;
    border: solid #cccccc;
    border-left-color: transparent;
    border-width: 19px;
    margin-top: -19px; }
ol.steps li span:before { content: counter(li) ". "; counter-increment: li; }
ol.steps > li { float: left; }
ol.steps li.current { color: #fff; background: #7b7b7b; }
ol.steps li.current:after { border-left-color: #7b7b7b; }
ol.steps li.current span:after { border-color: #7b7b7b; border-left-color: transparent; }
ol.steps li.step1 { z-index: 9; }
ol.steps li.step2 { z-index: 8; } 


/* ************ Responsive Navigation *************** */


.toggleMenu {
    display:  none;
    background: #000;
    padding: 15px 0 15px 0;
    color: #eeeeee;
    width: 100%;
    text-indent: 15px;
}

nav { background-color: #000; }
.nav { list-style: none; }

.nav li ul {
    position: absolute;
    left: -9999px;
    list-style: none; 
    width: 9em; 
}

.nav li a {
    padding: 15px 15px;
    color: #eeeeee;
    display: block;
}

.nav li { position: relative; display: inline-block; }
.nav > li:hover { background-color: #505050; }
.nav > li.hover > ul { left: 0; }
.nav li ul li.hover ul { left: 100%; top: 0; }

.nav li ul li a {
    display: block;
    background: #505050;
    position: relative;
    z-index:110;
    border-top: 1px solid #7d7d7d;
    min-width: 200px;
    color: #eeeeee;
}

.nav li ul li a:hover {
    background: #6e6e6e;
    color: #eeeeee;
}

.nav li ul li ul li a {
    background: #505050;
    z-index:200;
    border-top: 1px solid #7d7d7d;
    color: #fff;
}

/* **************** Ajax Suche ************ */

div.suchBox { position: absolute; top: -20px; left: 0; right: 0; z-index: 110; padding: 0 20px 0 20px;   }

div.suchBox .ajaxsearch_input {
    background-image:   url(../images/ajaxsearch_backgroundicon.gif);
    background-position: 5px;
    background-repeat: no-repeat;
    width: 100%;
    height: 30px;
    line-height: 30px;
    text-indent: 30px;
}

.ajaxsearchresult_container {
    display:            none;
    z-index:            110;
    border: 1px solid  #999999;
    box-shadow: 4px 4px 9px 0 #CCCCCC;
    width: 100%;
    background-color: #fff;
}

.ajaxsearchresult_focuscatcher {
    position:           absolute;
    width:              0px;
    height:             0px;
    left:               0px;
    top:                0px;
    overflow:           hidden;
}

.ajaxsearchresult_productcontainer {
    overflow: hidden;
    cursor: pointer;
    border-top: 1px dashed #999999;
    padding: 10px;
    cursor: pointer;
}

.ajaxsearchresult_productcontainer:hover { background-color: #f8f8f8; }
.ajaxsearchresult_productcontainer div > img { width: 95%; height: auto; }
.ajaxsearchresult_productcontainer div span { display: block; text-align: right; font-weight: bold; }
.ajaxsearchresult {  padding: 4px 16px 2px 10px; }
.ajaxsearchresult_searchmore a:hover {  color:   #0063AB; }


/* *********** Facettensuche ************* */

.facettensuche { margin-top: 25px; margin-bottom: 25px; }
.facettensuche-headline span { display: block; margin-bottom: 10px; }
.facettensuche-headline img, .facettensuche-auspraegungen li img { width: 50px; height: auto; }
.facettensuche-auspraegungen { list-style: none; margin-left: 0; }
.facettensuche-auspraegungen li input { float: left; }
.facettensuche-selected { font-weight: bold; }


/* Grunddefinition Highligth */

.highlight_left_top_45deg, .highlight_horizont, .highlight_rund, .highlight_rund_klein {
    background-color: #1d8a27;
    border: 1px solid #ffffff;
    position: absolute;
    width: 100%;
    font-size: 16px;
    color: #ffffff;
    font-weight: bold;
    z-index: 99;
    text-align: center;
    padding: 5px;
}

/* Positionierung und Transform für Highlight */

.highlight_horizont { left: 0; top: 30px; }

.highlight_rund {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    vertical-align: middle;
    text-align: center;
    padding: 30px;
}

.highlight_rund_klein {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    vertical-align: middle;
    text-align: center;
    padding: 25px 17px;
}


.highlight_left_top_45deg {
    left: -90px;
    top: 50px;
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    position: relative;
}

/************************* Fileupload ******************************/

.qq-uploader { position: relative; width: 100%; }

.qq-upload-button {
    display: block; /* or inline-block */
    width: 105px;
    padding: 2px 0;
    text-align: center;
    background: #0e7c87;
    border-bottom: 1px solid #ddd;
    color: #ffffff;
}
.qq-upload-button-hover { background: #09ccb2; }
.qq-upload-button-focus { outline: 1px dotted black; }
.qq-upload-drop-area, .qq-upload-extra-drop-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 70px;
    z-index: 2;
    background: #FF9797;
    text-align: center;
}
.qq-upload-drop-area span {
    display: block;
    position: absolute;
    top: 50%;
    width: 100%;
    margin-top: -8px;
    font-size: 16px;
}
.qq-upload-extra-drop-area {
    position: relative;
    margin-top: 50px;
    font-size: 16px;
    padding-top: 30px;
    height: 20px;
    min-height: 40px;
}

.qq-upload-drop-area-active { background: #FF7171; }
.qq-upload-list { margin: 7px 15px; padding: 0; list-style: disc; }
.qq-upload-list li {
    margin: 0;
    padding: 0;
    line-height: 15px;
    font-size: 12px;
}

.qq-upload-file, .qq-upload-spinner, .qq-upload-size, .qq-upload-cancel, .qq-upload-failed-text {  margin-right: 7px; }
.qq-upload-spinner { 
    display: inline-block;
    background: url("../images/fileupload_loading.gif");
    width: 15px;
    height: 15px;
    vertical-align: text-bottom;
}

.qq-upload-size,.qq-upload-cancel { font-size: 11px; }
.qq-upload-failed-text { display: none; }
.qq-upload-fail .qq-upload-failed-text {  display: inline; }


.tooltip { font-weight: bold; float: right; }

.tooltip .tooltiptext {
    display:none;
    background-color: #FFFFFF;
    border: 7px solid #efefef;
    font-weight: normal;
    text-align: left;
    text-decoration: none;
    z-index: 500;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 3px 3px 8px 0px #AAAAAA;
}
.tooltip:hover .tooltiptext {
    display: block;
    position: absolute;
    width: 200px;
    right: 30px
}

/* ************ Bannerwerbung ************* */

.bannerwerbung img {
    width: 100%;
    height: auto;
}

/* ************ Footer Details *********** */

footer section div span.sub-headline { margin-bottom: 8px; display: block; } 
footer, footer a { color: #eeeeee;}
footer section div span, footer section div ul, footer section div p, footer section div div { width: 95%; }
footer section div ol { width: 90%; }

.copyfooter span, .copyfooter span a { color: #bcbcbc; }

/* ***************** Top Button ************* */

.go-top {
    position: fixed;
    bottom: 2em;
    right: 2em;
    text-decoration: none;
    color: white;
    background-color: rgba(0, 0, 0, 0.3);
    font-size: 12px;
    padding: 1em;
    display: none;
}

.go-top:hover {
    background-color: rgba(0, 0, 0, 0.6);
    color: #ffffff;
}

/* *********************** FontIcons *********************** */

@font-face {
    font-family: 'MobiriseIcons';
    src:  url('../fonts/mobirise.eot?m1l4yr');
    src:  url('../fonts/mobirise.eot?m1l4yr#iefix') format('embedded-opentype'),
    url('../fonts/mobirise.ttf?m1l4yr') format('truetype'),
    url('../fonts/mobirise.woff?m1l4yr') format('woff'),
    url('../fonts/mobirise.svg?m1l4yr#MobiriseIcons') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="mbri-"], [class*=" mbri-"] {
    font-family: 'MobiriseIcons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.mbri-add-submenu:before { content: "\e900"; }
.mbri-alert:before { content: "\e901"; }
.mbri-align-justify:before { content: "\e903"; }
/*.mbri-arrow-down:before { content: "\e908"; }*/
.mbri-arrow-down:before {
    content: " ";
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 10px solid #474747;
}
.mbri-arrow-next:before { content: "\e909"; }
.mbri-arrow-prev:before { content: "\e90a"; }
.mbri-arrow-up:before { content: "\e90b"; }
.mbri-bookmark:before { content: "\e90d"; }
.mbri-briefcase:before { content: "\e90f"; }
.mbri-calendar:before { content: "\e912"; }
.mbri-camera:before { content: "\e913"; }
.mbri-cart-add:before { content: "\e914"; }
.mbri-cart-full:before { content: "\e915"; }
.mbri-cash:before { content: "\e916"; }
.mbri-chat:before { content: "\e918"; }
.mbri-clock:before { content: "\e919"; }
.mbri-close:before { content: "\e91a"; }
.mbri-credit-card:before { content: "\e91e"; }
.mbri-cust-feedback:before { content: "\e920"; }
.mbri-delivery:before { content: "\e922"; }
.mbri-desktop:before { content: "\e923"; }
.mbri-devices:before { content: "\e924"; }
.mbri-download:before { content: "\e926"; }
.mbri-drag-n-drop:before { content: "\e928"; }
.mbri-edit:before { content: "\e929"; }
.mbri-file:before { content: "\e92e"; }
.mbri-flag:before { content: "\e92f"; }
.mbri-folder:before { content: "\e930"; }
.mbri-gift:before { content: "\e931"; }
.mbri-globe:before { content: "\e934"; }
.mbri-growing-chart:before { content: "\e935"; }
.mbri-hearth:before { content: "\e936"; }
.mbri-help:before { content: "\e937"; }
.mbri-home:before { content: "\e938"; }
.mbri-hot-cup:before { content: "\e939"; }
.mbri-idea:before { content: "\e93a"; }
.mbri-image-gallery:before { content: "\e93b"; }
.mbri-image-slider:before { content: "\e93c"; }
.mbri-info:before { content: "\e93d"; }
.mbri-key:before { content: "\e93f"; }
.mbri-laptop:before { content: "\e940"; }
.mbri-layers:before { content: "\e941"; }
.mbri-left-right:before { content: "\e942"; }
.mbri-left:before { content: "\e943"; }
.mbri-letter:before { content: "\e944"; }
.mbri-like:before { content: "\e945"; }
.mbri-link:before { content: "\e946"; }
.mbri-lock:before { content: "\e947"; }
.mbri-login:before { content: "\e948"; }
.mbri-logout:before { content: "\e949"; }
.mbri-magic-stick:before { content: "\e94a"; }
.mbri-map-pin:before { content: "\e94b"; }
.mbri-menu:before { content: "\e94c"; }
.mbri-mobile:before { content: "\e94d"; }
.mbri-music:before { content: "\e952"; }
.mbri-new-file:before { content: "\e953"; }
.mbri-opened-folder:before { content: "\e955"; }
.mbri-pages:before { content: "\e956"; }
.mbri-paper-plane:before { content: "\e957"; }
.mbri-photo:before { content: "\e959"; }
.mbri-photos:before { content: "\e95a"; }
.mbri-pin:before { content: "\e95b"; }
.mbri-play:before { content: "\e95c"; }
.mbri-plus:before { content: "\e95d"; }
.mbri-preview:before { content: "\e95e"; }
.mbri-print:before { content: "\e95f"; }
.mbri-protect:before { content: "\e960"; }
.mbri-question:before { content: "\e961"; }
.mbri-right:before { content: "\e967"; }
.mbri-sale:before { content: "\e96a"; }
.mbri-save:before { content: "\e96b"; }
.mbri-search:before { content: "\e96c"; }
.mbri-setting:before { content: "\e96d"; }
.mbri-share:before { content: "\e970"; }
.mbri-shopping-bag:before { content: "\e971"; }
.mbri-shopping-basket:before { content: "\e972"; }
.mbri-shopping-cart:before { content: "\e973"; }
.mbri-star:before { content: "\e977"; }
.mbri-success:before { content: "\e978"; }
.mbri-sun:before { content: "\e97a"; }
.mbri-timer:before { content: "\e97e"; }
.mbri-touch:before { content: "\e981"; }
.mbri-trash:before { content: "\e983"; }
.mbri-unlock:before { content: "\e987"; }
.mbri-update:before { content: "\e98a"; }
.mbri-upload:before { content: "\e98b"; }
.mbri-user:before { content: "\e98c"; }
.mbri-users:before { content: "\e98e"; }
.mbri-video-play:before { content: "\e98f"; }
.mbri-video:before { content: "\e990"; }
.mbri-wifi:before { content: "\e993"; }
.mbri-zoom-out:before { content: "\e995"; }


/*
 * jQuery FlexSlider v2.2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */


/* Browser Resets
*********************************/
.flex-container a:active, .flexslider a:active, .flex-container a:focus, .flexslider a:focus  {outline: none;}
.slides, .flex-control-nav, .flex-direction-nav {margin: 0; padding: 0; list-style: none;}


/* Icon Fonts
*********************************/
/* Font-face Icons */
@font-face {
    font-family: 'flexslider-icon';
    src:url('../fonts/flexslider-icon.eot');
    src:url('../fonts/flexslider-icon.eot?#iefix') format('embedded-opentype'),
    url('../fonts/flexslider-icon.woff') format('woff'),
    url('../fonts/flexslider-icon.ttf') format('truetype'),
    url('../fonts/flexslider-icon.svg#flexslider-icon') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* FlexSlider Necessary Styles
*********************************/
.flexslider {margin: 0; padding: 0;}
.flexslider .slides > li {display: none; -webkit-backface-visibility: hidden;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {width: 100%; height: auto; display: block;}
.flex-pauseplay span {text-transform: capitalize;}

/* Clearfix for the .slides element */
.slides:after {content: "\0020"; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;}
html[xmlns] .slides {display: block;}
* html .slides {height: 1%;}

/* No JavaScript Fallback */
.no-js .slides > li:first-child {display: block;}

/* FlexSlider Default Theme
*********************************/
.flexslider { margin: 0 0 40px 0; background: #fff; border: 0px solid #fff; position: relative; -webkit-border-radius: 0px; -moz-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; -webkit-box-shadow: 0 0px 0px rgba(0,0,0,.2); -moz-box-shadow: 0 0px 0px rgba(0,0,0,.2); -o-box-shadow: 0 0px 0px rgba(0,0,0,.2); box-shadow: 0 0px 0px rgba(0,0,0,.2); zoom: 1; }
.flex-viewport { max-height: 2000px; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; -o-transition: all 1s ease; transition: all 1s ease; }
.loading .flex-viewport { max-height: 300px; }
.flexslider .slides { zoom: 1; }
.carousel li { margin-right: 5px; }

/* Direction Nav */
.flex-direction-nav {*height: 0;}
.flex-direction-nav a  { text-decoration:none; display: block; width: 40px; height: 40px; margin: -20px 0 0; position: absolute; top: 50%; z-index: 10; overflow: hidden; opacity: 0; cursor: pointer; color: rgba(0,0,0,0.8); text-shadow: 1px 1px 0 rgba(255,255,255,0.3); -webkit-transition: all .3s ease; -moz-transition: all .3s ease; transition: all .3s ease; }
.flex-direction-nav .flex-next { text-align: right; }
.flexslider:hover .flex-prev { opacity: 0.7; left: 10px; }
.flexslider:hover .flex-next { opacity: 0.7; right: 10px; }
.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover { opacity: 1; }
.flex-direction-nav .flex-disabled { opacity: 0!important; filter:alpha(opacity=0); cursor: default; }
.flex-direction-nav a:before  { font-family: "flexslider-icon"; font-size: 40px; display: inline-block; content: '\f001'; }
.flex-direction-nav a.flex-next:before  { content: '\f002'; }

/* Pause/Play */
.flex-pauseplay a { display: block; width: 20px; height: 20px; position: absolute; bottom: 5px; left: 10px; opacity: 0.8; z-index: 10; overflow: hidden; cursor: pointer; color: #000; }
.flex-pauseplay a:before  { font-family: "flexslider-icon"; font-size: 20px; display: inline-block; content: '\f004'; }
.flex-pauseplay a:hover  { opacity: 1; }
.flex-pauseplay a.flex-play:before { content: '\f003'; }

/* Control Nav */
.flex-control-nav {width: 100%; position: absolute; bottom: -40px; text-align: center;}
.flex-control-nav li {margin: 0 6px; display: inline-block; zoom: 1; *display: inline;}
.flex-control-paging li a {width: 11px; height: 11px; display: block; background: #666; background: rgba(0,0,0,0.5); cursor: pointer; text-indent: -9999px; -webkit-border-radius: 20px; -moz-border-radius: 20px; -o-border-radius: 20px; border-radius: 20px; -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.3); -moz-box-shadow: inset 0 0 3px rgba(0,0,0,0.3); -o-box-shadow: inset 0 0 3px rgba(0,0,0,0.3); box-shadow: inset 0 0 3px rgba(0,0,0,0.3); }
.flex-control-paging li a:hover { background: #333; background: rgba(0,0,0,0.7); }
.flex-control-paging li a.flex-active { background: #000; background: rgba(0,0,0,0.9); cursor: default; }

.flex-control-thumbs {margin: 5px 0 0; position: static; overflow: hidden;}
.flex-control-thumbs li {width: 25%; float: left; margin: 0;}
.flex-control-thumbs img {width: 100%; display: block; opacity: .7; cursor: pointer;}
.flex-control-thumbs img:hover {opacity: 1;}
.flex-control-thumbs .flex-active {opacity: 1; cursor: default;}

@media screen and (max-width: 860px) {
    .flex-direction-nav .flex-prev { opacity: 1; left: 10px;}
    .flex-direction-nav .flex-next { opacity: 1; right: 10px;}
}


div.cookie-hinweis {
    width: 100%;
    margin: auto;
    position: relative;
    background-color: #8aa72d;
    color: #fff;
    padding: 5px;
    line-height: 1.3;
}

div.cookie-hinweis p {
    max-width: 1170px;
    margin: auto;
}

div.cookie-hinweis a {
    color: #d4d4d4;
}

/* Individuelle Short Anweisungen */

.auto-width { width: auto; display: inline-block; min-width: 300px; }

/***** Lieferadresse *****/

.lieferadressOption div.nutz-box { display: none; }
.lieferadressOption > input:checked + div.nutz-box { display: block; }

/* Consent Popup */

.consent-background-mask {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    backdrop-filter: blur(2px);
    background-color: rgba(1,1,1,0.5);
}

.consent-popup {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-color: white;
    width: 80%;
    max-width: 800px;
    z-index: 1010;
    padding: 20px;
    border-radius: 5px;
}


.consent-head {
    position: relative;
    width: 100%;

}

.consent-popup h3 {
    margin-bottom: 10px;
    width: 50%;
    display: inline-block;
}

.consent-einstellungen-btn {
    position: absolute;
    right: 0px;
    top: 0px;
    cursor: pointer;

}

.consent-std-text { }
.consent-accept-all, .consent-accept-choice { display: inline-block; }

.consent-std-text b {
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

.consent-popup button {
    margin-top: 10px;
}

.consent-extended {
    display: none;
}

.consent-option-headline {
    position: relative;
    cursor: pointer;
    padding-top: 5px;
    padding-bottom: 5px;
}

.consent-option-headline:hover {
    background-color: #fafafa;
}

.consent-option-headline b {
    font-weight: bold;
}

.consent-switch {
    border-radius: 8px;
    height: 16px;
    width: 32px;
    background-color: #d07e7e;
    position: absolute;
    right: 20px;
    top: 3px;
}

.consent-switch-btn {
    border-radius: 6px;
    height: 12px;
    width: 12px;
    position: absolute;
    left: 2px;
    top: 2px;
    background-color: white;
}

.consent-switch.switch-on {
    background-color: #4dad4d;
}

.consent-switch.switch-on .consent-switch-btn {
    left: unset;
    right: 2px;
}

.consent-option-content {
    margin: 10px;
    display: none;
}

.chevron {
    position: absolute;
    right: 0;
    top: 8px;
}

.chevron.down {
    border-top: 5px solid black;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 0;
}

.chevron.up {
    border-top: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid black;
}

.ab_adresse {
    text-align: left!important;
}

/* ****************** Responsive Anweisungen **************** */
@media (max-width: 1300px) {
    .flex-container .flex-article span.artikel-bild { height: 280px; }
}

@media (max-width: 1115px) {
    .flex-basis-25 { flex-basis: 33.3%; }
    .flex-container .flex-article span.artikel-bild { height: 300px; }
}

@media (max-width: 900px) {
    .flex-basis-25 { flex-basis: 50%; }
}

@media (max-width: 815px) {
    .flex-item-1 { order: 1; }
    .flex-item-2 { order: 3; }
    .flex-item-3 { order: 2; }

    .flex-container { display: block; }
    .flex-basis-33 { flex-basis: 50%; }
    .flex-basis-75, .flex-basis-50, .flex-item-suche { flex-basis: 100%; text-align: center; }
    .flex-basis-25, .flex-basis-33, .flex-basis-75, .flex-basis-50, .flex-item-suche { padding: 10px 0 10px 0; }
    
    .flex-basis-logo, .flex-basis-konto { flex-basis: 50%; }
    .flex-basis-suche { flex-basis: 100%; }
    div.suchBox { top: 0; }

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

@media (max-width: 785px) {
    .desktop { display: none; }
    
    /* Navigation */
    .nav { padding: 0 0 0 0; background-color: #7d7d7d;  }
    .nav > li { display: block; border-top: 1px solid #5c5c5c; }

    .shop-logo img { height: 80px; }
    .flex-container .flex-article span.artikel-bild a img { width: 90%; }
    .flex-basis-10 { flex-basis: 50%; }
    .spaces-right, .spaces-left { margin-right: 0px; margin-left: 0; }
    .auto-width { width: 100%; }

}

@media (max-width: 600px) {
    .shop-logo img { height: 50px; }
    .flex-basis-25, .flex-basis-10 { flex-basis: 100%; }
    .flex-basis-10 { text-align: center; }
    .flex-facette { flex-basis: 50%; }
    footer section div span, footer section div ul, footer section div p, footer section div div { width: 99%; }
    footer section div ol { width: 95%; }

    .standard-text-indent { text-indent: 0px; }
    
    .table { display: table; width: 100%; }
    .table-row { display: block; margin-bottom: 15px; }
    .table-cell { display: block; padding: 3px; text-align: center; }
    .farbwechsel:nth-child(even) { background-color: #f2f2f2; }
    ol.steps li span:before { content: ""; }
    .response-hidden, ol.steps li.step2  { display: none; }
    .desktop-hidden, .table .table-row .desktop-hidden { display: block; }
    .response-block { display: block; }
    .table-not-response { display: table-row; }
    .cell-not-response { display: table-cell; }
    .checkout-list-container div div div { text-align: left; }
    .text-position-right { text-align: right; }
    .text-position-left { text-align: left; }
}