
/* Fonts */
/* OpenSans- light */
@font-face {
  font-family: 'open_sans_light';
  src: url('css/fonts/open_sans/OpenSans-Light.ttf') format('truetype');
}

/* OpenSans- regular */
@font-face {
  font-family: 'open_sans';
  src: url('css/fonts/open_sans/OpenSans-Regular.ttf') format('truetype');
}

/* OpenSans - semibold */
@font-face {
    font-family: 'open_sans_semibold';
    src: url('css/fonts/open_sans/OpenSans-SemiBold.ttf') format('truetype');
}

/* OpenSans - bold */
@font-face {
    font-family: 'open_sans_bold';
    src: url('css/fonts/open_sans/OpenSans-Bold.ttf') format('truetype');
}

/* Variablen */
:root{
    --clr-primary-200: hsl(77, 62%, 64%);
    --clr-primary-300: hsl(77, 62%, 54%);
    --clr-primary-400: #95C11F;
    --clr-secondary-50: #FBF8EF;
    --clr-secondary-100: hsl(45, 33%, 93%);
    --clr-secondary-150: hsl(38, 14%, 84%);
    --clr-secondary-200: hsl(42, 13%, 74%);
    --clr-secondary-300: hsl(44, 14%, 61%);
    --clr-secondary-400: #82785B;

    --clr-accent-400: #91191C;
    --clr-accent-400: #91191C;

    --clr-yellow: #F8D662;
    --clr-brown: var(--clr-secondary-400);


    --clr-neutral-000: #ffffff;
    --clr-neutral-150: #ececec;
    --clr-neutral-100: #e6e6e6;
    --clr-neutral-200: #cccccc;
    --clr-neutral-300: #b3b3b3;
    --clr-neutral-400: #999999;
    --clr-neutral-500: #808080;
    --clr-neutral-600: #666666;
    --clr-neutral-700: #4d4d4d;
    --clr-neutral-800: #333333;
    --clr-neutral-900: #1a1a1a;
    --clr-neutral-999: #000000;

    --ff-light: 'open_sans_light', Arial, sans-serif;
    --ff-regular: 'open_sans', Arial, sans-serif;
    --ff-semibold: 'open_sans_semibold', Arial, sans-serif;
    --ff-bold: 'open_sans_bold', Arial, sans-serif;

    --fs-base: 16px;

    --fs-100: 0.4rem;
    --fs-200: 0.6rem;
    --fs-300: 0.8rem;
    --fs-350: 0.9rem;
    --fs-400: 1rem;
    --fs-450: 1.25rem;
    --fs-470: 1.35rem;
    --fs-500: 1.5rem;
    --fs-550: 1.75rem;
    --fs-600: 2rem;
    --fs-650: 2.25rem;
    --fs-700: 2.5rem;
    --fs-800: 3rem;
    --fs-900: 3.5rem;

    --fs-body: var(--fs-400);
    --fs-primary_heading: var(--fs-550);
    --fs-secondary_heading: var(--fs-470);
    --fs-other_heading: var(--fs-450);
    --fs-nav: var(--fs-400);
    --fs-button: var(--fs-400);

    --logo-width: 170px;
}

*::placeholder{
    color: var(--clr-neutral-400);
}

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

*.color-inherit{
    color: inherit;
}

@media screen and (min-width: 50em){
    :root{
        --fs-base: 16px;
        --fs-primary_heading: var(--fs-600);
        --fs-secondary_heading: var(--fs-500);
        --fs-other_heading: var(--fs-450);
    }
}

/* Globals */
*{
    box-sizing: border-box;
}

html{
    font-size: var(--fs-base);
}

body{
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: var(--ff-regular);
    font-size: var(--fs-body);
    color: var(--clr-secondary-400);
    /* background-color: var(--clr-secondary-100); */
    background-color: var(--clr-neutral-000);
}

h1, h2, h3{
    font-family: var(--ff-semibold);
    line-height: 1.4em;
    margin-top: 0;
    margin-bottom: 0.5em;
}

h1{
    font-size: var(--fs-primary_heading);
}

h2{
    font-size: var(--fs-secondary_heading);
    margin-bottom: 1em;
}

h3{
    font-size: var(--fs-other_heading);
}

p{
    margin-top: 0;
}

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

a{
    text-decoration: none;
    color: var(--clr-accent-400);
    cursor: pointer;
}

ul:not(.tabs, .no-list-image){
    list-style-image: url('img/blume_liste.png');
}

ul:not(.tabs, .no-list-image) li{
    margin-bottom: 0.5em;
}

.grid{
    display: grid;
}

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

.grid.gap-20 {
    grid-gap: 20px;
}

.grid.gap-40 {
    grid-gap: 40px;
}

.plz_ort_row{
    display: grid;
    grid-template-columns: 115px 1fr;
    gap: 10px;
}

.small-form{
    max-width: 800px;
    margin: 0 auto;
}

@media screen and (max-width: 600px){
    .small-form .grid.col-50-50{
        grid-template-columns: 1fr;
    }
}

input[type="text"], input[type="password"], input[type="email"], input[type="phone"], input[type="tel"], input[type="number"], textarea{
    display: inline-block;
    width: 100%;
    font-family: var(--ff-regular);
    font-size: var(--fs-body);
    border: 1px solid var(--clr-neutral-200);
    border-radius: 0;
    padding: 0.2em;
}

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

.inp-btn-row button,
.inp-btn-row input[type="submit"]{
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    line-height: 10px;
    width: auto;
}

.inputRequirement {
    display: none;
  }

.btn-row{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1rem;
}

a.btn, button, input[type="submit"], input[type="button"]{
    display: flex;
    background-color: var(--clr-primary-400);
    color: var(--clr-neutral-000);
    height: 40px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    /* width: 100%; */
    border: none;
    font-size: inherit;
    font-family: inherit;
    padding-inline: 20px;
    gap: 5px;
    cursor: pointer;
}

a.btn.yellow, button.yellow, input[type="submit"].yellow, input[type="button"].yellow{
    background-color: var(--clr-primary-400);
    color: var(--clr-neutral-000);
}

/* a.btn i{
    margin-right: 10px;
} */

.cssButtonText {
    margin-left: 10px;
}

