@charset "utf-8";

/* Standard-Elemente */

:root {
    --main-white-color: white;
    --main-lightgrey-color: #f2f2f2;
    --main-black-color: black;
    --main-color: #000000;
    --main-second-color: #555555;
    --main-font-buttonFont: "fontawesome", "futura-pt";
    --main-font-fontawesome: "fontawesome";
    --main-font: futura-pt;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

button {
    background: none;
    outline: none;
    cursor: pointer;
    border: none;
    font-family: var(--main-font);
}

select {
    font-family: inherit;
    font-size: inherit;
}

.iconButton {
    font-family: var(--main-font-buttonFont);
}

.buttonLY {
    background: black;
    color: white!important;
    padding: 5px 10px;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    font-family: var(--main-font-buttonFont);
    border: none;
    cursor: pointer;
    font-weight: 300;
}

.buttonLY:before {
    content: '\f061';
    font-family: fontawesome;
    padding-right: 10px;
    font-weight: 100;
    color: white;
}

.buttonLY:hover {
    animation: bounce 1s ease-out;
}

ul {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

body {
    font-family: "futura-pt";
    font-weight: 300;
    font-size: 1.2rem;
    color: var(--main-black-color);
    letter-spacing: 0.02em;
}

::-webkit-scrollbar {
    width: 5px;
    margin-left: 0.5rem;
}


/* Track */

 ::-webkit-scrollbar-track {
    background: #f1f1f1;
}


/* Handle */

 ::-webkit-scrollbar-thumb {
    background: #888;
}


/* Handle on hover */

 ::-webkit-scrollbar-thumb:hover {
    background: #555;
}


/* HEADER
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.page-header {
    background: var(--main-white-color);
}

.page-header nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.page-header ul {
    display: flex;
    order: 1;
    width: 100%;
}

.page-header nav>*,
.page-theme,
.page-main,
.page-footer>* {
    opacity: 0;
}

.page-header nav>* {
    transform: translateY(-30px);
}

.page-header #navigationTop {
    opacity: 0;
}

.page-footer>* {
    transform: translateY(30px);
}

.page-header {
    position: relative;
    z-index: 15;
    margin-bottom: 5rem;
}

.page-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--main-blue-color);
    z-index: 99999;
    transform: scaleX(0);
}

.page-theme .text-wrapper+.text-wrapper {
    margin-top: 10px;
}

.page-theme .text-wrapper * {
    transform: translateY(120%);
}

.page-theme .p-wrapper * {
    transform: translateY(-120%);
}

.loaded .page-header::after {
    animation: scaleIn 1.3s ease-in 0.2s forwards;
}

.loaded .page-theme {
    animation: fadeIn 1s ease-in 0.7s forwards;
}

.loaded .page-main {
    animation: fadeIn 1s ease-in 0.7s forwards;
    z-index: 10;
    position: relative;
}

.loaded .page-header nav>*,
.loaded .page-header #navigationTop,
.loaded .page-footer>* {
    animation: fadeIn 1s ease-in 0.7s forwards, slideIn 0.8s ease-in 0.9s forwards;
}

.loaded .page-theme .text-wrapper * {
    animation: slideIn 0.6s cubic-bezier(0.54, 0.46, 0.54, 0.94) 2s forwards;
}

.content a[href*="mailto:"]:before {
    content: '\f0e0\00A0\00A0';
    font-family: 'fontawesome';
    font-weight: 100;
}

.content a[href*="tel:"]:before,
.content a[href*="Tel:"]:before {
    content: '\f095\00A0\00A0';
    font-family: 'fontawesome';
    font-weight: 100;
}

.content a[href$=".pdf"]:before,
.content a[href$=".PDF"]:before {
    content: '\f1c1\00A0';
    font-family: 'fontawesome';
    font-weight: 100;
}

.content a[href$=".xlsx"]:before,
.content a[href$=".xls"]:before,
.content a[href$=".csv"]:before,
.content a[href$=".xlsm"]:before,
.content a[href$=".xltx"]:before,
.content a[href$=".xltm"]:before {
    content: '\f1c3\00A0\00A0';
    font-family: 'fontawesome';
    font-weight: 100;
}

.content a[href$=".docx"]:before,
.content a[href$=".doc"]:before,
.content a[href$=".dot"]:before,
.content a[href$=".docm"]:before,
.content a[href$=".dotx"]:before,
.content a[href$=".dotm"]:before {
    content: '\f1c2\00A0\00A0';
    font-family: 'fontawesome';
    font-weight: 100;
}

strong,
b {
    font-weight: 700;
}

hr {
    border: none;
    background-color: var(--main-blue-color);
    color: var(--main-blue-color);
    height: 1px;
}

img {
    border: none;
    max-width: 100%;
}

.clear {
    clear: both;
    height: 0px;
    width: 0px;
}

.image img {
    width: 100%;
    display: block;
    margin: 0;
}


/* Platzhalter Form-Elemente */

::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: inherit;
    font-family: "futura-pt";
    font-size: inherit;
}

:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: inherit;
    opacity: 1;
    font-family: "futura-pt";
    font-size: inherit;
}

