/*
    Colors
    weiß: #ffffff
    orange: #FFAE00
    dunkelgrau: #404040
    mittelgrau: #6E6E6E
    hellgrau: #E5E2DC
*/

*{
    box-sizing: border-box;
    line-height: normal;
}

input[type=submit]{
    -webkit-appearance: none;
    appearance: none;
}

html{
    /* font-family: 'Montserrat', Arial, Helvetica, sans-serif; */
    font-family: 'roboto_regular', Arial, Helvetica, sans-serif;
    font-size: 18px;
    color: #3A3A3A;
    height: 100%;
}

body{
    font-size: 1em;
    line-height: 1.3em;
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #3A3A3A;
    -webkit-text-size-adjust: 100%;
}

h1,h2{
    margin-top: 0;
}

h1{
    font-size: 1.5em;
    font-family: 'roboto_condensedbold';
}

h2{
    font-size: 1.5em;
    font-family: 'roboto_condensedregular';
    /* font-family: 'roboto_regular'; */
}

p{
    margin-top: 0;
    line-height: 1.5em;
    font-family: 'roboto_regular';
}

a{
    color: #FFAE00;
    text-decoration: none;
    cursor: pointer;
}

/* b, strong{
    font-family: 'roboto_regular';
} */

img{
    border: none;
}

.clrfix:after, .cf:after{
    display: block;
    content:"";
    clear:both;
}


button{
    position: relative;
    cursor: pointer;
}

*.btn{
    display: inline-block;
    vertical-align: top;
    padding: 10px 20px;
    background-color: #FFAE00;
    /* color: #404040; */
    color: #fff;
    text-decoration: none;
    position: relative;
    text-align: center;
    font-family: 'roboto_condensedbold';
    font-size: 1rem;
}

*.btn.grey{
    background-color: #404040;
}

*.btn.blue{
    background-color: #3b7bbf;
}

*.btn.cornered{
    border-radius: 10px;
}

*.weiter-btn, button.weiter-btn {
    padding-right: 30px;
}

*.btn.smaller{
    font-size: 0.9rem;
    padding: 7px 15px;
}

.cssButton i{
    display: inline-block;
}

.cssButtonText{
    margin-left: 10px;
}

a.no-i i{
    display: none;
}

*.weiter-btn:after,
*.wishlist-btn:before{
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

*.weiter-btn:after{
    content: "\f054";
}

a.wishlist-btn{
    padding-left: 35px;
}

*.wishlist-btn:before{
    content: "\f004";
    left: 10px;
    right: auto;
}

.upper{
    text-transform: uppercase;
}

.center{
    text-align: center;
}

.full{
    width: 100%;
}

*.bg1{
    background-color: #3A3A3A;
    color: #fff;
}

*.bg2{
    background-color: #FFAE00;
    color: #fff;
}

*.bg3{
    background-color: #eee;
    color: #404040;
}

.btn-row > *{
    margin-right: 10px;
    margin-bottom: 10px;
}

.btn-row.cart-btns{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


 .btn-row.cart-btns > *{
    min-width: 250px;
    margin-right: 0px;
    margin-bottom: 0px;
    flex: 1;
}

/* .btn-row.cart-btns > *:last-child{
    margin-left: auto;
} */
/*
@media screen and (max-width: 1000px){
    .btn-row.cart-btns > *{
        min-width: 0px;
        max-width: 200px;
        width: 100%;
    }
}

@media screen and (max-width: 500px){
    .btn-row.cart-btns > *{
        max-width: none;
    }
} */


#page-content{
    /* max-width: 360px; */
    margin: 0 auto;
    /* border: 1px solid #ccc; */
    position: relative;
    z-index: 0;
    background-color: #fff;
}

.small-page-content{
    max-width: 500px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.pv-30{
    padding-top: 30px;
    padding-bottom: 30px;
}

.pvb-30{
    padding-bottom: 30px;
}

.middle-content{
    padding-left: 15px;
    padding-right: 15px;
    max-width: 1300px;
    margin: 0 auto;
}

.text-block{
    padding: 20px 15px 5px 15px;
}

#fixed-bar{
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
}

#fixed-bar-placeholder{
    height: 118px;
}

#admin + #page-content #fixed-bar{
    top: 36px;
}

#top-bar{
    background-color: #6E6E6E;
    color: #fff;
    padding: 0 10px;
    font-size: 1.2rem;
    min-height: 40px;
}

#top-bar .mobile{
    display: none;
}

#top-bar .left{
    float: left;
}

#top-bar .right{
    float: right;
}

#top-bar i{
    cursor: pointer;
    padding: 10px;
}

#top-bar a{
    color: #fff;
}

#top-navi{
    display: inline-block;
    padding-top: 5px;
}

#top-navi ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#top-navi ul li{
    display: inline-block;
    margin-right: 20px;
    vertical-align: top;
}

#top-navi ul li a{
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 27px;
    display: block;
}

#lieferland_box{
    display: inline-block;
    font-size: 12px;
    line-height: 12px;
    margin-top: 13px;
    text-transform: uppercase;
    padding-right: 10px;
    border-right: 1px solid #fff;
    margin-right: 10px;
    cursor: pointer;
    position: relative;
    z-index: 300;
}

#lieferland_box > .content{
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    padding-top: 10px;
    color: #3a3a3a;
    text-transform: none;
    min-width: 200px;
    font-size: 16px;
    line-height: 1.3em;
}

#lieferland_box:hover > .content{
    display: block;
}

#lieferland_box > .content > .inner{
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 15px;

}

.service-hotline{
    display: inline-block;
    font-size: 12px;
    line-height: 12px;
    padding-top: 13px;
    text-transform: uppercase;
}

#menue-bar{
    background-color: #fff;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    position: relative;
    z-index: 2;
}

.menue-icon{
    display: block;
    float: right;
    width: 45px;
    height: 45px;
    text-align: center;
    font-size: 38px;
    cursor: pointer;
    position: relative;
    margin-left: 20px;
}

.menue-icon:after{
    position: absolute;
    bottom: 3px;
    right: 0;
    width: 15px;
    height: 10px;
    background-color: #fff;
    content:"";
}

a#logo{
    display:block;
    float: left;
    max-width: 240px;
    margin-top: 8px;
}

a#logo img{
    display: block;
    width: 100%;
    max-width: 498px;
}

header, #bildwechsel{
    position: relative;
    width: 100%;
    height: 14rem;
    min-height: 500px;
    z-index:0;
}

header #bildwechsel > .slideshow-item{
    background-size: cover;
    position: relative;
    height: 14rem;
    min-height: 500px;
    z-index: 0;
    width: 100%;
}

header #bildwechsel .prev, header #bildwechsel .next{
    display: block;
    width: 1.5em;
    height: 1.5em;
    background-color: rgba(255,255,255,0.8);
    font-size: 2em;
    line-height: 1.5em;
    position: absolute;
    top: 50%;
    left: 20px;
    cursor: pointer;
    transform: translateY(-50%);
    z-index: 999;
    text-align: center;
}

header #bildwechsel .next{
    left: auto;
    right: 20px;
}

.header-overlay{
    display: block;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    text-align: center;
    padding: 15px;
    background-color: rgba(255,255,255,0.9);
    border: 2px solid #ffae00;
}

.header-overlay h1{
    font-size: 2rem;
    text-transform: uppercase;
    font-family: 'roboto_condensedbold';
}

@media screen and (max-width: 700px){
    header #bildwechsel .prev, header #bildwechsel .next{
        top: auto;
        bottom: 25px;
    }

    header #bildwechsel .prev{
        left: 5px;
    } 
    
    header #bildwechsel .next{
        right: 5px;
    }
}

#search{
    /* display: block;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    padding: 10px;
    position: relative;
    z-index: 100; */

    display: block;
    background-color: #fff;
    position: absolute;
    top: 60px;
    left: 50%;
    z-index: 100;
    width: 35%;
    transform: translateX(-50%);
}

.search_cat{
    float: left;
    width: 30%;
}

.search-inp-row{
    position: relative;
}

.search_inner.search_cat_mode .search-inp-row{
    margin-left: 30%;
}

.search-inp-row input{
    border-radius: 0 10px 10px 0;
    padding: 7px 40px 8px 6px;
}

.search-inp-row button{
    position: absolute;
    top: 0;
    right: 0;
    background-color: #FFAE00;
    border-radius: 0 10px 10px 0;
    padding: 10px;
    height: 100%;
    line-height: 10px;
}

#autoSuggestionsList  ul#autocomplete_pagination{
    display: none;
}

#autoSuggestionsList  ul#autocomplete_main{
    margin: 0;
    padding: 0;
    list-style-type: none;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid #ccc;
}

#autoSuggestionsList  ul#autocomplete_main li{
    padding: 10px;
    border-top: 1px solid #ccc;
}

#autoSuggestionsList  ul#autocomplete_main li:first-child{
    border-top: none;
}

#autoSuggestionsList  ul#autocomplete_main li:hover{
    background-color: #f5f5f5;
}

a.autocomplete{
    text-decoration: none;
    color: #3A3A3A;
}

.autocomplete_image{
    float: right;
    margin-left: 10px;
    border: 1px solid #ccc;
}

.autocomplete_image img{
    height: 50px;
}

.ac_text{
    display: block;
    font-weight: bold;
}

.ac_price{
    display: block;
    margin-top: 10px;
}

.autocomplete_error{
    display: block;
    padding: 10px;
    border: 1px solid #ccc;
}

.ac_price .old_price{
    text-decoration: line-through;
    font-size: 14px;
}

.ac_price .new_price{
    font-size: 18px;
    color: #c40000;
}

#admin{
    z-index:100 !important;
}

#mobile-navi-wrap{
    height: 100%;
    position: fixed;
    top: 0;
    right: -400px;
    width: 90%;
    max-width: 400px;
    z-index:901;
    background-color: #fff;
    border-left: 1px solid #ccc;
    overflow-y: auto;
    overflow-x: hidden;
    font-size: 20px;
}

#mobile-navi-wrap > .head{
    background-color: #FFAE00;
    color: #fff;
    padding: 10px 1.5rem 10px 10px;
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

#mobile-navi-wrap > .head:after{
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: "\f054";
    position: absolute;
    top: 50%;
    right: 0.7rem;
    transform: translateY(-50%);
}

#mobile-navi-wrap > .content{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;;
    padding-top: 44px;
    z-index: 0;
}

#mobile-navi-wrap > .new-content{
    display: block;
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    padding-top: 44px;
    z-index: 0;
}

#mobile-navi-wrap > .new-content.from-left{
    left: -100%;
}

#mobile-navi-wrap .link-box-head{
    padding: 10px 15px;
    background-color: #3A3A3A;
    color: #fff;
}

#mobile-navi-wrap .link-box-links{
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 0.8em;
}

#mobile-navi-wrap .link-box-links li{
    border-top: 1px solid #ccc;
}

#mobile-navi-wrap .link-box-links li:first-child{
    border-top: none;
}

#mobile-navi-wrap .link-box-links li a{
    display: block;
    padding: 10px 15px;
    color: #3A3A3A;
    text-decoration: none;
}

#mobile-navi-wrap .content-link-box .link-box-links li a i,
#mobile-navi-wrap .info-link-box .link-box-links li a i{
    display: none;
}

a.mobile-navi-link{
    display: block;
    padding: 10px 15px;
    color: #3a3a3a;
    border-bottom: 1px solid #ccc;
    font-size: 0.8em;
}

a.mobile-navi-link:hover{
    background-color: #eee;
}

a.mobile-navi-link b{
    font-family: 'roboto_condensedbold';
    font-weight: normal;
}

a.mobile-navi-link.has-submenu{
    position: relative;
    padding-right: 30px;
}

