@import "fonts.css";

:root {
    --bs-primary: rgb(151,192,60);
    --bs-primary-80: rgba(151,192,60, 0.8);
    --bs-primary-10: rgba(151,192,60, 0.1);
    --bs-btn-bg: #448332;
    --dark: #333;
    --green-50: rgba(68,131,50,0.05);

    --brown: #8b7765;
    --brown-faded: rgba(139,119,101,0.8);
    --red: #5e1f37;
    --red-faded: rgba(94,31,55, 0.2);
    --yellow: #ffcc00;
    scroll-behavior: auto;

    --swiper-theme-color: #FFFFFF;
    --swiper-navigation-sides-offset: 2vw;

}

/* Bootstrap overrides */
/* @media (min-width: 768px) {
    .row {  
        --bs-gutter-x: 5rem;
    }
} */


body {
    background-color:#FFF;
    background-image: url("../img/body.png");
    background-repeat: repeat;
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color:#000;
    padding-top:110px;
}

mark {
    padding:0;
}

.bg-red {
    background: var(--bs-primary);
    color:#FFF;
}

.bg-red-faded {
    background: var(--green-50);
}


.bg-brown {
    background: var(--brown);
    color:#FFF;
}

.default-transition {
    -webkit-transition: 500ms cubic-bezier(0.77, 0, 0.175, 1) !important;
    transition: 500ms cubic-bezier(0.77, 0, 0.175, 1) !important;
}

.titelbild {
    overflow: hidden;
    margin-bottom:30px;
    position: relative;
    padding:25px;
    background:#FFF;
    border-radius: 6px;
    
}

.titelbild-inner {
    overflow: hidden;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 5;
}

.titelbild img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}


/* Cards */
.card {
    margin-left:1rem;
    margin-right:1rem;
    transition: all 0.3s linear;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: 0;
    
}

.card:hover {
    cursor: pointer;
    box-shadow: none;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 0px 5px 0px;
}

.card h5 {
    color: var(--bs-primary);
    font-weight: 400;
    font-size: 18px;
}

.card-footer {
    background: #FFF;
    border:0;
}

.card-image-container {
    background-color: var(--green-50);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23FFFFFF' class='bi bi-image' viewBox='0 0 16 16'%3E%3Cpath d='M6.002 5.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0z'/%3E%3Cpath d='M2.002 1a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2h-12zm12 1a1 1 0 0 1 1 1v6.5l-3.777-1.947a.5.5 0 0 0-.577.093l-3.71 3.71-2.66-1.772a.5.5 0 0 0-.63.062L1.002 12V3a1 1 0 0 1 1-1h12z'/%3E%3C/svg%3E");
    background-size: 30%;
    background-repeat: no-repeat;
    background-position: center center;
    border-bottom: 1px solid var(--bs-primary);
}

.card a.btn.read-more {
    position: relative;
    background-color:var(--bs-primary);
    border-top: 1px solid var(--bs-primary);
    /* background-color:var(--bs-primary-10); */
    color:#FFF;
    border-radius: 0;
    text-decoration: none;
    display:flex;
    align-items: center;
    width:100%;
    justify-content: end;
    -webkit-transition: 500ms cubic-bezier(0.77, 0, 0.175, 1) !important;
    transition: 500ms cubic-bezier(0.77, 0, 0.175, 1) !important;
}


/* .card a.btn.read-more:hover {
    background-color:var(--bs-primary-80);
} */

.card a.btn.read-more svg {
    width:24px;
    height:24px;
}



/* Forms */

.btn.btn-outline {
    border: 1px solid #FFF;
    border-radius: 50px;
    color:#FFF;
    font-weight:300;
    padding: 0.5rem 2rem;
    -webkit-transition: 500ms cubic-bezier(0.77, 0, 0.175, 1) !important;
    transition: 500ms cubic-bezier(0.77, 0, 0.175, 1) !important;
}

