@charset "utf-8";

/* Standard-Elemente */

:root {
    --main-white-color: white;
    --main-lightgrey-color: #f2f2f2;
    --main-black-color: black;
    --main-color: #0079c5;
    --main-second-color: #63666a;
    --main-fontawesome: 'fontawesome';
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4 {
    margin: 0px;
    padding: 0px;
    font-weight: normal;
    font-size: 100%;
}

body,
input,
select {
    font-family: "futura-pt";
    font-weight: 300;
    font-size: 1rem;
    color: var(--main-black-color);
    letter-spacing: 0.02em;
}

.spriteBack {
    background-image: url(../../img/spriteBack.png);
    background-repeat: no-repeat;
}

.clear {
    clear: both;
    width: 0px;
    height: 0px;
}

.error {
    background-color: #9f0000;
    color: #FFFFFF;
    font-size: 90%;
    padding: 8px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.error::before {
    content: '\f071';
    font-family: 'fontawesome';
    font-weight: 300;
    display: inline-block;
    margin-right: 10px;
}

.success {
    background-color: #008b00;
    color: #FFFFFF;
    font-size: 90%;
    padding: 8px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.success::before {
    content: '\f00c';
    font-family: 'fontawesome';
    font-weight: 300;
    display: inline-block;
    margin-right: 10px;
}

b,
strong {
    font-weight: 700;
    font-style: normal;
}

@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: inherit;
}

:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: inherit;
    opacity: 1;
}

::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: inherit;
}


/* loadingscreen */

.loadingscreen {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
}

.loadingscreen-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -22.5px;
    margin-top: -22.5px;
    height: 40px;
    width: 40px;
    border: 5px solid rgba(255, 255, 255, 0.4);
    border-top-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    animation: spinloader 1s infinite linear;
}


/* Dialog */

.containerDialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}

.containerDialog.background {
    background-color: rgba(0, 0, 0, 0.7);
}

.layerDialog {
    position: absolute;
    background-color: #FFFFFF;
    width: 90%;
    max-height: 90%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    overflow: auto;
    border-radius: 10px;
    box-shadow: 0 0 5px #000000;
    max-width: 500px
}

.layerDialog .inner {
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.layerDialog .inner>.close {
    font-family: 'fontawesome';
    font-weight: 300;
    float: right;
    text-decoration: none;
    color: #333333;
    font-size: 150%;
    margin-left: 15px;
    margin-bottom: 15px;
}

.layerDialog .text {
    margin-bottom: 15px;
}

.layerDialog .list {
    margin-bottom: 15px;
    clear: both;
}

.layerDialog .list .item {
    overflow: hidden;
}

.layerDialog .list .item .right {
    float: right;
}

.layerDialog .list .item:before {
    font-family: 'fontawesome';
    font-weight: 300;
    content: '\f0da\00A0';
}

.layerDialog .form {
    margin-bottom: 15px;
}

.layerDialog .form .input {
    box-sizing: border-box;
    width: 100%;
    height: 30px;
    border: 1px solid #333333;
    background: none;
    border-radius: 3px;
    padding: 0 5px;
}

.layerDialog .form .textarea {
    box-sizing: border-box;
    border: 1px solid #333333;
    background: none;
    border-radius: 3px;
    width: 100%;
    height: 120px;
    font-family: inherit;
    font-style: normal;
    padding: 5px;
}

.layerDialog .action {
    clear: both;
    overflow: hidden;
}

.layerDialog .action .left {
    width: 49%;
    float: left;
}

.layerDialog .action .right {
    width: 49%;
    float: right;
}

.layerDialog .action a {
    display: block;
    background-color: #f2f2f2;
    color: #333333;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 3px;
}

.layerDialog .action button {
    display: block;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    text-align: left;
    width: 100%;
    background-color: #f2f2f2;
    color: #333333;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 3px;
    border: none;
    cursor: pointer;
}

.layerDialog .action button::-moz-focus-inner {
    border: none;
    padding: 0;
}

.layerDialog .action a.close:before {
    font-family: 'fontawesome';
    content: '\f07a\00A0';
    font-weight: 300;
}

.layerDialog .action a.pay:before {
    font-family: 'fontawesome';
    content: '\f0d6\00A0';
    font-weight: 300;
}

.layerDialog .action a.abort:before {
    font-family: 'fontawesome';
    content: '\f00d\00A0';
    font-weight: 300;
}

.layerDialog .action a.watchlist:before {
    font-family: 'fontawesome';
    content: '\f005\00A0';
    font-weight: 300;
}

.layerDialog .action button.send:before {
    font-family: 'fontawesome';
    content: '\f003\00A0';
    font-weight: 300;
}

.layerDialog .action button.request:before {
    font-family: 'fontawesome';
    content: '\f00c\00A0';
    font-weight: 300;
}

.layerDialog .action a:hover,
.layerDialog .action button:hover {
    color: #f2f2f2;
    background-color: #333333;
}


/* Header */

.containerHead {
    margin-bottom: 35px;
    position: relative;
}

#containerHead img {
    width: 100%;
    height: auto;
}

.containerHead .search {
    position: relative;
    /* float: right; */
    /* height: 24px; */
    border-bottom: 1px solid #FFFFFF;
    /* padding-right: 24px; */
    /* width: 164px; */
    padding: 2px;
}

.containerHead .search .input {
    box-sizing: border-box;
    border: none;
    background: none;
    color: #FFFFFF;
    height: 24px;
    width: 100%;
    font-size: 90%;
    padding: 0 5px;
}

.containerHead .search .button {
    box-sizing: border-box;
    font-family: 'fontawesome';
    font-weight: 300;
    border: none;
    background: none;
    padding: 0;
    color: #FFFFFF;
    height: 24px;
    width: 24px;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 90%;
    cursor: pointer;
}

.containerHead .bx-controls {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
    z-index: 1;
}

.containerHead .bx-pager-item {
    display: inline-block;
    vertical-align: middle;
    margin: 0 15px;
}

.containerHead .bx-pager-link {
    display: block;
    width: 20px;
    height: 20px;
    background-color: #FFFFFF;
    border-radius: 10px;
    font-size: 0;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

.containerHead .bx-pager-link:hover,
.containerHead .bx-pager-link.active {
    background-color: #000000;
}

.containerHead .bx-prev,
.containerHead .bx-next {
    position: absolute;
    font-family: 'fontawesome';
    font-weight: 300;
    text-decoration: none;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    line-height: 0;
    max-width: 10%;
}

.containerHead .bx-prev {
    left: 20px;
}

.containerHead .bx-next {
    right: 20px;
}

.containerHead .slider .inner {
    position: relative;
}

.imageTheme {
    width: 100%;
}

.containerHead .itemThemeImage {
    line-height: 0;
}

.containerHead .itemThemeShadow {
    line-height: 0;
}

.containerHead .address {
    font-size: 70%;
}

.containerHead .address p {
    margin-bottom: 8px;
    color: #000;
    line-height: 140%;
}

.containerHead .address p:last-child {
    margin-bottom: 0px;
}

.containerHead .address a {
    color: #000000;
    text-decoration: none;
}

.containerHead .address a:hover {
    text-decoration: underline;
}


/* Service Navi Design 1,2,4,5 */

.containerHead .serviceNavigationTop {
    float: left;
    margin-right: 10px;
}

.containerHead .serviceNavigationTop ul {
    list-style: none;
}

.containerHead .serviceNavigationTop li {
    float: left;
    height: 24px;
    line-height: 24px;
}

.containerHead .naviLinkService1,
.containerHead .naviLinkService1open {
    display: block;
    color: #FFF;
    padding: 2px 10px;
    text-decoration: none;
    -webkit-transition: 500ms all;
    transition: 500ms all;
    font-size: 85%;
}

.containerHead .naviLinkService1:hover,
.containerHead .naviLinkService1open {
    background-color: rgba(255, 255, 255, 0.2);
}


/* Header 4 */

#containerHead .top {
    background-color: var(--main-color);
    position: relative;
    padding: 0 40px;
    width: 100%;
}

#containerHead .top .inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 0;
}

#containerHead .logo {
    width: 25%;
    line-height: 0;
}

#containerHead .logo img {
    width: 100%;
}

#containerHead .action {
    width: 75%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-content: space-between;
}

#containerHead .social {
    margin-right: 10px;
}

#containerHead .social a {
    display: inline-block;
    line-height: 26px;
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'fontawesome';
    font-weight: 300;
    font-size: 1.25rem;
    margin-right: 10px;
}

#containerHead .slider {
    padding: 0 40px;
}

#containerHead .slider .inner {
    max-width: 1300px;
    margin: 0 auto;
}

#containerHead .bx-controls {
    bottom: 15px;
}

.itemThemeBoxInner {
    line-height: 0;
    overflow: hidden;
}


/* Navi Top */

.containerHead #naviLinkTop {
    position: relative;
    padding: 10px 20px 0 20px;
}

.containerHead .layerNavigationTop {
    width: 100%;
}

.containerHead .layerNavigationTop ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-end;
}

.containerHead .naviLinkTopItem1,
.naviLinkTopItem1open {
    position: relative;
    text-decoration: none;
    -webkit-transition: 500ms all;
    transition: 500ms all;
}

.containerHead .naviLinkTopItem1 a,
.containerHead .naviLinkTopItem1open a {
    text-decoration: none;
    padding: 8px;
    color: #FFF;
    font-size: 1.2rem;
}

.containerHead .naviLinkTop1Space {
    display: none;
}

.containerHead .naviLinkTop1:hover {
    opacity: 0.5;
    transition: all 0.5s ease-out;
    background-color: rgba(255, 255, 255, 0.2);
}

.containerHead .naviLinkTopItem1:hover,
.containerHead .naviLinkTopItem1open {
    text-decoration: none;
}

.containerHead .naviLinkTop1open,
.containerHead .naviLinkTopItem1open {
    text-decoration: none;
    font-weight: 700;
}

.containerHead .naviLinkTopOver2 {
    color: var(--main-color)!important;
}

.naviLinkTop1Root .containerNaviMouseOver1 {
    position: absolute;
    top: 30px;
    left: 0;
}

.naviLinkTopItem1:hover .containerNaviMouseOver1 {
    display: block;
}

.naviTopSeparator {
    border-bottom: 1px solid #e2e2e2;
    margin: 10px auto 0 auto;
    max-width: 1300px;
}


/* Suchresultat */

#layerSearchBox {
    background-color: #FFFFFF;
    margin-bottom: 20px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 52;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    border-radius: 0px 0px 10px 10px;
}

#searchBoxHead {
    margin: 0 10px;
    padding: 10px 0;
    overflow: hidden;
    border-bottom: 1px solid #555555;
}

#searchBoxHeadTitle {
    float: left;
    color: #333333;
}

#searchBoxHeadClose {
    float: right;
}

#searchBoxHeadClose a {
    font-family: 'fontawesome';
    font-weight: 300;
    color: #333333;
    text-decoration: none;
}

#searchBoxKey {
    margin: 0 10px;
    padding: 5px 0;
    font-size: 90%;
    color: #555555;
}

#searchBoxContent {
    overflow: hidden;
}

.searchBoxResult {
    margin: 0 10px 10px 10px;
}

.searchBoxResultCount {
    padding: 5px;
    background-color: #333333;
    color: #FFFFFF;
    font-size: 80%;
    margin-bottom: 10px;
}

.itemSearchBox {
    display: block;
    font-size: 80%;
    color: #333333;
    text-decoration: none;
    padding: 2px 0;
    transition: padding 500ms;
}

.itemSearchBox:before {
    content: '\f0da';
    font-family: 'fontawesome';
    font-weight: 300;
}

.itemSearchBox:hover {
    padding-left: 5px;
}

.linkSearchBoxResultNavi {
    color: #555555;
    font-size: 90%;
    text-decoration: none;
}

.linkSearchBoxResultNavi.active {
    color: #333333;
    font-weight: bold;
}

.arrowSearchBoxResultNavi {
    font-family: 'fontawesome';
    font-weight: 300;
    color: #333333;
    text-decoration: none;
}


/* Responsive Navi */

#layerNavigationResp {
    width: 0%;
    height: 100%;
    position: fixed;
    z-index: 99;
    overflow: auto;
    display: none;
    background-color: #333333;
    -webkit-transition: 500ms width;
    transition: 500ms width;
    padding-bottom: 50px;
}

#layerNavigationResp .search {
    margin: 30px 20px;
}

#layerNavigationResp .search .input {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 10px 0;
    width: 55%;
}

#layerNavigationResp .search .button {
    background: none;
    font-family: 'fontawesome';
    color: white;
    font-size: 2rem;
    border: none;
}

#layerNavigationResp .layerContentboxMember {
    margin: 35px 20px 35px 20px;
}

#layerNavigationResp .layerContentboxMember .buttonsAction a,
#layerNavigationResp .naviLinkMember1,
#layerNavigationResp .naviLinkMember1open {
    background-color: rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    padding: 5px 10px;
    border-radius: 3px;
    text-decoration: none;
    font-family: 'fontawesome';
    font-weight: 300;
    font-size: 2rem;
    margin-right: 15px;
}

#buttonNavigationRespClose {
    width: 27px;
    height: 27px;
    background-image: url(../../../../../img/lb/close.png);
    position: absolute;
    top: 20px;
    right: 15px;
    cursor: pointer;
}

.naviLinkResp1Root,
.naviLinkResp2Root,
.naviLinkResp3Root {
    list-style: none;
    padding-right: 55px;
}

.naviLinkResp2Root,
.naviLinkResp3Root {
    padding-right: 0px;
}

.naviLinkResp3Root {
    font-size: 90%;
    margin-left: 30px;
}

.naviLinkResp1,
.naviLinkResp1open {
    display: block;
    color: #FFF;
    padding: 15px 20px;
    text-decoration: none;
    font-size: 1.2rem;
}

.naviLinkResp2,
.naviLinkResp2open,
.naviLinkResp3,
.naviLinkResp3open {
    display: block;
    color: #FFF;
    padding: 10px 20px 10px 50px;
    text-decoration: none;
    font-size: 100%;
}

.naviLinkResp1:hover,
.naviLinkResp1open,
.naviLinkResp2:hover,
.naviLinkResp2open,
.naviLinkResp3:hover,
.naviLinkResp3open {
    background-color: rgba(255, 255, 255, 0.2);
}


/* Start */

#layerMainStart {
    padding-left: 220px;
    margin: 0 -5px;
}

#layerStartContent {
    max-width: 1010px;
    padding: 60px 15px 50px 15px;
    margin: 0px auto;
}

.itemStartContent {
    float: left;
    margin-bottom: 10px;
}

.itemStartContent.big {
    width: 66.6666%;
}

.itemStartContent.small {
    width: 33.3333%;
}

.itemStartContent.full {
    width: 100%;
}

.itemStartContentInner {
    margin: 0 5px;
    background-color: #eee;
    overflow: hidden;
    position: relative;
    border: 1px solid #ddd;
    background-color: #fff;
}