a.mobile-navi-link.has-submenu:after{
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

a.mobile-navi-link.alle-anzeigen{
    background-color: #FFAE00;
    color: #fff;
}

.mobile-navi-cat-name{
    /* font-family: 'roboto_condensedbold'; */
    padding: 10px 15px;
    background-color: #3a3a3a;
    color: #fff;
}

.account-actions{
    background-color: #F9F6F1;
    padding: 15px;
    text-align: center;
}

.account-actions .user-image{
    display: inline-block;
    font-size: 25px;
    background-color: #FFAE00;
    color: #fff;
    line-height: 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.account-actions .user-name{
    font-weight: bold;
    margin-top: 5px;
}

.account-actions .account-links{
    margin-top: 10px;
}

.account-actions .account-links ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 12px;
    text-transform: uppercase;
}

.account-actions .account-links li{
    display: inline-block;
    margin-left: 20px;
    position: relative;
}

.account-actions .account-links li:first-child{
    margin-left: 0;
}

.account-actions .account-links li:before{
    position: absolute;
    top: 0;
    content:"|";
    left: -11px;
}

.account-actions .account-links li:first-child:before{
    display: none;
}

.account-actions .account-links li a{
    color: #3A3A3A;
}

/*Category Listing */
.cat_description{
    min-height: 100px;
    max-height: 220px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    margin-bottom: 20px;
}

.cat_description::after{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    content: 'weiterlesen';
    background: rgb(230,230,230);
    background: linear-gradient(0deg, rgba(230,230,230,1) 40%, rgba(255,255,255,0.34495805158000703) 100%);
    text-align: center;
    padding: 50px 0 10px 0;
}

.cat_description:hover::after{
    background: rgb(204,204,204);
    background: linear-gradient(0deg, rgba(204,204,204,1) 40%, rgba(255,255,255,0.34495805158000703) 100%);
}

.cat_description.opened{
    max-height: none;
    cursor: auto;
}

.cat_description.opened::after{
    content: none;   
}

.cat_head_image{
    position: relative;
    overflow: hidden;
    height: 30vh;
    min-height: 300px;
    background-size: cover;
    background-position: center center;
}

.cat-header-arrow{
    background-color: #3A3A3A;
    height: 20px;
    position: relative;
    margin-bottom: 30px;
}

.cat-header-arrow:after{
    display: block;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    width: 0; 
    height: 0; 
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 20px solid #3A3A3A;
}

.cat-header-arrow{
    height: auto;
    color: #fff;
    text-align: center;
    padding: 10px 15px 15px 15px;
}

.cat-header-arrow h1{
    margin: 0;
}

.subcats{
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: -10px;
}

.subcats > .item{
    display: inline-block;
    width: 25%;
    vertical-align: top;
    overflow: hidden;
    /* margin-right: -6px; */
}



.subcats > .item > a{
    display: block;
    margin-left: 10px;
    margin-bottom: 10px;
    padding: 5px;
    background-color: #6E6E6E;
    color: #fff;
} 

.subcats > .item > a table{
    min-height: 50px;
}

.subcats > .item > a table tr td.no-image{
    padding-left: 5px;
}

.subcats > .item:hover > a{
    background-color: #FFAE00;
}

.subcat_image{
    display: inline-block;
    width: 50px;
    margin-right: 10px;
    vertical-align: middle;
    background-color: #fff;
}

.subcat_image img{
    display: block;
    width: 100%;
    max-width: 160px;
}

.subcats > .item > a .title{
    display:inline-block;
    vertical-align: middle;
}

@media screen and (max-width: 1300px){
    .subcats > .item{
        width: 33.3%;
    }
}

@media screen and (max-width: 1000px){
    .subcats > .item{
        width: 50%;
    }
}

@media screen and (max-width: 700px){
    .subcats > .item{
        width: 100%;
    }
}

/*ENDE Category Listing */

/*Product Listing */

.product-listing-page > h1{
    background-color: #3A3A3A;
    color: #fff;
    padding: 10px 15px;
    text-align: center;
}

.tags_bar_headline{
    display: none;
}

.sort_bar{
    display: none;
}

.tags_bar_row{
    margin-left: -10px;
}

.tags_bar_item{
    display: inline-block;
    width: 25%;
}

.tags_bar_item > form{
    margin-left: 10px;
    margin-bottom: 10px;
}

.product-listing .shipping{
    display: none;
}

.product-listing .tax{
    display: none;
}

.product-listing .buttons{
    display: none;
}

.product-listing ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-listing ul > li{
    width: calc(20% - 10px);
    padding: 0 10px 0px 10px;
    /* border-bottom: 1px solid #ccc; */
    position: relative;
    box-shadow: 0 0 10px #ccc;
}

.product-listing ul > li:hover{
    box-shadow: 0 0 10px #000;
    transform: scale(1.02);

}

.product-listing ul > li.with_coupon_code{
    padding-bottom: 55px;
}

.product-listing ul > li .coupon_price_wrap{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.product-listing .image{
    position: relative;
    padding-bottom: 10px;
}

.product-listing .image img{
    display: block;
    width: 100%;
}

.product-listing .title{
    padding-bottom: 50px;
}

.product-listing .title h2{
    text-align: center;
    font-weight: normal;
    font-size: 1rem;
    margin-top: 10px;
    font-family: 'roboto_regular';
}

.product-listing .title h2 a{
    color: #3A3A3A;
}

.product-listing .price{
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 1.3rem;
    font-family: 'roboto_regular';

}

.product-listing ul > li.with_coupon_code .price{
    bottom: 65px;
}

.product-listing  .old_price{
    text-decoration: line-through;
    font-weight: normal;
    font-family: 'roboto_regular';
    font-size: 0.9rem;
    display:inline-block;
    margin-right: 10px;
}

.product-listing  .new_price{
    color: #c40000;
    font-size: 1.3rem;
}

.product-listing .rabatt-box{
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.product-listing .rabatt-box a{
    display: inline-block;
    border: 1px solid #c40000;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1em;
    color: #c40000;
}

.product-listing  a.wishlist-heart{
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    color: #3a3a3a;
    font-size: 1.2rem;
}

@media screen and (max-width: 1200px){
    .product-listing ul > li{
        width: 24.1%;
    }
}

@media screen and (max-width: 1000px){
    .product-listing ul > li{
        width: 32.3%;
    }
}

@media screen and (max-width: 800px){
    .product-listing ul > li{
        width: 48.3%;
    }
}

@media screen and (max-width: 400px){
    .product-listing ul > li{
        width: 100%;
    }
}
/*ENDE Product Listing */

/* Contact Box */

.contact-box{
    background-color: #FFAE00;
    /* max-width: 360px; */
}

.contact-box > .inner{
    position: relative;
}

.contact-box .top > .inner{
    max-width: 407px;
    margin: 0 auto;
}

.contact-box .pixel{
    display: block;
    width: 100%;
    height: 235px;
    position: relative;
    z-index: 0;
}

.contact-box .box-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3a3a3a;
    z-index: 1;
}

.contact-box .top{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #FFAE00;
    z-index: 2;
    height: 66%;
}

.contact-box .top > .inner{
    /* max-width: 360px; */
    /* margin: 0 auto; */
}

.contact-box .image{
    float: left;
    width: 156px;
}

.contact-box .image img{
    display: block;
    width: 100%;
}

.contact-box .content{
    margin-left: 156px;
    padding: 15px 10px 10px 20px;
}

.contact-box .content .title{
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    font-family: 'roboto_condensedbold';
}

.contact-box .content .title span{
    display: block;
    font-weight: normal;
    color: #3A3A3A;
    text-transform: none; 
    font-family: 'roboto_regular';
    font-size: 16px;
    margin: 5px 0;
    font-weight: bold;
}

.contact-box .content .text{
    color: #fff;
    font-size: 14px;
    max-width: 195px;
}

.contact-box .bottom{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #3A3A3A;
    color: #fff;
    text-align: center;
    font-size: 16px;
    line-height: 25px;
    padding: 15px;
    z-index: 2;
    height: 34%;
}

.contact-box .bottom a{
    color: #fff;
}

.contact-box .bottom > .inner{
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
}

.product-listing .contact-box .pixel{
    height: auto;
}

.product-listing .contact-box .image{
    display: block;
    float: none;
    width: 60px;
    position: absolute;
    top: 10px;
    left: 10px;
}

.product-listing .contact-box .content{
    margin-left: 0;
    padding: 10px;
}

.product-listing .contact-box .content .title{
    padding-left: 70px;
}

.product-listing .contact-box .content .text{
    clear: both;
    max-width: none;
    padding-top: 10px;
    font-size: 16px;
}

.product-listing .contact-box .bottom{
    font-size: 15px;
    padding: 10px;
}

@media screen and (max-width: 600px){

    .product-listing .contact-box .pixel{
        height: 235px;
    }

    .product-listing .contact-box .content .text{
        padding-top: 0;
        font-size: 14px;
    }

    .product-listing ul > .item.contact-box-wrap{
        width: 100%;
        max-width: none; 
    }

    .product-listing .contact-box .image{
        display: block;
        position: relative;
        top: 0;
        left: 0;
        width: 146px;
        float: left;
    }
    
    .product-listing .contact-box .content{
        margin-left: 146px;
    }

    .product-listing .contact-box .content .text{
        clear: none;
    }

    .product-listing .contact-box .content .title{
        float: none;
        width: auto;
        text-align: center;
        padding-left: 10px;
    }
}

/* ENDE Contact Box */

/* Footer Navi */
#footer-navi{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    padding-bottom: 30px;
}

#footer-navi ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-align: center;
}

#footer-navi ul li{
    text-align: left;
}

#footer-navi ul li  a{
    background-color: transparent;
    display: inline;
    line-height: 2em;
    padding: 0;
    color: #3a3a3a;
}

#footer-navi ul li  a i{
    display: none;
}

#footer-navi .link-box-head{
    display: block;
    font-weight: bold;
    font-size: 1.3rem;
    border-bottom: 1px solid #ccc;
    padding: 0 0 5px 0;
    margin-bottom: 10px;
    text-align: left;
    margin-top: 30px;
}

#footer_contact a{
    color: #3a3a3a;
}

.social-bar{
    font-size: 30px;
}

.social-bar a{
    display: inline-block;
    margin-right: 15px;
    color: #3a3a3a;
}

@media screen and (max-width: 1000px){
    #footer-navi{
        grid-template-columns: 1fr 1fr;
    }

    #footer_contact{
        grid-row: 2;
        grid-column: 1 / span 2;
        text-align: center;
    }

    #footer-navi .link-box#footer_contact #footer_address,
    #footer-navi .link-box#footer_contact .link-box-head{
        display: none;
    }
}

@media screen and (max-width: 700px){
    #footer-navi{
        grid-template-columns: 1fr;
        gap: 0;
    }

    #footer_contact{
        grid-row: 3;
        grid-column: 1;
    }

    #footer-navi .link-box-head{
        display: none;
    }

    #footer-navi ul li a {
        display: block;
        background-color: #F9F6F1;
        color: #3a3a3a;
        padding: 10px;
        text-align: center;
    }

    #footer-navi ul li {
        border-top: 2px solid #fff;
    }
}
/* ENDE Footer Navi */

#copyright{
    background-color: #3A3A3A;
    color: #B1B1B1;
    padding: 20px 15px 0 15px;;
    text-align: center;
    margin-bottom: 20px;
}

.copyright{
    background-color: #3A3A3A;
    color: #585656;
    padding: 10px;
    text-align: center;
    margin-bottom: 30px;
}

.copyright a{
    color: #585656;
}

/* Product Info Page */

#product_details canvas, .historylist canvas, .cart-products canvas{
    border: 1px solid #ccc;
}

#product_details h1{
    text-align: center;
    margin-top: 15px;
}

#product_details{
    padding: 15px;
}

#product_details .main-image{
    position: relative;
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 10px auto;
    border: 1px solid #ccc;
}

#product_details .main-image a, #product_details .main-image a img{
    display: block;
    width: 100%;
}

#more-images-plain{
    margin-left: -10px;
    margin-bottom: 20px;
}

#more-images-plain .image{
    display: inline-block;
    width: 50%;
}

#more-images-plain .image a{
    display: block;
    margin-left: 10px;
}

#more-images-plain .image a img{
    display: block;
    max-width: 100%;
    border: 1px solid #ccc;
}

#product_details .price{
    display: block;
    margin-right: 20px;
    font-size: 1.8rem;
    text-align: center;
}

#product_details .price .old_price{
    display: block;
    font-size: 0.5em;
    text-decoration: line-through;
}

#product_details .price .save_price{
    display: block;
    font-size: 0.5em;
}