.btn.btn-outline:hover {
    background: rgba(255,255,255,0.1);
}

.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-form-control-bg);
    border-color: var(--bs-primary);
    outline: 0;
    /* box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%); */
    box-shadow: none;
}

.btn.btn-primary {
    background: var(--bs-primary);
    border: 0;
    /* padding: 12px 34px; */
    color: #fff;
    transition: 0.4s;
    /* border-radius: 50px; */
}

.btn.btn-primary:hover {
    background: var(--bs-primary-80);
}

.form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #AAA;
    opacity: 1; /* Firefox */
}

.coltainer {
    /* border-top: 3px solid var(--bs-primary); */
    border-bottom: 3px solid var(--bs-primary);
    padding: 30px;
    background: #fff;
    width: 100%;
    box-shadow: 0 0 24px 0 rgb(0 0 0 / 10%);
}

a, a:link, a:focus, a:visited {
    color: var(--bs-primary);
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.5;
}

strong {
    font-weight: 600;
}

.center {
    text-align: center;
}

h1 {
    display: inline-block;
    color: #FFF;
    background-color: #97c03c;
    font-size: 24px;
    font-weight: normal;
    line-height: 36px;
    margin: 0px 0 45px -25px;
    padding: 5px 25px 5px 25px;
    text-align: left;
    -webkit-border-top-right-radius: 6px;
    -webkit-border-bottom-right-radius: 6px;
    -moz-border-radius-topright: 6px;
    -moz-border-radius-bottomright: 6px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}



h2 {
    font-size:18px;
    color: var(--brown);
}

h3 {
    font-size:16px;
}

.bg-brown h1,  .bg-brown h2, .bg-brown h3, .bg-brown a {
    color:#FFF;
}

.bg-brown h1::before {
    background: rgba(255,255,255,0.5);
}

h4 {
    font-size: 18px;
    line-height: 24px;
    color:#777;
}

#content section ul {
    list-style: none;
    padding: 0;
    margin-bottom:25px;
}

#content section ul li {
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
    
}

#content section ul li::before {
    display: block;
    content: "";
    position: absolute;
    width:20px;
    height:22px;
    left: 0px;
    top: 1px;
    line-height: 1;
    /* background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 27.2.0  SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Ebene_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 20 20' style='enable-background:new 0 0 20 20%3B' xml:space='preserve'%3E%3Cstyle type='text/css'%3E.st0%7Bfill:%23458432%3B%7D%3C/style%3E%3Cg%3E%3Cpath class='st0' d='M9.8 11.3l7-9c0.1-0.2 0.4-0.4 0.6-0.4c0.3 0 0.5 0.2 0.5 0.6c0 0.2-0.1 0.4-0.3 0.6l-7.2 9.2v6.5c0 0.3 0 0.5-0.1 0.8c-0.1 0.2-0.3 0.4-0.5 0.3c-0.1 0-0.3 0-0.4-0.1c-0.1-0.1-0.2-0.1-0.2-0.2c-0.1-0.1-0.1-0.2-0.1-0.3c0-0.1 0-0.3 0-0.4v-6.6L1.9 3.1C1.8 3 1.8 2.9 1.7 2.8c0-0.1-0.1-0.2-0.1-0.3c0-0.1 0-0.3 0.1-0.4C1.9 1.9 2 1.9 2.2 1.9c0.3 0 0.5 0.2 0.7 0.4L9.8 11.3z'/%3E%3Cpath class='st0' d='M14.4 0c0.5 2.3-0.1 3.4-2.5 4.5C10.8 2.3 11.9 0.3 14.4 0z'/%3E%3Cpath class='st0' d='M11 5.8C8.9 6.3 7.9 5.6 7.1 2.9C9 1.8 10.7 3.1 11 5.8z'/%3E%3C/g%3E%3C/svg%3E"); */

    background-image: url("../img/li.svg");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

#content section.bg-brown ul li::before {
    background-image: url("../img/li-white.svg");
}