button#cboxClose{
    color: var(--clr-neutral-900);
}

.form-row{
    margin-bottom: 0.5rem;
}

.pv-400{
    padding-top: 3rem;
    padding-bottom: 3rem;
}

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

.SumoSelect{
    height: 45px !important;
    cursor: pointer;
}

.SumoSelect > .CaptionCont > span{
    font-size: var(--fs-body) !important;   
    padding-left: 0.2em;
    padding-top: 0.2em;
    padding-bottom: 0.2em;
    cursor: pointer !important;
}

.SumoSelect > .optWrapper{
    width: auto !important;
}

.SumoSelect > .optWrapper > .options li.opt.selected{
    color: var(--clr-accent-400) !important;
}

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

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

.middle.no-padding{
    padding-left: 0;
    padding-right: 0;
}

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

@media screen and (max-width: 1530px){
    .middle.ph{
        padding-inline: 15px;
    }
}


/* Mobile Navi */
#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: var(--clr-secondary-400);
    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: var(--clr-primary-400);
    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: var(--clr-secondary-400);
    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: var(--clr-secondary-400);
    border-bottom: 1px solid #ccc;
    font-size: 0.8em;
}

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

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: var(--clr-secondary-400);
    color: var(--clr-neutral-000);
}

.mobile-navi-cat-name{
    padding: 10px 15px;
    background-color: var(--clr-primary-400);
    color: #fff;
}

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

.account-actions .user-image{
    display: inline-block;
    font-size: 25px;
    background-color: var(--clr-primary-400);
    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: var(--clr-secondary-400);
}


/* Supportbar oben */
#support-bar{
    background-color: var(--clr-primary-400);
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 0.85em;
}

/* Tob Bereich */
#top-bar-wrap{
    background-color: var(--clr-secondary-100);
    /* background-color: var(--clr-neutral-000); */
    position: fixed;
    width: 100%;
    top:0;
    z-index: 200;
}

#top-bar{
    padding: 0 20px 20px 20px;
    position: relative;
    z-index: 10;
    margin: 0;
    max-width: none;
}

#top-bar .menue-icon{
    margin-right: 10px;
    font-size: 40px;
    color: var(--clr-secondary-300);
    cursor: pointer;
}

#top-bar .menue-icon > div{
    display: block;
    font-size: 12px;
}

#top-bar a#logo{
    display: block;
    max-width: 400px;
    margin: 0 auto;
    color: var(--clr-accent-400);
    text-align: center;
    transition: all 0.3s;
}

#top-bar a#logo img{
    display: block;
    max-width: 100%;
    transition: all 0.2s;
    margin: 0 auto;
}

#top-bar-icons{
    position: absolute;
    bottom: 30px;
    right: 20px;
    display: flex;
    gap: 30px;
}

.top-bar-icon, .menue-icon{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.top-bar-icon a{
    color: var(--clr-brown);
    text-align: center;
}

.top-bar-icon img{
    margin: 0 auto;
}

.top-bar-icon a div{
    font-size: 12px;
    color: var(--clr-secondary-300);
}

#cart_short{
    position: relative;
}

#cart_short .count{
    display: block;
    position: absolute;
    top: 30px;
    left: 25px;
    height: 20px;
    width: 30px;
    font-size: 12px;
    border-radius: 50px;
    line-height: 20px;
    text-align: center;
    color: var(--clr-neutral-000);
}

#cart_short .popup{
    display: none;
}

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

#top-bar-wrap.sticked{
    position: fixed;
}

#top-bar-wrap.sticked #top-bar{
    padding-bottom: 0;
}

#top-bar-wrap.sticked #top-bar-icons{
    bottom: 10px;
}

#top-bar-wrap.sticked #top-bar a#logo{
    max-width: 300px;
}

#top-bar-wrap.sticked #top-bar #logo_text{
    display: none;
}

.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: var(--clr-neutral-000);
}

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

.tc_delete a{
    color: var(--clr-neutral-000);
}

#search{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 10px;
    flex:1;
    min-width: 350px;
    background-color: #fff;
    border-bottom: 1px solid var(--clr-neutral-200);
}

.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{
    font-size: var(--fs-450);
    padding: 12px 40px 13px 20px;
    border-radius: 15px 0 0 0;
}

.search-inp-row button{
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--clr-secondary-400);
    padding: 10px;
    height: 100%;
    aspect-ratio: 1/1;
    line-height: 10px;
    border: none;
    font-size: var(--fs-500);
    color: var(--clr-neutral-000);
    width: auto;


}

@media screen and (max-width: 950px){
    #top-bar a#logo{
        max-width: 280px !important;
        font-size: 13px;
        margin-left: 0;
    }

    #top-bar-wrap.sticked #top-bar-icons{
        bottom: 5px !important;
    }
}

@media screen and (max-width: 550px){
    .contact-data{
        display: none;
    }

    #top-bar a#logo{
        max-width: 250px !important;
        font-size: 13px;
        margin-left: 0;
    }

    #logo_text{
        display: none;
    }

    #top-bar{
        padding: 0;
    }

    #top-bar-icons{
        bottom: 20px !important;
        right: 10px;
        align-items: center;
        gap: 15px;
    }

    #top-bar-wrap.sticked #top-bar-icons{
        bottom: 20px !important;
    }

    .top-bar-icon a{
        display: block;
        width: 40px;
        height: 40px;
    }

    .top-bar-icon a img{
        height: 100%;
    }

    .top-bar-icon a div, 
    #top-bar .menue-icon > div{
        display: none;
    }
}

@media screen and (max-width: 400px){
    /* #cart_short > a > img,
    #wishlist_short > a > img,
    #account_short > a > img{
        height: auto;
    } */

    #search_short{
        display: block;
        font-size: 37px;
    }

    #cart_short .count{
        right: 0;
    }

    #account_short{
        display: none;
    }
}

@media screen and (min-width: 950px){
    :root{
        --logo-width: 200px;
    }

    /* #search{
        display: block;
        position: relative;
        top: 0;
        left: 0;
        width: auto;
        padding: 0;
        min-width: 350px;
        background-color: transparent;
        border-bottom: none;
    } */

    #top-bar .menue-icon{
        display: none;
    }

    /* #search_short{
        display: none;
    } */

    .search-inp-row input{
        font-size: var(--fs-450);
        padding: 12px 40px 12px 20px;
        border-radius: 15px 0 0 0;
    }

    #cart_short .popup{
        right: 0;
    }
}