#product_details .vpe{
    text-align: center;
}

#product_details .tax{
    display: block;
    text-align: center;
    margin: 10px 0;
}

.addtobasket{
    /* max-width: 360px; */
    margin: 0 auto;
}

.addtobasket_qty{
    display: block;
    float: left;
    width: 60px;
}

.addtobasket_qty input[type=text]{
    font-size: 1.3em;
    text-align: center;
    padding: 15px 5px;
    line-height: 1em;
    -webkit-appearance: none;
    height: 60px;
}

.addtobasket_actions{
    display: block;
    margin-left: 70px;
}

.addtobasket_actions button{
    font-size: 1.3em;
    padding: 16px 5px;
    font-family: 'roboto_condensedbold', Arial sans-serif;
    text-transform: uppercase;
    background-color: #FFAE00;
    height:60px;
    margin-bottom: 15px;
}

.addtobasket_actions button{
    width: 100%;
}

.addtobasket_actions button[name="wishlist"]{
    font-size: 1em;
    padding: 10px 5px;
    font-family: inherit;
    text-transform: none;
    background-color: #404040;
    height:auto;
    margin-bottom: 15px;
}

.addtobasket_left{
    float: left;
    width: 58%;
    margin-top: 20px;
}

.addtobasket_right{
    float: right;
    width: 38%;
    margin-top: 20px;
}

@media screen and (max-width: 1050px){
    .addtobasket_left,
    .addtobasket_right{
        float: none;
        width: auto;
    }

    .addtobasket_right{
        margin-left: 70px;
        max-width: 290px;
        margin-top: 0;
    }
}

@media screen and (max-width: 700px){
    .addtobasket_right{
        margin-left: auto;
        margin-right: auto;
        max-width: none;
        padding-left: 70px;
        width: 360px;
    }
}

@media screen and (max-width: 390px){
    .addtobasket_right{
        width: 100%;
    }
}

.product-randdaten{
    display: table;
    margin: 15px auto;
    width: 100%;
    max-width: 360px;
}

.product-randdaten.no-margin{
    margin: 0;
}

.product-randdaten > .item{
    display: table-row;
}

.product-randdaten > .item > *{
    display: table-cell;
    padding: 7px 10px;
    border-top: 1px dashed #BCBEBC;
}

.product-randdaten.no-lines > .item > *{
    border-top: none;
    padding: 5px 10px;
}

.product-randdaten > .item > *:first-child{
    white-space: nowrap;
    width: 1px;
    padding-left: 0;
}

.product-randdaten > .item:first-child > *{
    border-top: none;
}

@media screen and (min-width: 700px){
    #product_details h1{
        font-size: 2rem;
        margin-bottom: 1em;
    }

    #product_details .left{
        float: left;
        width: 39%;
    }

    #product_details .right{
        float: right;
        width: 55%
    }

    #product_details .main-image{
        margin: 0 0 10px 0;
    }

    #product_details .price,
    #product_details .tax{
        text-align: left;
    }

    .addtobasket,
    .product-randdaten{
        margin: 0;
    }

    .product-randdaten{
        margin-top: 30px;
        max-width: none;
    }
}

.hl-box > .head{
    padding: 10px 20px;
    font-family: 'roboto_condensedbold', Arial sans-serif;
    color: #fff;
    background-color: #FFAE00;
}

.hl-box > .head a{
    color: #fff;
}

.hl-box > .content{
    padding: 20px;
    border: solid #ccc;
    border-width: 0 1px 1px 1px;
}

.hl-box.address-box.with-btn > .content{
    padding: 20px 20px 50px 20px;
}

.hl-box:after{
    display: block;
    content:"";
    clear:both;
}

/*Login-Box auf Login-Seite*/
#login-box{
    max-width: 400px;
    margin: 0 auto;
}

.register-link-row{
    margin-top: 20px;
}

.register-link-row a{
    font-family: 'roboto_condensedbold', Arial sans-serif;
}

#login-box button, #register-box button{
    width: 100%;
}

@media screen and (max-width: 800px){
    #page-login .grid{
        display: block;
        margin-left: 0;
    }

    #page-login .grid > .col{
        float: none;
        width: auto;
        margin-left: 0;
        margin-bottom: 30px;
    }
}
/*ENDE Login-Box auf Login-Seite*/

.errormessage{
    border: 1px solid #c40000;
    background-color: #fae0e0;
    color: #c40000;
    padding: 15px 15px 15px 15px;
    margin-bottom: 30px;
}

.infomessage{
    border: 1px solid #ffae00;
    background-color: #fffcf5;
    color: #ffae00;
    padding: 15px 15px 15px 15px;
    margin-bottom: 30px;
}

.infomessage.orange{
    background-color: #ffae00;
    color: #fff;
}

.successmessage{
    border: 1px solid #01750a;
    background-color: #e7fbe6;
    color: #01750a;
    padding: 15px 15px 15px 15px;
    margin-bottom: 30px;
}

.infomessage > p{
    margin: 0;
}

#page-register{
    max-width: 800px;
    margin: 0 auto;
}

#register-box{
    max-width: 400px;
    margin: 0 auto;
}

#page-first-address{
    max-width: 700px;
    margin: 0 auto;
}

.addressform-box{
    margin: 0 auto;
}

.lieferadresse_cb-wrap{
    margin-top: 20px;
    margin-bottom: 20px;
}

#page-cart .order-total{
    margin-bottom: 20px;
}

.cart-heading{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 20px;
}

.cart-heading h1{
    margin-bottom: 0;
}

.cart-heading > *:nth-child(2){
    margin-left: auto;
}

@media screen and (max-width: 550px){
    .cart-heading > *:nth-child(2){
        margin-left: 0;
    }
}

.giftcart_top .giftcart_wrap{
    display: none;
    margin-bottom: 20px;
}

.cart-products > .head{
    font-family: 'roboto_condensedbold', Arial sans-serif;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.cart-products > .products > .item{
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
    position: relative;
}

.cart-products > .products > .item:first-child{
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.cart-products > .products > .item .cart_max_qty{
    color: #aaa;
    font-size: 14px;
    padding-left: 6px;
    white-space: nowrap;
}

.cart-products > .products > .item > .image,
.cart-products > .products > .item .desc,
.cart-products > .products > .item .qty,
.cart-products > .products > .item .ep,
.cart-products > .products > .item .gp,
.cart-products > .products > .item .del,
.cart-products > .head .image,
.cart-products > .head .desc,
.cart-products > .head .qty,
.cart-products > .head .ep,
.cart-products > .head .gp,
.cart-products > .head .del
{
    float: left;
    padding-left: 20px;
}

.cart-products > .products > .item > .image,
.cart-products > .head .image{
    width: 15%;
    padding-left: 0;
}

.cart-products > .products > .item > .content,
.cart-products > .head .content{
    float: left;
    width: 85%;
    position: relative;
}

.cart-products > .products > .item .desc,
.cart-products > .head .desc{
    width: 55%;
}

.cart-products > .products > .item .qty,
.cart-products > .head .qty{
    width: 8%;
}

.cart-products > .products > .item .qty input{
    width: 80px;
}

.cart-products > .products > .item .ep,
.cart-products > .head .ep{
    width: 15%;
    text-align: right;
}

.cart-products > .products > .item .gp,
.cart-products > .head .gp{
    width: 15%;
    text-align: right;
}

.cart-products > .products > .item .del,
.cart-products > .head .del{
    width: 7%;
    text-align: right;
}

.cart-products > .products > .item .qty > .head,
.cart-products > .products > .item .ep > .head,
.cart-products > .products > .item .gp > .head{
    display: none;
}

.cart-products > .products > .item > .image img{
    display: block;
    width: 100%;
    border: 1px solid #ccc;
}

.cart-products > .products > .item .del a{
    display: inline-block;
    color: #aaa;
    padding: 10px;
    border: 1px solid #aaa;
}

.cart-products > .products > .item a.prdoducts_name{
    display: inline-block;
    color: #3A3A3A;
    font-family: 'roboto_condensedbold', Arial sans-serif;
    margin-bottom: 15px;
}

.cart-products > .products > .item .attributes{
    margin: 0;
    list-style: none;
    padding: 0;
    font-size: 0.8rem;
}

.cart-products > .products > .item .shipping_time{
    margin-top: 15px;
}

@media screen and (max-width: 1000px){
    .cart-products > .head{
        display: none;
    }

    .cart-products > .products > .item .desc{
        width: 100%;
        padding-right: 40px;
        padding-bottom: 10px;
    }

    .cart-products > .products > .item .qty,
    .cart-products > .products > .item .ep,
    .cart-products > .products > .item .gp{
        width: auto;
        line-height: 40px;
    }

    .cart-products > .products > .item .qty > .head,
    .cart-products > .products > .item .ep > .head,
    .cart-products > .products > .item .gp > .head{
        display: block;
        font-family: 'roboto_condensedbold', Arial sans-serif;
    }
    
    .cart-products > .products > .item .del{
        position: absolute;
        top: 0;
        right: 0;
        width: auto;
    }
}

@media screen and (max-width: 450px){
    .cart-products > .products > .item .qty,
    .cart-products > .products > .item .ep,
    .cart-products > .products > .item .gp{
        float:none;
        text-align: right;
    }

    .cart-products > .products > .item .qty > .head,
    .cart-products > .products > .item .ep > .head,
    .cart-products > .products > .item .gp > .head{
        float:left;
        line-height: 40px;
    }

    .cart-products > .products > .item .desc,
    .cart-products > .products > .item .qty,
    .cart-products > .products > .item .ep,
    .cart-products > .products > .item .gp,
    .cart-products > .products > .item .del
    {
        padding-left: 10px;
    }

    .cart-products > .products > .item .qty input{
        text-align: right;
    }

    .cart-products > .products > .item .ep,
    .cart-products > .products > .item .gp,
    .cart-products > .products > .item .ep > .head,
    .cart-products > .products > .item .gp > .head{
        line-height: 1.5em;
    }
}

.order-total{
    background-color: #f5f5f5;
    padding: 20px 0;
    margin-top: 20px;
}

.order-total > .total-block{
    float: right;
    margin-right: 6%;
    text-align: right;
    width: 40%;
}

.order-total > .total-block > .item{
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}

.order-total > .total-block > .item > .title{
    display: block;
    float: left;
    width: 77%;
    text-align: right;
    padding-right: 10px;
}

.order-total > .total-block > .item > .value{
    display: block;
    float: left;
    width: 23%;
    white-space: nowrap;
}

.order-total > .total-block > .item.final-price{
    font-family: 'roboto_condensedbold', Arial sans-serif;
    border-bottom: 3px double #3a3a3a;
    border-top: 1px solid #ccc;
}

@media screen and (max-width: 1000px){
    .order-total > .total-block{
        margin-right: 0;
        width: 50%;
    }

    .order-total{
        padding: 20px;
    }
}

@media screen and (max-width: 800px){
    .order-total > .total-block{
        width: 70%;
    }
}

@media screen and (max-width: 650px){
    .order-total > .total-block{
        width: 100%;
    }
}

.to-checkout-bar{
    background-color: #3a3a3a;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    border-top: 1px solid #6d6d6d;
    font-size: 1.5em;
    font-family: 'roboto_condensedbold', Arial sans-serif;
}

.to-checkout-bar > *{
  animation: scale 10s;
  animation-iteration-count: infinite;  
}

@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    1% { transform: translate(-1px, -2px) rotate(-1deg); }
    2% { transform: translate(-3px, 0px) rotate(1deg); }
    3% { transform: translate(3px, 2px) rotate(0deg); }
    4% { transform: translate(1px, -1px) rotate(1deg); }
    5% { transform: translate(-1px, 2px) rotate(-1deg); }
    6% { transform: translate(-3px, 1px) rotate(0deg); }
    7% { transform: translate(3px, 1px) rotate(-1deg); }
    8% { transform: translate(-1px, -1px) rotate(1deg); }
    9% { transform: translate(1px, 2px) rotate(0deg); }
    10% { transform: translate(1px, -2px) rotate(-1deg); }
    10% { transform: translate(1px, 1px) rotate(0deg); }
}

@keyframes scale {
    0% { transform: scale(1); }
    5% { transform: scale(1.1); }
    10% { transform: scale(1); }
    15% { transform: scale(1.1); }
    20% { transform: scale(1); }
    100% { transform: scale(1); }
}

#checkoutnav{
    margin-bottom: 30px;
}