::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: inherit;
    opacity: 1;
    font-family: "futura-pt";
    font-size: inherit;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: inherit;
    font-family: "futura-pt";
    font-size: inherit;
}

input {
    font-family: "futura-pt";
    font-size: inherit;
}


/* Button zurück nach oben */

#buttonTop {
    text-align: center;
    position: fixed;
    display: none;
    right: -1px;
    bottom: 90px;
    padding: 10px 13px;
    color: #000;
    background: #fff;
    z-index: 999;
    border: 1px solid #000;
}

#buttonTop:before {
    font-family: fontawesome;
    content: '\f077';
    font-size: 160%;
    font-weight: 300;
}


/* Top */

#containerTop {
    position: relative;
    margin: 0;
    min-height: 70px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    padding: 0 100px;
}

#layerTop {
    max-width: 1620px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
}


/* topbar */

.topbar-inner {
    line-height: 2.2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    align-content: stretch;
}

.topbar-language a {
    display: inline-block;
    text-transform: uppercase;
    height: 35px;
    width: 45px;
    text-align: center;
    line-height: 2.2rem;
    border: 1px solid transparent;
    transition: transform .2s;
}

.topbar-language a.active {
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.topbar-language a:hover {
    border: 1px solid rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease-out;
    transform: scale(1.4);
    background: white;
}

.topbar-social {
    display: flex;
    font-family: fontawesome;
    font-weight: 700;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: 15%;
}

.topbar-social a {
    width: 20%;
    text-align: center;
    margin: 0 2.5%;
}

.topbar-social a:hover {
    animation: flip-icon 1s ease-in-out;
    background: rgba(0, 0, 0, 0.8);
    color: white;
}

.topbar-member {
    text-transform: uppercase;
    text-align: right;
    ;
}

.topbar-member-message {
    color: black;
    letter-spacing: 2px;
}

.topbar-member-message .topbar-member-link {
    font-weight: 700;
    margin-left: 1.5rem;
}

.topbar-member-message .topbar-member-link.resp {
    font-weight: 700;
    margin-left: 0;
}

.topbar-member-link {
    text-transform: uppercase;
    display: inline-block;
}

.topbar-member-link .naviIcon {
    font-family: fontawesome;
    float: left;
    padding-right: 8px;
    font-weight: 300;
}

.topbar-member .spacer {
    margin: 0 10px;
}

.topbar-member-link:hover {
    color: #000000;
    text-decoration: underline;
}

.topbar-member-navigation {
    float: left;
    padding-right: 5px;
}

.topbar-cart {
    position: relative;
    font-family: var(--main-font-buttonFont);
    background: white;
    border: 1px solid #000;
    color: black;
}

#layerNavigationResp .topbar-cart {
    margin-bottom: 2rem;
}

.topbar-cart-button {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    min-height: 2.5rem;
}

.topbar-cart-icon {
    background: black;
    color: white;
    padding: 0 10px;
    line-height: 2;
}

.topbar-cart-button-count {
    display: block;
    position: absolute;
    top: -11px;
    left: -10px;
    width: 24px;
    height: 24px;
    line-height: 19px;
    border-radius: 50%;
    background-color: darkgreen;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    text-align: center;
    font-size: 60%;
    font-weight: 700;
}

.topbar-cart-value {
    font-weight: 100;
    font-size: 85%;
    padding: 0 10px;
    text-transform: uppercase;
    line-height: 2.4;
}

.topbar-cart:hover {
    border: 1px solid darkgreen;
    color: darkgreen;
    transition: all 0.5s ease-out;
}

.topbar-cart-icon:hover {
    background: darkgreen;
    transition: all 0.5s ease-out;
}


/* topbar:navigation */

#navigation-topbar {
    list-style: none;
}