@media screen and (min-width: 1250px){
    #search{
        display: block;
        position: relative;
        top: 0;
        left: 0;
        width: auto;
        padding: 0;
        min-width: 350px;
        background-color: transparent;
        border-bottom: none;
    }

    #search_short{
        display: none;
    }
}

/* Navi Desktop */
#main-navi{
    display: none;
    background-color: var(--clr-primary-400);
    padding: 5px 0;
}

#main-navi ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
    max-width: 1500px;
    margin: 0 auto;
}

#main-navi a{
    color: var(--clr-neutral-999);
}

#main-navi > ul{
    display: flex;
    gap: 2rem;
}

#main-navi > ul > li{
    position: relative;
    height: 2.8rem;
    display: flex;
    align-items: center;
    padding: 10px 0;
}

#main-navi > ul > li:before{
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    left: -1rem;
    background-color: var(--clr-primary-200);
}

#main-navi > ul > li:first-child:before{
    display: none;
}

/* #top-bar-wrap.sticked #main-navi > ul > li{
    height: 3.2rem;
} */

#main-navi > ul > li > a{
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 1.2em;
    padding: 0.3em 0.7em;
    border-radius: 10px;
}

#main-navi > ul > li > a:hover{
    background-color: var(--clr-primary-200);
}

#main-navi > ul > li > a > .icon{
    /* display: flex; */
    display: none;
    justify-content: center;
    align-items: center;
    background-color: var(--clr-yellow);
    color: var(--clr-neutral-000);
    font-size: 14px;
    height: 20px;
    aspect-ratio: 1/1;
    border-radius: 50%;
}

#main-navi > ul > li > a > .icon i{
    transform: translateY(1px);
}

#main-navi > ul > li > ul {
    display: none;
    position: absolute;
    top: 100%;
    left: -1rem;
    min-width: 300px;
    padding-top: 10px;
}

#main-navi > ul > li > ul > li{
    background-color: var(--clr-primary-400);
}

#main-navi > ul > li > ul > li > a{
    display: block;
    padding: 0.5rem 1rem;
    color: var(--clr-neutral-100);
    border-top: 1px solid var(--clr-neutral-200);
}

#main-navi > ul > li > ul > li > a:hover{
    background-color: var(--clr-neutral-000-hover)
}

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

@media screen and (min-width: 950px){
    #main-navi{
        display: block;
    }
}

/* Bildwechsel */
#bildwechsel{
    margin: 0 auto 0 auto;
    position: relative;
    z-index: 0;
}

#bildwechsel > img{
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
}

@media screen and (min-width: 470px){
    #bildwechsel{
        margin: 0 auto;
    }
}

#bildwechsel .slideshow-item{
	display: none;
}

#bildwechsel .slideshow-item:first-child{
	display: block;
}

#bildwechsel_pager{
	display: block;
	position: absolute;
	bottom: 2%;
	left: 0;
	width: 100%;
	z-index: 10000;
	text-align: center;
}

#bildwechsel_pager span{
	display: inline-block;
	*display: inline;
	vertical-align: middle;
	zoom: 1;
	margin: 0 5px;
	color: var(--clr-neutral-000);
	cursor: pointer;
	font-size: 60px;
	line-height: 20px;
}

#bildwechsel_pager span:after{
	content: '•';
	
}

#bildwechsel_pager span.cycle-pager-active{
	color: var(--clr-primary-400);
}

#bildwechsel .prev, #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;
    border-radius: 10px;
}

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

.bildwechsel-overlay{
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    flex-direction: column;
    color: #fff;
}

.bildwechsel_text{
    font-family: 'open_sans_bold';
    font-size: 2em;
    margin: 10px auto 30px auto;
    max-width: 800px;
    text-align: center;
}

.bildwechsel_btn a{
    padding: 1em 2em;
    background-color: var(--clr-accent-400);
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 40px;
}

#bildwechsel_subline{
    background-color: var(--clr-secondary-400);
    color: #fff;
    text-align: center;
    padding: 10px 15px;
    text-transform: uppercase;
}

@media screen and (max-width: 1000px){
    .bildwechsel-overlay .leafs{
        max-width: 80px;
    }

    .bildwechsel_text{
        max-width: 500px;
        text-align: center;
        font-size: 1.2em;
    }

    #bildwechsel .slideshow-item{
        height: 320px;
        width: 100%;
        overflow: hidden;
        position: relative;
    }
    
    #bildwechsel .slideshow-item > img{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    
}

@media screen and (max-width: 550px){
    #bildwechsel .prev, #bildwechsel .next {
        display: none;
    }
}

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

/* Balken Trenner */
.balken-trenner{
    background-color: var(--clr-primary-400);
    position: relative;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--fs-450);
    margin: 2rem auto;
}

.balken-trenner .title{
    background-color: var(--clr-accent-400);
    color: var(--clr-neutral-000);
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1.4);
    font-size: 0.6em;
    text-transform: uppercase;
    font-family: var(--ff-bold);
    border-radius: 15px 0 15px 0;
    min-width: 240px;
}

/* Aktuelle Empfehlungen */
.aktuelle-empfehlungen{
    --columns: 1;
    --gap: 1rem;
    display: grid;
    grid-template-columns: repeat(var(--columns), 1fr);
    grid-template-columns: 1fr;
    gap: var(--gap);
}

@media screen and (min-width: 1200px){
    .aktuelle-empfehlungen{
        --gap: 3rem;
    }
}

.aktuelle-empfehlungen > *.item{
    display: block;
    width: 100%;
    position: relative;
    border: 1px solid var(--clr-neutral-000);
    overflow: hidden;
    max-width: 457px;
    margin: 0 auto;
    transition: all 0.1s;
    box-shadow: 0 0 10px #ccc;
}

.aktuelle-empfehlungen > *.item:hover{
    box-shadow: 0 0 10px #555;
    transform: scale(1.02);
}