.itemStartContentBody {
    padding: 10px;
}

.itemStartContent.big .itemStartContentImage,
.itemStartContent.full .itemStartContentImage {
    line-height: 0;
    width: 100%;
    overflow: hidden;
    text-align: center;
}

.itemStartContent.small .itemStartContentImage {
    margin-bottom: 10px;
    line-height: 0;
}

.itemStartContentImage img {
    max-width: 100%;
    height: auto;
}

.itemStartContent.big .itemStartContentRight,
.itemStartContent.full .itemStartContentRight {
    width: 100%;
}

.itemStartContentTitle {
    margin-bottom: 10px;
}

.itemStartContentTitle h1 {
    font-size: 1.2rem;
}

.itemStartContentTitle h2 {
    font-size: 110%;
    font-weight: 500;
    font-style: normal;
}

.itemStartContentTitle h3 {
    font-size: 95%;
}

.itemStartContentText {
    font-size: 85%;
    line-height: 150%;
}


/* Main */

#containerMain {
    padding: 0px 40px;
}

#layerMain {
    width: 100%;
    max-width: 1300px;
    margin: 0px auto;
    padding-bottom: 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

#buttonMainNavigation {
    width: 100%;
    color: #FFF;
    padding: 0 10px;
    cursor: pointer;
    display: none;
    text-align: right;
    font-size: 1.5rem;
    margin-top: 15px;
}

#buttonMainNavigation:after {
    content: '\f0c9';
    font-family: 'fontawesome';
    font-weight: 300;
    padding-left: 20px;
    font-size: 150%;
}

#layerMainLeft {
    width: 200px;
    float: left;
    margin-right: 60px;
}

#layerMainContent,
#layerMainBottom {
    padding: 0px;
    margin-bottom: 20px;
}

#layerMainContent.start,
#layerMainBottom.start {
    padding-right: 0;
}

#layerMainRight {
    width: 200px;
    float: right;
}

#buttonTop {
    display: none;
    position: fixed;
    z-index: 999;
    right: 20px;
    bottom: 20px;
    font-family: 'fontawesome';
    font-weight: 300;
    color: #000;
    text-decoration: none;
    font-size: 200%;
}


/* Navigation Links */

.naviLinkLeft1Root {
    list-style: none;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
    font-weight: normal;
    font-style: normal;
    width: 200px;
}

.naviLinkLeftItem1,
.naviLinkLeftItem1open {
    position: relative;
    border-top: 1px solid #ccc;
}

.naviLinkLeftItem3 {
    font-size: 95%;
    padding-left: 10px;
}

.naviLinkLeftItem4 {
    font-size: 90%;
    padding-left: 20px;
}

.naviLinkLeftItem5 {
    font-size: 85%;
    padding-left: 30px;
}

.naviLinkLeft3open {
    padding-left: 20px !important;
}

.naviLinkLeft4open {
    padding-left: 30px !important;
}

.naviLinkLeft5open {
    padding-left: 40px !important;
}

.naviLinkLeftItem2,
.naviLinkLeftItem2open,
.naviLinkLeftItem3,
.naviLinkLeftItem3open,
.naviLinkLeftItem4,
.naviLinkLeftItem4open,
.naviLinkLeftItem5,
.naviLinkLeftItem5open {
    position: relative;
}

.naviLinkLeft1,
.naviLinkLeft1open {
    display: block;
    color: #000000;
    text-decoration: none;
    font-size: 100%;
    padding: 10px;
    -webkit-transition: 500ms all;
    transition: 500ms all;
}

.naviLinkLeft2,
.naviLinkLeft2open,
.naviLinkLeft3,
.naviLinkLeft3open,
.naviLinkLeft4,
.naviLinkLeft4open,
.naviLinkLeft5,
.naviLinkLeft5open {
    transition: 500ms all;
}

.naviLinkLeftItem1:hover .naviLinkLeft1,
.naviLinkLeftItem2:hover .naviLinkLeft2,
.naviLinkLeftItem3:hover .naviLinkLeft3,
.naviLinkLeftItem4:hover .naviLinkLeft4,
.naviLinkLeftItem5:hover .naviLinkLeft5 {
    padding-left: 20px;
}

.naviLinkLeft1open {
    font-weight: 700;
    font-style: normal;
    background-color: #eeeeee;
}

.naviLinkLeft2Root {
    list-style: none;
    background-color: #eeeeee;
    font-weight: normal;
    font-style: normal;
}

.naviLinkLeft2,
.naviLinkLeft2open,
.naviLinkLeft3,
.naviLinkLeft3open,
.naviLinkLeft4,
.naviLinkLeft4open,
.naviLinkLeft5,
.naviLinkLeft5open {
    display: block;
    text-decoration: none;
    color: #000000;
    padding: 5px 10px;
}

.naviLinkLeft2:hover,
.naviLinkLeft2open,
.naviLinkLeft3:hover,
.naviLinkLeft3open,
.naviLinkLeft4:hover,
.naviLinkLeft4open,
.naviLinkLeft5:hover,
.naviLinkLeft5open {
    color: #000000;
    background-color: #dddddd;
}

.naviLinkLeft2open {
    font-weight: 500;
    font-style: normal;
    font-size: 100%;
}

.naviLinkLeft3open {
    font-weight: 500;
    font-style: normal;
    font-size: 95%;
}

.naviLinkLeft4open {
    font-weight: 500;
    font-style: normal;
    font-size: 90%;
}

.naviLinkLeft5open {
    font-weight: 500;
    font-style: normal;
    font-size: 85%;
}

.containerNaviMouseOver1,
.containerNaviMouseOver2,
.containerNaviMouseOver3,
.containerNaviMouseOver4,
.containerNaviMouseOver5 {
    position: absolute;
    left: 100%;
    top: 10;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.6);
    background-color: #FFFFFF;
    padding: 10px;
    display: none;
    z-index: 99;
}

.naviLinkLeftItem1:hover .containerNaviMouseOver1,
.naviLinkLeftItem2:hover .containerNaviMouseOver2,
.naviLinkLeftItem3:hover .containerNaviMouseOver3,
.naviLinkLeftItem4:hover .containerNaviMouseOver4,
.naviLinkLeftItem5:hover .containerNaviMouseOver5 {
    display: block;
}

.naviLinkLeftOver2Root,
.naviLinkLeftOver3Root,
.naviLinkLeftOver4Root,
.naviLinkLeftOver5Root,
.naviLinkLeft3Root,
.naviLinkLeft4Root,
.naviLinkLeft5Root,
.naviLinkTopOver2Root,
.naviLinkTop2Root {
    list-style: none;
}

.naviLinkLeftOver2,
.naviLinkLeftOver3,
.naviLinkLeftOver4,
.naviLinkLeftOver5,
.naviLinkTopOver2 {
    font-size: 100%;
    display: block;
    padding: 10px 20px;
    width: 230px;
    color: #000000;
    text-decoration: none;
}

.naviLinkLeftOver2:hover,
.naviLinkLeftOver3:hover,
.naviLinkLeftOver4:hover,
.naviLinkLeftOver5:hover,
.naviLinkTopOver2:hover {
    background-color: #ddd;
}


/* ContentBox */

.contentbox-button {
    background-color: #EEEEEE;
    padding: 10px;
    cursor: pointer;
    display: none;
    margin-bottom: 20px;
}

.contentbox-button::before {
    content: '\f1ea\00A0';
    font-family: 'fontawesome';
    font-weight: 300;
}

.contentbox-list {
    overflow: hidden;
}

.contentbox-item {
    margin-bottom: 20px;
}

.contentbox-inner {
    background-color: #eee;
    overflow: hidden;
}

.contentbox-head {
    border-bottom: 1px solid #ccc;
    margin: 10px;
    padding-bottom: 5px;
}

.contentbox-title {
    font-weight: 500;
    font-style: normal;
    color: #000;
    font-size: 100%;
}

.contentbox-subtitle {
    font-size: 90%;
    color: #000;
    font-weight: 200;
    font-style: normal;
}

.contentbox-image {
    margin: 10px;
}

.contentbox-image img {
    display: block;
    width: 100%;
    height: auto;
}

.contentbox-text {
    font-size: 90%;
    color: #000;
    margin: 10px;
}

.contentbox-text img {
    max-width: 100%;
    height: auto;
}


/* ContentBox unten */

#layerMainBottom .contentbox-item {
    display: inline-block;
    vertical-align: top;
    width: 33.33%;
}

#layerMainBottom .contentbox-list {
    margin: 0 -10px;
}

#layerMainBottom .contentbox-inner {
    margin: 0 10px;
}


/* ContentBox Member */

.layerContentboxMember {
    display: flex;
    margin-right: 20px;
}

.layerContentboxMember .title {
    display: none;
}

.naviLinkMember1Root {
    list-style: none;
}

.layerContentboxMember .buttonsAction {
    width: unset;
}

.layerContentboxMember .buttonsAction a,
.naviLinkMember1,
.naviLinkMember1open {
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    padding: 5px 10px;
    border-radius: 3px;
    text-decoration: none;
    font-family: 'fontawesome';
    font-weight: 300;
    font-size: 1.5rem;
}

.layerContentboxMember .buttonsAction .button {
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    cursor: pointer;
    border-radius: 3px;
    padding: 5px 10px;
    font-family: 'fontawesome';
    font-weight: 300;
    font-size: 1.5rem;
}

.layerContentboxMember .buttonsAction a:hover,
.naviLinkMember1:hover,
.naviLinkMember1open,
.layerContentboxMember .buttonsAction .button:hover {
    background-color: #EEEEEE;
    color: #333333;
    transition: all 0.5s ease-out;
}


/*.layerContentboxMember {
	margin-bottom: 20px;
}
.layerContentboxMember > .title {
	padding-bottom: 5px;
	border-bottom: 1px solid #CCCCCC;
	margin-bottom: 10px;
}
.layerContentboxMember > .title:before {
	content: '\f007\00A0';
	font-family: 'fontawesome';
}
.layerContentboxMember .form.forgotPassword {
	margin-top: 10px;
	display: none;
}
.layerContentboxMember .form .item {
	margin-bottom: 10px;
}
.layerContentboxMember .form .input {
	box-sizing: border-box;
	width: 100%;
	padding: 0 5px;
	border: 1px solid #CCCCCC;
	background: none;
	border-radius: 3px;
	height: 30px;
}
.layerContentboxMember .form .action {
	text-align: right;
	overflow: hidden;
}
.layerContentboxMember .form .link {
	display: inline-block;
	vertical-align: middle;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-decoration: none;
	background-color: #333333;
	text-align: center;
	color: #FFFFFF;
	font-family: 'fontawesome';
	border-radius: 3px;
	float: right;
	margin-left: 5px;
}
.layerContentboxMember .form .button {
	box-sizing: border-box;
	vertical-align: middle;
	width: 30px;
	height: 30px;
	border: none;
	background: none;
	background-color: #333333;
	text-align: center;
	color: #FFFFFF;
	cursor: pointer;
	font-family: 'fontawesome';
	border-radius: 3px;
	float: right;
	margin-left: 5px;
}*/


/* Shop-Filter */

.shopfilter {
    margin-bottom: 25px;
}

.shopfilter-list {
    margin: 0 -15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.shopfilter-list-item {
    margin-bottom: 15px;
}

.shopfilter-list-item-inner {
    position: relative;
    margin: 0 15px;
}

.shopfilter-list-link {
    display: block;
    background-color: #EEEEEE;
    color: #333333;
    border: 1px solid #CCCCCC;
    padding: 0 36px 0 7px;
    height: 28px;
    line-height: 28px;
    font-size: 80%;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    text-overflow: ellipsis;
}

.shopfilter-list-link:hover,
.shopfilter-list-link.active {
    background-color: #333333;
    color: #FFFFFF;
}

.shopfilter-list-button {
    border: 1px solid #CCCCCC;
    padding: 10px 36px 10px 7px;
    font-size: 1rem;
    position: relative;
    cursor: pointer;
    text-overflow: ellipsis;
}

.shopfilter-list-button::after {
    position: absolute;
    content: '\f0d7';
    font-family: 'fontawesome';
    font-weight: 300;
    display: block;
    right: 10px;
    top: 0px;
    font-size: 1.2rem;
    line-height: 2.75rem;
}

.shopfilter-list-button.active::after {
    content: '\f00c';
}

.shopfilter-list-item.open .shopfilter-list-button::after {
    content: '\f0d8';
}

.shopfilter-list-button:hover::after {
    background-color: #efefef;
}

.shopfilter-list-popup {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 10;
    display: none;
}

.shopfilter-list-item.open .shopfilter-list-popup {
    display: block;
}

.shopfilter-list-popup-inner {
    max-height: 300px;
    border: 1px solid #CCCCCC;
    border-top: none;
    background-color: #FFFFFF;
    overflow: auto;
}

.shopfilter-list-popup-item a {
    display: block;
    height: 30px;
    line-height: 30px;
    padding: 0 40px 0 7px;
    font-size: 80%;
    color: inherit;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.shopfilter-list-popup-item a::after {
    position: absolute;
    content: '';
    font-family: 'fontawesome';
    font-weight: 300;
    display: block;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    top: 5px;
    right: 5px;
    border: 1px solid #CCCCCC;
}

.shopfilter-list-popup-item.active a,
.shopfilter-list-popup-item:hover a {
    background-color: #efefef;
}

.shopfilter-list-popup-item:hover a::after {
    content: '\f0b0';
}

.shopfilter-list-popup-item.active a::after {
    content: '\f00c';
}

.shopfilter-list-popup-item.active:hover a::after {
    content: '\f00d';
}

.shopfilter-active {
    overflow: hidden;
}

.shopfilter-active-item {
    display: block;
    float: left;
    padding: 5px 10px;
    border: 1px solid #CCCCCC;
    color: #CCCCCC;
    margin-right: 5px;
    margin-bottom: 5px;
    font-size: 80%;
    text-decoration: none;
}

.shopfilter-active-item:hover {
    background-color: #EFEFEF;
    color: #999999;
}

.shopfilter-active-item::after {
    content: '\00A0\00A0\f00d';
    font-family: 'fontawesome';
    font-weight: 300;
}

.shopfilter-active-item.reset::after {
    content: '\00A0\00A0\f1f8';
    font-family: 'fontawesome';
    font-weight: 300;
}


/* Contentbox Filter */

.layerShopFilter {
    margin-bottom: 20px;
}

.layerShopFilter .title {
    font-size: 1.2rem;
    padding-bottom: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    color: #000;
    border-bottom: 1px solid #000;
    cursor: pointer;
}

.layerShopFilter .title:before {
    font-family: 'fontawesome';
    font-weight: 300;
    content: '\f0b0\00A0';
}

.layerShopFilter .reset {
    display: block;
    font-size: 90%;
    background-color: #333333;
    padding: 5px 10px;
    color: #FFFFFF;
    text-decoration: none;
    margin-bottom: 10px;
}

.layerShopFilter .reset:before {
    font-family: 'fontawesome';
    font-weight: 300;
    content: '\f00d\00A0';
}

.layerShopFilter .item {
    background-color: #eee;
    margin-bottom: 10px;
    padding: 10px;
}

.layerShopFilter .item .title {
    cursor: pointer;
    font-size: 90%;
    border-bottom: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    color: #000;
}

.layerShopFilter .item .title:before {
    content: '';
}

.layerShopFilter .item .title:after {
    font-family: 'fontawesome';
    font-weight: 300;
    content: '\f0d7';
    float: right;
    line-height: 130%;
}

.layerShopFilter .item.close .title:after {
    content: '\f0d9';
}

.layerShopFilter .item.close .list {
    display: none;
}

.layerShopFilter .list {
    padding-top: 10px;
    font-size: 90%;
    border-top: 1px solid #000;
    padding-top: 5px;
    margin-top: 5px;
}

.layerShopFilter .list .select {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 10px;
    background: none;
    border: 1px solid #000;
    padding: 3px 0;
}

.layerShopFilter .list .item {
    background: none;
    margin-bottom: 0px;
    padding: 0px;
    font-size: 90%;
    overflow: hidden;
}

.layerShopFilter .list .item a {
    color: #000;
    padding: 2px 0px;
    text-decoration: none;
    -webkit-transition: 500ms all;
    transition: 500ms all;
}

.layerShopFilter .list .item a:hover {
    text-decoration: none;
    padding: 2px 0px 2px 5px;
}

.layerShopFilter .list .item.active a,
.layerShopFilter .list .item a:hover {
    color: #000;
}

.layerShopFilter .list .item.active a {
    position: relative;
    padding-left: 15px;
}

.layerShopFilter .list .item.active a:before {
    font-family: 'fontawesome';
    font-weight: 300;
    content: '\f0b0\00A0';
    margin-left: -15px;
}

.layerShopFilter .list .item.active:hover a:before {
    font-family: 'fontawesome';
    font-weight: 300;
    content: '\f00d\00A0';
    margin-left: -15px;
}

.layerShopFilter .list .item a {
    display: block;
}

.layerShopFilter .list .item .count {
    float: right;
}

.layerShopFilterList .button {
    display: block;
    background-color: #EEEEEE;
    font-size: 90%;
    margin-bottom: 10px;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 3px;
    color: inherit;
}

.layerShopFilterList .button:hover,
.layerShopFilterList .button.active {
    background-color: #333333;
    color: #FFFFFF;
}


/* Contentbox Warenkorb */

#layerCart {
    background-color: #EEEEEE;
    margin-bottom: 20px;
}

#layerCartTitle {
    cursor: pointer;
    padding: 10px;
}