#navigation-topbar .navigation-item {
    display: inline-block;
    margin-left: 20px;
    position: relative;
}

#navigation-topbar .navigation-item-link {
    color: #000000;
    font-weight: 900;
    text-transform: uppercase;
}

#navigation-topbar .navigation-item:hover .navigation-item-link,
#navigation-topbar .navigation-item-link.open {
    text-decoration: underline;
}

#navigation-topbar .navigation-item-link::after {
    display: inline-block;
    content: '\00A0\00A0\f0d7';
    font-family: 'fontawesome';
    line-height: 90%;
}

#navigation-preview-topbar {
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 1;
    background-color: #FFFFFF;
    list-style: none;
    width: 250px;
    border: 2px solid #000000;
    padding: 5px 0;
    z-index: 90;
    display: none;
}

#navigation-topbar .navigation-item:hover #navigation-preview-topbar {
    display: block;
}

#navigation-preview-topbar .navigation-preview-item-link {
    display: block;
    line-height: normal;
    padding: 5px 10px 5px 22px;
    text-transform: uppercase;
}

#navigation-preview-topbar .navigation-preview-item-link button {
    text-transform: uppercase;
    border: none;
    background: none;
    cursor: pointer;
    box-sizing: unset;
    align-items: unset;
    padding: 0;
    margin: 0;
    font: unset;
    display: block;
    position: absolute;
    bottom: 10px;
    left: 22px;
}

#navigation-preview-topbar .navigation-preview-item-link:hover,
#navigation-preview-topbar .navigation-preview-item-link.open {
    text-decoration: underline;
}

#navigation-preview-topbar .navigation-preview-item-link::before {
    display: inline-block;
    width: 12px;
    margin-left: -12px;
    content: '\f0da';
    font-family: 'fontawesome';
    font-weight: normal;
}


/* countryselect */

.countryselect {
    position: relative;
}

.countryselect-input {
    height: 35px;
    line-height: 35px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 0 35px 0 10px;
    cursor: pointer;
    overflow: hidden;
    min-width: 220px;
}

.countryselect-input::after {
    font-family: 'fontawesome';
    font-weight: 300;
    content: '\f107';
    color: #000;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 35px;
    height: 35px;
    text-align: center;
}

.countryselect.open .countryselect-input {
    border-radius: 3px 3px 0 0;
    border-bottom: none;
    background-color: #f5f5f5;
    padding-bottom: 1px;
}

.countryselect.open .countryselect-input::after {
    content: '\f106';
}

.countryselect-input:hover {
    background-color: #f5f5f5;
}

.countryselect-input-flag {
    display: inline-block;
    margin-right: 10px;
}

.countryselect-input-flag img {
    width: auto;
    height: 15px;
    margin-top: -2px;
    vertical-align: middle;
}

.countryselect-list {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    max-height: 200px;
    overflow: hidden;
    border-radius: 0 0 5px 5px;
    display: none;
    z-index: 9;
}

.countryselect.open .countryselect-list {
    display: block;
}

.countryselect-list-inner {
    max-height: 199px;
    overflow: auto;
    border: 1px solid #b4b4b4;
    border-top: none;
    border-radius: 0 0 5px 5px;
}

.countryselect-list-option {
    display: block;
    line-height: 26px;
    border-top: 1px solid #CCCCCC;
    font-size: 80%;
    padding: 0 5px 0 10px;
    background-color: #f5f5f5;
    cursor: pointer;
    position: relative;
}

.countryselect-list-option:hover {
    background-color: #EFEFEF;
    font-weight: 700;
}

.countryselect-list-option:hover::before {
    display: inline-block;
    text-align: center;
    width: 26px;
    margin-left: -26px;
    height: 26px;
    content: '\f0da';
    font-family: 'fontawesome';
    font-weight: normal;
}

.countryselect-list-option-flag {
    display: inline-block;
    width: 30px;
}

.countryselect-list-option-flag img {
    height: auto;
    width: 20px;
    margin-top: -1px;
    vertical-align: middle;
}

#layerTitle {
    text-align: center;
    width: 625px;
    margin: 0 auto;
    padding-top: 65px;
}

#layerTitle img {
    width: 100%;
}

#layerLanguage a {
    float: right;
}

#containerHead {
    padding: 0 100px;
}

.layerHead {
    max-width: 1620px;
    height: 300px;
    margin: 0 auto;
    position: relative;
}

#layerNavigation {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}


/* Themenbild */


/* Theme */

#containerTheme {
    margin-top: 100px;
}