#content .btn-learn-more {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    transition: 0.3s;
    line-height: 1;
    color: var(--bs-primary);
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 2px solid var(--bs-primary);
    text-decoration: none;
}

#content .btn-learn-more:hover {
    background: var(--bs-primary);
    color: #fff;
    text-decoration: none;
  }

#footer {
    position: relative;
    z-index: 3;
    background-color: var(--bs-primary);
    color:#FFF;
    text-align:center;
}

#footer a, #footer a:link, #footer a:visited {
    color:#FFF;
    text-decoration: none;
}

#footer a:hover, #footer a.active {
    text-decoration: underline;
}

/**
  * Breadcrumb
**/
#breadcrumb ul {
    margin:0 0 0 5px;
    padding:0;
    display:flex;
    list-style: none;
    align-items: center;
    color: var(--brown);
    flex-wrap: wrap;
    
}

#breadcrumb li {
    list-style: none;
    white-space: nowrap;
    align-items: flex-start;

}

#breadcrumb li a {
    text-decoration: none;
    color: var(--brown);
    white-space: nowrap;
}

#breadcrumb svg {
    /* fill: var(--bs-primary); */
    fill: var(--brown);
}

#breadcrumb li svg {
   margin-top:-2px;
}

/**
  * Navbar
 **/

.navbar {
    background: #FFFFFF;
    padding-top:0;
    padding-bottom:0;
    height: 80px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.navbar-faded .navbar {
    background: #FFFFFF;
}

.menu .navbar {
    height: auto;
}

.navbar-nav {
    padding:0 1vw 0 0;

    height:100%;
}

.navbar-brand {
    margin-right: 60px;
    line-height:0px;
    font-size:0px;
    padding:0 5px;
    position: relative;
    z-index:3;
    align-items: center;
    display:flex;
    padding: 15px 20px;
}

.navbar-brand img {
    /* max-width:140px; */
        width:180px;
        /* height: 100%; */
    
    max-height: 100%;
}


@media (min-width: 768px) {
    
    .navbar {
        height:80px;
    }

    .navbar-brand {
        margin: 0px;
        padding:0;
        display:block;
        
    }

}


@media (min-width: 768px) {
    .navbar-light .navbar-nav .nav-link {
        font-size: 14px;
    }


    .navbar-brand {
        margin: 15px 30px;
    }

    .navbar-brand img {
        max-width:180px;
        width:180px;
    }

}

@media (min-width: 992px) {


}

@media (min-width: 1200px) {


}

@media (min-width: 1600px) {
    .navbar-light .navbar-nav .nav-link {
        font-size: 14px;
        
    }


}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    height:100%;
    display:flex;
    align-items: center;
    padding: 1rem;
    font-size:14px;
    font-family: 'Noto Sans';
    font-size: clamp(10px, 1.2vw, 16px);
    text-transform: uppercase;
    color:#000;
    font-weight: 300;
    letter-spacing: 0.08rem;
    transition: color 0.3s linear, background-color 0.3s ease;
    -webkit-transition: color 0.3s linear, background-color 0.3s ease;

}


.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link {
    color: #FFFFFF;
    background-color: var(--bs-primary);
}


.dropdown-menu {
    border-radius:0;
    border:0;
}


a.dropdown-item {
    transition: all .3s;
    color:#494948;
    font-size:14px;
    border-left: 8px solid transparent;    
    border-right: 8px solid transparent;    
}

.dropdown-item:hover {
    color: #000;
    text-decoration: none;
    background-color: #FFF;
    border-left: 8px solid var(--yellow);
}

.dropdown-item.active, .dropdown-item:active {
    background-color:#FFF;
    color:#000;
    border-left: 8px solid var(--red);

}

@media (min-width: 992px) {
    /* .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 1rem;
        padding-left: 1rem;
        font-size: 18px;
    } */
}