#layerCartTitle:before {
    font-family: fontawesome;
    content: '\f07a\0020';
}

#layerCartContent {
    display: none;
    padding: 0 10px 10px 10px;
}

#layerCartTotal {
    overflow: hidden;
    padding: 10px 0px;
    border-top: 1px solid #000;
    color: #000;
}

#layerCartTotalRight {
    float: right;
    font-weight: 700;
    font-style: normal;
    color: #000;
}

.itemCartVoucher {
    overflow: hidden;
    padding: 10px;
    background-color: #333333;
    color: #FFF;
}

.itemCartVoucherTitle {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.itemCartVoucherReduction {
    float: left;
}

.itemCartVoucherSUM {
    float: right;
}

.itemCartTitel {
    font-size: 100%;
    font-weight: 500;
    font-style: normal;
    color: #000;
}

.itemCartNumber {
    color: #000;
    padding-bottom: 5px;
}

.itemCart {
    border-top: 1px solid #000;
    padding: 10px 0px;
    overflow: hidden;
}

.itemCartCount {
    float: left;
    width: 30%;
    padding-right: 10%;
    color: #000;
}

.inputCart {
    width: 100%;
}

.itemCartPrice {
    float: right;
    width: 60%;
    text-align: right;
    color: #000;
}

.itemCartLink,
a.itemCartLink:link {
    font-family: 'fontawesome';
    font-weight: 300;
    font-size: 20px;
    display: block;
    text-align: right;
    padding: 2px;
    color: #333333;
    text-decoration: none;
}

.itemCartLink:hover {
    color: #000;
}

.showShortText {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}


/* Content */

.areaContent img {
    max-width: 100%;
    height: auto !important;
}

#layerMainContent {
    width: 100%;
}

#layerMainContent.layout-13 {
    width: 75%;
}

#layerMainContent h1,
#layerMainContent .contentTitle,
.areaContentLayerText h1,
.areaContentLayerText .contentTitle,
#layerStartContent h1,
#layerFooter h1,
.memberTemplate .head .title,
.formularTemplate .head .title,
.content-title {
    color: var(--main-color);
    font-size: 2rem;
    font-weight: 600;
}

#layerMainContent h2,
#layerMainContent .contentSubTitle,
.areaContentLayerText h2,
.areaContentLayerText .contentSubTitle,
#layerStartContent h2,
#layerFooter h2,
.memberTemplate .head .subtitle,
.formularTemplate .head .subtitle,
.content-subtitle {
    color: var(--main-color);
    font-size: 1.5rem;
    font-weight: 100;
}

.text h2,
.areaContent h2 {
    font-size: 2rem!important;
    line-height: 2.5rem;
}

.text h3,
.areaContent h3 {
    font-size: 1.5rem!important;
    font-weight: 100;
    color: var(--main-color);
    line-height: 2.5rem;
}

#layerMainContent .areaContent,
.areaContentLayerText .areaContent,
.layerStartContentText,
#layerFooter .areaContent,
.layerShopTemplate .text {
    margin-top: 5px;
    padding-top: 10px;
    overflow: hidden;
    margin-bottom: 25px;
    line-height: 160%;
}

.content-head {
    padding-bottom: 5px;
    margin-bottom: 10px;
    overflow: hidden;
}

.content-close {
    float: right;
    font-family: 'fontawesome';
    font-weight: 300;
    text-decoration: none;
    color: #CCCCCC;
    font-size: 200%;
}

.content-text {
    overflow: hidden;
    line-height: 160%;
    margin-bottom: 25px;
}

#layerMainContent .areaContent p,
.areaContentLayerText p,
.layerStartContent p,
.contentbox-text p,
.detailArticleText p,
#layerShopSubgroupText p,
.itemStartContentText p,
.layerFooterText p,
.detail .text p,
.memberTemplate .text p,
.formularTemplate .text p,
.contentItem .text p,
.layerShopTemplate .text p,
.content-text p {
    margin-bottom: 10px;
}

#layerMainContent .areaContent p:last-child,
.areaContentLayerText p:last-child,
.layerStartContent p:last-child,
.contentbox-text p:last-child,
.detailArticleText p:last-child,
#layerShopSubgroupText p:last-child,
.itemStartContentText p:last-child,
.layerFooterText p:last-child,
.detail .text p:last-child,
.memberTemplate .text p:last-child,
.formularTemplate .text p:last-child,
.contentItem .text p:last-child,
.layerShopTemplate .text p:last-child,
.content-text p:last-child {
    margin-bottom: 0px;
}

#layerMainContent .areaContent a,
.areaContentLayerText a,
.layerStartContent a,
.contentbox-text a,
#layerShopSubgroupText a,
.detailArticleText a,
.itemStartContentText a,
.detail a,
.memberTemplate .text a,
.formularTemplate .text a,
.contentItem .text a,
.layerShopTemplate .text a,
.content-text a {
    text-decoration: none;
    color: var(--main-color);
    font-weight: 600;
}

#layerMainContent .areaContent a:hover,
.areaContentLayerText a:hover,
.layerStartContent a:hover,
.contentbox-text a:hover,
#layerShopSubgroupText a:hover,
.detailArticleText a:hover,
.itemStartContentText a:hover,
.detail a:hover,
.memberTemplate .text a:hover,
.formularTemplate .text a:hover,
.contentItem .text a:hover,
.layerShopTemplate .text a:hover,
.content-text a:hover {
    text-decoration: underline;
}

.areaContent ol,
.text ol,
.detailArticleText ol,
.memberTemplate .text ol,
.formolarTemplate .text ol,
.contentItem .text ol,
.layerShopTemplate .text ol,
.content-text ol,
.itemStartContentText ol,
.contentbox-text ol {
    display: block;
    padding: 0px 0px 16px 0px;
    padding-left: 1em;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    -webkit-transition: color 500ms;
    transition: color 500ms;
}

.areaContent ul,
.text ul,
.detailArticleText ul,
.memberTemplate .text ul,
.formularTemplate .text ul,
.contentItem .text ul,
.layerShopTemplate .text ul,
.content-text ul,
.itemStartContentText ul,
.contentbox-text ul {
    display: block;
    padding: 0px 0px 16px 0px;
    padding-left: 1em;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    -webkit-transition: color 500ms;
    transition: color 500ms;
    list-style-type: none;
}

.areaContent ol li,
.text ol li,
.detailArticleText ol li,
.memberTemplate .text ol li,
.formularTemplate .text ol li,
.contentItem .text ol li,
.layerShopTemplate .text ol li,
.content-text ol li,
.itemStartContentText ol li,
.contentbox-text ol li {
    margin: 0px;
}

.areaContent li,
.text li,
.detailArticleText li,
.memberTemplate .text li,
.formularTemplate .text li,
.contentItem .text li,
.layerShopTemplate .text li,
.content-text li,
.itemStartContentText li,
.contentbox-text li {
    margin: 0px;
}

.areaContent ul li::before,
.detailArticleText ul li::before,
.text ul li::before,
.memberTemplate .text ul li::before,
.formularTemplate .text ul li::before,
.contentItem .text ul li::before,
.layerShopTemplate .text ul li::before,
.content-text ul li::before,
.itemStartContentText ul li::before,
.contentbox-text ul li::before {
    font-family: 'fontawesome';
    font-weight: 300;
    content: '\f105\00A0';
    display: inline-block;
    margin-left: -0.8em;
    width: 0.8em;
}

.imageContentLeft {
    padding: 0px;
    float: left;
    width: 30%;
    margin-top: 4px;
    margin-right: 15px;
    margin-bottom: 10px;
    margin-left: 0px;
}

.imageSubContentLeft {
    padding: 0px;
    float: left;
    width: 30%;
    margin-top: 4px;
    margin-right: 15px;
    margin-bottom: 10px;
    margin-left: 0px;
}

.imageContentRight {
    padding: 0px;
    float: right;
    width: 30%;
    margin-top: 3px;
    margin-right: 0px;
    margin-bottom: 15px;
    margin-left: 10px;
}

hr {
    border: none;
    background-color: #000;
    color: #000;
    height: 1px;
}


/* Boxen */

.box-list {
    margin: 0 -25px;
}

.box-item {
    float: left;
    margin-bottom: 25px;
}

.box-item-inner {
    margin: 0 25px;
    border: 1px solid #ccc;
    overflow: hidden;
}

.box-item-head {
    margin: 25px;
}

.box-item-image {
    line-height: 0;
}

.box-item-image img {
    width: 100%;
    height: auto;
}

.box-item-text {
    margin: 20px;
}

.box-item-head-title {
    color: var(--main-color)!important;
    font-size: 1.6rem!important;
    font-weight: 600!important;
    line-height: 2rem!important;
}

.box-item-head-subtitle {
    color: var(--main-color)!important;
    font-size: 1.3rem!important;
    font-weight: 300!important;
    line-height: 2rem!important;
}


/* Boxen 1/3 */

.box-list.w1-3 .box-item {
    width: 33.3333%;
}


/* Boxen 2/3 */

.box-list.w2-3 .box-item {
    width: 66.6666%;
}


/* Boxen 1/2 */

.box-list.w1-2 .box-item {
    width: 50%;
}


/* Bildergalerie */

.contentItem {
    margin-bottom: 20px;
}

.contentItem .head {
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #000;
}

.contentItem .gallery {
    margin: 0 -10px;
    overflow: hidden;
    line-height: 160%;
    margin-top: 20px;
}

.contentItem .gallery .item {
    display: inline-block;
    width: 25%;
    vertical-align: top;
    margin-bottom: 20px;
}

.contentItem .gallery .item .inner {
    padding: 0 10px;
}

.contentItem .gallery .item img {
    width: 100%;
    height: auto;
}


/* 404 */

.layer404 .list {
    border-top: 1px solid #CCCCCC;
}

.layer404 a {
    display: block;
    border-bottom: 1px solid #CCCCCC;
    padding: 10px 0;
    color: #333333;
    text-decoration: none;
}


/* Pagination */

.pagination {
    text-align: center;
    background-color: #EFEFEF;
    height: 25px;
    line-height: 25px;
    overflow: hidden;
    padding: 0 50px;
    position: relative;
}

.pagination-link {
    display: block;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    font-family: 'fontawesome';
    font-weight: 300;
    color: #333333;
    text-decoration: none;
    float: left;
}

.pagination-link:hover {
    color: #FFFFFF;
    background-color: #333333;
}

.pagination-link.inactive {
    color: #CCCCCC;
}

.pagination-link.inactive:hover {
    background: none;
    color: #CCCCCC;
}

.pagination-left {
    position: absolute;
    left: 0;
    top: 0;
}

.pagination-right {
    position: absolute;
    right: 0;
    top: 0;
}

.pagination-center {
    height: 25px;
}

.pagination-center-link {
    cursor: pointer;
    display: block;
    overflow: hidden;
    height: 25px;
    position: relative;
}

.pagination-center-link-inner {
    display: inline-block;
    height: 25px;
    position: relative;
    padding: 0 35px;
}

.pagination-center-button {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    width: 25px;
    height: 25px;
    content: '\f107';
    font-family: 'fontawesome';
    font-weight: 300;
    background-color: #999999;
    color: #FFFFFF;
}

.pagination-center-link:hover .pagination-center-button {
    background-color: #333333;
}

.pagination-pageselect {
    margin: 0 -5px -5px -5px;
    overflow: hidden;
    clear: both;
}

.pagination-pageselect-item {
    display: block;
    float: left;
    margin: 0 5px 5px 5px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    background-color: #EFEFEF;
    color: #333333;
    text-decoration: none;
}

.pagination-pageselect-item.active {
    background-color: #CCCCCC;
}

.pagination-pageselect-item.current,
.pagination-pageselect-item:hover {
    background-color: #333333;
    color: #FFFFFF;
    font-weight: bold;
}


/* Content Layer */

#containerContentLayer {
    left: 50%;
    margin-left: -300px;
    position: absolute;
    z-index: 7;
    width: 600px;
    top: 80px;
    z-index: 9999;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}

.contentLayerClose {
    height: 27px;
    width: 27px;
    display: block;
    background-image: url(../../../../img/lb/close.png);
    background-repeat: no-repeat;
    position: absolute;
    right: 25px;
    top: 25px;
}