#checkoutnav ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

#checkoutnav ul li{
    display: block;
    position: relative;
    min-height: 39px;
    min-width: 39px;
    float: left;
    margin-left: 10px;
}

#checkoutnav ul li a{
    display:block;
    color: #3a3a3a;
}

#checkoutnav ul li:first-child{
    margin-left: 0;
}

#checkoutnav ul li.active{
    font-family: 'roboto_condensedbold', Arial sans-serif; 
}

#checkoutnav ul li .nr{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 39px;
    height: 100%;
    background-color: #3a3a3a;
    text-align: center;
    line-height: 41px;
    color: #fff;
    border-right: 1px solid #e5e5e5;
}

#checkoutnav ul li.active .nr{
    background-color: transparent;
}

#checkoutnav ul li .title{
    background-color: #e5e5e5;
    padding: 10px 10px 10px 49px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

#checkoutnav ul li.active .title{
    color: #fff;
    background-color: #ffae00;
    
}

#checkoutnav ul li .desc{
    display: none;
    font-size: 0.8em;
}

@media screen and (max-width: 650px){
    #checkoutnav ul li .title{
        padding-top: 49px;
        padding-left: 10px;
        text-align: center;
    }

    #checkoutnav ul li .nr{
        width: 100%;
        height: 39px;
        border-bottom: 1px solid #e5e5e5;
        border-right: none;
    }
}

@media screen and (max-width: 450px){
    #checkoutnav ul{
        display: block;
    }


    #checkoutnav ul > li:not(.active) .title{
        display: none;
    }

    #checkoutnav ul > li > .nr{
        width: 39px;
        height: 100%;
        border-bottom: none;
        border-right: none;
        height: 40px;
    }

    #checkoutnav ul li:not(.active) .nr{
        width: 100%;
    }

    #checkoutnav ul li .title{
        padding-top: 8px;
        padding-bottom: 7px;
        padding-left: 49px;
        text-align: left;
        height: 40px;
    }
}

.checkout_edit_button{
    float: right;
}

.checkout_edit_button .cssButtonText{
    display:none;
}

.address-listing{
    display:grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.address-listing > *{
    position: relative;
    border: 1px solid #ccc;
}

.address-listing.no-btn > *{
    padding-bottom: 0px;
}

.address-listing > * > .content{
    border: none;
}

.address-listing > * > .btn-row{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.address-listing > * > .btn-row > a{
    margin: 0;
    width: 50%;
}

.address-listing > * > .btn-row > a.full{
    width: 100%;
}

@media screen and (max-width: 900px){
    .address-listing{
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 450px){
    .address-listing{
        grid-template-columns: 1fr;
    }
}

#shipping_blocks{
    margin-bottom: 30px;
}

.shipping-item{
    margin-bottom: 15px;
    border: 1px solid #ccc;
    padding: 10px;
}

.shipping-item .radio{
    float: left;
    width: 30px;
}

.shipping-item .content{
    margin-left: 30px;
}

.shipping-item .title{
    float: left;
    font-family: 'roboto_condensedbold', Arial sans-serif; 
}

.shipping-item .price{
    float: right;
    font-family: 'roboto_condensedbold', Arial sans-serif; 
}

.shipping-item .desc{
    clear: both;
}

.shipping-item .address_pickup{
    display: none !important;
}

@media screen and (max-width: 700px){
    #page-checkout_payment .grid.col-50-50{
        grid-template-columns: 1fr;
    }

    #page-checkout_shipping .grid.col-50-50{
        grid-template-columns: 1fr;
    }
}

#kaufen_btn, #button_checkout_confirmation{
    width: 100%;
    font-size: 1.5em;
    background-color: #FFAE00;
    text-transform: uppercase;
    font-family: 'roboto_condensedbold', Arial sans-serif; 
}

#search_short{
    display: none;
}

.toggle_cart,
.toggle_wishlist,
.toggle_account{
    display: none;
}

#cart_short,
#wishlist_short,
#account_short,
#search_short{
    float: right;
    margin-left: 5px;
    text-align: center;
    position: relative;
    min-width: 80px;
}

#cart_short > a div,
#wishlist_short > a div,
#account_short > a div,
#search_short > a div{
    color: #3a3a3a;
    font-size: 10px;
    margin-top: 5px;
}

#cart_short > a i,
#wishlist_short > a i,
#account_short > a i,
#search_short > a i{
    display: inline-block;
    background-color: #FFAE00;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
}

#wishlist_short .popup{
    position: absolute;
    top: 68px;
    right: 0;
    width: 400px;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 15px;
}

#cart_short{
    position: relative;
}

#cart_short .popup{
    display: none;
    position: absolute;
    top: 55px;
    right: 0;
    padding-top: 13px;
}

#cart_short .popup > .inner{
    width: 400px;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 15px;
    max-height: 700px;
    overflow-x: hidden;
    overflow-y: auto;
}

#cart_short:hover .popup{
    display: block;
}

.tc_list{
    margin: 0;
    padding:0;
    list-style-type: none;
    text-align: left;
}

.tc_list > li{
    border-top: 1px solid #ccc;
    padding: 15px 0;
    position: relative;
}

.tc_list > li:first-child{
    border-top: none;
}

.tc_list > li > a{
    display: block;
    margin-right: 30px;
    color: #3a3a3a;
}

.tc_delete{
    display: block;
    position: absolute;
    top: 14px;
    right: 0;
    
}

.tc_delete a{
    color: #3a3a3a;
}

@media screen and (max-width: 1000px){
    #search{
        display: none;
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        padding: 10px;
        width: auto;
        margin-top: 0 !important;
    }

    #search_short{
        display: block;
    }

    .menue-icon{
        display: block;
    }

    .service-hotline{
        display: none;
    }

    /* #top-bar .not-mobile .left{
        float: none;
        width: auto;
    } */

    #lieferland_box{
        border-right: none;
        margin-right: 0;
    }

    #top-navi{
        display: block;
        text-align: center;
    }
}

@media screen and (max-width: 700px){
    #top-bar .not-mobile{
        display: none;
    }

    #top-bar .mobile{
        display: block;
    }

    #cart_short{
        display: none;
    }

    #search_short{
        display: none;
    }
}

@media screen and (max-width: 560px){
    #wishlist_short{
        display: none;
    }
}

@media screen and (max-width: 460px){
    #account_short{
        display: none;
    }

    #fixed-bar-placeholder{
        height: 104px;
    }

    a#logo{
        margin-top: 0;
    }
}

/*Paginator*/
.pagination_bar{
    background-color: #f6f6f6;
    padding: 10px;
    margin: 15px 0;
    font-size: 14px;
}

.pagination_text{
    float: left;
    line-height: 30px;
}

.pagination_list{
    float: right;
    line-height: 30px;

}

.pagination_list ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.pagination_list ul li{
    display: inline-block;
    min-width: 30px;
    height: 30px;
    vertical-align: middle;
    border: 1px solid #ccc;
    margin: 0 5px;
    text-align: center;
    line-height: 30px;
    background-color: #fff;
}

.pagination_list ul li.plain{
    margin-right: 10px;
    border: none;
    background-color: transparent;
}

.pagination_list ul li.current{
    background-color: #FFAE00;
    color: #fff;
}

.pagination_list ul li a{
    display: block;
    min-width: 30px;
    min-height: 30px;
    color: #3a3a3a;
    line-height: 30px;
}

@media screen and (max-width: 430px){
    .pagination_list{
        float: none;  
        text-align: center;      
    }

    .pagination_list ul li.plain{
        display: none;
    }
}

.account-order-listing > .item{
    margin-bottom: 15px;
}

.account-order-listing > .item .id{
    float: left;
}

.account-order-listing > .item .date{
    float: right;
}

.account-order-listing > .item .detail-btn{
    float: right;
}

ul.accountlist{
    margin: 0 0 20px 0;
    padding: 0;
    list-style-type: none;
    /* display: inline-block; */
}

ul.accountlist li{
    margin-bottom: 2px;
}

ul.accountlist li a{
    display: block;
    color: #3a3a3a;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    padding: 10px 20px 10px 10px;
}

ul.accountlist li a:hover{
    background-color: #eee;
}

.historylist .item{
    margin: 15px 0;
    padding: 15px 0 0 0;
    border-top: 1px solid #ccc;
}

.historylist .item:first-child{
    margin: 0;
    padding: 0;
    border-top: none;
}

.historylist .item .image{
    float: left;
    width: 80px;
}

.historylist .item .image img{
    display: block;
    width: 100%;
    border: 1px solid #ccc;
}

.historylist .item .content{
    margin-left: 100px;
}

.historylist .item .name a{
    font-weight: bold;
    color: #3a3a3a;
    font-size: 1.1rem;
}

.historylist .item .category{
    margin: 10px 0;
}

.historylist .item .category a{
    color: #3a3a3a;
}

@media screen and (max-width: 900px){
    #account-page > .grid.col-50-50{
        display: block;
    }  

    #account-page > .grid.col-50-50 .col{
        float: none;
    }
}

.breadcrumb{
    background-color: #fff;
    color: #3a3a3a;
    padding: 5px 15px;
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc;
    text-align: center;
    font-size: 12px;
    line-height: 16px;
}
.breadcrumb >span > span{
    /* display: inline-block; */
    padding: 5px 0;
}

.breadcrumb a{
    color: #3a3a3a;
}

.breadcrumb i{
    margin: 0 5px;
}

.breadcrumb > span:first-child > i:first-child{
    display: none;
}

.breadcrumb .current{
    display: none;
}

.breadcrumb .current.show{
    display: inline;
}

.popupcontent, .popupprint{
    background-color: #fff;
}

.graduated_prices .gp_headline{
    background-color: #3a3a3a;
    color: #fff;
    padding: 5px 10px;
}

.graduated_prices .gp_box{
    padding: 5px 10px;
    border: solid #ccc;
    border-width: 0 1px 1px 1px;
}

.gp_title{
    display: inline-block;
    width: 100px;
}

.gp_price{
    display: inline-block;
}

.subcategory_heading{
    display: none;
}

.default_address_wrap{
    display: grid;
    grid-template-columns: 300px 3fr;
    gap: 20px;
}

.default_address_wrap .left{
    grid-column: 1;
    grid-row: 1;
}

.default_address_wrap .right{
    grid-column: 2;
    grid-row: 1;
    max-width:500px;
}

@media screen and (max-width: 700px){
    .default_address_wrap{
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .default_address_wrap .left{
        grid-column: 1;
        grid-row: 2;
    }
    
    .default_address_wrap .right{
        grid-column: 1;
        grid-row: 1;
    }
}

 
#wk_popup{
    display: block;
    max-width: 1040px;
}

.wk_popup_produkt_bild{
    display: block;
    float: left;
    width: 130px;
}

.wk_popup_produkt_bild img{
    display: block;
    width: 100%;
    border: 1px solid #ccc;
}

.wk_popup_produkt_daten{
    margin-left: 150px;
    font-size: 1em;
    line-height: 1.5em;
}

.wk_popup_produkt_name{
    font-weight: bold;
    margin-bottom: 20px;
}

.wk_popup_produkt_zusatz table{
    width: auto;
}

.wk_popup_produkt_zusatz table tr td{
    padding: 3px 0 3px 20px;
}

.wk_popup_produkt_zusatz table tr td:first-child{
    padding-left: 0;
}

@media screen and (max-width: 500px){
    #wk_popup .btn-row *.btn{
        width: 100%;
    }
}

.passende_produkte_mobil{
    display: block;
}

.passende_produkte_nicht_mobil{
    display: none;
}

/* @media screen and (max-width: 800px){
    .passende_produkte_mobil{
        display: block;
    }

    .passende_produkte_nicht_mobil{
        display: none;
    }
} */

table td.small{
    white-space: nowrap;
    width: 1px;
}

.nowrap{
    white-space: nowrap;
}

