﻿

:root {
    --colorMain: #AFCB08;
    --colorSecondary: #4C86A5;
    /*--*/
    --CSSColor: #333333;
    --HeadingColor: #AFCB08;
    --LinkColor: #AFCB08;
    --LinkHoverColor: #AFCB08;
    --ButtonLinkHoverColor: #fff;
    --ButtonLinkColor: #fff;
    /*   
    --StandardMainContainerWidth: 1230px;
    --DefaultBlockMarginTop: 50px;
    --swiper-pagination-color: #B32317;

*/
}

html {
    overflow-y: scroll;
    -ms-overflow-style: scrollbar;
    height: 100%;
}

body {
    min-height: 100%;
    font-family: 'Hind', sans-serif;
    font-size: 17px;
    line-height: 1.4;
    color: #333333;
    font-weight: 300;
    /* Used for the sticky footer, see: https://github.com/philipwalton/solved-by-flexbox/blob/master/assets/css/components/site.css */
    display: flex;
    min-height: 100%;
    flex-direction: column;
}


/* Used for the ModernUI IE to work in responsive mode */
@-ms-viewport {
    width: device-width;
}

img, embed, object, video {
    max-width: 100%;
    height: auto !important;
}

/* ckEditor LayoutManager */

.container-fluid div {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.container-fluid {
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
    clear: both;
    overflow: hidden;
}

.container-fluid .row {
    margin-right: -20px;
    margin-left: -20px;
}

.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9 {
    position: relative;
    min-height: 1px;
    padding-right: 20px;
    padding-left: 20px;
    float: left;
}

.col-lg-12 {
    width: 100%;
}

.col-lg-11 {
    width: 91.66666667%;
}

.col-lg-10 {
    width: 83.33333333%;
}

.col-lg-9 {
    width: 75%;
}

.col-lg-8 {
    width: 66.66666667%;
}

.col-lg-7 {
    width: 58.33333333%;
}

.col-lg-6 {
    width: 50%;
}

.col-lg-5 {
    width: 41.66666667%;
}

.col-lg-4 {
    width: 33.33333333%;
}

.col-lg-3 {
    width: 25%;
}

.col-lg-2 {
    width: 16.66666667%;
}

.col-lg-1 {
    width: 8.33333333%;
}

@media screen and (max-width: 850px) {

    .container-fluid .row {
        margin-right: 0;
        margin-left: 0;
    }

    .col-lg-1,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9 {
        float: none;
        width: 100%;
        padding-right: 0;
        padding-left: 0;
    }
}

/* END ckEditor LayoutManager */

h1, h2, h3, h4, h5, h6 {
    color: #000;
    font-family: 'Exo', sans-serif;
    font-weight: 500;
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
    line-height: 1.2;
    text-align: left;
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--colorMain);
}

    h1:first-of-type {
        margin-top: 0;
    }

h2 {
    margin: 8px 0 20px 0;
    font-size: 25px;
}

ul + h2 {
    margin-top: 40px;
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 18px;
}

p {
    margin: 0;
    padding: 0 0 25px 0;
}

b, strong {
    font-weight: 600;
}

a, a:visited {
    outline: none;
    color: var(--colorMain);
    text-decoration: none;
}

a:hover {
    outline: none;
    text-decoration: underline;
    color: var(--colorMain);
}

a:active, a:focus {
    outline: none;
}

a[href^="tel:"] {
    color: #000;
    text-decoration: none;
    cursor: default;
    font-weight: 300;
}

a:hover > img {
    opacity: 0.65;
}

hr {
    border-bottom: 0 none;
    border-top: 1px solid #E5E5E5;
    border-left: none;
    border-right: none;
    height: 1px;
    margin: 30px 0 30px 0;
}

.button {
    background-color: #808080;
    border: 1px solid #808080;
}

.button:hover {
    background-color: #aaaaaa;
    border: 1px solid #aaaaaa;
}

.fab,
.fal,
.far,
.fas,
.fad {
    color: #878787;
}

.blue {
    color: #599DBF;
}

.green {
    color: #588C73;
}

.yellow {
    color: #F2E394;
}

.orange {
    color: #F2AE72;
}

.red {
    color: #C02942;
}

.brown {
    color: #8C4646;
}

/*********************************************************************************************************************************/

#container{
    margin: 0 auto;
    /* Used for the sticky footer */
    flex: 1 0 auto;
    padding: var(--space) var(--space) 0;
    width: 100%;
}

/* Used for the sticky footer */
#container::after {
    content: '\00a0'; /* &nbsp; */
    display: block;
    margin-top: var(--space);
    height: 0px;
    visibility: hidden;
}

@media (--break-lg) {
    #container {
        padding-top: var(--space-lg);
    }

    #container::after {
        margin-top: var(--space-lg);
    }
}

#container--full {
    padding: 0;
}