#layerContentLayerHead {
    padding: 25px 60px;
    text-align: center;
}

#layerContentLayerHead img {
    max-width: 200px;
    height: auto;
}

#layerContentLayerBody {
    text-align: left;
}

.areaContentLayerText {
    padding: 10px 0px;
    margin: 0px 25px;
    border-bottom: 1px solid #CCC;
}

.areaContentLayerText li {
    margin-left: 15px;
    margin-bottom: 5px;
}

#layerContentLayerFooter {
    height: 30px;
}

#areaContentLayerTextFooter {
    height: 30px;
    line-height: 30px;
    text-align: right;
    padding-left: 25px;
    padding-right: 25px;
}

.contentLayerLink {
    color: #CCC;
    text-decoration: none;
    font-size: 10pt;
}

.contentLayerLink:hover {
    color: #CCC;
    text-decoration: underline;
}


/* Blog */

.itemBlogspot {
    border-bottom: 1px solid #999999;
    padding: 10px 0;
    transition: all 500ms;
}

.itemBlogspot:hover {
    padding: 10px;
    background-color: #EEEEEE;
}

.itemBlogspotDate {
    color: #999999;
}

.itemBlogspotAuthor {
    color: #999999;
}


/* Event-Liste */

.eventList-search {
    background-color: #eeeeee;
    overflow: hidden;
    margin-bottom: 20px;
}

.eventList-search-item {
    margin: 10px;
    overflow: hidden;
}

.eventList-search-label {
    font-weight: 700;
}

.eventList-search-label.date,
.eventList-search-value.date {
    width: 49%;
    float: left;
}

.eventList-search-label.date.until,
.eventList-search-value.date.until {
    float: right;
}

.eventList-search-value.date .eventList-search-inner {
    position: relative;
    padding-right: 25px;
}

.eventList-search-select,
.eventList-search-input {
    box-sizing: border-box;
    width: 100%;
    height: 25px;
    border: 1px solid #333333;
    border-radius: 3px;
}

.eventList-search-input {
    border-radius: 3px 0 0 3px;
}

.eventList-search .ui-datepicker-trigger {
    box-sizing: border-box;
    color: #FFFFFF;
    font-family: 'fontawesome';
    font-weight: 300;
    height: 25px;
    width: 25px;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    background: none;
    background-color: #333333;
    padding: 0;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
}

.eventList-search-action {
    margin: 10px;
    text-align: right;
}

.eventList-search-button {
    box-sizing: border-box;
    color: #FFFFFF;
    height: 25px;
    border: none;
    background: none;
    background-color: #333333;
    border-radius: 3px;
    cursor: pointer;
}

.eventList-list-item {
    overflow: hidden;
    border-top: 1px solid #CCCCCC;
    padding: 10px 0;
    position: relative;
}

.eventList-list-item:last-child {
    border-bottom: 1px solid #CCCCCC;
}

.eventList-list-item-image {
    float: left;
    width: 20%;
    margin: 0;
}

.eventList-list-item-image img {
    width: 100%;
    height: auto;
}

.eventList-list-item-right {
    padding-left: 20%;
    margin-left: 20px;
    padding-bottom: 33px;
}

.eventList-list-item-date {
    color: #999999;
}

.eventList-list-item-title {
    font-weight: 700;
    font-size: 1.2rem;
}

.eventList-list-item-action {
    position: absolute;
    right: 0;
    bottom: 10px;
    height: 23px;
}

.eventList-list-item-action a {
    display: inline-block;
    border-radius: 3px;
    height: 23px;
    line-height: 22px;
    background-color: #333333;
    color: #FFFFFF;
    text-decoration: none;
}

.eventList-list-item-calendar {
    width: 23px;
    text-align: center;
    font-family: 'fontawesome';
    font-weight: 300;
}

.eventList-list-item-detail {
    padding: 0 10px;
}

.eventList-list-item-attributes {
    display: table;
    margin-top: 10px;
}

.eventList-list-item-row {
    display: table-row;
}

.eventList-list-item-label,
.eventList-list-item-value {
    display: table-cell;
}

.eventList-list-item-label {
    padding-right: 10px;
    font-weight: 500;
}


/* Event-Detail */

.eventDetail-content {
    margin: 0 20px;
    overflow: hidden;
}

.eventDetail-image {
    float: left;
    width: 20%;
    margin: 0;
}

.eventDetail-image img {
    width: 100%;
    height: auto;
}

.eventDetail-right {
    padding-left: 20px;
}

.eventDetail-attributes {
    display: table;
    margin-top: 10px;
}

.eventDetail-row {
    display: table-row;
}

.eventDetail-label,
.eventDetail-value {
    display: table-cell;
}

.eventDetail-label {
    padding-right: 10px;
    font-weight: 700;
}

.eventDetail-form {
    padding: 0;
    border-top: 1px solid #000;
}


/* search */

.search-form {
    position: relative;
    height: 30px;
    padding-right: 30px;
}

.search-form-input {
    box-sizing: border-box;
    width: 100%;
    height: 30px;
    background: none;
    border: 1px solid #333333;
    border-right: none;
    border-radius: 3px 0 0 0;
    padding: 0 7px;
}

.search-form-button {
    box-sizing: border-box;
    height: 30px;
    width: 30px;
    border: none;
    background: none;
    background-color: #333333;
    color: #FFFFFF;
    font-family: 'fontawesome';
    font-weight: 300;
    border-radius: 0 3px 0 0;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
}

.search-action {
    background-color: #EFEFEF;
    border-radius: 0 0 3px 3px;
    overflow: hidden;
    margin-bottom: 20px;
}

.search-action-item {
    float: left;
    width: 25%;
}

.search-action-link {
    display: block;
    padding: 0 10px;
    height: 30px;
    line-height: 30px;
    color: #333333;
    text-decoration: none;
    font-size: 80%;
    overflow: hidden;
}

.search-action-link:hover,
.search-action-link.active {
    color: #FFFFFF;
    background-color: #333333;
}

.search-action-link:hover::after,
.search-action-link.active::after {
    content: '\f0d7';
    float: right;
    font-family: 'fontawesome';
    font-weight: 300;
}

.search-list-item {
    display: block;
    background-color: #EFEFEF;
    margin-bottom: 5px;
    padding: 5px 10px 5px 30px;
    font-size: 80%;
    color: #333333;
    text-decoration: none;
}

.search-list-item::before {
    display: inline-block;
    width: 20px;
    margin-left: -20px;
    content: '\f138';
    font-family: 'fontawesome';
    font-weight: 300;
}

.search-list-item:hover {
    background-color: #333333;
    color: #FFFFFF;
}


/* footer */

#containerFooter {
    width: 100%;
}