.aktuelle-empfehlungen > *.item > .title{
    position: relative;
    z-index: 1;
    background-color: var(--clr-primary-400);
    color: #fff;
    text-transform: uppercase;
    padding: 10px 10px 0 10px;
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

/* .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_image-wrap{
    float: right; 
    margin-left: 20px;
    margin-bottom: 20px;
}

.cat_image-wrap img{
    max-width: 600px;
    border-radius: 10px;
}

.category-listing .aktuelle-empfehlungen > *.item > .title{
    min-height: 0;
    padding: 10px;
}

.category-listing .aktuelle-empfehlungen > *.item > .title div{
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.aktuelle-empfehlungen > *.item:hover > .title{
    background-color: var(--clr-yellow);
    color: var(--clr-neutral-000);
}

.aktuelle-empfehlungen > *.item > .title:after{
    content: '';
    position: absolute;
    top: 98.0%;
    left: 0; 
    right: 0;
    padding-bottom: 15%;
    background: var(--clr-neutral-000);
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 50% 70%);
    clip-path: polygon(0% 0%, 100% 0%, 50% 70%);
}

.aktuelle-empfehlungen > *.item:hover > .title:after{
    background: var(--clr-yellow);
}

.aktuelle-empfehlungen > *.item > .image{
    position: relative;
    z-index: 0;
    display: none;
}

.aktuelle-empfehlungen > *.item > .image img{
    margin: 0 auto;
}

.category-listing .aktuelle-empfehlungen > *.item > .image img{
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: url(desaturate.svg#greyscale);
    filter: gray;
    -webkit-filter: grayscale(1);
}

.category-listing .aktuelle-empfehlungen > *.item:hover > .image img{
    filter: none;
    -webkit-filter: none;
    -moz-filter: none;
    -ms-filter: none;
    -o-filter: none;
}

@media screen and (min-width: 700px){
    .aktuelle-empfehlungen{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (min-width: 900px){
    .category-listing .aktuelle-empfehlungen{
        grid-template-columns: repeat(4, 1fr);
    }

    .category-listing .aktuelle-empfehlungen .image{
        display: block;
    }
}

@media screen and (min-width: 1200px){
    .category-listing .aktuelle-empfehlungen{
        grid-template-columns: repeat(5, 1fr);
    }
}

/* @media screen and (min-width: 1400px){
    .category-listing .aktuelle-empfehlungen{
        grid-template-columns: repeat(6, 1fr);
    }
} */

/* Vorteile */
#vorteile{
    margin-bottom: 3rem;
}

#vorteile .middle{
    padding: 0 15px;
    text-align: center;
}

#vorteile h2.title{
    font-size: var(--fs-550);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
}

#vorteile h2.title + p{
    max-width: 1000px;
    margin: 0 auto 1em auto;
}

#vorteile .boxen{
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 20px;
}

#vorteile .boxen .box .image img{
    margin: 0 auto 20px auto;
    max-width: 150px;
}

#vorteile .boxen .box .title{
    font-family: var(--ff-bold);
    text-align: center;
    text-transform: uppercase;
    font-size: var(--fs-450);
    margin-bottom: 20px;
}

#vorteile .boxen .box .title br,
#vorteile .boxen .box .title .trennstrich{
    display: none;
}

#vorteile .boxen .box .desc{
    font-size: var(--fs-300);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

@media screen and (min-width: 500px){
    #vorteile .boxen .box .title br{
        display: block;
    }

    #vorteile .boxen .box .title .trennstrich{
        display: inline;
    }
}

@media screen and (min-width: 1000px){
    #vorteile .boxen{
        grid-template-columns: repeat(3,1fr);
    }
}

/* Bewertung */

#bewertungen{
    background-color: var(--clr-primary-300);
    color: #fff;
    padding: 3rem;
    border-radius: 40px;
    text-align: center;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

#bewertungen > *{
    position: relative;
    z-index: 1;
    max-width: 850px;
    margin: 0 auto;
}

#bewertungen h2{
    text-transform: uppercase;
}

#bewertungen .bewertungen__stars{
    margin: 1rem auto;
}

#bewertungen .bewertungen__autor{
    margin: 1rem auto 0 auto;
}

#bewertungen .bewertungen__autor::before{
    content: "- ";
}

#bewertungen .bewertungen__autor::after{
    content: " -";
}

#bewertungen::before,
#bewertungen::after{
    content: "";
    aspect-ratio: 1136 / 1164;
    background-image: url('img/Blume.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: absolute;
    z-index: 0;
}

#bewertungen::before{
    width: 450px;
    bottom: -180px;
    left: -50px;
}

#bewertungen::after{
    width: 400px;
    top: -100px;
    right: -50px;
}

#bewertungen a.btn{
    width: 250px;
    margin: 0 auto;
    background-color: var(--clr-accent-400);
    color: var(--clr-neutral-000);
    margin-top: 30px;
    border-radius: 10px;
}

@media screen and (max-width: 1530px){
    #bewertungen.middle{
        margin: 0 15px;
    }
}

@media screen and (max-width: 750px){
    #bewertungen::before{
        display: none;
    }

    #bewertungen{
        padding: 3rem 1.5rem;
    }
}

/* Footer */
footer{
    padding: 2rem 0 2rem 0;
    margin-top: 3rem;
    background-color: var(--clr-secondary-100);
    line-height: 1.7em;
}

footer a{
    color: inherit;
}

footer > div{
    display: flex;
    justify-content: space-between;
}

#footer-nav{
    width: 70%;
}

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

#footer-nav ul li{
    margin-left: 30px;
}

#footer-nav ul > li > a > i{
    margin-right: 10px;
}

#footer_address{
    padding-left: 20px;
    border-left: 3px solid #707070;
}

#copyright-wrap{
    text-align: center;
    background-color: var(--clr-secondary-50);
    padding: 10px;
    font-size: 0.8rem;
}

.csb_copyright, .csb_copyright a{
    color: #000;
}

.copyright, .copyright a{
    color: var(--clr-secondary-400);
}

@media screen and (max-width: 1200px){
    footer > div{
        display: block;
    }

    #footer-nav{
        margin: 0 auto;
        width: 750px;
    }

    #footer_address{
        text-align: center;
        padding-top: 2rem;
        margin-top: 2rem;
        border-top: 3px solid #707070;
        border-left: none;
        padding-left: 0;
    }
}

