body{
    position: relative;
    background: transparent;
}
header{
    background: #50af47;
    color: rgba(255,255,255,1);
    position: sticky;
    top: -1px;
    z-index: 999;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.6));
}
footer{
    background: rgba(0,0,0,1);
    color: rgba(255,255,255,1);
    padding-top: 45px;
    padding-bottom: 45px;
}
#mainLogo{
    height: 70px;
    width: auto;
}
.navbar-light .navbar-nav .nav-link, .navbar-light .navbar-nav .nav-link {
    color: rgba(245,245,245,1);
}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: rgba(200,200,200,1);
}
.fadeBanner-Item{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    z-index: -1;
    content: ' ';
    float: left;
}
.fadeBanner-Item::before{
    margin-bottom: 33%;
    float: left;
    content: ' ';
}
.mainBanner{
    position: absolute;
    width: 100%;
    background: transparent;
    float: left;
}
.mainBanner::before{
    margin-bottom: 33%;
    float: left;
    content: ' ';
}
.mainBanner::after{
    clear: both;
    content: ' ';
}
#shield{
    background: rgba(255,0,0,0.3);
    border-left: 2px solid rgba(255,0,0,0.8);
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 0%;
    opacity: 0;
    border-radius: 70% 0 0 30%;
}
#shield.active{
    transition: width 3s ease-in-out;
    width: 220%;
    opacity: 1;
}
#content{
    padding: 45px;
}
#jetzKaufen{
    background: #3C4A43;
    margin: 25px 0;
    padding-top: 35px;
    padding-bottom: 35px;
    color: rgba(65,65,65,1);
}
#jetzKaufen h2{
    color: rgba(255,255,255,1);
    padding-bottom: 25px;
}
#artikelSlider .slick-prev:before, .slick-next:before {
    color: rgba(0,0,0,1) !important;
}
@media screen and (max-width: 550px){
    .fadeBanner-Item::before{
        margin-bottom: 100%;
    }
    .mainBanner::before{
        margin-bottom: 100%;
    }
}

.oberflaechen-wrapper{
    position: relative;
    padding: 25px 0;
    margin: 25px 0;
}
.oberflaechen-wrapper::before{
    z-index: -1;
    content: ' ';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('/images/background_pattern.png');
}
.shop-item{
    text-align: center;
    position: relative;
    margin-top: 15px;
    margin-bottom: 15px;
}
.shop-item a{
    text-decoration: none;
    color: rgba(65,65,65,1);
}
.shop-item a:hover{
    color: rgba(230,230,320,1);
}
.shopping-overlay{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    width: 140px;
    padding: 8px 15px;
    background: rgba(0,0,0,0.8);
    border-radius: 5px;
    color: rgba(230,230,230,1);
    text-align: center;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}
.shop-item:hover .shopping-overlay{
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) translateY(-20px);
}
.shop-item-image-container{
    display: flex;
    justify-content: center;
    align-content: center;
}
.shop-item-image-container img{
    max-width: 100%;
}
.smallLogo-Wrapper{
    margin-bottom: 15px;
}
.smallLogo-Wrapper img{
    width: 120px;
    max-width: 100%;
}
#eigenschaften{
    background: #50af47;
    color: rgba(255,255,255,1);
    padding: 45px;
}
#mainNav .nav-item{
    text-align: left;
}

#documents{
    background: rgba(255,255,255,1);
    padding-top: 25px;
    padding-bottom: 25px;
    margin-top: 25px;
    margin-bottom: 25px;
}
.document-item{
    position: relative;
    padding: 8px 25px 8px 30px;
    margin: 10px 0;
    background: rgba(255,255,255,1);
}
.document-item:nth-child(odd){
    background: rgba(230,230,230,1);
}
.file-icon{
    width: 20px;
    height: auto;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
}