.layerFooter {
    background-color: var(--main-color);
    color: white;
    transition: all 500ms;
    padding: 20px 40px;
    text-align: center;
    font-size: 1rem;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.layerFooter .content a {
    color: white;
    text-decoration: none;
    font-weight: 700;
}

.layerFooter .content .phone:before {
    content: '\f879';
    font-family: fontawesome;
    font-size: 0.9rem;
    font-weight: 900;
    padding-right: 5px;
}

.layerFooter .content .openingHours:before {
    content: '\f017';
    font-family: fontawesome;
    font-size: 0.9rem;
    font-weight: 900;
    padding-right: 5px;
}

.layerFooter a {
    text-decoration: none;
    color: white;
}

.layerFooter a:hover {
    opacity: 0.5;
    transition: all 0.5s ease-out;
}

.layerFooter .social {
    width: 100%;
    padding: 0 0 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

.layerFooter .social a {
    font-family: fontawesome;
    color: white;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 10px;
}

.layerFooter .imprint {
    margin-left: 40px;
}

.layerFooter .copyright {
    width: 100%;
    font-size: 0.9rem;
    padding: 10px 0;
}

.layerFooterText {
    float: left;
    width: 30%;
}

.layerFooterSocial {
    width: 20%;
    text-align: right;
    float: right;
    font-size: 140%;
}

.layerFooterSocial a {
    font-family: 'fontawesome' !important;
    color: #000000;
    text-decoration: none;
}

.layerFooterNavi {
    float: left;
    width: 50%;
    overflow: hidden;
}

.itemFooterNavi {
    width: 33.33%;
    float: left;
    margin-bottom: 5px;
}

.itemFooterNavi a {
    display: block;
    color: #000000;
    text-decoration: none;
}

.itemFooterNavi a:before {
    content: '\f105\00A0';
    font-family: 'fontawesome';
    font-weight: 300;
}

.itemFooterNavi a:hover:before {
    font-weight: bold;
}

.layerFooterImprint {
    clear: both;
    padding-top: 20px;
}

.layerFooterImprint a {
    color: #000000;
    font-size: 80%;
    text-decoration: none;
}

.layerFooterImprint a:hover {
    text-decoration: underline;
}


/* Formular */

.validateMessage {
    background-color: #900;
    padding: 10px;
    color: #FFF;
}

.tableElementRow {
    width: 100%;
}

.formLabel {
    width: 20%;
    vertical-align: top;
    padding-bottom: 5px;
}

.formLabelMandatory {
    padding-left: 20%;
}

.formValue {
    width: 90%;
    padding-bottom: 5px;
    vertical-align: top;
}

.formValueZIP {
    width: 20%;
    padding-right: 2%;
    padding-bottom: 5px;
}

.formValuePlace {
    width: 60%;
    padding-bottom: 5px;
}

.formInput {
    border: 1px solid #999;
    width: 100%;
    box-sizing: border-box;
    padding: 3px 0;
}

.formInputMandatory {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #999;
    background: #f2f2f2;
    padding: 3px 0;
}

.formSelect {
    border: 1px solid #999;
    width: 50%;
    box-sizing: border-box;
    padding: 3px 0;
}

.formSelectMandatory {
    border: 1px solid #999;
    width: 50%;
    background: #f2f2f2;
    box-sizing: border-box;
    padding: 3px 0;
}

.formTextarea {
    width: 100%;
    border: 1px solid #999;
    resize: vertical;
    box-sizing: border-box;
}

.formTextareaBig {
    width: 100%;
    border: 1px solid #999;
    resize: vertical;
    box-sizing: border-box;
    min-height: 220px;
}

.labelCaptcha {
    display: block;
    margin-bottom: 10px;
}

.layerCaptchaRight {
    text-align: right;
    padding-bottom: 5px;
    padding-left: 5px;
}

.formInputCaptchaMandatory,
.buttonRefreshCaptcha {
    width: 100%;
    padding: 0px;
    margin: 0px;
    border: 1px solid #999;
    background: #f2f2f2;
    box-sizing: border-box;
    padding: 3px 0;
}

.buttonRefreshCaptcha {
    font-size: 80%;
    cursor: pointer;
    background-color: #333;
    color: #FFF;
}

.functionBarLarge {
    text-align: right;
}

.cmdSendLarge {
    cursor: pointer;
    border: none;
    background-color: #333;
    color: #FFF;
    padding: 5px 20px;
}


/* Shop Allgemein */

.layerShopTemplate .flag,
.layerModelTemplate .flag {
    font-size: 70%;
    border-radius: 20px;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    position: absolute;
    z-index: 9;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

.list .flag.trend {
    background-color: #000;
    color: #FFF;
    right: -6px;
    bottom: -6px;
}

.detail .flag.trend,
.slider .flag.trend {
    background-color: #000;
    color: #FFF;
    right: 3px;
    bottom: 3px;
}

.list .flag.sale {
    background-color: #FFFFFF;
    color: #FF0000;
    right: -6px;
    top: -6px;
    font-size: 100%;
    font-weight: bold;
}

.list .flag.sale::before {
    content: '\f295';
    font-family: 'fontawesome';
    font-weight: 900;
}

.detail .flag.sale,
.slider .flag.sale {
    background-color: #FFFFFF;
    color: #FF0000;
    right: 3px;
    top: 3px;
    font-size: 1.2rem;
    font-weight: bold;
}

.detail .flag.sale::before,
.slider .flag.sale::before {
    content: '\f295';
    font-family: 'fontawesome';
    font-weight: 300;
}

.list .flag.new {
    background-color: #000;
    color: #FFF;
    left: -6px;
    top: -6px;
}

.detail .flag.new,
.slider .flag.new {
    background-color: #000;
    color: #FFF;
    left: 3px;
    top: 3px;
}

.flag.dispoForm {
    display: block;
    text-decoration: none;
    background-color: #000;
    color: #FFF;
    left: -6px;
    bottom: -6px;
    font-family: 'fontawesome';
    font-weight: 300;
    font-size: 1.2rem;
    -webkit-transition: background 500ms;
    transition: background 500ms;
}

.flag.dispoForm:hover {
    background-color: #333;
}

.flag.dispoForm.inactive {
    display: none;
}

.slider .flag.articleImage {
    color: #FFF;
    right: 3px;
    bottom: 3px;
    overflow: hidden;
}

.slider .flag.articleImage img {
    width: 100% !important;
    height: 100% !important;
}

.layerShopTemplate .favorite,
.layerModelTemplate .favorite {
    font-family: 'fontawesome';
    font-weight: 300;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.2rem;
    position: absolute;
    top: 15px;
    left: 15px;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background: var(--main-color);
    height: 30px;
    width: 30px;
    border-radius: 50%;
    line-height: 1.5;
}

.layerShopTemplate .favorite.active,
.layerModelTemplate .favorite.active,
.layerShopTemplate .image:hover .favorite,
.layerModelTemplate .image:hover .favorite {
    display: block;
}

.layerShopTemplate .favorite:after,
.layerModelTemplate .favorite:after {
    content: '\f005';
}

.layerShopTemplate .favorite:hover:after,
.layerShopTemplate .favorite.active:after,
.layerModelTemplate .favorite:hover:after,
.layerModelTemplate .favorite.active:after {
    content: '\f005';
    font-weight: 900;
}

.layerShopTemplate .results,
.layerModelTemplate .results,
.search-results {
    text-align: right;
    font-size: 80%;
    color: #999999;
    margin-bottom: 25px;
    background-color: #f2f2f2;
    padding: 5px 10px;
}


/* Maschenprobe */

.layerGauge {
    width: 98px;
    height: 98px;
    border: 1px solid #000000;
    background-color: #fff;
    position: relative;
    margin-bottom: 25px;
}

.layerGaugeRight {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 10%;
    border-left: 1px solid #000000;
}

.layerGaugeBottom {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 10%;
    border-top: 1px solid #000000;
}

.layerGaugeRightValue {
    position: absolute;
    left: 100%;
    height: 100%;
    line-height: 98px;
    top: 0;
    padding-left: 10px;
}

.layerGaugeBottomValue {
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
    padding-top: 5px;
    text-align: center;
}


/* Shop Liste */

.layerShopTemplate .head {
    margin-bottom: 25px;
    overflow: hidden;
}

.layerShopTemplate .head .close {
    float: right;
    font-family: 'fontawesome';
    font-weight: 300;
    font-size: 150%;
    color: #CCCCCC;
    text-decoration: none;
}

.layerShopTemplate>.form {
    margin-bottom: 20px;
}

.layerShopTemplate>.form .select {
    width: 100%;
    padding: 5px 0px;
}

.layerShopTemplate .list {
    margin: 0 -2%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
}

.layerShopTemplate .list>.item {
    width: 21%;
    margin: 0 2% 3rem 2%;
    display: flex;
    flex-wrap: wrap;
    align-content: stretch;
    align-items: stretch;
}

.layerShopTemplate .list .item>.inner {
    padding: 10px;
    border: 1px solid #eee;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: space-between;
    align-items: baseline;
    width: 100%;
}

.layerShopTemplate .list .item .image {
    text-align: center;
    position: relative;
    width: 100%;
    height: 15rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.layerShopTemplate .list .item .image-link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.layerShopTemplate .list .item .image img {
    max-width: 100%;
    max-height: 250px;
    height: auto;
}

.layerShopTemplate .list .item .detail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    opacity: 0;
    -webkit-transition: opacity 500ms;
    transition: opacity 500ms;
}

.layerShopTemplate .list .item .image:hover .detail {
    opacity: 1;
}

.layerShopTemplate .list .item .detail .inner {
    line-height: normal;
    padding: 0 10px;
    position: absolute;
    left: 0;
    bottom: 10px;
    font-size: 70%;
    color: #FFFFFF;
    background: none;
}

.layerShopTemplate .list .item .count {
    background-color: #7F7F7F;
    color: #FFFFFF;
    line-height: normal;
    font-size: 75%;
    width: 100%;
    text-align: center;
    margin-top: 10px;
    border-radius: 3px;
}

.layerShopTemplate .list .item .title {
    position: relative;
    margin-top: 10px;
    color: #000;
    width: 95%;
    min-height: 3rem;
}

.layerShopTemplate .list .item .title a {
    text-decoration: none;
    color: #000;
    font-size: 1rem;
}

.layerShopTemplate .list .item .subtitle {
    color: #000;
}

.layerShopTemplate .list .item .dispo {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: -5%;
}

.layerShopTemplate .list .item .dispo.inactive {
    display: none;
}

.layerShopTemplate .list .item .dispo .tooltip {
    box-sizing: border-box;
    position: absolute;
    left: 0;
    bottom: 100%;
    background-color: #FFFFFF;
    padding: 5px 10px;
    width: 100%;
    z-index: 9;
    border-radius: 3px;
    box-shadow: 0 0 3px #000000;
    margin-bottom: 10px;
    display: none;
}

.layerShopTemplate .list .item .dispo:hover .tooltip,
#layerCartContent {
    display: block;
}

.layerShopTemplate .list .item .dispo.green {
    background-color: green;
}

.layerShopTemplate .list .item .dispo.orange {
    background-color: orange;
}

.layerShopTemplate .list .item .dispo.red {
    background-color: red;
}

.layerShopTemplate .list .item .number {
    color: #000;
    display: none;
}

.layerShopTemplate .list .item .composition {
    margin-top: 5px;
    color: #000;
}

.layerShopTemplate .list .item .colors .item {
    max-width: 47%;
    line-height: 0;
    margin-top: 10px;
}

.layerShopTemplate .list .item .colors .item.odd {
    float: left;
}

.layerShopTemplate .list .item .colors .item.even {
    float: right;
}

.layerShopTemplate .list .item .colors img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.layerShopTemplate .list .item .action {
    overflow: hidden;
    margin-top: 5px;
    color: #000;
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
}

.layerShopTemplate .list .item .price {
    color: #000;
    font-size: 1rem;
}

.layerShopTemplate .list .item .basicPrice {
    font-size: 1rem;
}

.layerShopTemplate .list .item .form {
    width: 30%;
}

.layerShopTemplate .list .item .form form {
    width: 100%;
}

.layerShopTemplate .list .item .discount {
    overflow: hidden;
    width: 100%;
}

.layerShopTemplate .list .item .discount .right {
    margin-bottom: 5px;
}

.layerShopTemplate .list .item .form .inner {
    padding-right: 25px;
    position: relative;
}

.layerShopTemplate .list .item .form .input {
    border: none;
    background: none;
    color: #333;
    font-weight: 600;
    padding: 0 5px;
}

.layerShopTemplate .list .item .form .button {
    position: absolute;
    right: 0;
    top: -3px;
    border: none;
    background: none;
    color: #333;
    cursor: pointer;
    font-family: 'fontawesome';
    font-weight: 300;
    border-radius: 0 3px 3px 0;
    font-size: 1.5rem;
}

.layerShopTemplate .navigation {
    overflow: hidden;
}

.layerShopTemplate .navigation .left {
    float: left;
}

.layerShopTemplate .navigation .right {
    float: right;
}


/* Shop Detail */

.detail.articleGroup,
.detail.article {
    overflow: hidden;
    margin-bottom: 20px;
}

.detail.articleGroup {
    padding-bottom: 10px;
    border-bottom: 1px #CCCCCC solid;
}

.detail.articleGroup img,
.detail.article img {
    max-width: 100%;
    height: auto;
}

.detail.articleGroup .left,
.detail.article .left {
    float: left;
    width: 50%;
}

.detail.article .left {
    width: 50%;
}

.detail.articleGroup .links a,
.detail.article .links a {
    display: block;
    color: #333333;
    text-decoration: none;
    margin-bottom: 10px;
    background-color: #f2f2f2;
    padding: 5px 10px;
    border-radius: 3px;
}

.detail.article .links a:last-child {
    margin-bottom: 0;
}

.detail.articleGroup .links a:before {
    content: '\f0da\00A0';
    font-family: 'fontawesome';
    font-weight: 300;
}

.detail.article .links a:before {
    content: '\f1c1\00A0\00A0';
    font-family: 'fontawesome';
    font-weight: 300;
}

.detail.articleGroup .links a:hover,
.detail.article .links a:hover {
    color: #f2f2f2;
    background-color: #333333;
}

.detail.articleGroup .image,
.detail.article .image {
    line-height: 0;
    margin-bottom: 10px;
    position: relative;
}

.image.onclick {
    cursor: pointer;
}

.image.onclick:hover {
    transition: 0.5s all ease-out;
}

.image.onclick:hover:before {
    content: '\f0e2\00A0 360°';
    font-family: 'fontawesome', 'maven pro regular';
    font-size: 30px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    line-height: 850%;
    animation: flip-icon 1s ease-in-out;
}

@keyframes flip-icon {
    0% {
        transform: rotateY(0);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.image.onclick .view {
    position: absolute;
    bottom: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    z-index: 1;
    height: 30px;
    line-height: 2;
}

.detail.articleGroup .iframe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
}

#linkFullscreen {
    display: none;
    font-family: 'fontawesome';
    font-weight: 300;
    color: black;
    text-decoration: none;
    position: absolute;
    right: 0;
    top: -5px;
    z-index: 10;
    background: white;
    border-radius: 50%;
    height: 45px;
    width: 45px;
    font-size: 25px;
    line-height: 41px;
    box-shadow: 0px 0px 5px;
    transition: transform .2s;
}

#linkFullscreen:hover {
    transition: all 0.5s ease-out;
    transform: scale(1.25);
}

.detail.article .bx-pager {
    padding: 10px 0;
    text-align: center;
    line-height: 0;
}

.detail.article .bx-pager-item {
    display: inline-block;
    vertical-align: middle;
    margin: 0 3px;
}

.detail.article .bx-pager-item a {
    background-color: #CCCCCC;
    display: block;
    width: 12px;
    height: 12px;
    font-size: 0;
    border-radius: 50%;
}

.detail.article .bx-pager-item a:hover,
.detail.article .bx-pager-item a.active {
    background-color: #333333;
}

.detail.articleGroup>.right {
    margin-left: 55%;
}

.detail.article>.right {
    margin-left: 55%;
}

.detail.articleGroup .title {
    font-weight: 700;
    font-style: normal;
    font-size: 140%;
    margin-bottom: 10px;
}

.detail.articleGroup .text,
.detail.article .text {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.detail.articleGroup .attributes,
.detail.article .attributes {
    margin-bottom: 20px;
}

.detail.articleGroup .attributes .item,
.detail.article .attributes .item {
    float: none;
    width: 100%;
    margin-bottom: 10px;
    overflow: hidden;
}

.detail.articleGroup .attributes .item .label,
.detail.article .attributes .item .label {
    width: 150px;
    float: left;
    font-weight: 700;
    font-style: normal;
}

.detail.articleGroup .attributes .item .value,
.detail.article .attributes .item .value {
    padding-left: 150px;
}

.detail.article .action {
    overflow: hidden;
}

.detail.article .form {
    width: 100%;
    text-align: right;
}

.detail.article .form form {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: stretch;
}

.detail.article .form .input {
    box-sizing: border-box;
    width: 50px;
    border: 1px solid var(--main-color);
    background: #fff;
    color: var(--main-color);
    padding: 5px 8px;
}

.detail.article .form .button {
    box-sizing: border-box;
    border: none;
    background: var(--main-color);
    color: #FFFFFF;
    cursor: pointer;
    font-family: 'fontawesome', 'futura-pt';
    font-weight: 100;
    padding: 5px 15px;
}

.detail.article .form .button:hover {
    opacity: 0.5;
    transition: all 0.5s ease-out;
}

.item.size {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 2rem;
    align-items: center;
}

.item.size .label {
    font-weight: 700;
    width: 150px;
}

.list-size-select {
    padding: 3px 10px;
}

.detail.article .list.color {
    width: 100%;
    margin: 1.5rem 0 0 0;
}

.detail.article .list.color form {
    display: flex;
    flex-wrap: wrap;
}

.detail.article .list.color .item {
    width: 17.5%;
    margin: 0.5rem 1.25%;
    position: relative;
}

.detail.article .list.color .item:hover {
    transform: scale(1.1);
    cursor: pointer;
    transition: all 0.5s ease-out;
}

.detail.article .list.color .item.selected .image::before {
    content: '\f058';
    color: white;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: center;
    font-family: var(--main-fontawesome);
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    font-weight: 900;
}

.detail.article .list.color .item .image {
    text-align: center;
    position: relative;
    width: 100%;
    height: 7rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    overflow: hidden;
}

.detail.article .list.color .item .subtitle {
    font-size: 0.85rem;
    text-align: center;
    width: 100%;
}


/* Shop Detail-Set */

.detail.article .set>.title {
    font-weight: 700;
    font-style: normal;
    margin-bottom: 10px;
}

.detail.article .set .item {
    overflow: hidden;
    margin-bottom: 10px;
}

.detail.article .set .item .button {
    font-family: 'fontawesome';
    font-weight: 300;
    display: block;
    float: right;
    height: 20px;
    line-height: 20px;
    width: 20px;
    background-color: #CCCCCC;
    color: #333333;
    text-align: center;
    border-radius: 3px;
    font-size: 80%;
    margin-left: 5px;
}

.detail.article .set .item .button:hover {
    text-decoration: none;
    color: #CCCCCC;
    background-color: #333333;
}

.detail.article .set .item .image {
    width: 20%;
    float: left;
    line-height: 0;
    margin-bottom: 0;
}

.detail.article .set .item .right {
    padding-left: 25%;
}

.detail.article .set .item .title {
    font-weight: 700;
    font-style: normal;
}


/* Shop-Slider */

.layerShopSlider {
    margin: 20px 0;
}

.layerShopSlider .head {
    margin-bottom: 5px;
}

.layerShopSlider .content {
    padding: 0 30px;
    position: relative;
}

.layerShopSlider .bx-prev,
.layerShopSlider .bx-next {
    position: absolute;
    top: 0;
    width: 25px;
    height: 100%;
    font-family: 'fontawesome';
    font-weight: 300;
    color: #666666;
    text-decoration: none;
    text-align: center;
}

.layerShopSlider .bx-prev {
    left: 0;
    border-radius: 5px 0 0 5px;
}

.layerShopSlider .bx-next {
    right: 0;
    border-radius: 0 5px 5px 0;
}

.layerShopSlider .bx-prev:after,
.layerShopSlider .bx-next:after {
    content: '\f053';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.layerShopSlider .bx-next:after {
    content: '\f054';
}

.layerShopSlider .slider {
    visibility: hidden;
    height: 0;
}

.layerShopSlider .item .inner {
    margin: 0 5%;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    position: relative;
}

.layerShopSlider .item .image {
    position: relative;
    line-height: 0;
    background-color: #FFFFFF;
    display: block;
    width: 100%;
}

.layerShopSlider .item .image img {
    width: 100%;
    height: auto;
}

.layerShopSlider .item .title {
    margin-top: 10px;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
}

.layerShopSlider .item .price {
    margin-bottom: 15px;
    text-align: center;
}

.layerShopSlider .item .discount {
    margin-top: 5px;
    overflow: hidden;
}

.layerShopSlider .item .discount .right {
    float: right;
}

.layerShopSlider .item .link {
    position: absolute;
    right: 47%;
    bottom: 10px;
    color: #333333;
    text-decoration: none;
    font-family: 'fontawesome';
    font-weight: 300;
    font-size: 1.2rem;
}

.layerShopSlider .loading {
    text-align: center;
}

.layerShopSlider .item .inner .count {
    text-align: center;
    background-color: #eee;
    padding: 5px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 13px;
    font-weight: 700;
}

.layerShopSlider .item .inner .number {
    text-align: center;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 15px;
}

.articleOverDetails {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    opacity: 0;
    -webkit-transition: opacity 1000ms;
    transition: opacity 1000ms;
}

.inner .image:hover .articleOverDetails {
    opacity: 1;
}

.articleOverDetails .detailsInner {
    padding: 10px 15px 2px 15px;
    position: absolute;
    left: 10px;
    bottom: 10px;
    font-size: 13px;
    color: #FFFFFF;
    background: none;
    border: 1px solid #ebebeb;
    line-height: 1.5em;
}

.articleOverDetails .detailsInner .item {
    padding-bottom: 8px;
}

.layerShopSlider .inner .image-link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.layerShopSlider .flag {
    text-align: center;
    position: absolute;
    z-index: 9;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    padding: 15px;
}

.layerShopSlider .flag.new {
    background-color: #000;
    color: #FFF;
    left: -10px;
    top: -10px;
}


/* Warenkorb */

.layerShopCart {
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
}

.layerShopCartNavigation {
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #eee;
}

.layerShopCartNavigation .item {
    color: #333333;
    font-family: 'fontawesome';
    font-weight: 300;
    display: block;
    width: 25%;
    text-align: center;
    padding: 15px 0;
    font-size: 150%;
    float: left;
}

.layerShopCartNavigation .item.open {
    color: #eee;
    background-color: #333333;
}

.layerShopCart .head {
    margin-bottom: 20px;
    overflow: hidden;
}

.layerShopCart .head .document {
    font-family: 'fontawesome';
    font-weight: 300;
    font-size: 160%;
    float: right;
    color: #333333;
    text-decoration: none;
}

.layerShopCart .list {
    margin-bottom: 20px;
}

.layerShopCart .list .content {
    color: #000;
}

.layerShopCart .list>.title,
.layerShopCart .list.address .title {
    font-size: 110%;
    margin-bottom: 10px;
    color: #000;
}

.layerShopCart .list.cart {
    border-bottom: 1px solid #CCCCCC;
}

.layerShopCart .list.cart .item {
    overflow: hidden;
    border-top: 1px solid #CCCCCC;
    padding: 10px 0;
}

.layerShopCart .list.cart .item .head .title {
    font-size: 140%;
}

.layerShopCart .list.cart .item .list {
    margin-bottom: 0;
}

.layerShopCart .list.cart .item.set {
    overflow: hidden;
    border-top: none;
    font-size: 100%;
    padding: 0;
    margin-top: 10px;
}

.layerShopCart .list.cart .item .image {
    float: left;
    width: 20%;
    line-height: 0;
}

.layerShopCart .list.cart .item .image img {
    max-width: 100%;
    height: auto;
}

.layerShopCart .list.cart .item .right {
    padding-left: 25%;
}

.layerShopCart .list.cart .item .right:after {
    content: '';
    display: block;
    clear: right;
}

.layerShopCart .list.cart .item .delete,
#layerCart #layerCartContent .itemCart .delete {
    float: right;
}

.layerShopCart .list.cart .item .delete .button,
#layerCart #layerCartContent .itemCart .delete .button {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    font-family: 'fontawesome';
    font-weight: 300;
    cursor: pointer;
    font-size: 1.2rem;
}

.layerShopCart .list.cart .item .title {
    font-size: 1.2rem;
    color: #000;
}

.layerShopCart .list.cart .item .subtitle {
    color: #000;
}

.layerShopCart .list.cart .item .number {
    font-size: 95%;
    color: #000;
    margin-bottom: 10px;
}

.layerShopCart .list.cart .item .unit {
    text-align: right;
    color: #000;
}

.layerShopCart .list.cart .item .count {
    text-align: right;
    color: #000;
}

.layerShopCart .list.cart .item .dispo {
    padding-left: 20px;
    font-size: 95%;
    margin-bottom: 5px;
    color: #000;
}

.layerShopCart .list.cart .item .dispo:before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: -20px;
    margin-right: 10px;
}