#layerTheme {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.itemThemeSlider {
    position: relative;
    overflow: hidden;
    display: block!important;
}

.itemThemeSliderLink {
    display: block;
}

.itemThemeSliderImage img {
    display: block;
    width: 100%;
    height: auto;
}

.itemThemeSlider .content {
    color: #FFFFFF;
    position: absolute;
    left: 10%;
    bottom: 25%;
    font-weight: 100;
    font-style: normal;
}

.itemThemeSlider .title {
    font-size: 3rem;
    color: #FFF;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.itemThemeSlider .description {
    font-size: 1.8rem;
    line-height: 2.5rem;
    color: #FFF;
    letter-spacing: 1px;
}

.itemThemeSliderSloganInner {
    padding: 15px 30px;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    -moz-transition: all 500ms;
    transition: all 500ms;
}

#layerTheme .slick-arrow {
    font-size: 300%;
    color: transparent;
    outline: none;
    border: none;
    background: transparent;
}

#layerTheme .slick-arrow,
#layerTheme .slick-arrow:before {
    width: 35px;
    height: 35px;
    line-height: 120px;
    color: #fff;
    font-size: 0;
}

#layerTheme .slick-prev {
    left: 20px;
}

#layerTheme .slick-next {
    right: 20px;
}


/* Breadcrumb */

#layerBreadcrumb {
    margin-bottom: 1rem;
    width: 100%;
}

.breadcrumbs {
    font-size: 85%;
    color: #999 !important;
    margin-bottom: 10px;
}


/* Singlepage (Startseite) */

.singlepage-item {
    padding: 40px 100px;
    overflow: hidden;
    position: relative;
}

.singlepage-item:last-child {
    padding-bottom: 50px;
}

.singlepage-item-inner {
    /*max-width: 1620px;*/
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

.singlepage-item .head {
    margin-bottom: 10px;
}


/* Main */

#layerMain {
    max-width: 1620px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

#layerMainContent {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0 -2.5%;
    width: 105%;
}

#containerMain {
    padding: 0 100px 40px 100px;
    margin-bottom: 50px;
}

#layerMainContent table {
    width: 100% !important;
}

#containerMainButton {
    position: fixed;
    margin: 0 auto;
    bottom: 0;
    z-index: 100;
}

#layerMainButtonLeft,
#layerMainButtonRight {
    position: fixed;
    bottom: 0;
    width: 50%;
    padding: 10px;
}

#layerMainButtonLeft {
    left: 0;
}

#layerMainButtonRight {
    right: 0;
}

.MainButtonRight,
.MainButtonLeft {
    background-color: #000;
    color: #FFFFFF;
    padding: 10px 20px;
    -webkit-border-radius: 10px 10px 0px 0px;
    -moz-border-radius: 10px 10px 0px 0px;
    border-radius: 10px 10px 0px 0px;
    position: fixed;
    bottom: 0;
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
    -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
    display: none;
}

.MainButtonLeft {
    right: 50%;
}

.MainButtonRight {
    left: 50%;
}

.MainButtonRight:before,
.MainButtonLeft:before {
    font-family: 'fontawesome';
}

.MainButtonLeft:before {
    content: '\f073\00A0\00A0';
}

.MainButtonRight:before {
    content: '\f06b\00A0\00A0';
}

.MainButtonLeft:hover,
.MainButtonLeft:focus,
.MainButtonLeft:active,
.MainButtonRight:hover,
.MainButtonRight:focus,
.MainButtonRight:active {
    text-decoration: none;
}


/* TEMPLATES*/


/* Boxen Start */

.box-container .content-item {
    overflow: hidden;
    text-align: left;
    z-index: 1;
}

.singlepage-item .box-container.box-spezial .top-container img {
    margin: 0!important;
    padding: 0!important;
}

.singlepage-item .twobox-image,
.singlepage-item .threebox-image {
    width: 100%;
    height: auto;
    position: relative;
}

.singlepage-item .twobox-image img,
.singlepage-item .threebox-image img {
    width: 100%;
    height: auto;
    display: block;
}

.singlepage-item .twobox-head-subtitle,
.singlepage-item .threebox-head-subtitle {
    font-size: 85%;
    padding: 5px 0;
    font-weight: 900;
    color: #22232a;
    text-align: left;
}

.singlepage-item .twobox-text,
.singlepage-item .threebox-text {
    font-size: 85%;
    padding: 8px 10px 17px 10px;
    margin: 0;
}