.dropdown-menu {display: block;visibility: hidden;opacity:0;transform: translateY(-20px);transition:.3s ease all;}
.dropdown-menu.show {display: block;visibility: visible;opacity:1;transform: translateY(0px);transition:.3s ease all;}


/*
 * MENU BUTTON
 */

 .menu__toggler {
    position: fixed;
    top: 25px;
    right: 20px;
    z-index: 9999;
    height: 28px;
    width: 28px;
    outline: none;
    cursor: pointer;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
  }
  .menu__toggler span,
  .menu__toggler span::before,
  .menu__toggler span::after {
    position: absolute;
    content: '';
    width: 28px;
    height: 2.5px;
    background: #000;
    border-radius: 20px;
    -webkit-transition: 500ms cubic-bezier(0.77, 0, 0.175, 1);
    transition: 500ms cubic-bezier(0.77, 0, 0.175, 1);
  }

  .menu__toggler span::before {
    top: -8px;
  }
  .menu__toggler span::after {
    top: 8px;
  }
  .menu__toggler.active > span {
    background: transparent;
  }
  .menu__toggler.active > span::before, .menu__toggler.active > span::after {
    background: #000;
    top: 0px;
  }

  .menu__toggler.active > span::before {
    -webkit-transform: rotate(-225deg);
            transform: rotate(-225deg);
  }
  .menu__toggler.active > span::after {
    -webkit-transform: rotate(225deg);
            transform: rotate(225deg);
  }
  
  /*
   * SLIDING MENU PANEL
   */
.mobile-menu-container.hidden {
    /* display:none; */
    visibility: hidden;
    z-index: -1000 !important;
    /* display:none; */
}

.mobile-menu-container {
    /*filter: drop-shadow(0px 0px 15px rgba(50, 50, 0, 0.7));*/
    position: fixed;
    top: 0;
    left:0;
    z-index: 998;
    color: #FFFFFF;
    width: 100%;
    height: 100%;
    background: var(--bs-primary);
    opacity: 0;
    padding-top:80px; 
    -webkit-transition: transform 500ms cubic-bezier(0.77, 0, 0.175, 1), opacity 500ms cubic-bezier(0.77, 0, 0.175, 1);
    transition: transform 500ms cubic-bezier(0.77, 0, 0.175, 1), opacity 500ms cubic-bezier(0.77, 0, 0.175, 1);
    transform: scale(0);
    transform-origin: top center;
}

@media only screen and (min-width: 768px) {
    .mobile-menu-container {
        display: none;
    }
}

.mobile-menu-container.active {
    top: 0;
    left: 0;
    opacity:1;
    z-index: 998;
    width:100%;

    height:100%;
    border-radius: 0;
    transform: scale(1);
    
    
}

.menu {
    position: relative;
    width: 100%;
    height: 100%;
    max-height:100%;

    
    padding-top:50px;
    padding-left:25px;
    padding-right:25px;
    padding-bottom: 60px;


    overflow: auto;

}
 
.menu.active {
    top: 0%;
    transform: scale(1);
    opacity:1;
    z-index: 998;
}

.menu .navbar {
    background: transparent !important;
    justify-content: center;
    align-items: flex-end;
    box-shadow:none;
}
.menu ul {
    margin:0 !important;
}
.menu ul > li {
    text-align:center;
    padding: 0;
}


.menu ul > li > a.nav-link {
    color:#FFF;
    /* margin-left: 2rem;
    margin-right: 2rem;
    padding-left:0;
    padding-right:0; */
    text-transform: uppercase;
    position:relative;
    text-align:center;
    display: inline-block;
    padding: 0.25rem 1rem;
    margin:1px 0;
    border-radius: 6px;

}


.menu ul > li.active > a,
.menu ul > li > a:hover,
.menu ul > li.nav-item.dropdown.show > a {
    color: var(--bs-primary);
    background-color: #FFF;
}

.menu a {
    font-size: 16px;
}


.menu .dropdown-item {

    color:#000;
}