@media screen and (max-width: 768px){
    #footer-nav{
        margin: 0 auto;
        width: 100%;
    }
}

@media screen and (max-width: 600px){
    #footer-nav ul{
        gap: 15px;
        row-gap:5px;
        grid-template-columns: 1fr 1fr;
    }
}

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

/* Topseller */
#topseller{
    padding: 0 60px;
    position: relative;
    margin-bottom: 20px;
}

#topseller > .prev,
#topseller > .next{
    position: absolute;
    top: 0;
    background-color: var(--clr-secondary-150);
    width: 47px;
    height: 100%;
    cursor: pointer;
}

#topseller > .prev{
    left: 0;
}

#topseller > .next{
    right: 0;
}

#topseller > .prev > .inner,
#topseller > .next > .inner{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    width: 60%;
}

#topseller > .prev.swiper-button-disabled,
#topseller > .next.swiper-button-disabled{
    opacity: 0.3;
}


.swiper-container {
    width: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    /* background: #fff; */

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    width: 100px;
    /* height: 550px !important; */
}

@media screen and (min-width: 800px){
    #topseller .swiper-slide {
        height: 550px !important;
    }
}

.swiper-slide a{
    display: block;
}

.swiper-slide img{
    display: block;
    width: 100%;
}

.swiper-button-next, .swiper-button-prev{
    display: none;
    color: #FFAE00;
    background-color: #fff;
}

.preishinweise{
    background-color: var(--clr-secondary-150);
    padding: 10px;
    font-size: var(--fs-300);
    text-align: center;
    margin: 20px auto 0 auto;
}

.preishinweise span.trenner{
    margin: 0 10px;
}

@media screen and (max-width: 700px){
    .preishinweise span{
        display: block;
    }

    .preishinweise span.trenner{
        display: none;
    }
}

/* Product Listing */
.product-listing{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

a.wishlist-heart{
    display: none;
    position: absolute;
    top: 25px;
    right: 30px;
    color: var(--clr-neutral-000);
    font-size: 1.2rem;
}

a.wishlist-heart.in_wishlist{
    color: var(--clr-yellow);
}

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

.product-listing .rabatt-box a{
    display: inline-block;
    border: 1px solid var(--clr-accent-400);
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1em;
    color: var(--clr-accent-400);
    background-color: #fff;
}

.listingbox{
    background-color: #fff;
    height: 100%;
    position: relative;
    transition: all 0.1s;
    border-radius: 10px;
    /* box-shadow: 0 0 10px #ccc; */
    border: 1px solid;
    padding-bottom: 5px;
    overflow: hidden;
    width: 100%;
}

.listingbox:hover{
    box-shadow: 0 0 10px var(--clr-secondary-400);
    transform: scale(1.02);
}

.lb_inner{
    display: flex;
    flex-direction: column;
    height: 100%;
}

.lb_image{
    margin-bottom: 10px;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    position: relative;
}

.lb_image a{
    display: flex;
    justify-content: center;
}

.lb_title{
    margin-bottom: 10px;
}

.lb_title h2{
    font-size: var(--fs-400);
    line-height: 1.3em;
    font-family: var(--ff-body);
    margin-bottom: 10px;
    text-align: center;
    padding: 0 5px;
}

.lb_title h2 a{
    color: #555;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lb_artikeleigenschaften{
    padding: 0 5px;
    font-size: 13px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.lb_price .small_price{
    font-size: 0.7em;
}

.lb_price .uvp_price{
    display: block;
    text-align: center;
}

.lb_price .uvp_price .value_price{
    text-decoration: line-through;
}

.special_price, .standard_price{
    display: block;
    font-family: var(--ff-semibold);
    font-size: 1.5em;
    text-align: center;
}

/* .standard_price{
    padding-top: 10px;
} */

.save_price{
    display: block;
    text-align: center;
    font-size: 0.7em;
}

.lb_tax{
    display: none;
    font-size: 0.7em;
    text-align: center;
}

.listingbox.special_price_flag{
    padding-bottom: 0;
}

.listingbox.special_price_flag .lb_price{
    background-color: var(--clr-accent-400);
    color: #ffff;
    margin-bottom: 0;
    padding-bottom: 10px;
}

.lb_button{
    display: none;
    margin-top: auto;
    /* margin-top: 1rem; */
}

.lb_button a{
    display: block;
    text-align: center;
    padding: 10px 20px;
    background-color: var(--clr-primary-400);
    color: var(--clr-neutral-000);
    border-radius: 20px;
    text-transform: uppercase;
    font-size: var(--fs-300);
    font-family: var(--ff-semibold);
}

.lb_price{
    margin-bottom: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media screen and (min-width: 500px){
    .product-listing{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 600px){
    .lb_title h2{
        font-size: var(--fs-450);
    }
}

@media screen and (min-width: 850px){
    .product-listing{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (min-width: 1200px){
    .product-listing{
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (min-width: 1400px){
    .product-listing{
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Filter */ 
.filter_bar{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.tags_bar_headline{
    display: none;
}

.tags_bar{
    flex-grow: 1;
}

.sort_bar_row, .tags_bar_row{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.sort_bar{
    margin-left: auto;
}

/* Paginator */
.pagination_bar{
    background-color: var(--clr-secondary-100);
    padding: 10px;
    margin: 15px 0;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}

.pagination_text{
    line-height: 30px;
}

.pagination_list{
    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: var(--clr-secondary-400);
    color: var(--clr-neutral-000);
}

.pagination_list ul li a{
    display: block;
    min-width: 30px;
    min-height: 30px;
    color: var(--clr-secondary-400);
    line-height: 30px;
}

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

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



/* Category Listing */

hr.contentbreak{
    border: none;
    height: 1px;
    background-color: var(--clr-secondary-200);
    margin: 3rem 0;
}

.subcats{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin: 2rem 0;
}

.subcats .subcatlist{
    text-align: center;
    transition: all 0.3s;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--clr-secondary-200);
    height: 100%;
}

.subcats .subcatlist:hover{
    transform: scale(1.02);
    box-shadow: 0 0 10px var(--clr-secondary-400);
}

.subcats .subcatlist a{
    display: block;
    color: #fff;
    position: relative;
    min-height: 38px;
}

.subcats .subcatlist img{
    width: 100%;

}

.subcats .subcat_title{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0,0,0, 0.7);
    padding: 10px;
}


@media screen and (min-width: 600px){
    .subcats{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 900px){
    .subcats{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (min-width: 1200px){
    .subcats{
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Login Page */

#login-page-wrap{
    display: grid;
    grid-template-columns: 1fr 2fr;
    /* gap: 67px; */
    gap: 2rem;
}

#login-page-wrap > *:first-child{
    grid-row-start: 1;
    grid-row-end: 3;
}

#login-page-wrap > *{
    background-color: var(--clr-secondary-100);
    padding: 20px;
    border-radius: 20px;
}

#login-page-wrap .btn{
    width: auto;
}

@media screen and (max-width: 1200px){
    #login-page-wrap{
        grid-template-columns: 1fr 1.5fr;
    }
}

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

/* #login-page-wrap #guest-block{
    grid-column-start: 2;
    grid-row-start: 2;
} */

#login-page{
    display: none;
    /* display: grid; */
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 500px;
    margin: 0 auto;
}

.pw-forgot-link{
    font-size: 0.8rem;
}

#login-page > *{
    background-color: var(--clr-secondary-150);
}

#login-page > * > .title{
    background-color: var(--clr-yellow);
    color: var(--clr-neutral-000);
    padding: 10px;
    font-size: var(--fs-450);
}

#login-page > * > .content{
    padding: 1.5rem;
}

#login-page .register-row{
    margin-top: 20px;
}


/* Warenkorb */

.cart-products > .head{
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
    margin-bottom: 15px;
    font-size: 1rem;
    font-family: var(--ff-bold);
}

.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 > .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: 10%;
    padding-left: 0;
}

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

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

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

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

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

.cart-products > .products > .item .gp,
.cart-products > .head .gp{
    width: 18%;
    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: var(--clr-secondary-400);
    padding: 0 10px;
}

.cart-products > .products > .item .del a:after{
    content: "\f1f8";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.cart-products > .products > .item a.prdoducts_name{
    display: inline-block;
    color: var(--clr-secondary-400);
    margin-bottom: 15px;
    font-family: var(--ff-semibold);
}

.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: var(--ff-bold);
    }
    
    .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: var(--clr-secondary-100);
    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: 65%;
    text-align: right;
    padding-right: 10px;
}

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

.order-total > .total-block > .item.final-price{
    font-family: var(--ff-bold);
    border-bottom: 3px double var(--clr-neutral-000);
    border-top: 1px solid #ccc;
}

.cart-btns{
    display: flex;
    gap: 20px;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.cart-btns > *{
    flex: 1;
    min-width: 250px;
    width: auto !important;
    padding-inline: 10px;
}

a.btn.btn-to-checkout{
    background-color: var(--clr-accent-400);
    color: var(--clr-neutral-000);
}

@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%;
    }
}

.gutschein_block{
    background-color: var(--clr-secondary-100);
    border: 1px solid var(--clr-neutral-200);
    padding: 20px;
}


/* Produkt Detail */

#product_info .main-image{
    border: 1px solid var(--clr-secondary-150);
    margin-bottom: 10px;
}

#more-images-plain{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
    margin-top: 10px;
}