.singlepage-item .twobox-link,
.singlepage-item .threebox-link {
    position: absolute;
    bottom: 10px;
    margin: 0;
    padding: 0 10px;
    display: block;
}

.singlepage-item .twobox-link a,
.singlepage-item .threebox-link a {
    display: inline-block;
    font-weight: 700;
    color: #000;
    font-size: 84%;
}

.singlepage-item .twobox-link a:before,
.singlepage-item .threebox-link a:before {
    content: '\f0fe';
    font-family: 'fontawesome-pro-light';
    display: inline-block;
    margin-right: 10px;
}

.singlepage-item .twobox-link a:hover,
.singlepage-item .twobox-link a:focus,
.singlepage-item .twobox-link a:active,
.singlepage-item .threebox-link a:hover,
.singlepage-item .threebox-link a:focus,
.singlepage-item .threebox-link a:active {
    color: #555;
    text-decoration: none;
}


/* Link Template */

.link-item {
    margin: 10px 0 30px 0;
    width: 100%;
}

.link-item-head-title {
    font-size: 120%;
    color: #FFFFFF;
}

.link-item-head-subtitle {
    color: #FFFFFF;
}

.link-item-content {
    color: #FFFFFF;
}

.link-item-content-inner {
    position: relative;
    display: inline-block;
    border: 3px solid #FFFFFF;
    padding: 15px 30px;
    font-size: 110%;
}

.link-item-link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}


/* SYSTEMMELDUNGEN ERROR/SUCCESS */

.error {
    background-color: #9f0000;
    color: #FFFFFF;
    padding: 8px;
    margin-bottom: 20px;
    display: inline-block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 1rem 0;
}

.error:before {
    content: '\f071';
    font-family: 'fontawesome';
    display: inline-block;
    margin-right: 10px;
}

.success {
    background-color: #008b00;
    color: #FFFFFF;
    padding: 8px;
    margin-bottom: 20px;
    margin: 1rem 0;
}

.success:before {
    content: '\f00c';
    font-family: 'fontawesome';
    display: inline-block;
    margin-right: 10px;
}

.validateMessage {
    background-color: #000;
    color: #FFFFFF;
    padding: 8px 10px;
    margin-bottom: 20px;
    margin: 1rem 0;
}

.validateMessage:before {
    content: '\f071';
    font-family: 'fontawesome';
    display: inline-block;
    margin-right: 10px;
}

.infoMessage {
    background-color: #b7b789;
    color: black;
    padding: 10px 15px;
    margin-bottom: 20px;
    display: inline-block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 1rem 0;
}

.infoMessage:before {
    content: '\f05a';
    font-family: 'fontawesome';
    display: inline-block;
    margin-right: 10px;
}


/* googlerating */

.googlerating {
    text-align: center;
    padding-bottom: 5px;
}

.googlerating.stars {
    border-bottom: 1px solid #fff;
}

.googlerating-value {
    font-size: 138%;
    text-align: center;
    margin-bottom: 15px;
    display: inline;
}

.googlerating-stars {
    text-align: center;
    margin-bottom: 20px;
    display: inline;
}

.googlerating-stars-item {
    font-family: 'fontawesome';
    display: inline-block;
    text-align: center;
    font-size: 138%;
    color: #fff;
    padding: 0 3px;
}

.googlerating-reviews {
    overflow: hidden;
    margin: 0 -20px;
    text-align: left;
}

.googlerating-reviews-item {
    float: left;
    width: 50%;
    margin-bottom: 20px;
    overflow: hidden;
}

.googlerating .googlerating-reviews-item {
    width: 33%;
}

.googlerating-reviews-inner {
    margin: 0 20px;
    overflow: hidden;
}

.googlerating-reviews-head {
    margin: 10px;
    overflow: hidden;
}

.googlerating-reviews-author {
    font-weight: 700;
    display: block;
}

.googlerating-reviews-date {
    font-size: 85%;
    color: #fff;
    font-weight: 300;
}

.googlerating-reviews-rating {
    overflow: hidden;
}

.googlerating-reviews-rating-item {
    font-family: 'fontawesome';
    display: inline-block;
    text-align: center;
    font-size: 120%;
    color: #fff;
}

.googlerating-reviews-text {
    margin: 10px;
    font-size: 85%;
    font-weight: 300;
    line-height: 140%;
}


/* Content Layer */

#containerContentLayer {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: fixed;
    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);
    display: none;
    width: 92%;
    max-width: 600px;
}