@media only screen and (max-width: 767px) {
    .menu .dropdown-toggle::after {
        transition: all .3s;
        transform: rotate(0deg);
        margin-left:10px;
        vertical-align: .18em;
    }

    .menu .dropdown.show .dropdown-toggle::after {
        transform: rotate(-180deg);
  
    }

    
}
  
.menu .dropdown-menu {
    position: relative;
    max-height: 0px;
    display:block;
    opacity: 0;

    padding:0;

    margin-top:0;
    left:0;
    box-shadow: rgba(255, 255, 255, 0.15) 0px 48px 100px 0px !important;
    overflow: hidden;
}

.menu .dropdown-menu.show {
   
    position: relative;
    padding: .5rem 0;
    display:block;
    max-height: 2000px;
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
    margin-top:.5rem;
}

.menu .dropdown-menu a.dropdown-item {
    text-align: center;
    /* border:0; */
    /* border-left:4px solid #FFF; */
    font-size: 14px;
}

.menu .dropdown-menu a.dropdown-item:hover {
    text-align: center;
    /* border:0; */
    font-size: 14px;
    color: var(--red)
}

.menu .dropdown-menu a.dropdown-item:hover, .menu .dropdown-menu a.dropdown-item.active {
    background: var(--beige) !important;
 
}


/* Carousel */

.header-carousel {
    position: sticky;
    top:0;
    z-index:2;
    overflow: hidden;
}

/* .header-carousel .carousel-item::before {
    display:block;
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    mix-blend-mode: multiply;
}

.header-carousel.full .carousel-item::before {
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 70%, rgba(0,0,0,0.6) 100%);
}

.header-carousel.half .carousel-item::before {
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.7) 100%);
} */

.header-carousel .vignette {
    position:absolute;
    width:100%;
    height:100%;
    z-index:1;
    /* box-shadow: inset 0 0 25vw black; */
    /* background: radial-gradient(circle, transparent 50%, black 150%); */
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 70%, rgba(0,0,0,0.5) 100%);

    mix-blend-mode: multiply;
}


.header-carousel.full .carousel-item {
    height: 100vh;
}

@media (max-width: 767px) {

    .navbar-faded .navbar {
        /* background-color: var(--brown); */
    }

    .header-carousel.full, .header-carousel.half {
        margin-top:80px;
    }

    .header-carousel.full .carousel-item {
        height: auto !important;
        aspect-ratio: 16 / 9;
    }

    .header-carousel.half .carousel-item {
        height: auto !important;
        aspect-ratio: 21 / 9;
    }

}

.header-carousel.half .carousel-item {
    height: 55vh;
}

.header-carousel .carousel-item img {

    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    
}

.scroll {
    position:absolute;
    /* bottom:calc(3vh + 80px); */
    bottom:5vh;
    left: calc(50% - 30px);

    width: 60px;
    height: 60px;
    border: 2px solid #fff;
    border-radius: 50%;
    animation: down 1.5s infinite;
    -webkit-animation: down 1.5s infinite;
    opacity: 0.8;
    transition: opacity 0.3s, background-color 0.3s;
}

@media (max-width: 767px) {
    .scroll {
        display:none;
    }
}

.scroll:hover {
    cursor: pointer;
    opacity: 1;
    background-color: rgba(255,255,255,0.1)
}


.scroll::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 18px;
    width: 18px;
    height: 18px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}
  
  @keyframes down {
    0% {
      transform: translate(0);
    }
    20% {
      transform: translateY(15px);
    }
    40% {
      transform: translate(0);
    }
  }
  @-webkit-keyframes down {
    0% {
      transform: translate(0);
    }
    20% {
      transform: translateY(15px);
    }
    40% {
      transform: translate(0);
    }
  }

#content {
    position: relative;
    z-index: 3;
    min-height: 50vh;
    margin-bottom: 40px;
    
}

#content > .container > .row > div > div {
    background:#FFF;
    padding: 25px;
    border-radius: 6px;
    width:100%;
}