.goressentabelle_auswahl table{
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.goressentabelle_auswahl table td{
    border: 1px solid #ccc;
    padding: 5px 10px;
}

.goressentabelle_auswahl table tbody tr td:first-child{
    background-color: #e5e5e5;
    color: #3A3A3A;
    font-weight: bold;
}

.goressentabelle_auswahl table thead tr td
{
    background-color: #404040;
    color: #fff;
    font-weight: bold;
}


.footer-boxes{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.footer-boxes > .box{
    border: 1px solid #ccc;
}

.footer-boxes > .box > *.inner{
}

.footer-boxes > .box > .inner .head{
    /* font-family: 'roboto_condensedbold', Arial sans-serif; */
    background-color: #404040;
    color: #fff;
    text-align: center;
    padding: 15px;
}

.footer-boxes > .box > .inner > .content{
    padding: 10px;
}

.footer-boxes > .box > .inner > .content.no-padding{
    padding: 0;
}

@media screen and (max-width: 1100px){
    .footer-boxes{
        grid-template-columns: 1fr;
    }

    .footer-boxes > .box{
        width: 500px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 750px){
    .footer-boxes{
        grid-template-columns: 1fr;
    }

    .footer-boxes > .box{
        width: 100%;
    }
}

.footer-boxes .groessentabelle_box{
    text-align: center;
}

.groessentabelle_box img{
    display: inline-block;
    width: 44%;
    margin-right: 5%;
    margin-bottom: 10px;
}

.versand_uebersicht{
    max-width: 700px;
}

table.versandkosten{
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

table.versandkosten thead td{
    padding: 10px;
    background-color: #FFAE00;
    color: #fff;
    border: 1px solid #ccc;
    font-family: 'roboto_condensedbold', Arial sans-serif;
}

table.versandkosten tbody td{
    border: 1px solid #ccc;
    padding: 5px 10px;
}

table.versandkosten tbody tr td:first-child{
    font-family: 'roboto_condensedbold', Arial sans-serif;
    white-space: nowrap;
    width: 1px;
}

@media screen and (max-width: 500px){
    table.versandkosten{
        font-size: 0.89rem;
    }
}

.versand_select .head{
    padding: 10px;
    background-color: #3A3A3A;
    color: #fff;
    text-align: center;
}

.versand_select .item{
    display: block;
    float: left;
    width: 33.33%;
    background-color: #f5f5f5;
    color: #aaa;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    border: 1px solid #fff;
}

.versand_select{
    margin-bottom: 20px;
}

.versand_select .item:not(.active):hover{
    background-color: #e5e5e5;
    color: #666;
}

.versand_select .item.active{
    background-color: #FFAE00;
    color: #fff;
    font-family: 'roboto_condensedbold', Arial sans-serif;
}

.dhl_content, 
.gls_content,
.spedition_content{
    display: none;
}

.gls_content{
    display: block;
}

#faq_form{
    display: none;
    max-width: 600px;
}

.faq-listing{

}

.faq-item{
    margin-bottom: 20px;
}

.faq-frage{
    font-family: 'roboto_condensedbold';
    padding: 5px;
}

.faq-frage:before{
    content:"\f059";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    margin-right: 5px;
    color: #FFAE00;
}

.faq-antwort{
    padding: 10px;
    border-left: 3px solid #FFAE00;
    margin-left: 12px;
    background-color: #f0f0f0;
}

.faq-listing .faq-item:nth-child(2n) .faq-frage:before{
    color: #3a3a3a;

}

.faq-listing .faq-item:nth-child(2n) .faq-antwort{
    border-left: 3px solid #3a3a3a;
}

#canvas_wrap, #blechpreview{
    position: relative;
}

.blechprofil-toggle-label-type{
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    padding: 5px; 
    border: 1px solid #ccc;
    background-color: #fff;
    font-size: 14px;
    line-height: 20px;
    border-radius: 7px;
}

.blechprofil-toggle-label-type.active{
    background-color: #FFAE00;
    color: #fff;
}

.blechprofil-toggle-label-type:after{
    content: 'Maße anzeigen';
}

.attr_select_wrap{
    width: 31.3%;
    display: inline-block;
    margin: 1%;
    vertical-align: top;
}

.productoptions.two-columns .attr_select_wrap{
    width: 48%;
}

.attr_select_wrap > .name{
    background-color: #3a3a3a;
    color: #fff;
    padding: 9px 10px 10px 10px;
    text-align: center;
    font-family: 'roboto_regular', Arial sans-serif;
}

.attr_select_wrap > .desc{
    display: none;
}

.attr_select_wrap > .attr_select select{
    width: 100%;
    font-size: 16px;
    padding: 8px 20px 9px 7px;
    /* border: 1px solid #ccc; */
}

.attr_select_wrap > .attr_select select option[disabled]{
    background-color: #fff !important;
    color: #ccc !important;
}

.plus-min-inp, .ind_laenge_inp{
    width: 48%;
    display: inline-block;
    margin: 1%;
}

.plus-min-inp > .inner .title,
.ind_laenge_inp > .inner .title{
    background-color: #3a3a3a;
    color: #fff;
    padding: 9px 10px 10px 10px;
    text-align: center;
    float: left;
    width: 45%;
    height: 54px;
}

.plus-min-inp > .inner .title .name,
.ind_laenge_inp > .inner .title .name{
    font-family: 'roboto_regular', Arial sans-serif;
}

.plus-min-inp > .inner .title .range,
.ind_laenge_inp > .inner .title .range{
    font-size: 12px;
    color: #ccc;
}

.plus-min-inp > .inner .inp-wrap,
.ind_laenge_inp > .inner .inp-wrap{
    position: relative;
    float: left;
    width: 55%;
    height : 54px;
}

.plus-min-inp > .inner .inp-wrap .min,
.ind_laenge_inp > .inner .inp-wrap .min{
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 40px;
    text-align: center;
    line-height: 54px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;

}

.plus-min-inp > .inner .inp-wrap .inp,
.ind_laenge_inp > .inner .inp-wrap .inp{
    margin: 0 40px;  
}

.plus-min-inp > .inner .inp-wrap .inp input,
.ind_laenge_inp > .inner .inp-wrap .inp input{
    text-align: center;  
    font-size: 14px;
    height: 54px;
}

.plus-min-inp > .inner .inp-wrap .plus,
.ind_laenge_inp > .inner .inp-wrap .plus{
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 40px;
    text-align: center;
    line-height: 54px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
}

@media screen and (max-width: 1050px){
    .plus-min-inp,
    .ind_laenge_inp{
        width: 100%;
        display: inline-block;
        margin: 0 0 0 0;
    }

    .plus-min-inp > .inner .inp-wrap .inp input,
    .ind_laenge_inp > .inner .inp-wrap .inp input{
        font-size: 16px;
    }

    .attr_select_wrap,
    .productoptions.two-columns .attr_select_wrap{
        width: 100%;
        display: inline-block;
        margin: 0 0 0 0;
        height: 40px;
    }

    .productoptions.two-columns .attr_select_wrap{
        margin: 0 0 5px 0;
    }

    .attr_select_wrap .name{
        float: left;
        width: 45%;
        height: 100%;
        padding: 10px 10px 10px 10px
    }

    .attr_select_wrap .attr_select{
        float: left;
        width: 55%;
        height: 100%;
    }
}

.hidden-attr-inp{
    display: none;
}


.blechprofil-switch-modal{
    width: 96%;
    max-width: 800px;
}

.short-product-info .image{
    float: left;
    width: 200px;
}

.short-product-info .image img{
    display: block;
    width: 100%;
    border: 1px solid #ccc;
}

.short-product-info .content{
    margin-left: 220px;
}

.short-product-info .content .title{
    font-family: 'roboto_regular', Arial sans-serif;
    font-size: 1.3rem;
}

.short-product-info .content .desc{
    margin: 10px 0;
}

.short-product-info .content .price{
    font-family: 'roboto_regular', Arial sans-serif;
    font-size: 1.3rem;
}

.short-product-info .content .btn-row a{
    width: 190px;
}

@media screen and (max-width: 600px){
    .short-product-info .image{
        float: none;
        width: auto;
        max-width: 200px;
        margin-bottom: 20px;
    }
    
    .short-product-info .content{
        margin-left: 0;
    }

    .short-product-info .content .btn-row a{
        width: 100%;
    }
}

.dachrinnen_ermittler_modal{
    max-width: 500px;
}

#dachrinnenermittler > .title{
    font-family: 'roboto_condensedbold', Arial sans-serif;
    font-size: 1.3rem;
    margin: 5px;
    text-align: center;
}

#dachrinnenermittler > .content{
    padding: 10px;
}

#dachrinnenermittler .form-row{
    margin-bottom: 11px;
}

#dachrinnenermittler .btn-row{
    margin-top: 0;
}

#dachrinnenermittler .btn-row a{
    margin-bottom: 0;
}

/* FAQ */
.faq_listing{

}

.faq-iten{
    margin-top: 20px;
}

.faq-title{
    font-size: 1.2rem;
    font-family: 'roboto_regular', Arial sans-serif;
    padding: 10px 10px 10px 0;
    border-bottom: 1px solid #ccc;
}

.faq-desc{
    padding: 10px 10px 10px 0;
    line-height: 1.5rem;
}
/* FAQ Ende */

*.plisting_canvas_wrap{
    display: block;
    position: relative;
}

*.plisting_canvas_wrap.in_cart_popup{
    float: left;
    border: 1px solid #ccc;
    margin-right: 10px;
}

.label-view-type{
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    border: 1px solid #ccc;
    padding: 5px;
    font-size: 14px;
    border-radius: 10px;
    cursor: pointer;
}

#main-navi{
    position: relative;
    z-index: 500;
    background-color: #eee;
    z-index: 1;
}

#main-navi > ul{
    margin: 0 auto;
    max-width: 1300px;
    padding: 0;
    list-style-type: none;
    display: flex;
    justify-content: center;
}

#main-navi > ul > li{
    position: relative;
    border-left: 1px solid #ccc;
    vertical-align: middle;
    display: flex;
    align-items: center;
}

#main-navi > ul > li:first-child{
    border-left: none;
}

#main-navi > ul > li:hover{
    background-color: #404040;
    color: #fff;

}

#main-navi > ul > li > a{
    display: inline-block;
    vertical-align: middle;
    color: #404040;
    padding: 10px 70px 10px 20px;
    font-family: 'roboto_condensedbold', Arial sans-serif;
    text-transform: uppercase;
    font-size: 1.1em;
}

#main-navi > ul > li:hover > a{
    color: #fff;
}

#main-navi > ul > li > .arrow{
    position: absolute;
    top: 50%;
    right: 20px;
    font-size: 2em;
    transform: translateY(-50%);
}

#main-navi > ul > li > ul{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    margin: 0;
    padding: 0;
    list-style-type: none;
    border-top: 1px solid #ccc;
}

#main-navi > ul > li > ul.right{
    left: auto;
    right: 0;
}

#main-navi > ul > li:hover > ul{
    display: flex;
}

#main-navi > ul > li > ul > li{
    border-left: 1px solid #ccc;
    padding: 15px;
    width: 140px;
}

#main-navi > ul > li > ul > li:first-child{
    border-left: none;
}

#main-navi > ul > li > ul > li:hover{
    background-color: #ffae00;
}

#main-navi > ul > li > ul > li > a{
    color: #404040;
}

#main-navi > ul > li > ul > li:hover a{
    color: #fff;
}

#main-navi > ul > li > ul > li > a .name{
    display: block;
    text-align: center;
    text-transform: uppercase;
    font-family: 'roboto_condensedbold', Arial sans-serif;
    margin-bottom: 5px;
    white-space: nowrap;
}

#main-navi > ul > li > ul > li > a .image{
    display: block;
    width: 100px;
    height: 100px;
    border: 1px solid #ccc;
    background-color: #fff;
    margin: 0 auto;
}

#main-navi > ul > li > ul > li > a .image img{
    display: block;
    width: 100%;
}

@media screen and (max-width:820px){
    #main-navi{
        display: none;
    }
}

.index-boxes{
    margin-left: -40px;
}

.index-box{
    display: inline-block;
    width: 33.3%;
    vertical-align: top;
    max-width: 500px;
}

.index-box > a{
    display: block;
    margin-left: 40px;
    color: #fff;
}