.layerShopCart .list.cart .item .dispo.green:before {
    background-color: green;
}

.layerShopCart .list.cart .item .dispo.orange:before {
    background-color: orange;
}

.layerShopCart .list.cart .item .dispo.red:before {
    background-color: red;
}

.layerShopCart .list.cart .item .price,
.layerShopCart .list.cart .item .priceBestell {
    clear: right;
    float: right;
    color: #000;
}

.layerShopCart .list.cart .item .form {
    float: right;
    width: 85px;
    padding-right: 25px;
    position: relative;
    margin-bottom: 20px;
    margin-top: 20px;
}

.layerShopCart .list.cart .item .form .input {
    box-sizing: border-box;
    height: 25px;
    width: 100%;
    border: 1px solid #333333;
    background: none;
    color: #333333;
    border-radius: 3px 0 0 3px;
    padding: 0 5px;
}

.layerShopCart .list.cart .item .form .button {
    box-sizing: border-box;
    height: 25px;
    width: 25px;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    background: #333333;
    color: #FFFFFF;
    cursor: pointer;
    font-family: 'fontawesome';
    font-weight: 300;
    border-radius: 0 3px 3px 0;
}

.layerShopCart .list.link {
    text-align: right;
}

.layerShopCart .list.link a {
    display: inline-block;
    background-color: #f2f2f2;
    color: #333333;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 3px;
}

.layerShopCart .list.link a:hover {
    color: #f2f2f2;
    background-color: #333333;
}

.layerShopCart .list.link a:before {
    content: '\f08e\00A0';
    font-family: 'fontawesome';
    font-weight: 300;
}

.layerShopCart>.form {
    overflow: hidden;
    margin-bottom: 20px;
}

.layerShopCart .form .voucher {
    float: right;
    width: 200px;
    padding-right: 35px;
    position: relative;
}

.layerShopCart .form .voucher .input {
    box-sizing: border-box;
    height: 35px;
    width: 100%;
    border: 1px solid #333333;
    background: none;
    color: #333333;
    border-radius: 3px 0 0 3px;
    padding: 10px;
}

.layerShopCart .form .voucher .button {
    box-sizing: border-box;
    height: 35px;
    width: 35px;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    background: #333333;
    color: #FFFFFF;
    cursor: pointer;
    font-family: 'fontawesome';
    font-weight: 300;
    border-radius: 0 3px 3px 0;
}

.layerShopCart .list.summary .VAT {
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.layerShopCart .list.summary .item {
    overflow: hidden;
    color: #000;
}

.layerShopCart .list.summary .total {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 15px 0;
}

.layerShopCart .list.summary .total .item {
    padding: 5px 0;
}

.layerShopCart .list.summary .item .label {
    float: left;
}

.layerShopCart .list.summary .item .value {
    float: right;
}

.layerShopCart .action {
    overflow: hidden;
}

.layerShopCart .action .check {
    text-align: right;
    margin-bottom: 20px;
}

.layerShopCart .action .check a {
    color: #333333;
    text-decoration: none;
}

.layerShopCart .action .left {
    float: left;
}

.layerShopCart .action .right {
    float: right;
}

.layerShopCart .action .link {
    display: inline-block;
    padding: 10px 20px;
    background: #333333;
    color: #FFFFFF;
    border-radius: 3px;
    text-decoration: none;
}

.layerShopCart .action .button {
    margin: 0;
    padding: 10px 20px;
    background: var(--main-color);
    color: #FFFFFF;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
}

.layerShopCart .action .button:hover {
    background: #555;
    transition: all 0.5s ease-out;
}

.layerShopCartAddress>.form {
    background-color: #eeeeee;
    padding: 10px;
    margin-bottom: 20px;
}

.layerShopCartAddress>.form .item {
    margin: 5px 0;
}

.layerShopCartAddressForm {
    margin-bottom: 20px;
    color: #000;
}

.layerShopCartAddressForm .label {
    width: 170px;
    float: left;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 2.7rem;
}

.layerShopCartAddressForm .value {
    padding-left: 170px;
}

.layerShopCartAddressForm .value:after {
    display: table;
    content: '';
    clear: both;
}

.detailAddressCheck {
    padding-left: 170px;
    margin-bottom: 15px;
}

.layerShopCartAddressForm .input,
.layerShopCartAddressForm .select,
.layerShopCartAddressForm .textarea {
    box-sizing: border-box;
    width: 100%;
    border-radius: 3px;
    padding: 10px 10px;
    background: #eee;
    border: none;
}

.layerShopCartAddressForm .input:required,
.layerShopCartAddressForm .select:required,
.layerShopCartAddressForm .textarea:required {
    background: #eee;
}

.checkAddress {
    margin-right: 15px;
}

.layerShopCartAddressForm .input.zip {
    width: 20%;
}

.layerShopCartAddressForm .input.place {
    width: 78%;
    margin-left: 2%;
}

.layerShopCartAddressForm .input.streetNumber {
    width: 20%;
}

.layerShopCartAddressForm .input.street {
    width: 78%;
    margin-right: 2%;
}

.layerShopCartAddressForm .textarea {
    padding: 10px;
    min-height: 100px;
    resize: vertical;
    font-family: var(--main-font);
    font-weight: 100;
    font-size: 1rem;
}

.layerShopCartPayment .item {
    background-color: #f2f2f2;
    color: #000;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 3px;
    overflow: hidden;
}

.layerShopCartPayment .item img {
    float: right;
}

.layerShopCartPayment .item .radio {
    float: left;
}

.layerShopCartPayment .item .label {
    padding-left: 25px;
}

.layerShopCartPayment .item .address {
    border-top: 1px solid #999999;
    margin-top: 10px;
    padding-top: 10px;
}

.layerShopCartPayment .item .address a {
    color: inherit;
    text-decoration: none;
}

.layerShopCart .list.address {
    overflow: hidden;
}

.layerShopCart .list.address .left {
    width: 50%;
    float: left;
}

.layerShopCart .list.address .right {
    width: 50%;
    float: right;
}

.layerShopCart .list.address,
.layerShopCart .list.payment {
    border-bottom: 1px solid #CCCCCC;
    padding-bottom: 20px;
}

.layerShopCart .list.payment .address {
    margin-top: 10px;
}

.layerShopCart .list.payment .address a {
    color: inherit;
    text-decoration: none;
}

.layerShopCart .success a {
    color: #FFFFFF;
    text-decoration: none;
}

.layerShopCart .success a:before {
    content: '\f1c1\00A0\00A0';
    font-family: 'fontawesome';
    font-weight: 300;
}


/* Modell Karussell */

.carousel {
    margin-bottom: 20px;
    padding-top: 10px;
}

.carousel .flag {
    font-size: 70%;
    border-radius: 20px;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    position: absolute;
    z-index: 9;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    background: black;
    color: white;
    top: -6px;
    left: -6px;
}

.carousel .image {
    position: relative;
    line-height: 0;
}

.carousel a {
    position: relative;
    display: block;
    text-decoration: none;
}

.carousel .background {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    -webkit-transition: opacity 500ms;
    transition: opacity 500ms;
}

.carousel .background:after {
    content: '\f021';
    font-family: 'fontawesome';
    font-weight: 300;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 200%;
    color: #FFFFFF;
}

.flipster__item--current a:hover .background {
    opacity: 1;
}

.carousel .title {
    background-color: #eee;
    font-size: 90%;
    padding: 5px;
    color: #000;
}


/* Modell Liste */

.layerModelTemplate .head {
    margin-bottom: 20px;
    overflow: hidden;
}

.layerModelTemplate .list {
    margin: 0 -10px;
    overflow: hidden;
}

.layerModelTemplate .list .item {
    width: 33.33%;
    float: left;
    margin-bottom: 20px;
}

.layerModelTemplate .list .item .inner {
    margin: 0 10px;
    padding: 10px;
    background-color: #f2f2f2;
}

.layerModelTemplate .list .item .image {
    line-height: 0;
    margin-bottom: 10px;
    position: relative;
}

.layerModelTemplate .list .item .image img {
    width: 100%;
    height: auto;
}

.layerModelTemplate .list .item .number {
    margin-bottom: 10px;
    font-size: 90%;
    color: #999999;
}

.layerModelTemplate .list .item .title a,
.layerModelTemplate .list .item .number a {
    color: inherit;
    text-decoration: none;
}

.layerModelTemplate .list .item .action {
    overflow: hidden;
}

.layerModelTemplate .list .item .action a {
    font-family: 'fontawesome';
    font-weight: 300;
    background-color: #999999;
    color: #f2f2f2;
    text-decoration: none;
    display: block;
    float: right;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 3px;
    margin-left: 5px;
}

.layerModelTemplate .list .item .action a:hover {
    background-color: #333333;
}

.layerModelTemplate .navigation {
    overflow: hidden;
}

.layerModelTemplate .navigation .left {
    float: left;
}

.layerModelTemplate .navigation .right {
    float: right;
}


/* Modell Detail */

.layerModelTemplate .head .close {
    float: right;
    font-family: 'fontawesome';
    font-weight: 300;
    font-size: 150%;
    color: #CCCCCC;
    text-decoration: none;
}

.layerModelTemplate .detail.model {
    overflow: hidden;
}

.layerModelTemplate .detail.model {
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px #CCCCCC solid;
}

.layerModelTemplate .detail.model img {
    max-width: 100%;
    height: auto;
}

.layerModelTemplate .detail.model .left {
    float: left;
    width: 40%;
}

.layerModelTemplate .detail.model .bx-pager {
    padding: 10px 0;
    text-align: center;
    line-height: 0;
}

.layerModelTemplate .detail.model .bx-pager-item {
    display: inline-block;
    vertical-align: middle;
    margin: 0 3px;
}

.layerModelTemplate .detail.model .bx-pager-item a {
    background-color: #CCCCCC;
    display: block;
    width: 12px;
    height: 12px;
    font-size: 0;
    border-radius: 50%;
}

.layerModelTemplate .detail.model .bx-pager-item a:hover,
.layerModelTemplate .detail.model .bx-pager-item a.active {
    background-color: #333333;
}

.layerModelTemplate .detail.model .links a {
    display: block;
    color: #333333;
    text-decoration: none;
    font-size: 90%;
    margin-bottom: 10px;
    background-color: #f2f2f2;
    padding: 5px 10px;
    border-radius: 3px;
}

.layerModelTemplate .detail.model .links a:last-child {
    margin-bottom: 0;
}

.layerModelTemplate .detail.model .links .button {
    width: 100%;
    font: inherit;
    color: #333333;
    text-decoration: none;
    font-size: 90%;
    margin-bottom: 10px;
    background: none;
    border: none;
    background-color: #f2f2f2;
    padding: 5px 10px;
    border-radius: 3px;
    overflow: hidden;
    text-align: left;
    cursor: pointer;
}

.button::-moz-focus-inner {
    border: none;
    padding: 0;
}

.layerModelTemplate .detail.model .links .button .price {
    float: right;
}

.layerModelTemplate .detail.model .links a:before,
.layerModelTemplate .detail.model .links .button:before {
    content: '\f0da\00A0';
    font-family: 'fontawesome';
    font-weight: 300;
}

.layerModelTemplate .detail.model .links a:hover,
.layerModelTemplate .detail.model .links .button:hover,
.layerModelTemplate .detail.model .links a.open {
    color: #f2f2f2;
    background-color: #333333;
}

.layerModelTemplate .detail.model .image {
    line-height: 0;
    margin-bottom: 10px;
    position: relative;
}

.slider-item video {
    width: 85%;
}

.layerModelTemplate .detail.model .right {
    margin-left: 45%;
}

.layerModelTemplate .detail.model .title {
    font-weight: 700;
    font-style: normal;
    font-size: 140%;
    margin-bottom: 10px;
}

.layerModelTemplate .detail.model .text {
    font-size: 90%;
    margin-bottom: 10px;
}

.layerModelTemplate .detail.model .attributes {
    margin-bottom: 20px;
}

.layerModelTemplate .detail.model .attributes .item {
    float: none;
    width: 100%;
    margin-bottom: 10px;
    overflow: hidden;
}

.layerModelTemplate .detail.model .attributes .item .label {
    width: 120px;
    float: left;
    font-weight: 700;
    font-style: normal;
}

.layerModelTemplate .detail.model .attributes .item .value {
    padding-left: 130px;
}


/* Verbrauchsliste */

.layerModelUsage .head .buttons {
    float: right;
}

.layerModelUsage .icon {
    float: left;
    background-image: url(../../../img/spriteUsage.png);
    background-repeat: no-repeat;
    height: 41px;
    width: 40px;
}


/* Verbrauchsliste: Content */

.layerModelUsageContent {
    overflow: hidden;
}

.layerModelUsageContent .detail.articleGroup {
    clear: both;
    border-top: 1px solid #CCCCCC;
    padding-top: 20px;
    padding-bottom: 0;
    border-bottom: none;
}

.layerModelUsageContent>.item {
    width: 50%;
    float: left;
    margin-bottom: 20px;
}

.layerModelUsageContent>.item>.inner {
    padding: 20px;
    background-color: #f2f2f2;
    border-radius: 5px;
    font-size: 90%;
    position: relative;
}

.layerModelUsageContent>.item.odd>.inner {
    margin-right: 10px;
}

.layerModelUsageContent>.item.even>.inner {
    margin-left: 10px;
}

.layerModelUsageContent>.item>.inner>.image {
    float: left;
    width: 40%;
}

.layerModelUsageContent>.item>.inner>.image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

.layerModelUsageContent>.item>.inner .reset {
    position: absolute;
    right: 20px;
    top: 20px;
    font-family: 'fontawesome';
    font-weight: 300;
    cursor: pointer;
}

.layerModelUsageContent>.item>.inner>.right {
    padding-left: 45%;
}

.layerModelUsageContent>.item>.inner>.right .title {
    font-weight: 700;
    font-style: normal;
}

.layerModelUsageContent>.item>.inner>.right .link {
    cursor: pointer;
    font-size: 90%;
    margin-bottom: 10px;
}

.layerModelUsageContent>.item>.inner>.right .link:before {
    font-family: 'fontawesome';
    font-weight: 300;
    content: '\f14c\00A0';
}

.layerModelUsageContent>.item>.inner>.right .attributes {
    margin-bottom: 10px;
    font-size: 130%;
}

.layerModelUsageContent>.item>.inner .count {
    margin-bottom: 10px;
}

.layerModelUsageContent>.item>.inner .count:before {
    font-family: 'fontawesome';
    font-weight: 300;
    content: '\f291\00A0\00A0';
}

.layerModelUsageContent>.item>.inner .weight:before {
    font-family: 'fontawesome';
    font-weight: 300;
    content: '\f24e\00A0\00A0';
}


/* Verbrauchsliste: PopUp */

.layerModelUsagePopUpBackground {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
}

.layerModelUsagePopUp {
    position: absolute;
    background-color: #FFFFFF;
    width: 90%;
    max-height: 90%;
    max-width: 1300px;
    top: 5%;
    left: 0;
    right: 0;
    margin: 0 auto;
    overflow: auto;
}

.layerModelUsagePopUp .head {
    border-bottom: 1px solid #CCCCCC;
    padding-bottom: 20px;
}

.layerModelUsagePopUp .head .title {
    font-size: 150%;
    padding-right: 40px;
}

.layerModelUsagePopUp .close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-family: 'fontawesome';
    font-weight: 300;
    cursor: pointer;
    font-size: 200%;
}