#container--full::after {
    content: none;
}
/* End used for the sticky footer */

#header {
    position: fixed;
    z-index: 99;
    right: 0;
    left: 0;
    top: 0;
    height: 110px;
    -webkit-box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.scrolled #header {
    height: 60px;
}

#headerContent {
    position: relative;
    margin: 0 auto;
    max-width: 1600px;
    padding: 0 25px 0 25px;
}

#headerTopContent {
    height: 0;
    position: absolute;
    right: 25px;
    top: 12px;
    color: #333333;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    font-size: 17px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.scrolled #headerTopContent {
    top: -45px;
}

#webAccount .fa-user {

    color: var(--colorMain);
}

#navigationLogo {
    display: inline-block;
    margin: 28px 0 0 0;
    position: relative;
    z-index: 9999;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 140px;
    height: 70px;
}

.scrolled #navigationLogo {
    width: 85px;
    height: 41px;
    margin: 10px 0 0 0;
}

#siteLogo > a {
    background: url('../../layout/images/logo.svg') 0 0 no-repeat;
    background-size: 100%;
    display: block;
    max-height: 100%;
    max-width: 100%;
    width: 100%;
    height: 70px;
    text-indent: -9000px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.scrolled #siteLogo > a {
    height: 41px;
}

#languageSelection {
    line-height: 1.2;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.scrolled #languageSelection {
/*    top: -25px;*/
}

#languageSelection ul,
#languageSelection li {
    margin: 0;
    padding: 0;
}

#languageSelection li {
    display: inline-block;
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid #333333;
}

#languageSelection li:last-child {
    margin-right: 0;
    padding-right: 0;
    border: none;
}

#languageSelection li a,
#languageSelection li a:visited {
    color: #333333;
    text-decoration: none;
}

#languageSelection li a:hover {
    color: #FDC300;
    text-decoration: none;
    font-weight: 500;
}

#languageSelection li a.current {
    color: #FDC300;
}

#navigationWrapper {
    position: absolute;
    right: 0;
    left: 0;
    top: 70px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.scrolled #navigationWrapper {
    
    top: 20px;
}

#navigationMain {
    float: right;
}

#menu-icon {
    display: none;
}

#headerSlider
{
    margin-top: 110px;
}

#main {
    max-width: 1230px;
    margin: 45px auto 0 auto;
    padding: 0 25px 30px 25px;
}

.ModuleShopFullShopOverview #main,
.ModuleShopDetailPage #main {
    max-width: 1600px;
}

#header + #main {
    margin: 150px auto 0 auto;
}

#main ul {
    position: relative;
    margin: 0 0 25px 0;
    padding: 0;
}

#main ul li ul {
    margin: 0;
    padding: 0;
}

#main ul li
{
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0 0 12px 23px;
}

#main ul > li:before {
    font-family: 'Font Awesome 6 Pro';
    font-weight: 300;
    content: '\f054';
    color: var(--colorMain);
    font-size: 12px;
    position: relative;
    vertical-align: middle;
    float: left;
    padding-right: 10px;
    margin-left: -22px;
    margin-top: 3px;
    width: 12px;
    height: 12px;
}

#main ul > li > ul li:before {
    font-family: 'Font Awesome 6 Pro';
    font-weight: 300;
    content: '\f111';
    color: var(--colorMain);
    font-size: 12px;
    position: relative;
    vertical-align: middle;
    float: left;
    padding-right: 10px;
    margin-left: -22px;
    margin-top: 3px;
    width: 12px;
    height: 12px;
}

#main ul > li ul {
    margin-top: 10px;
}

#main ol {
    position: relative;
    margin: 0 0 25px 0;
    padding: 0 0 0 20px;
}

#main ol li {
    position: relative;
    margin: 0;
    padding: 0 0 12px 5px;
}

    #main ol li ul {
        margin: 0;
    }


/*-------------- Footer-Navigation -------------------------------------------------*/
#footer {
    background-color: var(--colorMain);
    /* Used for the sticky footer */
    flex: none;
    z-index: 2;
    color: #fff;
}

#footerContent {
    max-width: 1230px;
    margin: 0 auto;
    padding: 20px 25px 20px 25px;
    font-size: 18px;
}

#footerContent a {
    color: #fff;
    text-decoration: none;
}

#footerContent a:hover {
    color: var(--colorSecondary);
}

#footerContent a[href^="tel:"]:hover {
    color: #fff;
}

#footerContent h2 {
    font-size: 28px;
    color: #fff;
    font-weight: 400;
}

#footerContent .fab,
#footerContent .fal,
#footerContent .far,
#footerContent .fas {
    font-size: 24px;
    margin-top: 5px;
    color: #fff;
}