.image {
    margin: 4px 0 15px 0;
    border: 3px solid #f2eee9;
    border-radius: 3px;
}

@media (max-width: 767px) {
    .claim-wrapper {
        bottom:2vh;
    }
}

.claim-wrapper .brand {
    font-size: clamp(15px, 2vw, 40px);
    font-weight:500;
    color:#FFF;
    text-align:center;
    padding: 1vw;
}

.claim-container {
    display: flex;
}

.claim-container div {
    font-size: clamp(15px, 2vw, 35px);
    padding: 1vw 3vw;
    color:#FFF;
    background: rgba(255,204,0, 0.8);
    margin-bottom:2vw;
    box-shadow: rgba(255, 255, 255, 0.2) 0px 7px 29px 0px;
  
}

.claim-container div:first-child, .claim-container div:last-child {
    background: rgba(94,31,55, 0.8);
}

/* Virtueller Rundgang */
iframe.virtueller-rundgang {
    border: 0;
    width: 100%;

}

/* Contact form */
#contact-form-container, .contact-form-container {
	position:relative;
	min-height:300px;
}

#form-errors, .form-errors {
	
	padding: 15px;
	display:none;
	background:#b10331;
	color: #FFF;
    border-radius:5px;
    margin-bottom:15px;
    -webkit-animation: puff-in-center 0.5s cubic-bezier(0.785, 0.135, 0.150, 0.860) both;
	        animation: puff-in-center 0.5s cubic-bezier(0.785, 0.135, 0.150, 0.860) both;
}

/* Loading Animation */
.loader {
	/*display:none;*/
	position:absolute;
	z-index:10;
	left:0px;
	top:0px;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,0);
}

.loading-animation {
	position:relative;
	left:50%;
	top:50%;
	transform: translate(-50%,-65%);
	z-index: 5000;

	width: 150px;

	max-width:100%;

	margin:15px;

}

.lds-roller {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
  }
  .lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--bs-primary);
    margin: -4px 0 0 -4px;
  }
  .lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
  }
  .lds-roller div:nth-child(1):after {
    top: 63px;
    left: 63px;
  }
  .lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
  }
  .lds-roller div:nth-child(2):after {
    top: 68px;
    left: 56px;
  }
  .lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
  }
  .lds-roller div:nth-child(3):after {
    top: 71px;
    left: 48px;
  }
  .lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
  }
  .lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
  }
  .lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
  }
  .lds-roller div:nth-child(5):after {
    top: 71px;
    left: 32px;
  }
  .lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
  }
  .lds-roller div:nth-child(6):after {
    top: 68px;
    left: 24px;
  }
  .lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
  }
  .lds-roller div:nth-child(7):after {
    top: 63px;
    left: 17px;
  }
  .lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
  }
  .lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12px;
  }
  @keyframes lds-roller {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

/**
 * Swiper
**/

.swiper {
    width: 100%;
    height: 100%;
    position:absolute;
    -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
    border-radius: 6px;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;

    display: flex;
    justify-content: center;
    align-items: center;
    background: #CCC;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .swiper-button-prev, .swiper-button-next {
    /* color:#fff; */
  }

  .swiperThumbs-container {
    border-radius: 6px;
    overflow: hidden;
  }

  .swiperThumbs {
    margin-top:-2px;
    margin-bottom:-2px;
    margin-left:-2px;
    margin-right:-2px;
  }

  .swiperThumbs .thumb {
    cursor:pointer;
    opacity: 0.7;

  }

  .swiperThumbs .thumb:hover,
  .swiperThumbs .thumb.active {
    opacity: 1;
  }

  .swiperThumbs img {
    padding:2px;
  }

/* Rezepte */
.rezepte-zutaten {

	position: relative;

	margin:3px 0 0 0;

	background-color: #fff;

	-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.05);

	-moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.05);

	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.05);

	padding: 15px 15px 15px 15px;

	

}