.layerModelUsagePopUp img {
    max-width: 100%;
    height: auto;
    border-radius: 3px;
}

.layerModelUsagePopUp img:hover {
    cursor: pointer;
    box-shadow: 0 0 3px #000000;
}

.layerModelUsagePopUp>.inner {
    position: relative;
    padding: 20px 20px 0 20px;
}

.layerModelUsagePopUpCurrent {
    overflow: hidden;
    margin-bottom: 20px;
    border-bottom: 1px solid #CCCCCC;
    padding-bottom: 20px;
}

.layerModelUsagePopUpCurrent .item {
    max-width: 50%;
    float: left;
}

.layerModelUsagePopUpCurrent .item .title {
    font-weight: 700;
    font-style: normal;
}

.layerModelUsagePopUpCurrent .item .number {
    margin-bottom: 10px;
}

.layerModelUsagePopUpCurrent .item.original>div {
    padding-right: 10px;
}

.layerModelUsagePopUpCurrent .item.current>div {
    padding-left: 10px;
}

.layerModelUsagePopUpAlternatives {
    margin: 0 -10px;
}

.layerModelUsagePopUpAlternatives .item {
    display: inline-block;
    vertical-align: top;
    width: 12.5%;
    margin-bottom: 20px;
}

.layerModelUsagePopUpAlternatives .item .inner {
    padding: 0 10px;
}


/* Verbrauchsliste: Zubehör */

.layerModelUsageAccessoires {
    border-top: 1px #CCCCCC solid;
    padding-top: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.layerModelUsageAccessoires .content .item-head {
    overflow: hidden;
    font-size: 90%;
    margin-bottom: 10px;
    line-height: 15px;
}

.layerModelUsageAccessoires .countryflag {
    background-image: url(../../img/spriteUsage.png);
    height: 15px;
    width: 20px;
    margin: 0 auto;
}

.layerModelUsageAccessoires .countryflag.uk {
    background-position: -224px -15px;
    height: 15px;
    width: 20px;
}

.layerModelUsageAccessoires .countryflag.usa {
    background-position: -256px -15px;
    height: 15px;
    width: 20px;
}

.layerModelUsageAccessoires .content .item {
    margin-bottom: 5px;
    padding: 5px 0 5px 10px;
    font-size: 90%;
    overflow: hidden;
    background-color: #f2f2f2;
}

.layerModelUsageAccessoires .content .item a {
    text-decoration: none;
    color: #333333;
}

.layerModelUsageAccessoires .content .item a:before {
    content: '\f08e\00A0';
    font-family: 'fontawesome';
    font-weight: 300;
}

.layerModelUsageAccessoires .content .attribute {
    float: right;
    width: 40px;
    text-align: center;
    color: #000;
}


/* Verbrauchsliste: Action */

.layerModelUsageAction {
    border-top: 1px #CCCCCC solid;
    padding-top: 20px;
    position: relative;
}

.layerModelUsageAction .button {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    width: 60px;
    height: 60px;
    cursor: pointer;
    background-color: #f2f2f2;
    color: #333333;
    border-radius: 3px;
}

.layerModelUsageAction .PDF {
    font-family: 'fontawesome';
    font-weight: 300;
    font-size: 150%;
    color: #000;
}

.layerModelUsageAction .button:hover {
    color: #f2f2f2;
    background-color: #333333;
}

.layerModelUsageAction .file:before {
    font-size: 150%;
    font-family: 'fontawesome';
    font-weight: 300;
    content: '\f1c1';
}

.layerModelUsageAction .print:before {
    font-size: 150%;
    font-family: 'fontawesome';
    font-weight: 300;
    content: '\f02f';
}

.layerModelUsageAction .buy:before {
    font-size: 150%;
    font-family: 'fontawesome';
    font-weight: 300;
    content: '\f291';
}

.layerModelUsageAction .withPattern:before {
    font-family: 'fontawesome';
    font-weight: 300;
    content: '\f00c';
    display: inline-block;
    margin-right: 5px;
}

.layerModelUsageAction .withoutPattern:before {
    font-family: 'fontawesome';
    font-weight: 300;
    content: '\f05e';
    display: inline-block;
    margin-right: 5px;
}

.layerModelUsageAction .popup {
    position: absolute;
    bottom: 100%;
    right: 0;
    background-color: #FFFFFF;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    padding: 10px 10px 0 10px;
    border-radius: 3px;
    margin-bottom: -10px;
    display: none;
}

.layerModelTemplate .popup .button {
    width: auto;
    height: auto;
    padding: 5px 10px;
    display: block;
    margin-bottom: 10px;
    width: 180px;
    text-align: left;
}

.layerModelUsageAction .left {
    float: left;
}

.layerModelUsageAction .right {
    float: right;
}


/* Contentbox Artikel */

.itemShopBox {
    padding: 10px;
    box-shadow: 0px 0px 2px;
    margin-bottom: 10px;
}

.itemShopBoxImage {
    position: relative;
}

.itemShopBoxImage img {
    max-width: 100%;
    height: auto;
}

.itemShopBoxFlagNew {
    font-size: 1.2rem;
    background-color: #5A7F72;
    border-radius: 4px;
    color: #FFF;
    height: 36px;
    left: 5px;
    top: 5px;
    line-height: 36px;
    text-align: center;
    width: 42px;
    position: absolute;
}

.itemShopBoxFlagSale {
    font-size: 1.2rem;
    background-color: #FFF;
    border-radius: 4px;
    top: 5px;
    color: #5A7F72;
    height: 36px;
    right: 5px;
    line-height: 36px;
    text-align: center;
    width: 42px;
    position: absolute;
}

.itemShopBoxTitle {
    color: #5A7F72;
    font-size: 150%;
    text-align: center;
}

.itemShopBoxPrice {
    color: #5A7F72;
    text-align: center;
}


/* memberTemplate */

.memberTemplate {
    margin-bottom: 20px;
}

.memberTemplate .head,
.memberTemplate .text {
    margin-bottom: 15px;
}

.memberTemplate form {
    width: 100%;
}

.item.disabled {
    display: none!important;
}

.memberTemplate .item {
    margin-bottom: 10px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.memberTemplate .spacer {
    margin-bottom: 20px;
}

.memberTemplate .containerLabel {
    overflow: hidden;
}

.memberTemplate .label {
    display: block;
    font-weight: 700;
    width: 20%;
}

.memberTemplate .label.streetNumber {
    width: 25%;
    float: right;
}

.memberTemplate .label.street {
    width: 73%;
    float: left;
}

.memberTemplate .label.formError {
    color: #9f0000;
}

.memberTemplate .label.formError:before {
    font-family: 'fontawesome';
    font-weight: 300;
    content: '\f06a\00A0';
}

.memberTemplate .value {
    overflow: hidden;
    width: 80%;
}

.memberTemplate .value.date {
    width: 50%;
    overflow: hidden;
}

.memberTemplate .value.checkbox {
    text-align: right;
    font-weight: 500;
}

.memberTemplate .input {
    box-sizing: border-box;
    width: 100%;
    border: 1px solid #CCCCCC;
    border-radius: 3px;
    padding: 10px;
}

.memberTemplate .checkbox {
    margin: 0;
}

.memberTemplate .input.fileinput {
    line-height: 29px;
    cursor: pointer;
}

.memberTemplate .input.streetNumber {
    width: 25%;
    float: right;
}

.memberTemplate .input.street {
    width: 73%;
    float: left;
}

.memberTemplate .input.plz {
    width: 25%;
    float: left;
}

.memberTemplate .input.place {
    width: 73%;
    float: right;
}

.memberTemplate .input.day {
    width: 30%;
    float: left;
}

.memberTemplate .input.month {
    width: 30%;
    float: left;
    margin: 0 5%;
}

.memberTemplate .input.year {
    width: 30%;
    float: left;
}

.memberTemplate .form .action {
    margin-top: 20px;
    text-align: right;
}

.layerShopCartAddress .form .action .button {
    font-size: 1rem;
}

.form .action .button {
    font-family: 'futura-pt', 'fontawesome';
    font-weight: 300;
    background-color: #999999;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    padding: 10px 20px;
}

.form .action .button:hover {
    opacity: 0.5;
    transition: all 0.5s ease-out;
}


/* Member: Login */

.layerMemberLogin .form .action {
    margin-top: 20px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.layerMemberLogin .form .action .button {
    float: right;
}

.layerMemberLogin .form .item .label {
    margin-bottom: 5px;
}

.layerMemberLogin .form .item.user .label:before {
    font-family: 'fontawesome';
    font-weight: 300;
    content: '\f007\00A0';
}

.layerMemberLogin .form .item.password .label:before {
    font-family: 'fontawesome';
    font-weight: 300;
    content: '\f084\00A0';
}

.layerMemberLogin .form .item.mail .label:before {
    font-family: 'fontawesome';
    font-weight: 300;
    content: '\f0e0\00A0';
}

.layerMemberLogin .form .action a {
    font-size: 100%;
    cursor: pointer;
}

.layerMemberLogin .action .link {
    border: 1px solid #ccc;
    padding: 10px 20px;
    cursor: pointer;
    background: #FFFFFF;
    color: #333;
}

.layerMemberLogin .action .link:hover {
    border: 1px solid #ccc;
    background-color: #ccc;
    transition: all 0.5s ease-out;
}

.layerMemberLogin .form .action .button {
    font-family: 'fontawesome';
    font-weight: 300;
}

.layerMemberLogin .layerMemberLoginForgot {
    display: none;
    margin-top: 15px;
}


/* Member: Bestellungen */

.layerMemberOrders .list {
    border-top: 1px solid #CCCCCC;
}

.layerMemberOrders .list .item {
    border-bottom: 1px solid #CCCCCC;
    padding: 10px 0;
    margin: 0;
    overflow: hidden;
}

.layerMemberOrders .list .item .file {
    font-family: 'fontawesome';
    font-weight: 300;
    color: inherit;
    text-decoration: none;
    float: right;
    font-size: 1.2rem;
}

.layerMemberOrders .list .item .date:before {
    font-family: 'fontawesome';
    font-weight: 300;
    content: '\f073\00A0';
}

.layerMemberOrders .list .item .time::before {
    font-family: 'fontawesome';
    font-weight: 300;
    content: '\f017\00A0';
}

.layerMemberOrders .list .item .comment:before {
    font-family: 'fontawesome';
    font-weight: 300;
    content: '\f075\00A0';
}

.layerMemberOrders .list .item .total:before {
    font-family: 'fontawesome';
    font-weight: 300;
    content: '\f0d6\00A0';
}


/* Member: Merkliste */

.layerMemberWatchlist .list {
    border-bottom: 1px solid #CCCCCC;
}

.layerMemberWatchlist .list .item {
    overflow: hidden;
    border-top: 1px solid #CCCCCC;
    font-size: 90%;
    padding: 10px 0;
    margin: 0;
}

.layerMemberWatchlist .list .item .head .title {
    font-size: 140%;
}

.layerMemberWatchlist .list .item .list {
    margin-bottom: 0;
    border-bottom: none;
}

.layerMemberWatchlist .list .item.set {
    overflow: hidden;
    border-top: none;
    font-size: 100%;
    padding: 0;
    margin-top: 10px;
}

.layerMemberWatchlist .list .item .image {
    float: left;
    width: 20%;
    line-height: 0;
}

.layerMemberWatchlist .list .item .image img {
    max-width: 100%;
    height: auto;
}

.layerMemberWatchlist .list .item .right {
    padding-left: 25%;
}

.layerMemberWatchlist .list .item .right:after {
    content: '';
    display: block;
    clear: right;
}

.layerMemberWatchlist .list .item .delete {
    float: right;
    color: inherit;
    font-family: 'fontawesome';
    font-size: 1.2rem;
    text-decoration: none;
}

.layerMemberWatchlist .list .item .title {
    font-size: 1.2rem;
    color: #000;
}

.layerMemberWatchlist .list .item .subtitle {
    color: #000;
}

.layerMemberWatchlist .list .item .number {
    font-size: 95%;
    color: #000;
    margin-bottom: 10px;
}

.layerMemberWatchlist .list .item .count {
    text-align: right;
    color: #000;
}

.layerMemberWatchlist .list .item .dispo {
    padding-left: 20px;
    font-size: 95%;
    margin-bottom: 15px;
    color: #000;
}

.layerMemberWatchlist .list .item .dispo:before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: -20px;
    margin-right: 10px;
}

.layerMemberWatchlist .list .item .dispo.green:before {
    background-color: green;
}

.layerMemberWatchlist .list .item .dispo.orange:before {
    background-color: orange;
}

.layerMemberWatchlist .list .item .dispo.red:before {
    background-color: red;
}

.layerMemberWatchlist .list .item .price {
    text-align: right;
    margin-bottom: 15px;
}

.layerMemberWatchlist .list .item .price.sale {
    margin-bottom: 0px;
}

.layerMemberWatchlist .list .item .action {
    overflow: hidden;
}

.layerMemberWatchlist .list .item .form {
    float: right;
    width: 85px;
    padding-right: 25px;
    position: relative;
}

.layerMemberWatchlist .list .item .form .input {
    box-sizing: border-box;
    height: 25px;
    width: 100%;
    border: 1px solid #333333;
    background: #fff;
    color: #333333;
    border-radius: 3px 0 0 3px;
    padding: 0 5px;
}

.layerMemberWatchlist .list .item .form .button {
    box-sizing: border-box;
    height: 25px;
    width: 25px;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    background: #333333;
    color: #FFFFFF;
    cursor: pointer;
    font-family: 'fontawesome';
    font-weight: 300;
    border-radius: 0 3px 3px 0;
}

.sendWatchlist {
    float: right;
}

.btnSendWatchlist {
    display: block;
    background-color: #333333;
    color: #FFFFFF;
    padding: 5px 7px;
    font-size: 80%;
    margin-bottom: 5px;
    border-radius: 3px;
    text-decoration: none;
    margin-top: 10px;
}


/* formularTemplate */

.formularTemplate {
    margin-bottom: 20px;
}

.formularTemplate .head,
.formularTemplate .text {
    margin-bottom: 15px;
}

.formularTemplate .item {
    margin-bottom: 10px;
}

.formularTemplate .spacer {
    margin-bottom: 20px;
}

.formularTemplate .label {
    display: block;
    font-weight: 700;
}

.formularTemplate .label.formError {
    color: #9f0000;
}

.formularTemplate .label.formError:before {
    font-family: 'fontawesome';
    font-weight: 300;
    content: '\f06a\00A0';
}

.formularTemplate .value {
    overflow: hidden;
}

.formularTemplate .value.date {
    width: 50%;
    overflow: hidden;
}

.formularTemplate .value.checkbox {
    text-align: right;
    font-weight: 500;
}

.formularTemplate .input {
    box-sizing: border-box;
    width: 100%;
    height: 30px;
    border: 1px solid #CCCCCC;
    border-radius: 3px;
}

.formularTemplate .checkbox {
    margin: 0;
}

.formularTemplate .input.fileinput {
    line-height: 29px;
    cursor: pointer;
}

.formularTemplate .input.streetNumber {
    width: 25%;
    float: right;
}

.formularTemplate .input.street {
    width: 73%;
    float: left;
}

.formularTemplate .input.plz {
    width: 25%;
    float: left;
}

.formularTemplate .input.place {
    width: 73%;
    float: right;
}

.formularTemplate .input.day {
    width: 30%;
    float: left;
}

.formularTemplate .input.month {
    width: 30%;
    float: left;
    margin: 0 5%;
}

.formularTemplate .input.year {
    width: 30%;
    float: left;
}

.formularTemplate .form .action {
    margin-top: 20px;
    text-align: right;
}


/* Newsletter-Liste */

.layerNewsletterList {
    margin: 20px 0;
    border-top: 1px solid #CCCCCC;
}

.layerNewsletterList .item {
    border-bottom: 1px solid #CCCCCC;
    padding: 10px 0;
    overflow: hidden;
}

.layerNewsletterList .item .title {
    font-size: 1.2rem;
}

.layerNewsletterList .item .date {
    color: #999999;
}

.layerNewsletterList .item .links {
    text-align: right;
}

.layerNewsletterList .item .links a {
    display: inline-block;
    background-color: #333333;
    color: #FFFFFF;
    padding: 5px 10px;
    font-size: 90%;
    border-radius: 3px;
    text-decoration: none;
}


/* PopUp */

.popup {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
}

.popup-container {
    position: absolute;
    background-color: #FFFFFF;
    width: 90%;
    max-height: 90%;
    max-width: 1300px;
    top: 5%;
    left: 0;
    right: 0;
    margin: 0 auto;
    overflow: auto;
}

.popup-head {
    margin: 20px;
    padding-right: 40px;
}

.popup-head-title {
    font-size: 150%;
}

.popup-head-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-family: 'fontawesome';
    font-weight: 300;
    cursor: pointer;
    font-size: 200%;
}

.popup-head-close:hover {
    color: #333333;
    text-decoration: none !important;
}

.popup-content {
    margin: 20px;
}


/* ArticleReplace */

.articlereplace-head {
    overflow: hidden;
    margin: 20px;
    padding: 20px 0;
    border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
}

.articlereplace-head-item {
    width: 50%;
    float: left;
    max-width: 150px;
}

.articlereplace-head-left div {
    padding-right: 10px;
}

.articlereplace-head-right div {
    padding-left: 10px;
}

.articlereplace-head-item-title {
    font-weight: 700;
}

.articlereplace-head-item-subtitle {
    font-weight: 500;
    margin-top: 10px;
}

.articlereplace-head-item-number {
    font-size: 80%;
    color: #999999;
}

.articlereplace-head-item-image {
    margin-top: 10px;
}

.articlereplace-head-item-image img {
    width: 100%;
    height: auto;
}

.articlereplace-list {
    margin: 20px 10px 0 10px;
    overflow: hidden;
}

.articlereplace-list-item {
    display: inline-block;
    vertical-align: top;
    width: 16.6666%;
    margin-bottom: 20px;
}

.articlereplace-list-item-inner {
    padding: 0 10px;
}

.articlereplace-list-item-title {
    font-weight: 500;
}

.articlereplace-list-item-number {
    font-size: 80%;
    color: #999999;
}

.articlereplace-list-item-image {
    line-height: 0;
    margin-top: 10px;
    position: relative;
}

.articlereplace-list-item-image img {
    width: 100%;
    height: auto;
}

.articlereplace-list-item-link {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    -webkit-transition: opacity 500ms;
    transition: opacity 500ms;
}

.articlereplace-list-item-link:hover {
    opacity: 1;
}

.articlereplace-list-item-link::after {
    content: '\f021';
    font-family: 'fontawesome';
    font-weight: 300;
    font-size: 150%;
    color: #FFFFFF;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}

.bx-pager {
    padding: 10px 0;
    text-align: center;
    line-height: 0;
}

.bx-pager-item {
    display: inline-block;
    vertical-align: middle;
    margin: 0 3px;
}

.bx-pager-item a {
    background-color: #CCCCCC;
    display: block;
    width: 12px;
    height: 12px;
    font-size: 0;
    border-radius: 50%;
}

.bx-pager-item a:hover,
.bx-pager-item a.active {
    background-color: #333333;
}

.bx-wrapper .bx-controls-direction a {
    position: absolute;
    top: 50%;
    margin-top: -16px;
    outline: 0;
    width: 32px;
    height: 40px;
    z-index: 9999;
    font-family: var(--main-fontawesome);
    font-weight: 300;
    font-size: 2.5rem;
    color: var(--main-color);
    background: white;
    text-align: center;
    line-height: 1;
}

.bx-wrapper .bx-controls-direction .bx-prev {
    left: 0;
}

.bx-wrapper .bx-controls-direction .bx-next {
    right: 0;
    top: 49%;
}

@media only screen and (max-width: 1325px) {
    .containerHead .layerNavigationTop {
        display: none;
    }
    #buttonMainNavigation,
    #layerNavigationResp {
        display: block;
    }
}

@media only screen and (max-width: 1040px) {
    /* Header */
    #containerHead .action {
        width: 50%;
    }
    #containerHead .logo {
        width: 35%;
    }
    .containerHead .address {
        display: none;
    }
    /* Service Navi */
    .containerHead .serviceNavigationTop {
        display: none;
    }
    /* Main */
    #layerMainLeft {
        display: none;
    }
    /* ArticleReplace */
    .articlereplace-list-item {
        width: 25%;
    }
    #layerMainContent.layout-13 {
        width: 100%;
    }
}