#layerContentLayer {
    position: relative;
}

.contentLayerClose {
    height: 27px;
    width: 27px;
    display: block;
    background-image: url(../../../../img/lb/close.png);
    background-repeat: no-repeat;
    position: absolute;
    right: 14px;
    top: 14px;
}

#layerContentLayerHead {
    padding: 25px 0;
    text-align: center;
}

#layerContentLayerHead img {
    max-width: 85%;
    height: auto;
    width: 200px;
}

#layerContentLayerBody {
    text-align: left;
}

.areaContentLayerText {
    padding-top: 90%;
    position: relative;
    height: 400px;
    -webkit-transition: height 1s;
    -o-transition: height 1s;
    -moz-transition: height 1s;
    transition: height 1s;
}

#containerContentLayer iframe {
    min-width: 100%;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: none;
}

body.iframe {
    margin: 0 20px;
    padding: 0;
}

body.iframe * {
    word-wrap: break-word;
}

.areaContentLayerText li {
    margin-left: 15px;
    margin-bottom: 5px;
}

#layerContentLayerFooter {
    height: 30px;
}

#areaContentLayerTextFooter {
    height: 40px;
    line-height: 1.2;
    text-align: right;
    padding-left: 25px;
    padding-right: 7px;
    text-decoration: none;
    border-top: 1px solid #CCC;
}

.contentLayerLink {
    color: #CCC;
    text-decoration: none;
    font-size: 10pt;
}

.contentLayerLink .x {
    font-size: 19pt;
    margin-left: 4px;
}

.contentLayerLink:hover,
.contentLayerLink:focus,
.contentLayerLink:active {
    color: #CCC;
}


/* iFrame */

.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.responsive-video .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.responsive-video {
    position: relative;
    padding-bottom: 56.25%;
    /* Default for 1600x900 videos 16:9 ratio*/
    padding-top: 0px;
    height: 0;
    overflow: hidden;
}

.content-button {
    font-family: var(--main-font-buttonFont);
    font-weight: 300;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    width: auto;
    background: var(--main-color);
    color: #FFFFFF;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.content-button:hover {
    background: var(--main-lightgrey-color);
    color: black;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}


/* Media Queries */


/* Spalten Layout */

#layerMainContent.layout-132 {
    width: 60%;
}

#layerMainLeft.layout-3,
#layerMainLeft.layout-32 {
    display: none;
}

#layerMainContent.layout-13 {
    width: 78%;
}

#layerMainRight.layout-3,
#layerMainRight.layout-13 {
    display: none;
}

#layerMainRight.layout-32 {
    width: 22%;
}

#layerMainContent.layout-32 {
    width: 78%;
}

#layerTop #layerLogo {
    display: none;
}

@media only screen and (max-width: 1415px) {
    #layerTop .topbar-social {
        display: none;
    }
}

@media only screen and (max-width: 1250px) {
    #containerTop {
        padding: 0 40px;
    }
    #containerHead {
        padding: 0 40px;
    }
    .singlepage-item {
        padding: 40px 25px;
    }
    #containerMain {
        padding: 0 40px 40px 40px;
    }
    #layerTop .topbar-social,
    #layerTop .topbar-member {
        display: none;
    }
}

@media only screen and (max-width: 1000px) {
    #layerTop #layerLogo {
        display: block;
        text-align: center;
        margin-top: 40px;
    }
    #layerTop #layerLogo img {
        max-width: 180px;
    }
    #layerTop .topbar-countryselect {
        display: none;
    }
    #layerMainRight.layout-32,
    #layerMainContent.layout-32 {
        width: 105%;
    }
}

@media only screen and (max-width: 800px) {
    .containerContent {
        display: none;
    }
    #layerTop .topbar-search {
        display: none;
    }
    #containerMain {
        padding: 0 40px 0 40px;
        margin-bottom: 0;
    }
    img {
        height: unset!important;
    }
}

@media only screen and (max-width: 610px) {
    .layerHead {
        height: unset;
    }
    .page-header {
        margin-bottom: 1.75rem;
    }
}

@media only screen and (max-width: 550px) {
    #layerTop .topbar-search {
        display: none;
    }
}

@media only screen and (max-width: 490px) {
    #containerFooter .layerLogo {
        float: none;
        width: 100%;
    }
    #containerFooter .layerSocialMedia {
        text-align: left;
        float: none;
    }
    #layerTop .topbar-cart-value {
        display: none;
    }
}