.index-box .title{
    background-color: #404040;
    text-align: center;
    padding: 15px;
}

.index-box .image{
    position: relative;
    border: solid #ccc;
    border-width: 0 1px 1px 1px;
}

.index-box .image img{
    position: relative;
    display: block;
    width: 100%;
}

.index-box .image .image-overlay{
    position: absolute;
    bottom: 30px;
    left: 0;
    padding: 10px;
    background-color: #ffae00;
    font-size: 1.4rem;
    font-family: 'roboto_condensedbold';
}

@media screen and (max-width: 1000px){
    .index-box{
        width: 100%;
        margin-bottom: 30px;
    }
}

.rating-icons > i.fas.fa-star{
    display: inline-block;
    width: auto;
    color: #FFAE00;
}

.rating-icons > i.far.fa-star{
    color: #aaa;
}

.stars-rating > .star{
    display: inline-block;
    cursor: pointer;
    font-size: 1.5rem;
}

.stars-rating > .star:after{
    content: "\f005";
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    color: #ccc;
}

.stars-rating > .star.filled:after,
.stars-rating > .star.hovered:after{
    font-weight: 600;
    color: #FFAE00;
}

.author-block, .rating-block{
    display: inline-block;
    margin-right: 30px;
    vertical-align: top;
}

.rating-block .stars-rating{
    padding-top: 2px;
}

.review-listing > .item{
    margin-top: 15px;
}

.review-listing > .item:first-child{
    margin-top: 0;
}

.review-listing > .item .review-head{
    background-color: #404040;
    color: #fff;
    padding: 5px 10px;
}

.review-listing > .item .review-content{
    padding: 5px 10px;
    border: solid #ccc;
    border-width: 0 1px 1px 1px;
}

.review-listing > .item .autor{
    float: left;
}

.review-listing > .item .rating{
    float: right;
}

.review-listing > .item .rating .rating-icons .far.fa-star{
    color: #888;
}

.product-randdaten > .item > .pd_rating_icons{
    display: inline-block;
}

.pd_rating_icons .fas.fa-star{
    color: #FFAE00;
}

.pd_rating_icons .far.fa-star{
    color: #aaa;
}

.headline_right{
    display: block;
    float: right;
}

.hinweis-box{
    border: 1px solid #ccc;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #f8f8f8;
}

.abweichendes-bild:after{
    content: "Produkt kann von der Abbildung abweichen";
    display: block;
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 12px;
    line-height: 18px;
    color: #aaa;
}

.image-grid-box{
    display:grid;
    grid-template-columns: 1fr 1fr;
}

.image-grid-box *.big-box img{
    display: block;
    width: 100%;
    position: relative;
    z-index: 0;
}

.image-grid-box *.small-box img{
    display: block;
    width: 100%;
    position: relative;
    z-index: 0;
}

.image-grid-box *.big-box,
.image-grid-box *.small-box{
    position: relative;
    color: #404040;
}

.image-grid-box *.big-box.bg2,
.image-grid-box *.small-box.bg2{
    background-color: #FFAE00;
    color: #fff;
}

.image-grid-box *.small-box .box-content{
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    max-height: 100%;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

.image-grid-box *.small-box .box-content h3{
    margin: 0 0 10px 0;
    font-family: 'roboto_condensedbold';
}

.image-grid-box *.small-box .box-content p{
    margin: 0 0 10px 0;
    line-height: 1em;
}

.image-grid-box .small-boxes{
    display:grid;
    grid-template-columns: 1fr 1fr;
}

.image-grid-box *.btn, .image-grid-box input[type=submit]{
    padding: 5px 15px;
}

@media screen and (max-width: 700px){
    .image-grid-box{
        grid-template-columns: 1fr;
    }
}

@media screen and (min-width: 1000px){
    .image-grid-box *.small-box .box-content{
        font-size: 1.3em;
    }

    .image-grid-box *.small-box .box-content p{
        margin: 0 0 15px 0;
    }
}

.pflicht{
    font-size: 12px;
}
.plisting-color-changer{
    text-align: left;
}

.plisting-color-changer .color-item{
    display: inline-block;
    margin: 0 2px;
    border: 1px solid #ccc;
    width: 24px;
    height: 24px;
}

@media screen and (max-width: 450px){
    .plisting-color-changer .color-item{
        width: 20px;
        height: 20px;
    }
}

.video-wrap {
    position: relative;
}

.video-wrap.show-video {
    padding-bottom: 56.25%;  /*16:9 */
    padding-top: 0;
    height: 0;
}

.video-wrap .video-thumb{
    cursor: pointer;
}

.video-wrap .video-thumb i{
    display: inline-block;
    font-size: 3em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.video-thumb img{
    display: block;
    width: 100%;
}

.video-wrap.show-video .video-thumb{
    display: none;
}

.video-wrap iframe{
    display: none;
}

.video-wrap.show-video iframe {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video_listing{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.video-iten{
    position: relative;
}

.video-iten .title{
    /* background-image:linear-gradient(#555, black); */
    background-color: #FFAE00;
    color: #fff;
    padding: 10px 10px 10px 10px;
    text-align: center;
}


.file-listing{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.file-listing > a{
    display: block;
    border: 1px solid #ccc;
    color: #404040;
    padding: 5px 30px 5px 10px;
    position: relative;
}

.file-listing > a:after{
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.file-listing > a:hover{
    background-color: #f0f0f0;
}

@media screen and (max-width: 600px){
    .file-listing, .video_listing{
        grid-template-columns: 1fr;
    }
}

*.shopbewertung_big_box{
    display: block;
    background-color: #f6f6f6;
    text-align: center;
    color: inherit;
}

*.shopbewertung_big_box .stars{
    font-size: 1.5em;
    margin-bottom: 10px;
}

*.shopbewertung_big_box .stars .rating-icons{
    display: flex;
    gap: 10px;
    justify-content: center;
}

*.shopbewertung_big_box .review_text{
    margin-bottom: 10px;
}

*.shopbewertung_big_box .customer_name{
    font-size: 0.8em;
    margin-bottom: 30px;
}

.shopbewertung_small_box{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shopbewertung_small_box > .title{
    background-color: #FFAE00;
    color: #fff;
    text-align: center;
    font-size: 1.2rem;
    padding: 10px;
    font-family: 'roboto_condensedbold';
}

.shopbewertung_small_box .average{
    padding-top: 15px;
}

.shopbewertung_small_box .stars{
    font-size: 1.3em;
}

.shopbewertung_small_box .gesamt{
    padding-top: 5px;
}

.shopbewertung_small_box .btn.full{
    position: absolute;
    bottom: 15px;
    left: 5%;
    width: 90%;
}

.shopbewertung_small_box .customer_name{
    margin-top: 5px;
    font-size: 12px;
    margin-bottom: 18px;
    padding-left: 20px;
    text-align: left;
}

.shopbewertung_small_box .review_text{
    font-size: 14px;
    color: #555;
    line-height: 1.3em;
    background-color: #f5f5f5;
    padding: 10px;
    margin: 0 5%;
    border-radius: 10px;
    position: relative;
    text-align: left;
}

.shopbewertung_small_box .review_text::before {
    width: 0; 
    height: 0; 
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 15px solid #f5f5f5;
    content: "";
    position: absolute;
    top: -15px;
    left: 10px;
}

@media screen and (max-width: 1300px){
    .shopbewertung_small_box .customer_name, .shopbewertung_small_box .review_text{
        display: none;
    }
}

.mobile_cart_icon{
    display: inline-block;
    position: relative;
}

.mobile_cart_icon .number{
    position: absolute;
    top: 0;
    right: 0;
    background-color: #FFAE00;
    color: #fff;
    text-align: center;
    line-height: 15px;
    border-radius: 8px;
    font-size: 11px;
    min-width: 15px;
    height: 15px;
}

form[name="newsletter_abmelden_formr"]{
    max-width: 500px;
}

.small-sumo-select .SumoSelect{
    width: auto;
}

.with-sumo-select{
    line-height: 30px;
}

.with-sumo-select > span{
    display: inline-block;
    vertical-align: middle;
}
.productoptions.click-attika{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}
.productoptions.click-attika > *{
    display: block;
    width: auto;
    margin: 0;
}

.productoptions.click-attika > .ind_laenge_inp > .inner .title,
.productoptions.click-attika > .ind_laenge_inp > .inner .inp-wrap{
    float: none;
    width: 100%;
}

.productoptions.click-attika > .ind_laenge_inp > .inner .title{
    padding: 9px 10px 10px 10px;
    height: auto;
}

.productoptions.click-attika > .ind_laenge_inp > .inner .title .range{
    display: none;
}

.productoptions.click-attika > .ind_laenge_inp > .inner .inp-wrap,
.productoptions.click-attika > .ind_laenge_inp > .inner .inp-wrap .inp input{
    height: 41px
}

.productoptions.click-attika > .ind_laenge_inp > .inner .inp-wrap .min, 
.productoptions.click-attika > .ind_laenge_inp > .inner .inp-wrap .plus{
    line-height: 42px;
}
.plus-min-inp > .inner .inp-wrap .min.disabled, 
.plus-min-inp > .inner .inp-wrap .plus.disabled,
.productoptions.click-attika > .ind_laenge_inp > .inner .inp-wrap .min.disabled, 
.productoptions.click-attika > .ind_laenge_inp > .inner .inp-wrap .plus.disabled{
    color: #bbb;
    cursor: not-allowed;
}

@media screen and (max-width: 1050px){
    .productoptions.click-attika{
        grid-template-columns: 1fr;
    }
}

#new_address_block{
    display: none;
    max-width: 620px;
}

.SumoSelect > .optWrapper > .options{
    overflow-x: hidden;
}

.SumoSelect > .optWrapper > .options li label{
    min-width: 200px;
}

.tab_content[data-tab="tags"] .content{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.kurzinfo{
    background-color: #f5f5f5;
}

.kurzinfo_head{
    background-color: #FFAE00;
    color: #fff;
    padding: 5px 10px;
}

.kurzinfo_content{
    padding: 10px;
}

#betongaragen-konfigurator input[type=submit]{
    background-color: #FFAE00;
}

#typ-auswahl{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media screen and (max-width: 550px){
    #typ-auswahl{
        grid-template-columns: 1fr;
    }
}

#typ-auswahl > .item{
    cursor: pointer;
    border: 1px solid #ccc;
    text-align: center;
    position: relative;
}

#typ-auswahl > .item.active,
#typ-auswahl > .item:hover{
    border-color: #FFAE00;
    background-color: #f5f5f5;
}

#typ-auswahl > .item .image img{
    display: inline-block;
    max-width: 100%;
}

#typ-auswahl > .item .title{
    font-size: 1.5em;
    padding-top: 20px;
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
}

.step-btn{
    margin-top: 20px;
    display:flex;
    gap:20px;
}

.step-content{
    display: none;
}

.step-content.active{
    display: block;
}

a.btn.disabled{
    opacity: 0.5;
    cursor: not-allowed;
}

#aussenmass-image img{
    display: block;
    max-height: 400px;
    width: auto;
    max-width: 100%;
    height: auto;
}

.bgk-masse-row{
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.bgk-masse-row > *{
    padding: 0 5px 10px 10px;
    line-height: 40px;
}

#bgk-masse-inputs .bgk-masse-row:nth-child(2) > *{
    padding: 10px 5px 10px 10px;
}

.bgk-masse-row.head > *{
    background-color: #6E6E6E;
    color: #fff;
    font-weight: bold;
    line-height: normal;
    padding: 10px 5px 10px 10px;
}

.bgk-masse-label{
    font-weight: bold;
}

#mauermass-eingabe{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media screen and (max-width: 700px){
    #mauermass-eingabe{
        grid-template-columns: 1fr;
    } 
}

#mauermass-image > div{
    position: relative;
}

#mauermass-image img{
    display: block;
    width: 100%;
}

.bgk-needed_product_item{
    display: grid;
    grid-template-columns: 80px 1fr;
}

.bgk-needed_product_item > *{
    padding: 10px;
}

.bgk-product_name{
    font-weight: bold;
}

.bgk-attributes{
    font-size: 0.8em;
}

.bgk_products .item{
    display: grid;
    grid-template-columns: 80px 1fr;
    background-color: #eee;
}