@media only screen and (max-width: 750px) {
    #containerHead .action {
        width: unset;
        position: absolute;
        top: 20px;
        right: 40px;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-end;
        align-content: space-between;
    }
    #containerHead .logo {
        width: 100%;
    }
    #containerHead .logo img {
        width: 50%;
    }
    #buttonMainNavigation {
        width: unset;
        margin: 0;
    }
    #buttonMainNavigation .naviTitle {
        display: none;
    }
    #containerHead .search {
        display: none;
    }
    #containerHead .layerContentboxMember {
        display: none;
    }
    #layerMainStart {
        padding: 0;
        margin: 0;
        width: 100%;
    }
}

@media only screen and (max-width: 720px) {
    /* Service Navigation */
    .serviceNavigationTop {
        display: none;
    }
    .layerNavigationTop {
        display: none;
    }
    /* Main */
    .layerDialog .action .left {
        margin-bottom: 10px;
    }
    .layerDialog .action .left,
    .layerDialog .action .right {
        width: 100%;
        float: none;
    }
    #layerMainLeft {
        float: none;
        width: 100%;
    }
    #naviLinkTop {
        display: none;
    }
    .naviLinkLeft1Root {
        display: none;
    }
    #layerMainRight {
        float: none;
        width: 100%;
        margin-bottom: 20px;
    }
    #layerMainRightBox,
    #layerMainRight .contentbox-list {
        display: none;
    }
    #layerMainContent {
        margin-top: 1.5rem;
    }
    #layerMainContent,
    #layerMainBottom {
        padding-left: 0 !important;
    }
    #layerMainRight .toggle {
        display: none;
    }
    .layerShopFilter .title {
        font-size: 100%;
        padding: 10px;
        margin-bottom: 10px;
        overflow: hidden;
        color: #333;
        border-bottom: none;
        background-color: #EEEEEE;
    }
    .layerShopFilterList {
        display: none;
    }
    .contentItem .gallery .item {
        width: 100%;
    }
    .imageContentRight,
    .imageContentLeft {
        width: 100%;
        float: none;
        margin: 0 0 20px 0;
    }
    /* Boxen 1/3 */
    .box-list.w1-3 .box-item {
        width: 100%;
    }
    /* Boxen 2/3 */
    .box-list.w2-3 .box-item {
        width: 100%;
    }
    /* Boxen 1/2 */
    .box-list.w1-2 .box-item {
        width: 100%;
    }
    /* Contentbox */
    .contentbox-button {
        display: block;
    }
    #layerMainBottom .contentbox-item {
        width: 100%;
    }
    /* Contentlayer */
    #containerContentLayer {
        width: 90%;
        margin-left: -45%;
    }
    #layerContentLayerHead img {
        max-width: 100%;
    }
    /* Footer */
    .layerFooterText {
        width: 100%;
        float: none;
        margin-bottom: 20px;
    }
    .layerFooterNavi {
        display: none;
    }
    .layerFooterSocial {
        float: none;
        width: 100%;
        text-align: left;
    }
    .layerFooterImprint {
        text-align: center;
    }
    /* ArticleReplace */
    .articlereplace-head-item-title {
        font-size: 85%;
    }
    .articlereplace-list-item {
        width: 50%;
    }
    /* Shop */
    .layerShopTemplate .list>.item {
        width: 46%;
    }
    .zoomContainer,
    .zoomWindowContainer {
        display: none;
    }
    .detail.articleGroup .left,
    .detail.article .left {
        float: none;
        width: 100%;
        margin-bottom: 20px;
    }
    .detail.articleGroup .right,
    .detail.article .right {
        margin-left: 0;
    }
    .detail.articleGroup .attributes .item .label,
    .detail.article .attributes .item .label {
        float: none;
        width: 100%;
        margin-bottom: 5px;
    }
    .detail.articleGroup .attributes .item .value,
    .detail.article .attributes .item .value {
        padding-left: 0;
    }
    /* Modelle */
    .layerModelTemplate .list .item {
        width: 100%;
    }
    .layerModelTemplate .detail.model .left {
        float: none;
        width: 100%;
        margin-bottom: 20px;
    }
    .layerModelTemplate .detail.model .right {
        margin-left: 0;
    }
    .layerModelTemplate .detail.model .attributes .item .label {
        float: none;
        width: 100%;
        margin-bottom: 5px;
    }
    .layerModelTemplate .detail.model .attributes .item .value {
        float: none;
        padding-left: 0;
    }
    /* Verbrauchsliste: Content */
    .layerModelUsageContent>.item {
        width: 100%;
        float: none;
    }
    .layerModelUsageContent>.item.odd>.inner,
    .layerModelUsageContent>.item.even>.inner {
        margin: 0;
    }
    .layerModelUsagePopUpAlternatives .item {
        width: 50%;
    }
    /* Warenkorb */
    .layerShopCartAddressForm .label {
        width: 100%;
        float: none;
        margin-bottom: 0px;
    }
    .layerShopCartAddressForm .value,
    .detailAddressCheck {
        padding-left: 0;
    }
    .layerShopCart .action .left {
        float: none;
        margin-bottom: 10px;
    }
    .layerShopCart .action .right {
        float: none;
    }
    .layerShopCart .action .link {
        width: 100%;
        text-align: center;
    }
    .layerShopCart .action .button {
        width: 100%;
        margin-top: 15px;
    }
    .layerShopCart .list.address .left {
        margin-bottom: 20px;
        float: none;
        width: 100%;
    }
    .layerShopCart .list.address .right {
        float: none;
        width: 100%;
    }
    .itemStart {
        margin-bottom: 2rem;
    }
    #layerMain {
        padding-bottom: 2rem;
    }
}

@media only screen and (max-width: 550px) {
    .memberTemplate .label {
        margin-bottom: 10px;
    }
    .memberTemplate .label,
    .memberTemplate .value {
        width: 100%;
    }
    #containerHead {
        margin-bottom: 0;
    }
    #containerHead .slider {
        padding: 0;
    }
    #layerStartBox {
        margin: 2rem 0 0 0;
    }
    #containerMain {
        padding: 0 20px;
    }
    #layerStartBox .content-text {
        padding: 15px;
        margin: 0;
    }
}

@media only screen and (max-width: 450px) {
    .layerShopTemplate .list>.item {
        width: 100%;
    }
    #containerHead .logo img {
        width: 70%;
    }
}