.buy_now_mobile{
    display: none;
    text-align: center;
    padding: 15px 0;
}
.buy_now_mobile button{
    background: #50af47;
    padding: 8px 25px;
    color: rgba(255,255,255,1);
    outline: none;
    border: none;
    text-align: center;
}
@media screen and (max-width: 991px){
    .buy_now_mobile{
        display: block;
    }
    #mainNav .nav-item{
        text-align: right;
        padding: 8px 15px;
        border-bottom: 1px solid #FFF;
    }
    .shopping-overlay{
        position: absolute;
        display: none;
    }
}

.moving-water{
    animation: movin-water-left-right 30s linear;
    animation-iteration-count: infinite;
}

.sizeUp{
    animation: sizeUp 1s ease;
    animation-iteration-count: infinite;
    transform-origin: 55% 33%;
}

@keyframes movin-water-left-right {
    0% {
        transform: translate3d(-10px, -8px,0) scale(1) skew(.15rad);
    }
    25%{
        transform: translate3d(0px, 0px,0) scale(1.05) skew(0);
    }
    50% {
        transform: translate3d(10px, 8px,0) scale(1.1) skew(.15rad);
    }
    75% {
        transform: translate3d(0px, 0px,0) scale(1.05) skew(0);
    }
    100% {
        transform: translate3d(-10px, -8px,0) scale(1) skew(.15rad);
    }
}
@keyframes sizeUp {
    0% {
        transform: scale(0) rotate(-20deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

#review{
    background: #fff;
    padding-top: 25px;
    padding-bottom: 25px;
    margin-top: 15px;
    margin-bottom: 15px;
}
#review .slick-arrow:before{
    color: rgba(180,180,180,1);
}
#rezCarousel{
    padding-left: 25px;
    padding-right: 25px;
}
#review .slick-next{
    right: 4px;
}
#review .slick-prev{
    left: 4px;
}

.rezItem{
    position: relative;
    width: 100%;
    padding: 15px;
}
.rezItem .rezItemImg{
    padding: 25px;
}
.rezItem .rezItemImg img{
    width: 100%;
    height: auto;
    border-radius: 50%;
}
.rezContent{
    display: flex;
    align-items: center;
}
.rezContent blockquote{
    font-style: italic;
    font-size: 0.9rem;
}
.rezContent figure{
    margin: 0;
}
.voteTop{
    color: rgba(255,200,0,1);
}
.voteLow{
    color: rgba(220,220,220,1);
}
.rezRating i{
    margin-right: 4px;
}

.useList{
}    
.useList ul{
    margin: 0;
    list-style: none;
    padding: 0;
}
.useList ul li{
    padding: 4px 0 4px 30px;
    position: relative;
}
.useList ul li:before{
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    color: #50af47;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    box-sizing: border-box;
    font-weight: 900;
}
.useList ul li a{
    text-decoration: none;
    color: inherit;
}
.useList ul li strong{
    font-weight: normal;
}

.einsatzItem{
    margin-top: 130px;
    margin-bottom: 130px;

}
.einsatzItemContent-Wrapper{
    position: relative;
    background: rgba(230,230,230,1);
    padding: 25px 25px 25px 200px;
    border-radius: 35px;
}
.einsatzItemImg{
    position: absolute;
    top: 0;
    left: 0;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    transform: translate(-20%, -35%);
    overflow: hidden;
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    filter: drop-shadow(3px 3px 3px rgba(0,0,0,0.6));
}
@media screen and (max-width: 750px){
    .einsatzItemContent-Wrapper{
        padding: 25px 25px 25px 125px;
    }
    .einsatzItemImg{
        width: 140px;
        height: 140px;
    }
    .footer-block{
        margin-bottom: 25px;
    }
}
@media screen and (max-width: 500px){
    .einsatzItemContent-Wrapper{
        padding: 165px 25px 25px 25px;
        border-radius: 0;
    }
    .einsatzItemImg{
        width: 100%;
        height: 140px;
        border-radius: 0;
        transform: none;
        filter: none;
    }
    .einsatzItem{
        margin-top: 35px;
        margin-bottom: 35px;

    }
}