.rezepte-zutaten:before, .rezepte-zutaten:after {

	position: absolute;

	width: 40%;

	height: 10px;

	content: ' ';

	left: 12px;

	bottom: 12px;

	background: transparent;

	-webkit-transform: skew(-5deg) rotate(-5deg);

	-moz-transform: skew(-5deg) rotate(-5deg);

	-ms-transform: skew(-5deg) rotate(-5deg);

	-o-transform: skew(-5deg) rotate(-5deg);

	transform: skew(-5deg) rotate(-5deg);

	-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);

	-moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);

	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);

	z-index: -1;

} 



.rezepte-zutaten:after {

	left: auto;

	right: 12px;

	-webkit-transform: skew(5deg) rotate(5deg);

	-moz-transform: skew(5deg) rotate(5deg);

	-ms-transform: skew(5deg) rotate(5deg);

	-o-transform: skew(5deg) rotate(5deg);

	transform: skew(5deg) rotate(5deg);

}



/* Zutaten */

.row-zutaten {
	margin:0;
	border-bottom: 1px solid #97c03c;	
}

.zutat {
	padding: 5px 5px;
}

.zutaten-content {
	margin-bottom:15px;
}

.menge-einheit {
	font-weight:700;
}

.zutaten-buttons {
	text-align:right;
	padding: 10px 0;	
}

/* KatNav */

ul.katnav {
	margin:10px 0 0 0;
	padding:0;
	list-style:none;
}

ul.katnav li {
	margin:0;
	padding:0 0 0 22px;
	list-style:none;
    position: relative;
}



ul.katnav li a {

	text-decoration: none;
	display:block;
    color: #333;
	background-color:#FFF;
    font-weight: normal;
    line-height: 18px;
	margin:0 0 0px 0;
    padding: 5px;
    text-align: left;
	-webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

ul.katnav li::before {
    display: block;
    content: "";
    position: absolute;
    width:20px;
    height:22px;
    left: 0px;
    top: 4px;
    line-height: 1;
    /* background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 27.2.0  SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Ebene_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 20 20' style='enable-background:new 0 0 20 20%3B' xml:space='preserve'%3E%3Cstyle type='text/css'%3E.st0%7Bfill:%23458432%3B%7D%3C/style%3E%3Cg%3E%3Cpath class='st0' d='M9.8 11.3l7-9c0.1-0.2 0.4-0.4 0.6-0.4c0.3 0 0.5 0.2 0.5 0.6c0 0.2-0.1 0.4-0.3 0.6l-7.2 9.2v6.5c0 0.3 0 0.5-0.1 0.8c-0.1 0.2-0.3 0.4-0.5 0.3c-0.1 0-0.3 0-0.4-0.1c-0.1-0.1-0.2-0.1-0.2-0.2c-0.1-0.1-0.1-0.2-0.1-0.3c0-0.1 0-0.3 0-0.4v-6.6L1.9 3.1C1.8 3 1.8 2.9 1.7 2.8c0-0.1-0.1-0.2-0.1-0.3c0-0.1 0-0.3 0.1-0.4C1.9 1.9 2 1.9 2.2 1.9c0.3 0 0.5 0.2 0.7 0.4L9.8 11.3z'/%3E%3Cpath class='st0' d='M14.4 0c0.5 2.3-0.1 3.4-2.5 4.5C10.8 2.3 11.9 0.3 14.4 0z'/%3E%3Cpath class='st0' d='M11 5.8C8.9 6.3 7.9 5.6 7.1 2.9C9 1.8 10.7 3.1 11 5.8z'/%3E%3C/g%3E%3C/svg%3E"); */

    background-image: url("../img/li.svg");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}


ul.katnav li a:hover,
ul.katnav li a.active {
	text-decoration: none;
	display:block;
    color: #333;
	background-color:#EEE;
    font-weight: 700;
    line-height: 18px;
    text-align: left;
}