#more-images-plain > *{
    border: 1px solid var(--clr-neutral-000);
}

#more-images{
    padding: 0 40px;
    position: relative;
    margin-bottom: 20px;
}

#more-images .swiper-slide{
    border: 1px solid var(--clr-secondary-150);
}

#more-images > .prev,
#more-images > .next{
    position: absolute;
    top: 0;
    background-color: var(--clr-secondary-100);
    width: 30px;
    height: 100%;
    cursor: pointer;
}



#more-images > .prev{
    left: 0;
}

#more-images > .next{
    right: 0;
}

#more-images > .prev > .inner,
#more-images > .next > .inner{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--clr-secondary-400);
    width: 60%;
    text-align: center;
}

#more-images > .prev.swiper-button-disabled,
#more-images > .next.swiper-button-disabled{
    opacity: 0.3;
}

#more-images .cbimages{
    display: block;
    border: 1px solid var(--clr-neutral-000);
}

#product_info h1{
    font-family: var(--ff-regular);
    font-weight: normal;
    font-size: var(--fs-550);
    margin-bottom: 1rem;
    margin-top: 0;
}

.pd-meta{
    background-color: var(--clr-secondary-100);
    padding: 10px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 0.7rem;
}

.pd-meta > .item{
    /* border-left: 1px solid var(--clr-neutral-000); */
    padding-right: 10px; 
}

.pd-meta > .item:first-child{
    border-left: none;
    padding-left: 0;
}

.pd-meta > .item > span:first-child{
    font-family: var(--ff-bold);
}

.pd_short_description ul{
    font-size: 0.8em;
    padding-left: 20px;
    margin: 0;
}

.pd_price{
    text-align: center;
    font-size: 1.4em;
}

.pd_price .uvp_price .value_price{
    text-decoration: line-through;
}

.pd_price .uvp_price, .pd_tax, .pd_price .save_price, .uvp_text{
    font-size: 0.5em;
}

.cart-btn-wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
    max-width: 600px;
}

.qty-inp-wrap{
    display: grid;
    grid-template-columns: 60px 1fr 60px;
    width: 100%;
}

.qty-inp-wrap .decrease,
.qty-inp-wrap .increase{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--fs-500);
    font-family: var(--ff-bold);
    background-color: var(--clr-secondary-150);
    height: 100%;
    cursor: pointer;
}

.qty-inp-wrap .decrease{
    border-radius: 10px 0  0 10px;
}

.qty-inp-wrap .increase{
    border-radius: 0 10px 10px 0 ;
}

.qty-inp{
    display: flex;
    justify-content: center;
    align-items: center;
}

.qty-inp input{
    font-size: var(--fs-500);
    text-align: center;
    padding: 0.5em;
    height: 100%;
}

.cart-btn{
    flex-grow:1;
    height: 100%;

}