/* ------------  scroll-to-top  ----------------------- */
.scroll-to-top {
    position: fixed;
    bottom: 10px;
    right: 20px;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 45px;
    background-color: #fff;
    border-radius: 30%;
    font-size: 65px;
    color: #333;
    text-decoration: none;
}

.scroll-to-top:visited {
    color: #333;
}

.scroll-to-top:hover {
    color: #333;
    background-color: #aaa;
    text-decoration: none;
}


.alert-info {
    color: var(--colorSecondary);
    background-color: #F1F4DC;
    border-color: var(--colorMain);
}

.cookieConsent.alert-info {
    color: #333333;
    background-color: #F1F4DC;
    border-color: var(--colorMain);
}

.form-group {
    margin-bottom: 12px;
}

.control-label
{
    font-size: 15px;
}

.form-control {
    height: 30px;
    padding: 3px 5px;
}

input[type=checkbox] {
    width: 20px;
    box-shadow: none;
}



/* Hide the first level in the secured section */

#main .webpageId117.navigation0 {
    padding: 0;
    margin: 0;
    line-height: 0;
}

#main .webpageId117.navigation0 li{
    line-height: 25px;
}

#main .webpageId117.navigation0:before {
    display: none;
}

    #main .webpageId117 li:before {
        margin-top: 0;
    }


#main .webpageId117.navigation0 > a
{
    color: #fff;
    cursor: default;
    padding: 0;
    margin: 0;
}

@media screen and (max-width: 1600px) {

    #headerContent {
        max-width: 1230px;
    }
    
    .ModuleShopFullShopOverview #main,
    .ModuleShopDetailPage #main {
        max-width: 1230px;
    }
}


@media screen and (max-width: 1279.9px) {
    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 23px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 17px;
    }
    
    #header {
        height: 95px;
    }

    #navigationLogo {
        margin: 15px 0 0 0;
        height: 50px;
        width: 90px;
    }

    #siteLogo > a {
        height: 50px;
        width: 90px;
    }

    #navigationWrapper {
        top: 60px;
    }

    #headerSlider {
        margin-top: 95px;
    }

    #main {
        margin-top: 30px;
    }

    #header + #main {
        margin: 125px auto 0 auto;
    }
}


@media screen and (max-width: 1600px) {
    .ModuleShopFullShopOverview #main,
    .ModuleShopDetailPage #main {
        max-width: 1230px;
    }
}

@media screen and (max-width: 1023.9px) {

    h1 {
        font-size: 27px;
    }

    h2 {
        font-size: 21px;
    }

    h3 {
        font-size: 18px;
    }

    h4 {
        font-size: 16px;
    }


    #header {
        position: relative;
    }

    #header,
    .scrolled #header {
        height: 85px;
    }

    #headerTopContent,
    .scrolled #headerTopContent {
        margin-top: 10px;
        z-index: 9999;
        right: 110px;
    }

    #navigationWrapper,
    .scrolled #navigationWrapper {
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        padding: 0;
    }

    #topContent,
    .scrolled #topContent {
        margin-top: 10px;
        z-index: 9999;
        right: 110px;
    }

    #navigationMain {
        float: none;
        z-index: 1;
        position: relative;
    }

    #menu-icon {
        float: right;
        display: block;
        text-decoration: none;
        position: relative;
        margin: 18px 35px 0 0;
        font-size: 40px;
        color: #000;
        cursor: pointer;
    }

    #main-menu.hideNavigation {
        display: none;
    }

    #main-menu {
        top: 85px;
    }

    .showNavigation {
        display: inherit;
    }

    #navigationLogo {
        margin: 10px 0 0 0;
        height: 35px;
        width: 60px;
    }

    #siteLogo > a {
        height: 35px;
        width: 60px;
    }

    #header + #main {
        margin: 25px auto 0 auto;
    }

    #headerSlider {
        margin-top: 0;
    }
}

@media screen and (max-width: 600px) {


    /* Force table to not be like tables anymore */
    table, thead, tbody, th, td, tr {
        display: block;
        height: inherit !important;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    tr {
        margin-bottom: 10px;
    }

    td {
        /* Behave  like a "row" */
        border: none;
        position: relative;
        width: 100% !important;
    }

    td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
    }

    table.TabelleModern tr {
        padding-left: 0;
    }

    table.TabelleModern td {
        border-bottom: 0;
        border-left: 0;
    }
    /* End Force table to not be like tables anymore */
}


@media screen and (max-width: 500px) {

    #menu-icon {
        position: relative;
        margin: 10px 15px 0 0;
    }

    #headerTopContent,
    .scrolled #headerTopContent {
        margin: 0;
        top: 0;
        left: 0;
        right: 0;
        display: block;
    }

    #languageSelection {
        position: absolute;
        top: 55px;
        left: 25px;
        line-height: 1.2;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    #webAccountContainer {
        position: absolute;
        right: 160px;
        top: 18px;
    }
}