.bgk_products .item > *{
    padding: 5px 10px;
}

.bgk_products .item.head{
    background-color: #404040;
    color: #fff;
}

.bgk_products .item:not(.head):nth-child(2n){
    background-color: #ddd;
}

.bgk_preis{
    margin-top: 20px;
    font-size: 2em;
    font-weight: bold;
}

#bgk_nav{
    margin-bottom: 30px;
}
#bgk_nav ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 10px;
}
#bgk_nav ul li{
    display: block;
    position: relative;
    min-height: 39px;
    min-width: 39px;
    float: left;
    cursor: pointer;
}
#bgk_nav ul li a{
    display:block;
    color: #3a3a3a;
}
#bgk_nav ul li:first-child{
    margin-left: 0;
}
#bgk_nav ul li.active{
    font-family: 'roboto_condensedbold', Arial sans-serif; 
}
#bgk_nav ul li .nr{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 39px;
    height: 100%;
    background-color: #3a3a3a;
    text-align: center;
    line-height: 41px;
    color: #fff;
    border-right: 1px solid #e5e5e5;
}
#bgk_nav ul li.active .nr{
    background-color: transparent;
}
#bgk_nav ul li .title{
    background-color: #e5e5e5;
    padding: 10px 10px 10px 49px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
#bgk_nav ul li.active .title{
    color: #fff;
    background-color: #ffae00;
}
#bgk_nav ul li .desc{
    display: none;
    font-size: 0.8em;
}

@media screen and  (max-width: 1050px){
    #bgk_nav ul li .title{
        padding-top: 49px;
        padding-left: 10px;
        text-align: center;
    }
    #bgk_nav ul li .nr{
        width: 100%;
        height: 39px;
        border-bottom: 1px solid #e5e5e5;
        border-right: none;
    }
}

@media screen and (max-width: 700px){
    #bgk_nav ul{
        display: block;
    }
    #bgk_nav ul > li:not(.active) .title{
        display: none;
    }
    #bgk_nav ul > li > .nr{
        width: 39px;
        height: 100%;
        border-bottom: none;
        border-right: none;
        height: 40px;
    }
    #bgk_nav ul li:not(.active) .nr{
        width: 100%;
    }

    #bgk_nav ul li.active .nr{
        background-color: #FFAE00;
    }
    #bgk_nav ul li .title{
        display: none;
        padding-top: 8px;
        padding-bottom: 7px;
        padding-left: 49px;
        text-align: left;
        height: 40px;
    }
}

#bgk-form-items{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    gap : 20px;
}

#bgk-form-items > .item{
    cursor: pointer;
}

#bgk-form-items > .item > .image img{
    display: block;
    width: 100%;
}

#bgk-form-items > .item > .image{
    border: 1px solid #ccc;
}

#bgk-form-items > .item > .title{
    background-color: #404040;
    color: #fff;
    text-align: center;
    padding: 0.3em;
}

#bgk-form-items > .item.active > .title{
    background-color: #FFAE00;
}

@media screen and (max-width: 1000px){
    #bgk-form-items{
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media screen and (max-width: 700px){
    #bgk-form-items{
        grid-template-columns: 1fr 1fr;
    }
}

.hinweis{
    border-left: 5px solid #FFAE00;
    padding: 15px;
    background-color: #eee;
}

#aussenmass-form{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media screen and (max-width: 650px){
    #aussenmass-form{
        grid-template-columns: 1fr;
    }
}

#aussenmass-form .form-row{
    max-width: 300px;
}

.mauer_label_btn{
    position: absolute;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
}

.mauer_label_btn.active{
    background-color: #FFAE00;
}

.m1_btn{
    top: 50%;
    left: 13%;
}

.m2_btn{
    top: 13%;
    left: 30%;
}

.m3_btn{
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
}

.m4_btn{
    bottom: 4%;
    left: 30%;
}

.m5_btn{
    top: 13%;
    right: 30%;
}

.m6_btn{
    top: 50%;
    right: 13%;
}

.m7_btn{
    bottom: 4%;
    right: 30%;
}

#mauermass-image[data-typ=einzel] .m1_btn{
    top: 50%;
    left: 30.5%;
}
    
#mauermass-image[data-typ=einzel] .m2_btn{
    top: 13%;
    left: 50%;
    transform: translateX(-50%);
}

#mauermass-image[data-typ=einzel] .m3_btn{
    top: 50%;
    right: 28%;
    left: auto;
}

#mauermass-image[data-typ=einzel] .m4_btn{
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);

}

/* Layout 1 */
#mauermass-image[data-typ="1"] .m1_btn{
    display: flex;
    top: 55%;
    left: 50%;
    transform: translateX(-50%);
}

#mauermass-image[data-typ="1"] .m2_btn{
    display: none;
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
}

#mauermass-image[data-typ="1"] .m3_btn{
    display: none;
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
}

#mauermass-image[data-typ="1"] .m4_btn{
    display: none;
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
}

#mauermass-image[data-typ="1"] .m5_btn{
    display: none;
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
}

#mauermass-image[data-typ="1"] .m6_btn{
    display: none;
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
}
/*ENDE Layout 1 */

/* Layout 2 */
#mauermass-image[data-typ="2"] .m1_btn{
    display: flex;
    top: 55%;
    left: 40.5%;
    transform: translateX(-50%);
}

#mauermass-image[data-typ="2"] .m2_btn{
    display: flex;
    bottom: 15.5%;
    top: auto;
    left: 60%;
    transform: translateX(-50%);
}

#mauermass-image[data-typ="2"] .m3_btn{
    display: none;
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
}

#mauermass-image[data-typ="2"] .m4_btn{
    display: none;
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
}

#mauermass-image[data-typ="2"] .m5_btn{
    display: none;
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
}

#mauermass-image[data-typ="2"] .m6_btn{
    display: none;
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
}
/*ENDE Layout 2 */

/* Layout 3 */
#mauermass-image[data-typ="3"] .m1_btn{
    display: flex;
    top: 55%;
    left: 30.5%;
    transform: translateX(-50%);
}

#mauermass-image[data-typ="3"] .m2_btn{
    display: flex;
    bottom: 16%;
    left: 44%;
    transform: translateX(-50%);
    top: auto;
}

#mauermass-image[data-typ="3"] .m3_btn{
    display: flex;
    left: 70%;
    transform: translateX(-50%);
    top: 50%;
}

#mauermass-image[data-typ="3"] .m4_btn{
    display: none;
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
}

#mauermass-image[data-typ="3"] .m5_btn{
    display: none;
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
}

#mauermass-image[data-typ="3"] .m6_btn{
    display: none;
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
}
/*ENDE Layout 3 */

/* Layout 4 */
#mauermass-image[data-typ="4"] .m1_btn{
    display: flex;
    top: 16%;
    left: 45%;
    transform: translateX(-50%);
}

#mauermass-image[data-typ="4"] .m2_btn{
    display: flex;
    top: 58%;
    left: 70%;
    transform: translateX(-50%);
}

#mauermass-image[data-typ="4"] .m3_btn{
    display: flex;
    bottom: 8.5%;
    left: 46%;
    transform: translateX(-50%);
    top: auto;
}

#mauermass-image[data-typ="4"] .m4_btn{
    display: flex;
    top: 58%;
    left: 30.5%;
    transform: translateX(-50%);
}

#mauermass-image[data-typ="4"] .m5_btn{
    display: none;
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
}

#mauermass-image[data-typ="4"] .m6_btn{
    display: none;
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
}
/*ENDE Layout 4 */

/* Layout 5 */
#mauermass-image[data-typ="5"] .m1_btn{
    display: flex;
    top: 12%;
    left: 32%;
    transform: translateX(-50%);
}

#mauermass-image[data-typ="5"] .m2_btn{
    display: flex;
    top: 54%;
    left: 50%;
    transform: translateX(-50%);
}

#mauermass-image[data-typ="5"] .m3_btn{
    display: flex;
    bottom: 12%;
    left: 67%;
    transform: translateX(-50%);
    top: auto;
}

#mauermass-image[data-typ="5"] .m4_btn{
    display: none;
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
}

#mauermass-image[data-typ="5"] .m5_btn{
    display: none;
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
}

#mauermass-image[data-typ="5"] .m6_btn{
    display: none;
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
}
/*ENDE Layout 5 */

/* Layout 6 */
#mauermass-image[data-typ="6"] .m1_btn{
    display: flex;
    top: 72%;
    left: 25%;
    transform: translateX(-50%);
}

#mauermass-image[data-typ="6"] .m2_btn{
    display: flex;
    top: 49%;
    left: 42%;
    transform: translateX(-50%);
}

#mauermass-image[data-typ="6"] .m3_btn{
    display: flex;
    top: 38%;
    left: 50%;
    transform: translateX(-50%);
}

#mauermass-image[data-typ="6"] .m4_btn{
    display: flex;
    top: 16%;
    left: 58%;
    transform: translateX(-50%);
}

#mauermass-image[data-typ="6"] .m5_btn{
    display: flex;
    top: 57%;
    left: 75%;
    transform: translateX(-50%);
}

#mauermass-image[data-typ="6"] .m6_btn{
    display: none;
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
}
/*ENDE Layout 6 */

/* Layout 7 */
#mauermass-image[data-typ="7"] .m1_btn{
    display: flex;
    top: 69%;
    left: 25%;
    transform: translateX(-50%);
}

#mauermass-image[data-typ="7"] .m2_btn{
    display: flex;
    top: 45.5%;
    left: 42%;
    transform: translateX(-50%);
}

#mauermass-image[data-typ="7"] .m3_btn{
    display: flex;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
}

#mauermass-image[data-typ="7"] .m4_btn{
    display: flex;
    top: 12%;
    left: 58%;
    transform: translateX(-50%);
}

#mauermass-image[data-typ="7"] .m5_btn{
    display: flex;
    top: 53%;
    left: 75%;
    transform: translateX(-50%);
}

#mauermass-image[data-typ="7"] .m6_btn{
    display: flex;
    bottom: 12%;
    left: 55%;
    transform: translateX(-50%);
    top: auto;
}
/*ENDE Layout 7 */

#material-auswahl-wrap{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media screen and (max-width: 700px){
    #material-auswahl-wrap{
        grid-template-columns: 1fr;
    }
}

#material-auswahl-wrap p{
    text-align: justify;
}

#material-image img{
    display: block;
    width: 100%;
}

#bgk-befestigung-auswahl{
    display:grid;
    grid-template-columns: 1fr;
    gap: 20px;
}




#bgk-befestigung-auswahl .item{
    border: 1px solid #404040;
    cursor: pointer;
}

#bgk-befestigung-auswahl .item .title{
    background-color: #404040;
    color: #fff;
    text-align: center;
    padding: 0.5em;
}

#bgk-befestigung-auswahl .item .image img{
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

#bgk-befestigung-auswahl .item .desc{
    padding: 20px;
    text-align: justify;
    display: none;
    font-size: 0.9em;
}

#bgk-befestigung-auswahl .item.active{
    border-color: #FFAE00;
}

#bgk-befestigung-auswahl .item.active .title{
    background-color: #FFAE00;
}


.show_desc::after{
    content: "Informationen anzeigen";
}

#bgk-befestigung-auswahl .item .show_desc{
    display: block;
    cursor: pointer;
    background-color: #4d4d4d;
    color: #fff;
    text-align: center;
    margin: 20px 20px 20px 20px;
    padding: 10px;
}

@media screen and (min-width: 600px){
    #bgk-befestigung-auswahl{
        grid-template-columns: 1fr 1fr;
    }

    #bgk-befestigung-auswahl .item .desc{
        display: block;
    }

    #bgk-befestigung-auswahl .item .show_desc{
        display: none;
    }
}

@media screen and (min-width: 1000px){
    #bgk-befestigung-auswahl{
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

#bgk-zusammenfassung-wrap{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media screen and (max-width: 750px){
    #bgk-zusammenfassung-wrap{
        grid-template-columns: 1fr;
    }
}

#bgk-zusammenfassung-image img{
    display: block;
    width: 100%;
}

.step-error.active{
    display: inline-block;
    vertical-align: top;
    padding: 10px 20px;
    background-color: #c50101;
    color: #fff;
    text-align: center;
    font-family: 'roboto_condensedbold';
    font-size: 1rem;
}