.cart-btn button{
    text-transform: uppercase;
    background-color: var(--clr-accent-400);
    color: var(--clr-neutral-000);
    font-size: 1.5em;
    padding: 0.5em 1em;
    height: auto;
    border-radius: 10px;
}

@media screen and (min-width:500px){
    .qty-inp-wrap{
        max-width: 200px;
    }
}

.pd-shipping{
    font-size: 0.9em;
    margin-top: 1.5rem;
}

.pd-shipping-size{
    font-size: 0.9em;
}

@media screen and (min-width: 800px){
    .pd-columns{
        display: grid;
        grid-template-columns: 300px 1fr;
        gap: 40px;
    }

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

    .pd_content h1{
        grid-row: 2;
        margin-top: 1rem;
    }

    .pd_price, .pd_price *, 
    .pd-shipping{
        text-align: left;
    }
}

@media screen and (min-width: 1100px){
    .pd-columns{
        grid-template-columns: 450px 1fr;
    }
}

.technische_daten > .item > *:first-child{
    margin-right: 10px;
}

.technische_daten > .item{
    background-color: #f7f7f7;
    padding: 5px;
}

.technische_daten > .item:nth-child(2n){
    background-color: #eeeeee;
}

/* Checkout */

/* form#checkout_confirmation{
    float: right;
} */

#button_checkout_confirmation{
    float: right;
    background-color: var(--clr-accent-400);
    font-size: 1.5em;
    height: auto;
    line-height: 1.2em;
    padding: 0.5em 1em;
    border-radius: 10px;
}

#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: var(--clr-secondary-400);
}

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

#checkoutnav ul li.active{
    font-family: var(--ff-bold); 
}

#checkoutnav ul li .nr{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 39px;
    height: 100%;
    background-color: var(--clr-primary-400);
    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; */
    background-color: var(--clr-secondary-100);
    padding: 10px 10px 10px 49px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

#checkoutnav ul li.active .title{
    color: var(--clr-neutral-000);
    background-color: var(--clr-secondary-400);
    
}

#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%;
    gap: 0;
}

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

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

.address-listing .hl-box > .content{
    border: none;
    background-color: var(--clr-secondary-100);
}

.address-listing > * > .btn-row > *:nth-child(2){
    background-color: var(--clr-accent-400);
}

@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 var(--clr-secondary-400);
    background-color: var(--clr-neutral-000);
    padding: 10px;
}

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

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

.shipping-item .title{
    float: left;
    font-family: var(--ff-bold); 
}

.shipping-item .price{
    float: right;
    font-family: var(--ff-bold); 
}

.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;
    }
}

.hl-box{
}

.hl-box > .head{
    display: none;
    padding: 10px 20px;
    font-family: var(--ff-bold);
    color: #fff;
    background-color: var(--clr-secondary-400);
    border-radius: 10px 10px 0 0;
}

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

.hl-box > .content{
    padding: 20px;
    /* border: solid var(--clr-secondary-400); */
    /* border-width: 0 1px 1px 1px; */
    background-color: var(--clr-secondary-100);
    /* border-radius: 0 0 10px 10px; */

}

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

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

#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: var(--ff-bold); 
}

.shipping-item .price{
    float: right;
    font-family: var(--ff-bold); 
}

.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;
    }
}

.checkout-btn-row{
    display: flex;
    gap: 20px;
    margin-top: 2rem;
}

.checkout-btn-row > *{
    width: auto !important;
    flex-grow: 0;
}

.errormessage{
    padding: 1rem;
    border: 1px solid #d30000;
    background-color: hsl(0, 100%, 98%);
    margin-bottom: 2rem;
}

.errormessage > p:last-child{
    margin-bottom: 0;
}

input[name="vvcode"]{
    margin-top: 10px;
    max-width: 240px;
}

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

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

.default_address_wrap h2{
    margin-bottom: 5px;
}

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

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

.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;
    }
}

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

ul.download_listing > li > a{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background-color: var(--clr-secondary-100);
    color: var(--clr-secondary-400);
}

ul.download_listing > li:nth-child(2n) > a{
    background-color: var(--clr-secondary-100);
}

ul.download_listing > li > a:hover{
    background-color: var(--clr-secondary-150);

}

ul.download_listing > li > a i{
    color: var(--clr-accent-400);
}

.gruener_block_fett{
    display: block !important;
    background-color: var(--clr-primary-400) !important;
    text-align: center !important;
    font-weight: bold !important;
    font-size: 26px !important;
    line-height: normal !important;
    padding: 15px 20px !important;
    border-radius: 5px !important;
    color: #ffffff !important;
    font-family: Tahoma,Arial,Helvetica,sans-serif !important;
    margin-bottom: 20px !important;
  }

  .gruener_block_normal {
    display: block;
    background-color: var(--clr-primary-400) !important;
    text-align: left !important;
    font-weight: normal !important;
    font-size: 26px !important;
    line-height: normal !important;
    padding: 15px 20px !important;
    border-radius: 5px !important;
    color: #ffffff !important;
    font-family: Tahoma,Arial,Helvetica,sans-serif !important;
    margin-bottom: 20px !important;
}

.gruener_block_normal p, .gruener_block_fett p{
    margin: 0;
}

.video_listing{
    margin-bottom: 3rem;
}

.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%);
    color: var(--clr-accent-400);
}

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

.video-thumb img{
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.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;
    gap: 1rem;
    grid-template-columns: repeat(3,1fr);
}

@media screen and (max-width: 1100px){
    .video_listing{
        grid-template-columns: repeat(2,1fr);
    } 
}

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

.video-image{
    aspect-ratio: 16/9;
}

.video-image a{
    position: relative;
    aspect-ratio: 16/9;
    display: block;
    overflow: hidden; 
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;;
}

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

.video-image a .background img{
    height: 100%;
    width: auto;
    aspect-ratio: 16/9;
    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;
}

.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;
}

button#cboxNext, button#cboxPrevious{
    color: #555 !important;
}































#support-bar{
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    line-height: 1em;
}

#support_nav ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

#support_nav ul a{
    color: inherit;
}

#support-bar .contact-data{
    margin-left: auto;
}


#newsletter_and_social{
    background-color: var(--clr-brown);
    color: #fff;
    border-radius: 30px;
    padding: 2rem;

    /* display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20%; */

    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;

    margin-top: 2rem;
}

#newsletter_and_social h2{
    text-transform: uppercase;
}


#newsletter h2, 
#social h2{
    margin-bottom: 20px;
}

#newsletter_form{
    display: flex;
    gap: 10px;
}

#newsletter_form input[type="text"]{
    flex: 1;
}

#newsletter_form input[type="submit"]{
    background-color: var(--clr-secondary-100);
    color: var(--clr-secondary-400);
}

#newsletter_form input[type="submit"]:hover{
    background-color: var(--clr-secondary-150);
    color: var(--clr-secondary-400);
}

#social_icons{
    display: flex;
    gap: 10px;
}

#social_icons a{
    width: 40px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--clr-brown);
    background-color: var(--clr-secondary-100);
    border-radius: 50%;
}

@media screen and (max-width: 1530px){
    #newsletter_and_social.middle{
        margin: 2rem 15px;
    }
}

@media screen and (max-width: 400px){
    #newsletter_and_social h2{
        text-transform: none;
    }
}


.halterungen_auswahl{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    max-width: 1159px;
    padding: 0 15px;
    margin: 0 auto;
}

.halterung_item{
    max-width: 350px;
    margin: 0 auto;
}

.halterung_title{
    background-color: var(--clr-primary-400);
    color: #fff;
    padding: 0.5em;
    font-size: 1.2rem;
    line-height: 1.2em;
    text-align: center;
    border-radius: 10px 10px 0 0;
}

.halterung_image img{
    border-radius: 0 0 10px 10px;
}

@media screen and (max-width: 900px){
    .halterung_title{
        font-size: 1.1rem;
    }
}

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

.center{
    text-align: center;
}

.bildergalerie > p{
    display: block;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.bildergalerie img{
    display: block;
    width: 100%;
    aspect-ratio: 240/160;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--clr-secondary-200);
    transition: transform 0.3s;
}

.bildergalerie img:hover{
    transform: scale(1.07);
    box-shadow: 5px 5px 5px 0 var(--clr-secondary-200);
}

@media screen and (max-width: 1200px){
    .bildergalerie > p{
        grid-template-columns: repeat(5, 1fr);
    }
}

@media screen and (max-width: 1000px){
    .bildergalerie > p{
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 700px){
    .bildergalerie > p{
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media screen and (max-width: 450px){
    .bildergalerie > p{
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* CSB Product Switch */
.product_switch{
    display: block;
    margin-bottom: 20px;
  
  }
  
  .product_switch .product-option{
    display: inline-block;
    margin-bottom: 10px;
    border-radius: 20px;
  }
  
  .product_switch .product-option.hidden{
  display: none;
  }
  
  .product_switch .product-option .title{
    background-color: var(--clr-secondary-150);
    color: #000;
    padding: 10px;
    /* text-transform: uppercase; */
    border-radius: 10px 10px 0 0;
    font-family: var(--ff-body);
  }
  
  .product_switch .product-option .content{
    padding: 10px 0 0 10px;
    border: solid var(--clr-secondary-150);
    border-width: 0 1px 1px 1px;
    border-radius: 0 0 10px 10px;
  }
  
  .product_switch a.product-option-value{
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid var(--clr-secondary-150);
    cursor: pointer;
    margin-right: 10px;
    margin-bottom: 10px;
    color: #404040;
    text-decoration: none;
    border-radius: 10px;
    font-size: 18px;
  }
  
  .product_switch a.product-option-value.inactive{
    border-color: #CCC;
    color: #CCC;
  }
  
  .product_switch a.product-option-value.selected{
    border: 3px solid var(--clr-accent-400);
    background-color: var(--clr-accent-400);
    color: #fff;
  }
  /* ENDE CSB Product Switch */

  .faq_fragen_listing{

  }
  
  .faq_frage_wrap{
      margin-bottom: 20px;
  }
  
  .faq_frage{
      padding: 5px;
      font-weight: bold;
      font-size: 1.3em;
  }
  
  .faq_frage:before{
      content:"\f059";
      font-family: "Font Awesome 5 Free";
      font-weight: 600;
      margin-right: 5px;
      color: var(--clr-primary-400);
  }
  
  .faq_antwort{
      padding: 10px;
      border-left: 3px solid var(--clr-primary-400);
      margin-left: 12px;
      background-color: var(--clr-secondary-100);
  }
  
  .faq_fragen_listing .faq_frage_wrap:nth-child(2n) .faq-frage:before{
      color: #3a3a3a;
  
  }
  
  .faq_fragen_listing .faq_frage_wrap:nth-child(2n) .faq-antwort{
      border-left: 3px solid #3a3a3a;
  }

  #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: var(--clr-accent-400);
    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: var(--clr-secondary-400);
    color: #fff;
    padding: 8px 5px 8px 5px;
    font-size: 18px;
    text-align: center;
    line-height: 18px;
    font-weight: bold;
    position: relative;
    top: 5px;
}

.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: 20px 0;
    background-color: var(--clr-secondary-100);
    /* color: #421111; */
    color: #3a3a3a;
    position: relative;
    padding: 10px 10px 10px 75px;
    max-width: 488px;

}

.coupon_price_info > *:first-child{
    background-color: var(--clr-primary-400);
    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);
}

*.shopbewertung_big_box{
    display: block;
    background-color: var(--clr-secondary-100);
    text-align: center;
    color: inherit;
    padding: 2rem 15px;
    margin: 3rem 0;
}

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

*.shopbewertung_big_box .stars .rating-icons{
    display: flex;
    gap: 10px;
    justify-content: center;
    color: var(--clr-accent-400);
}

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

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

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

.video-iten{
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.video-iten > a {
    display: block;
    padding: 1rem;
    background-color: var(--clr-secondary-100);
}

.video-iten .title{
    /* background-image:linear-gradient(#555, black); */
    background-color: var(--clr-primary-400);
    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;
    }
}

#top_products{
    margin: 3rem auto;
    padding: 0;
}

@media screen and (max-width:1500px){
    #top_products{
        padding: 0 15px;
    }
}

#cboxCurrent{
    display: none !important;
}

.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;
}

.lg-toolbar button{
    background-color: transparent !important;
}

.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;
}