#step_2_hinweis_modal_content{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

#step_2_hinweis_modal_content.col-3{
    grid-template-columns: 1fr 1fr 1fr;
}

@media screen and (max-width: 600px){
    #step_2_hinweis_modal_content.col-3{
        grid-template-columns: 1fr;
    }

    #step_2_hinweis_modal_content.col-3 > *{
        max-width: 300px;
        margin: 0 auto;
    }
}

#step_2_hinweis_modal_content img{
    display: block;
    width: 100%;
    border: 1px solid #ccc;
}

#step_2_hinweis_modal_content .title{
    background-color: #404040;
    color: #fff;
    padding: 0.3em 0.3em;
    text-align: center;
    font-size: 0.9em;
}

table.print_product_table{
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
}

table.print_product_table thead td{
    font-weight: bold;
    background-color: #eee;
    border: 1px solid #ccc;
    padding: 5px;
}

table.print_product_table tbody td{
    border: 1px solid #ccc;
    padding: 5px;
    vertical-align: top;
}

table.print_product_table a.prdoducts_name{
    color: #000;
    font-weight: bold;
}

table.print_product_table ul.attributes{
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
}

table td.right{
    text-align: right;
}

#cart_anfrage{
    display: none;
    background-color: #f5f5f5;
    padding: 20px;
}

#cart_anfrage textarea{
    height: 200px;
}

.coupon-ad{
    font-size: 18px;
}

.coupon-ad h2{
    font-size: 3em;
    margin-bottom: 20px;
    line-height: 1.1em;

}

.coupon-add__percent{
    font-size: 1.5em;
    font-family: 'roboto_condensedbold';
    line-height: 1.3em;
    margin-bottom: 15px;

}

.coupon-add__code{
    font-size: 3em;
    font-family: 'roboto_condensedbold';
    color: #cc0000;
    line-height: 1em;
    margin-bottom: 20px;
}

table.maueranfrage_zusammenfassung tr td{
    vertical-align: top;
}

table.maueranfrage_zusammenfassung tr td:first-child{
    font-weight: bold;
}

table.maueranfrage_zusammenfassung tr td:first-child::after{
    content: ":";
}

table.maueranfrage_zusammenfassung tr td:nth-child(2){
    padding-left: 10px;
}

#bgk_nav.mauerabdeckung-step-nav ul{
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

#bgk_nav.mauerabdeckung_anfrage_steps ul{
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.zeichnung-beispiele{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 10px;
}

.zeichnung-beispiele a{
    display: block;
    border: 1px solid #ccc;
    padding: 10px;
}

.zeichnung-beispiele a img{
    display: block;
    width: 100%;
}

@media screen and (max-width: 1000px){
    .zeichnung-beispiele{
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
}

@media screen and (max-width: 500px){
    .zeichnung-beispiele{
        grid-template-columns: 1fr 1fr 1fr;
    }
}

#bgk-banner{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 14rem;
    min-height: 500px;
    background-image: url('img/header/garage_bildwechsel.jpg');
}

#bgk-banner__overlay{
    background-color: rgba(255,255,255,0.7);
    border: 5px solid #FFAE00;
    padding: 30px;
    text-align: center;
    width: 100%;
    max-width: 600px;
}

#bgk-banner__overlay img{
    width: 100%;
    max-width: 400px;
}

#mauerabdeckung-banner{
    text-align: center;
    padding: 30px 10px;
}

#mauerabdeckung-banner__formen{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
    max-width: 800px;
    margin: 0 auto;
}

#mauerabdeckung-banner__formen a{
    border: 1px solid #ccc;
    padding-bottom: 10px;
}

#mauerabdeckung-banner__formen img{
    display: block;
    width: 100%;
}

#mauerabdeckung-banner__formen a span{
    display: block;
    color: #404040;
}

@media screen and (max-width: 500px){
    #mauerabdeckung-banner__formen{
        grid-template-columns: 1fr 1fr;
    }
}



#mauer-konfigurator * {
    box-sizing: border-box;
}

#typ-auswahl.mauerformen{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}  

#typ-auswahl.mauerformen > *.item{
    padding-bottom: 20px;
    color: #3A3A3A;
}

#typ-auswahl.mauerformen > .item .image{
    min-height: 80px;
}

#typ-auswahl.mauerformen > .item .title{
    bottom: 10px;
}

#mauer-endstuecke-inputs{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 10px;
}

#mauer-endstuecke-inputs .title{
    background-color: #6E6E6E;
    color: #fff;
    font-weight: bold;
    line-height: normal;
    padding: 10px 5px 10px 10px;
}

@media screen and (max-width: 800px){
    #typ-auswahl.mauerformen{
        grid-template-columns: 1fr 1fr 1fr;
    }  
}

@media screen and (max-width: 600px){
    #typ-auswahl.mauerformen{
        grid-template-columns: 1fr 1fr;
    }  
}

.nur_auf_anfrage{
    margin: 20px 0;
}

.nur_auf_anfrage > .head{
    background-color: #FFAE00;
    color: #fff;
    padding: 10px;
}

.nur_auf_anfrage > .content{
    background-color: #f5f5f5;
    padding: 10px;
}

.ds_banktransfer_radio_item{
    display: grid;
    grid-template-columns: 30px 1fr;
    margin-bottom: 20px;
}

.ds_banktransfer_radio_item .radio_head{
    font-weight: bold;
}

.prefa_hauskonfigurator{
    padding-bottom: 20px;
}

.prefa_hauskonfigurator img{
    display: block;
    max-width: 100%;
}

.prefa_hauskonfigurator .title{
    background-color: #FFAE00;
    color: #fff;
    padding: 0.5em;
    text-align: center;
}

.prefa_hauskonfigurator p{
    display: none;
}

@media screen and (min-width: 600px){
    .prefa_hauskonfigurator p{
        display: block;
    }
    .prefa_hauskonfigurator img{
        margin-bottom: 10px;
    }
}

.video-image{
    aspect-ratio: 1/1;
}

.video-image a{
    position: relative;
    aspect-ratio: 1/1;
    display: block;
    overflow: hidden; 
    border: 1px solid #ccc;
}

.video-image a .background{
    position: absolute;
    width: 100%;
    height: 100%;
}

.video-image a .background img{
    height: 100%;
    width: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    filter: blur(5px);
    z-index: 0;
}

.video-image a .image{
    position: relative;
    z-index: 1;
    width: 100% !important;
    height: 100%;
    display: flex !important;
    align-items: center;   
}

.video-image a img{
    width: 100%;
    border: solid #ccc !important;
    border-width: 1px 0 !important;
}

.video-image a .video_overlay{
    display: none;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0,0,0,0.2); */
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-image a .video_overlay i:after{
    position: relative;
    content: "\f167";
    font-family: "Font Awesome 5 Brands";
    font-weight: 600;
    font-style: normal;
    color: #ff0000;
    font-size: 2em;
    z-index: 2;
}

.video-image a .video_overlay i:before{
    z-index: 1;
    content: "";
    background-color: #fff;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#global_info{
    background-color: #404040;
    color: #fff;
    padding: 0.7rem;
    text-align: center;
    font-size: 1.2em;
    position: relative;
    z-index: 0;
}

#global_info > .inner{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.alu-color-listing{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.alu-color-listing > .item .color{
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 10px;
    border: 1px solid #ccc;
}

.alu-color-listing > .item .name{
    font-size: 1.1em;
}

.alu-color-listing > .item .ral{
    font-size: 0.8em;
}

@media screen and (max-width: 700px){
    .alu-color-listing{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 500px){
    .alu-color-listing{
        grid-template-columns: repeat(2, 1fr);
    }
}

.title-bar{
    background-color: #404040;
    color: #fff;
    padding: 0.5em;
    position: relative;
}

.title-bar.with-arrow{
    margin-bottom: 20px;
}

.title-bar.with-arrow::after{
    width: 0; 
    height: 0; 
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    
    border-top: 20px solid #404040;
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
}

.gutschein_block{
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    padding: 20px;
}

@media screen and (max-width: 600px){
    .gutschein_block{
        padding: 10px;
    }
}

.fa-circle-xmark:before{
    content: "\f057";
}

.active-tags{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
    
}

.active-tags > *{
    background-color: #404040;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 16px;
}

.active-tags > * i{
    margin-left: 10px;
    cursor: pointer;
    color: #FFAE00;
}

.paypal-buttons-context-iframe{
    background-color: #fff;
    border: 1px solid #ccc;
}

#checkout_confirmation .apms_form_button{
    min-width: 300px !important;
}


#coupon_box{
    position: fixed;
    top: 50%;
    right: 20px;
    background-color: #3A3A3A;
    color: #fff;
    width: 200px;
    transition: all 0.2s linear;
}

#coupon_box.closed{
    right: -206px;
    transform: rotate(-90deg);
}

@media screen and (max-width: 1100px){
    #coupon_box{
        width: 150px;
    }
    
    #coupon_box.closed{
        right: -156px;
    }
}

@media screen and (max-width: 600px){
    #coupon_box{
        top: auto;
        bottom: 50px;
    }
}

#coupon_box_timer{
    text-align: center;
    padding: 5px;
}

#coupon_box.closed #coupon_box_timer{
    transform: rotate(180deg);
}

#coupon_box_timer .label_before{
    margin-right: 5px;
}

#coupon_box_timer .label_after{
    margin-left: 5px;
}

#coupon_box_image{
    background-color: #fff;
}

#coupon_box_image img{
    width: 100%;
    display: block;
}

#coupon_box_code_wrap{
    padding: 5px;
}

#coupon_box_code{
    position: relative;
    /* background-color: #FFAE00; */
    background-color: #c51f1f;
    color: #fff;
    padding: 5px;
    text-align: center;
    font-weight: bold;
    font-size: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

#coupon_box_code > span:first-child{
    flex-grow:1;
}

.copy_coupon_box_code{
    flex-grow:0;
    cursor: pointer;
}

#coupon_box_close{
    position: absolute;
    top: -15px;
    left: -15px;
    background-color: #fff;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    width:30px;
    height: 30px;
    color: #404040;
    border-radius: 50%;
    cursor: pointer;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

#coupon_box_close:before{
    content: "\f00d";
}

#coupon_box.closed #coupon_box_close:before{
    content: "\f102";
}

#coupon_box_copy_overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 5px;
    text-align: center;
    background-color: rgba(255,255,255,1);
    color: #404040;
}

.fa-xmark:before{
    content: "\f00d";
}

.coupon_price_wrap{
    /* background-color: #f59d3f; */
    background-color: #FFAE00;
    color: #fff;
    padding: 3px 5px 8px 5px;
    font-size: 18px;
    text-align: center;
    line-height: 18px;
    font-weight: bold;
}

.coupon_price_code{
    font-size: 15px;
    font-weight: 300;
}

#product_details .coupon_price_wrap{
    margin-bottom: 20px;
}

#product_details .coupon_price_wrap{
    background-color: #e5e5e5;
    color: #3a3a3a;
}

.coupon_price_info{
    margin-bottom: 20px;
    background-color: #f1f1f1;
    /* color: #421111; */
    color: #3a3a3a;
    position: relative;
    padding: 10px 10px 10px 75px;

}

.coupon_price_info > *:first-child{
    background-color: #404040;
    color: #fff;
    text-transform: uppercase;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coupon_price_info > *:first-child b{
    display: block;
    transform: rotate(-90deg);
}

.fa-circle-info:after{
    content: "\f05a";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
}

.special_qty{
    margin-bottom: 20px;
    background-color: #c40000;
    color: #fff;
    padding: 10px;
}

#popup{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

#popup_content{
    flex: 1;
    max-width: 600px;
    background-color: #fff;
    margin: 22px 22px 15px 15px;
    position: relative;
    max-height: 90vh;
}

#popup_content_text{
    overflow-y:auto;
    max-height:90vh;
}

#popup_close{
    position: absolute;
    top: -22px;
    right: -22px;
    width: 44px;
    height: 44px;
    background-color: #fff;
    border: 2px solid #FFAE00;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    cursor: pointer;
}

#popup_close:hover{
    color: #ffae00;
}
