/*
 * Platz für eigene Änderungen direkt als CSS
 * Die hier gemachten Änderungen überschreiben ggfs. andere Styles, da diese Datei als letzte geladen wird.
 */

 body, html{
    overflow-x: clip;
    font-family: Arial, Helvetica, sans-serif;
}

#main-wrapper{
    padding-bottom: 80px;
    background: #f9f9f9;
}

:root{
    --primary: #3E4F3C;
    --primary-md: #7f886a;
    --primary-text: #ffffff;
    --primary-light:#A5CC49;
    --primary-light-rgb:165,204,73;
    --secondary:#F2AC96;
    --secondary-dark:#f57047;
    --secondary-text:#ffffff;
    --secondary-shadow:#ff69696e;

    --gray: #b3b1b1;
    --gray-light: #F5F5F5;

    --highlight:#F3ECDB;
    --highlight-2:#f6fbd6;

    --dark-color:#383838;

    --danger: #ee0000;
    --success:#009900;
    --warning:#eed202;

    --border-light:#ebebeb;

    --dashed-border: 1.3px dashed #7F886A;
}

progress::-moz-progress-bar {
    background: #9ac43773;
}

progress::-moz-progress-value {
    background: #7F886A;
}

progress::-webkit-progress-value {
    background: #9ac437;
    box-shadow: 0 0 5px #7f886a inset;
    -webkit-box-shadow: 0 0 5px #7f886a inset;
    -moz-box-shadow: 0 0 5px #7f886a inset;
}

progress::-webkit-progress-bar {
    background: #f2f2f2;
}

.close{
    font-size: 2rem;
    font-weight: 800; 
}

.close:hover{
    color:var(--primary-light);
}

::-o-selection {
    background: #eaddbe;
    color: #000;
}

::-webkit-selection {
    background: #eaddbe;
    color: #000;
}

::-moz-selection {
    /* Code for Firefox */
    background: #eaddbe; 
    color: #000;
}

::selection {
    background: #eaddbe;
    color: #000;
}

::placeholder {
    color: #a8a399 !important;
}

p a,
a:hover {
    color: #8dbf17;
}

.col.contact-form-privacy.col-12 {
    display: none;
}

.col.no-padding{
    padding:0px;
}

.btn-outline-primary{
    border-color: var(--primary);
    color:var(--primary);
    border-radius: 4px;
}

.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary:hover{
    background-color: var(--primary-light);
    border-color: var(--primary-light); 
    color:var(--primary);
}

.btn-primary{
    background-color: var(--primary-light);
    color: var(--primary-text);
    padding: 10px 13px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 7px;
    border-width: 0px;
    border-color: transparent;
    box-shadow: 0 0.35em 0.7em rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 0.35em 0.7em rgba(0,0,0,0.2);
    -moz-box-shadow: 0 0.35em 0.7em rgba(0,0,0,0.2);

    background: linear-gradient( 180deg, #6C8238, #1A2A03);
    border: none;
}
.btn-primary:focus,
.btn-primary:active,
.btn-primary:hover{
    opacity: 0.9;
    border-color: transparent;
    background-color: var(--primary-light);
    color:var(--primary-text);
    box-shadow: 0 0em 0em rgba(0,0,0,0);
    -webkit-box-shadow: 0 0em 0em rgba(0,0,0,0);
    -moz-box-shadow: 0 0em 0em rgba(0,0,0,0);
}
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle, .show > .btn-outline-primary[data-toggle=collapse]:not(.navbar-toggler),
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle, .show > .btn-primary[data-toggle=collapse]:not(.navbar-toggler){
    background-color:var(--primary-md);
    border-color: var(--primary-md);
    color: var(--primary-text);
}

.sale-btn {
    display: block;
    margin-top: 22px;
    /* display: flex; */ 
    padding: 0 6%;
    margin-top: 38px;
    align-items: center;
    margin-bottom: 29px;
}

h2, .h2, .product-matrix .product-matrix-title{
    color: var(--primary);
    font-weight: 600;
}

h2.ho-title {
    font-size: 40px;
    font-weight: 600;
    margin-top: 23px;
}
h3.img-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 7px;
}
h2.small-title {
    font-size: 30px;
    font-weight: bold;
    color:var(--primary-md);
}
h3.so-cta-title {
    font-size: 36px;
    text-align: center;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 44px;
}

.toggle-height {
    padding-bottom: 40px;
    position: relative;
}
.toggle-height.no-padding {
    padding-bottom: 10px;
}
.toggle-height .toggle-content {
    position: relative;
    overflow: hidden;
    padding-bottom: 40px;
}
.toggle-height .toggle-content { 
    max-height: 300px;
}
.toggle-height:not(.show) .toggle-content { 
    max-height: 300px;
    background: linear-gradient(0deg, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
    -webkit-mask-image: linear-gradient(#000 50%, rgba(0, 0, 0, 0) 98%);
    mask-image: linear-gradient(#000 50%, rgba(0, 0, 0, 0) 98%);
}
.toggle-height .toggle-content.mh-150 { 
    max-height: 150px; 
}

.toggle-height.show .toggle-content {
    max-height: fit-content;
}

.toggle-height:not(.show) .toggle-btn-wrap:before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    height: 300%;
    min-height: 150px;
    width: 100%;
}
.toggle-height .show-more-btn .btn-text {
    position: relative;
    z-index: 1;
    text-decoration: underline;
    font-size: 18px;
    color: var(--primary-light);
    font-weight: 600;
    cursor: pointer;
}
.toggle-height .show-more-btn {
    position: absolute;
    bottom: 0px;
    width: 100%;
    z-index: 1;
    text-align: center;
    left:0px;
    right:0px;
}
.toggle-height.show .toggle-btn-wrap .show-more, .toggle-height .toggle-btn-wrap.hide, .toggle-height .toggle-btn-wrap .show-less {
    display: none;
} 
.toggle-height.show .toggle-btn-wrap .show-less {
    display: inherit;
}
.toggle-height:not(.show) .toggle-btn-wrap .show-more {
    display: inherit;
}

.footer_news_hide {
    display: none;
}


/*------------ slick slider */
.slick-arrow{
    padding:4px;
    border-radius: 4px;
    width: 2.5rem;
    height: 2.5rem;
    color:var(--primary-text);
    background-color: var(--primary);
}
.slick-arrow:hover{
    background-color: var(--primary-light);
}
.slick-arrow:after{
    font-size: 20px;
    position: relative;
    display: inline-block;
    transition: transform 0.2s ease, color 0.2s ease;
}
.slick-arrow.slick-prev:hover:after{
   transform:translateX(-4px);
}
.slick-arrow.slick-next:hover:after{
   transform:translateX(4px);
}
.slick-next{
    right:0rem;
}
.slick-prev{
    left:0rem;
}


/*--------------------------------- MODAL ---------------- */
.modal-content{
    border-radius: 10px;
}
.modal-header .close{
    right: 31px;
    top: 31px;
    background: transparent;
    color: #FFA979;
    font-size: 30px;
}
.modal-header .close:hover{
    background-color: transparent;
    color:var(--danger);
}

/*------------- small modal */

div#smallModal .modal-dialog.modal-md {
    top: 40%;
    transform: translateY(-50%);
}
div#smallModal .modal-header {
    display: block;
}
h4#call-title {
    font-weight: 700;
    color: var(--secondary);
    font-size: 26px;
}
div#smallModal button.close {
    right: 36px !important;
    top: 33px !important;
    background: transparent;
    color: var(--secondary);
    font-size: 36px;
}
form.callbackForm label {
    margin-bottom: 5px;
    margin-top: 20px;
    color: #3E4F3C;
    font-weight: 600;
}
form.callbackForm input[type="text"] {
    width: 100%;
    background: #f5f4f4;
    padding: 9px 17px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    box-shadow: inset 5px 5px 11px #80808024;
    -webkit-box-shadow: inset 5px 5px 11px #80808024;
    -moz-box-shadow: inset 5px 5px 11px #80808024;
}
/* input#call_submit {
    background: transparent;
    border: 0;
    color: white;
    padding: 9px 36px;
    margin-top: 21px;
    border-radius: 7px;
    box-shadow: -4px 17px 20px -11px #6f6f6f70;
    background: linear-gradient( 180deg, #6c8238ab, #1a2a03c7);
    letter-spacing: 0px;
    font-weight: 500;
    margin-bottom: 21px;
} */
label#privacy_label {
    font-size: 13px;
}
form.callbackForm label {
    margin-bottom: 5px;
    margin-top: 20px;
    color: #3E4F3C;
    font-weight: 600;
}
label#privacy_label a {
    color: #e86942;
}
form.callbackForm .timming {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
form.callbackForm .timming>div {
    width: 30.33%;
}

/*
* ------------------------------------------------------------ COMMON 
*
*/

.flex-1{
    flex:1;
}
.jc-center {
    justify-content: center;
}
.jc-end {
    justify-content: flex-end;
}

.ta-center{
    text-align:center;
}
.ta-right{
    text-align:right;
}
.ta-left{
    text-align:left;
}

a{
    color:var(--primary);
    text-decoration: none;
}
a:active,
a:focus,
a:hover,
#header-top-bar a:hover:not(.dropdown-item):not(.btn), 
header a:hover:not(.dropdown-item):not(.btn){
    color:var(--primary-light);
}

h2.so-ho-title {
    font-size: 35px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 48px;
}

p.so-btn {
    text-align: center;
}

p.so-btn a {
    background: var(--secondary);
    padding: 13px 70px;
    color:  var(--secondary-text);
    border-radius: 50px;
    padding-right: 83px;
    font-size: 19px;
    position: relative;
    box-shadow: 0 5px 10px var(--secondary-shadow);
    -webkit-box-shadow: 0 5px 10px var(--secondary-shadow);
    -moz-box-shadow: 0 5px 10px var(--secondary-shadow);
}
p.so-btn a:after {
    content: '';
    width: 26px;
    height: 26px;
    background: url(/media/image/storage/opc/button-icon.png);
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    right: 13px;
    top: 10px;
}

input#search-header::placeholder {
    color: var(--gray);
    opacity: 1; 
}
input#search-header:-ms-input-placeholder { 
    color: var(--gray);
}
input#search-header::-ms-input-placeholder { 
    color: var(--gray);
} 


.switch {
    position: relative;
    display: inline-block;
    width: auto;
    height: 26px;
    margin: 0 auto;
    /* background: linear-gradient(to bottom, #eeeeee, #FFFFFF 25px);
    background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF 25px);
    border-radius: 18px;
    box-shadow: inset 0 -1px white, inset 0 1px 1px rgb(0 0 0 / 5%); */
    cursor: pointer;
    box-sizing: content-box;
}
.switch .switch-field{
    position: relative;
    width: 80px;
    margin: 0 auto;
    height: 26px;
}

.switch-input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    box-sizing: content-box;
}

.switch-label {
    position: relative;
    display: block;
    height: inherit;
    font-size: 10px;
    text-transform: uppercase;
    background: #3e4f3c;
    border-radius: 20px;
    box-sizing: content-box;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15);
}

.switch-label:before,
.switch-label:after {
    position: absolute;
    top: 50%;
    font-size: 10px;
    margin-top: -.5em;
    line-height: 1;
    -webkit-transition: inherit;
    -moz-transition: inherit;
    -o-transition: inherit;
    transition: inherit;
    box-sizing: content-box;
}

.switch-label:before {
    content: attr(data-off);
    right: 11px;
    color: #ffffff;
}

.switch-label:after {
    content: attr(data-on);
    left: 11px;
    color: #FFFFFF;
    text-shadow: 0 1px rgba(0, 0, 0, 0.2);
    opacity: 0;
}

.switch-input:checked~.switch-label {
    background: #8dbf17;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);
}

.switch-input:checked~.switch-label:before {
    opacity: 0;
}

.switch-input:checked~.switch-label:after {
    opacity: 1;
}

.switch-handle {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: linear-gradient(to bottom, #FFFFFF 40%, #f0f0f0);
    background-image: -webkit-linear-gradient(top, #FFFFFF 40%, #f0f0f0);
    border-radius: 100%;
    box-shadow: 1px 1px 5px rgb(0 0 0 / 20%);
    -webkit-box-shadow: 1px 1px 5px rgb(0 0 0 / 20%);
    -moz-box-shadow: 1px 1px 5px rgb(0 0 0 / 20%);
}

.switch-handle:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    margin: -6px 0 0 -6px;
    width: 0;
    height: 0;
    background: linear-gradient(to bottom, #eeeeee, #FFFFFF);
    background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF);
    border-radius: 6px;
    box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
}

.switch-input:checked~.switch-handle {
    left: 58px;
    box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}


.icon-box {
    text-align: center;
}
.icon-box img {
    margin-bottom: 11px;
}
p.icon-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

.img-box {
    background: #f6fbd6;
    position: relative;
    top: -45px;
    margin: 0 7%;
    padding: 33px 40px;
    border-radius: 16px;
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
    -webkit-box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
    -moz-box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
}

.img-box p {
    line-height: 22px !important;
    font-size: 17px;
    font-weight: 400;
    margin: 0;
}

/* Transition
========================== */

.switch-label,
.switch-handle {
    transition: All 0.3s ease;
    -webkit-transition: All 0.3s ease;
    -moz-transition: All 0.3s ease;
    -o-transition: All 0.3s ease;
}
/*
* ------------------------------------------------------------ HEADER-STYLES 
*
*/
header .navbar-brand img {
    height: 3rem;
    width: auto;
}

.header-container{
    padding-top: 8px;
}

/* header top bar */

div#header-top-bar {
    background: var(--gray-light);
    padding: 5px 0px;
    font-weight: 600;
    color: var(--gray);
    font-size: 15px;
    z-index: 1;
}

.container.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* .container.top-bar-content div {
    width: 25%;
} */

.container.top-bar-content div.center {
    width: 50%;
    text-align: center;
}

.container.top-bar-content p {
    margin: 0;
}

.container.top-bar-content .left p {
    margin-right: 19px !important;
}

.container.top-bar-content .left p img {
    margin-right: 4px;
    position: relative;
    top: -1px;
}

.container.top-bar-content .left p a {
    color: #a2a2a2 !important;
}

.container.top-bar-content .right img {
    margin-right: 10px;
}
/*---------------*/

 .toggler-logo-wrapper {
    display: flex;
    align-items: center;
}
 .toggler-logo-wrapper .logo-wrapper {
    padding-left: 0rem;
}

.search-wrapper .form-clear{
    top:0px;
    right:0px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-container .search-wrapper .input-group-append{
    right: 0px;
    position: absolute;
    top: 0px;
    bottom: 0px;
} 
.header-container .search-wrapper .input-group-append .btn-secondary{
    background-color: transparent;
    border:none;
    color:var(--gray);
} 
.header-container .search-wrapper .tt-hint{
    background-color: transparent !important;
} 
.search-wrapper input.form-control.tt-input,
input#search-header{
    background-color: var(--highlight) !important;
    height: 51px;
    padding-right: 52px;
    padding-left: 20px;
    font-size: 18px;
    font-weight: 400;
    border-radius: 10px;
    border: transparent;
}

header.cart-header{
    height: auto;
    background: #f9f9f9;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

header.cart-header .header-container{
    padding-top:0px;
    display: flex;
    justify-content: space-between;
}
header.cart-header .header-container .toggler-logo-wrapper{
    float:none;
}

.secure-checkout-icon {
    text-align: right !important;
    color: var(--primary-md);
    font-size: 18px;
    font-weight: 500;
}

/* navigation button */
button#burger-menu {
    font-size: 15px;
    background: #7F886A;
    display: block;
    height: auto;
    padding: 18px 20px;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    /* transition: 0.3s all ease-in-out; */
}

button#burger-menu span.navbar-toggler-icon {
    margin-right: 8px;
    position: relative;
    top: -1px;
}

#shop-nav{
    width: 100%;
}

#shop-nav li i.fas,
#shop-nav li span.fas{
    position: relative;
    font-size: 18px;
}

#shop-nav div.nav-item span.title,
#shop-nav li span.title{
    display: block;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    padding-top: 4px;
}
header .nav-right .nav-item{
    position: relative;
}
header .nav-right .nav-link{
    position: relative;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    text-align: center;
    padding: 0em 7px;
    color:var(--primary);
}

header .nav-right .dropdown-menu{
    border-radius: 17px;
    padding-bottom: 20px; 
    box-shadow: -3px 2px 15px -2px #8a8787e0!important;
    -webkit-box-shadow: -3px 2px 15px -2px #8a8787e0!important;
    -moz-box-shadow: -3px 2px 15px -2px #8a8787e0!important;
}
header .nav-right .dropdown-menu .pass-forgot-link{
    position: relative;
    display: block;
    text-align: center;
    font-weight: 600;
    color:var(--primary-md); 
}

#quick-login .form-group {
    margin-bottom: 25px !important;
}

.custom-select{
    border-radius: 8px;
    border-color: var(--gray);
}

input[type="text"],
input[type="email"],
input[type="password"],
#quick-login input {
    background: white !important;
    border-radius: 6px;
    height: 42px;
    border-color: white;
    box-shadow: inset 0.5px 0.5px 6px rgb(0 0 0 / 13%);
    -webkit-box-shadow: inset 0.5px 0.5px 6px rgb(0 0 0 / 13%);
    -moz-box-shadow: inset 0.5px 0.5px 6px rgb(0 0 0 / 13%);
}



#quick-login label {
    position: inherit;
    padding: 0;
    font-weight: 300;
    font-size: 14px;
    margin-bottom: -5px;
}
#shop-nav .dropdown-menu {
    width: 450px;
}

#shop-nav .account-icon-dropdown .dropdown-menu{
    padding: 1rem 0rem;
}
#shop-nav .account-icon-dropdown .dropdown-menu .btn-wrap{
    display: flex;
    justify-content: flex-end;
    padding: 0rem 1rem;
    margin-top: 1rem; 
}
#shop-nav .account-icon-dropdown .dropdown-menu .account-icon-dropdown-logout{
    display: inline-block;
    width: auto;
    border-radius: 4px;
}
#shop-nav .account-icon-dropdown .dropdown-menu .btn-link{
    color:var(--primary);
}

.tab-box {
    display: none;
}
.tab-teaser .tab-menu ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    padding: 0 23px;
    padding-top: 25px;
    align-items: center;
    padding-bottom: 16px;
}
.tab-teaser .tab-menu ul [data-rel]{
   cursor: auto;
   padding:4px 7px;
   border-radius: 7px;
   font-weight: bold;
   font-size: 17px;
   color:var(--primary);
   background: var(--light);
}
.tab-teaser .tab-menu ul [data-rel]:not(.active){
   background-color: var(--secondary);
   color: var(--secondary-text);
   font-weight: 400;
   cursor: pointer;
   box-shadow: 1px 3px 5px 0px rgba(0,0,0,0.2);
   -webkit-box-shadow: 1px 3px 5px 0px rgba(0,0,0,0.2);
   -moz-box-shadow: 1px 3px 5px 0px rgba(0,0,0,0.2);
}

div#tab-1 {
    padding: 0 26px;
    padding-bottom: 40px;
}

div#tab-1 .title {
    font-size: 16px;
    font-weight: 600;
    margin-top: 21px;
}
div#tab-1 .feature ul {
    list-style: none;
    padding: 0;
    font-size: 16px;
    color: #3E4F3C;
    margin-top: 23px;
}
div#tab-1 .feature ul li {
    position: relative;
    padding-left: 25px;
    line-height: 20px;
    margin-bottom: 9px;
}
div#tab-1 .feature ul li:before {
    content: "";
    position: absolute;
    left: 0;
    width: 23px;
    height: 16px;
    background: url(/media/image/storage/opc/check.png);
    background-repeat: no-repeat;
    background-size: inherit;
    top: 0;
}
.button.create-account {
    position: relative;
    text-align: center;
    margin-top: 43px;
    margin-bottom: 21px;
}
.button.create-account > a{
    padding-left: 7px;
    padding-right: 7px;
}
.button.create-account > a:hover{
    color:var(--primary-text) !important;
}

.form-control:focus{
    border-color: var(--primary-light) !important;
} 

.custom-select:focus{
    box-shadow: 0px 0px 10px -2px rgba(var(--primary-light-rgb), 0.25);
    -webkit-box-shadow: 0px 0px 10px -2px rgba(var(--primary-light-rgb), 0.25);
    -moz-box-shadow: 0px 0px 10px -2px rgba(var(--primary-light-rgb), 0.25);
}

header .nav-right .dropdown-menu .pass-forgot-link:hover{
    color:var(--primary);
}

#shop-nav .cart-dropdown:before, #shop-nav .account-icon-dropdown .show:before, #nav-wishlist-collapse:before, #comparelist-dropdown-container:before {
    content: '';
    position: absolute;
    top: -10px;
    right: 29px;
    height: 25px;
    width: 25px;
    background: #fff;
    border-radius: 4px;
    transform: rotate(45deg);
    /* z-index: 9; */
    box-shadow: -4px -3px 12px -5px #8a8787e0;
    -webkit-box-shadow: -4px -3px 12px -5px #8a8787e0;
    -moz-box-shadow: -4px -3px 12px -5px #8a8787e0;
}

.landing img, .landing svg {
    width: 25px;
    height: 25px;
    fill:var(--primary);
}

#shop-nav #search{
    flex:1;
    justify-content: center;
    padding-left: 50px;
    padding-right:30px;
    margin-right: 0px;
}
#shop-nav #search .search-wrapper{
    width: 100%;
    /* max-width: 400px; */
    margin: 0 auto;
}
#shop-nav #search .input-group .twitter-typeahead{
    width:100%;
}


#shop-nav .customer-grp-li{
    /* flex: 1;
    text-align: center;
    display: flex;
    max-width: 200px; */
    text-align: center;
    display: flex;
    width: 150px;
}

form#customer-grp {
    width: 100%;
    text-align: center;
    padding-right: 0;
    margin: 0 auto;
    line-height: 1;
}

form#customer-grp label.switch {
    width: auto;
}

span.customer-grp-name {
    font-size: 14px;
    display: block;
    margin-top: 3px;
    text-align: center;
    color: var(--primary);
}


 /*---------------- header mega menu */

ul.header_menu_ul.nav.nav-dividers {
    position: relative;
    background: #dde0d89c;
    /* margin-bottom: -10px; */
    margin-top: 12px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    justify-content: center;
}

ul.header_menu_ul li.main_items {
    position: unset !important;
    font-size: 15px;
}

ul.header_menu_ul ul.mega_menu {
    position: absolute;
    background: white;
    left: 0;
    width: 100%;
    z-index: 99;
    display: none;
}

ul.header_menu_ul li.main_items a.main_items_link {
    padding: 12px 22px;
    display: inline-block;
}

.header_menu_ul .main_items .mega_menu.active {
    display: block;
    justify-content: center;
    flex-wrap: wrap;
}

.mega_title {
    text-align: center;
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 700;
}

ul.mega_menu.active {
    list-style: none;
    padding: 39px 10%;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    padding-bottom: 60px;
    border: 7px solid #eaece7;
    box-shadow: 0 32px 29px -11px #00000070;
    -webkit-box-shadow: 0 32px 29px -11px #00000070;
    -moz-box-shadow: 0 32px 29px -11px #00000070;
}

ul.mega_menu.active li.mega_menu_items {
    /* width: 22.5% !important; */
    width: auto !important;
    float: left;
    text-align: center;
    background: var(--highlight);
    margin: 9px 14px;
    border-radius: 7px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid white;
    box-shadow: 0 4px 10px -4px rgba(0,0,0,0.15);
    -webkit-box-shadow: 0 4px 10px -4px rgba(0,0,0,0.15);
    -moz-box-shadow: 0 4px 10px -4px rgba(0,0,0,0.15);

    transition: box-shadow 0.2s ease;
    -webkit-transition: box-shadow 0.2s ease;
    -moz-transition: box-shadow 0.2s ease;
}

a.mega_menu_link {
    display: block;
    width: 100%;
    padding: 12px 16px;
    color: #464646;
}

ul.child_list {
    padding: 0;
    list-style: none;
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    padding: 0 46px;
    padding-bottom: 17px;
}

ul.mega_menu.active li.mega_menu_items:hover {
    opacity: 0.8;
    box-shadow: 0 0px 0px 0px rgba(0,0,0,0);
    -webkit-box-shadow: 0 0px 0px 0px rgba(0,0,0,0);
    -moz-box-shadow: 0 0px 0px 0px rgba(0,0,0,0);
}

ul.mega_menu.active li.mega_menu_items:hover a:hover {
    color: #464646 !important;
}

ul.header_menu_ul li.main_items:after {
    display: none;
}

ul.header_menu_ul li.main_items>a {
    position: relative;
}

ul.header_menu_ul li.main_items:not(:last-child)>a:after {
    content: '';
    width: 1px;
    height: 13px;
    background: #bcbdba;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

ul.header_menu_ul li.main_items a.main_items_link i.fas.fa-sort-down {
    position: relative;
    top: -3px;
}

/*-------------- main navigation */
.nav-mobile-header-toggler button.navbar-toggler {
    position: absolute;
    top: 36px;
    right: 30px;
    color: var(--primary-light);
}
header .nav-mobile-header {
    padding-left: 1rem;
    padding-right: 1rem;
}
a.nav-offcanvas-title {
    color: var(--secondary);
    font-size: 14px;
    font-weight: bold;
}

div#mainNavigation {
    max-width: 418px;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    box-shadow: 12px 1px 43px 1px #00000021;
    -webkit-box-shadow: 12px 1px 43px 1px #00000021;
    -moz-box-shadow: 12px 1px 43px 1px #00000021;
}
div#mainNavigation.show {
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
}

header .navbar-collapse.hide:not(.show) ,
header .navbar-collapse:not(.show) {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
}

header .navbar-collapse{
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    height: 100vh !important;
    -webkit-overflow-scrolling: touch;
    max-width: 16.875rem;
    transition: all 0.2s ease-in-out;
    z-index: 1050;
    width: 100%;
    background: #ffffff;
}

header .nav-mobile-body {
    height: calc(100vh - 3.125rem);
    height: calc(var(--vh, 1vh) * 100 - 3.125rem);
    overflow-y: auto;
    position: relative;
}

.nav-mobile-body li a span {
    padding: 15px 10px !important;
    font-weight: 600;
    font-size: 16px;
    color: var(--primary);
}
.nav-mobile-body li a span.icon-cat{
   /* display: none; */
   color: var(--primary-light);
   font-weight: bold;
}

header .nav-scrollbar-inner {
    overflow: visible;
}
header .navbar-nav {
    transition: all 0.2s ease-in-out;
}


header .dropup, header .dropright, header .dropdown, header .dropleft, header .col, header [class*=col-] {
    position: static;
}
header .navbar-nav .nav-link {
    margin-top: -1rem;
    margin-bottom: -1rem;
    margin-left: -1rem;
    margin-right: -1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .navbar-nav .nav-item, header .navbar-nav  .nav-link {
    margin-left: 0;
    margin-right: 0;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
header .navbar-nav .dropdown-menu .subcategory-wrapper .row > .nav-item > .nav-link {
    margin-top: 0rem;
    margin-bottom: 0rem;
}

.subcategory-wrapper .col {
    max-width: 100%;
    padding: 0 !important;
    margin: 0px !important;
}

header .navbar-nav .dropdown-menu .subcategory-wrapper .row > .nav-item > .nav-link.dropdown-toggle::after,   
header .navbar-nav .nav-link::after { 
    content: '\f054' !important;
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900;
    margin-left: 0.5rem;
    margin-top: 0;
    font-size: 16px;
    padding: 15px 10px !important;
    text-align: center;
    border-left: 1px dashed #dcd4d4;
    width: 42px;
}
header .navbar-nav .nav-link:not(.dropdown-toggle)::after {
    content: '' !important;
    display: none;
}

.container.subcategory-wrapper .col.nav-item-lg-m {
    flex: 0 0 100% !important;
    max-width: 100% !important;
}

.nav-mobile-body li a {
    padding: 0 !important;
    display: flex !important;
    border-bottom: 1px dashed #dcdcdc;
}
.nav-mobile-body div.title-cat a ,
.nav-mobile-body li.title-cat a {
    color: var(--primary-light);
    border-bottom: 0rem;
    border-top: 0rem !important;
    font-size: 1.1rem;
}
.nav-mobile-body div.title-cat a {
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.nav-mobile-body div.title-cat + div.col > a,
.nav-mobile-body li.title-cat + li.nav-item > a{ 
    border-top: 1px dashed #dcdcdc;
}

header .dropup, header .dropright, header .dropdown, header .dropleft, header .col, header [class*=col-] {
    position: static;
}

.navbar-expand-lg .navbar-nav {
    flex-direction: column;
    /* padding: 0 18px; */
}


header .navbar-nav .dropdown-menu {
    position: absolute;
    left: 100%;
    top: 0;
    width: 100%;
    padding: 0 24px;
    margin: 0;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}
header .subcategory-wrapper .categories-recursive-dropdown{
    padding:0px;
}

.dropdown-menu.show { 
    display: block;
    overflow: inherit;
}

header .navbar-nav > .nav-item.dropdown-full .dropdown-menu {
    width: 100%;
    overflow: inherit;
}
header .navbar-nav > .nav-item > .dropdown-menu {
    max-height: calc(100vh - 12.5rem);
    overflow: auto;
    margin-top: -0.03125rem;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
}
header .navbar-nav .dropdown-menu:not(.show) {
    display: none;
}
.navbar .container {
    display: block;
}

header#jtl-nav-wrapper .row {
    align-items: center;
}
header .navbar-nav .nav {
    flex-direction: column;
}

.nav-logo {
    padding: 0 21px;
    margin-top: -9px;
}

span.icon-cat {
    text-align: center;
    border-left: 1px dashed #dcd4d4;
    width: 42px;
}



header .sp-text-wrap > div{
    position: relative;
    height: 40px; 
}
header .sp-text-wrap .sp-text{
    text-align: center;
    position: absolute;
    border-radius: 10px;
    background: #fff;
    font-size: 22px;
    bottom: -25px;
    padding: 0.5rem;
    width: 100%;
    color: var(--primary);
    font-weight: 600;
    transition: font-size 0.1s ease;
    box-shadow: 1px 4px 10px 0px rgba(0,0,0,0.2);
    -webkit-box-shadow: 1px 4px 10px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 1px 4px 10px 0px rgba(0,0,0,0.2);
}

.special-top-bar .left a{
    font-weight:600;
    color:var(--primary-light) !important;
}
.special-top-bar  .right a{
    color:var(--gray) !important;
}

header .nav-right-tel{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
}
header .nav-right-tel .call-icon{
    max-width: 50px;
    padding-right: 7px;
}
header .nav-right-tel .call-icon img{
    width: 35px;
    transition: width 0.1s ease;
}
header .nav-right-tel .call{
    flex: content;
}


header .nav-right-tel .call a{
    font-size: 28px;
    font-weight: 600;
    color:var(--primary);
    transition: font-size 0.1s ease;
}
header .nav-right-tel .call .timings{
    font-size: 12px;
}

header.special-page-header.minimise .nav-right-tel .call a{  
    font-size: 16px; 
}
header.special-page-header.minimise nav.navbar{  
    height: auto !important;
}
header.special-page-header.minimise .navbar-brand img{  
    height: 40px;
    
}
header.special-page-header.minimise .sp-text-wrap .sp-text{  
    font-size: 18px;
}
header.special-page-header.minimise .nav-right-tel .call-icon img{   
    width: 25px;
}

/*------------------------------- float btns */
#flo-phone {
    top: 400px;
}
a#flo-form {
    top: 475px;
}
a#flo-mail {
    top: 550px;
}

#flo-form:hover {
    width: 212px;
}
a#flo-mail:hover {
    width: 253px;
}
#flo-phone:hover {
    width: 255px;
}
.po-flo:hover .text {
    visibility: visible;
}
.po-flo .text {
    white-space: nowrap; 
}
.po-flo:hover i {
    animation-name: rotate;
    animation-duration: 1s; 
}
.po-flo .text {
    background: #c8d385;
    padding: 15px 15px;
    margin-left: -25px;
    position: relative;
    z-index: -1;
    padding-left: 42px;
    color: #3e4f3c;
    padding-right: 27px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    visibility: hidden;
}
.po-flo {
    position: fixed;
    right: 20px;
    display: flex;
    width: 60px;
    overflow: hidden;
    transition: 0.3s all ease-in-out;
    z-index: 999;
    align-items: center;
}
.po-flo i {
    width: 60px;
    height: 60px;
    line-height: 59px;
    background: blue;
    text-align: center;
    border-radius: 50%;
    background-image: linear-gradient( 261deg, #859465 0%, #4e5a3a 74%);
    animation-name: out;
    animation-duration: 1s;
    font-size: 30px;
    color: white;
}
.po-flo .text {
    background: #c8d385;
    padding: 15px 15px;
    margin-left: -25px;
    position: relative;
    z-index: -1;
    padding-left: 42px;
    color: #3e4f3c;
    padding-right: 27px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    visibility: hidden;
}


/*------------------------------- offer note */
header~.offer-note.sticky-top {
    top: 135px;
    /* z-index: 999; */
    z-index: 1002;
}
.custom_notice {
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 1rem;
    background: var(--primary-md);
    color: white;
    padding: 11px 5px;
    border-radius: 10px;
    line-height: 1.5rem;
}

header~.offer-note .custom_notice {
    border-radius: 0 0 10px 10px;
    margin: 0;
    z-index: 999;
    padding: 10px 15px;
    text-align: center;
}
header~.offer-note .custom_notice {
    position: relative;
    border-radius: 0 0 10px 10px;
    margin: 0;
    z-index: 999;
    padding: 10px 15px;
    text-align: center;
}
.rabatt {
    position: relative;
    background: var(--primary-light);
    color: #000;
    padding: 4px;
    border-radius: 4px;
    margin-right: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;

    animation: blink 0.5s infinite alternate;

    font-size: 14px;
}
.rabatt:after {
    content:"";
    position: absolute;
    width: 100%;
    height: 100%;
    left:0px;
    right:0px;
    border-radius: 4px;
    display: none;
    box-shadow: 2px 2px 0px 2px red;
    -webkit-box-shadow: 2px 2px 0px 2px red;
    -moz-box-shadow: 2px 2px 0px 2px red;

    animation: shadowAnim 0.5s infinite alternate;
    -webkit-animation: shadowAnim 0.5s infinite alternate;
    -moz-animation: shadowAnim 0.5s infinite alternate;

}
/* .rabatt:after {
    content:"";
    position: absolute;
    height: 0;
    width: 0;
    display: inline;
    content: '';
    border-top: 18px solid transparent;
    border-bottom: 19px solid transparent;
    border-left: 18px solid #ffe000;
    margin-right: 20px;
    top: 102%;
    animation: blink-after 0.5s step-start infinite;
    display: none;
} */
.custom_notice i {
    margin-right: 10px;
}

span.offer_price {
    background: #4a4a4a;
    padding: 5px 5px;
    border-radius: 4px;
}
.offer_price.gift_name {
    /* white-space: nowrap; */
    /* word-break: break-all; */
    background: none;
    font-style: italic;
    font-weight: 800;
    text-decoration: underline;
    letter-spacing: 0.35px;
}
.geschenk {
    background: #4a4a4a;
    padding: 5px 5px;
    border-radius: 4px;
}

.close-notice {
    position: absolute;
    right: 0px;
    top: 0px;
    color: yellow;
    font-size: 13px;
    line-height: 1;
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#cartpanel .custom_notice {
    text-align: left;
    margin-bottom: 15px;
    background: #7f886a;
    color: white;
    padding: 7px;
    border-radius: 5px;
    font-size: 12px;
    margin-top: 15px;
}

#claim-gift-offer {
    position: fixed;
    bottom: 150px;
    left:0px;
    display: grid;
    background: #3e4f3c;
    grid-gap: 5%;
    grid-template-columns: 40% 55%;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    justify-items: start;
    align-items: center;
    padding-right: 4px;
    cursor: pointer;
    box-shadow: -1px 3px 5px #2121214a;
    -webkit-box-shadow: -1px 3px 5px #2121214a;
    -moz-box-shadow: -1px 3px 5px #2121214a;
}

#claim-gift-offer #icon {
    background: url(/media/image/storage/opc/animation_200_kzmmpsxn.gif);
    background-size: 100%;
    background-repeat: no-repeat;
    width: 85px;
    height: 85px;
    margin-top: -47px;
    margin-left: -10px;
}
#claim-gift-offer #text {
    display: grid;
    font-weight: 600;
    color: rgb(255, 255, 255);
}

/*------------------------------- HOME PAGE */
.cat-img a img{
    transition: transform 0.2s ease;
    -webkit-transition: transform 0.2s ease;
    -moz-transition: transform 0.2s ease;
}
.cat-img a:hover img{
    filter: grayscale(0.8);
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
}
.offer-slider .theme-default .nivoSlider{
    margin: 0;
    border-radius: 12px;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}
.offer-slider .nivo-controlNav {
    position: absolute;
    bottom: 0;
    z-index: 99;
    right: 38px;
}
.offer-slider .nivo-controlNav a {
    width: 10px;
    height: 10px;
    background: #ececec;
    border-radius: 50%;
    margin: 0 4px;
    box-shadow: inset 0px 0px 0px 1px #fff, 0px 0px 7px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: inset 0px 0px 0px 1px #fff, 0px 0px 7px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0px 0px 0px 1px #fff, 0px 0px 7px 0px rgba(0, 0, 0, 0.2);
}
.offer-slider .nivo-controlNav a.active {
    background: var(--primary);
}
.second-offer { 
    height: 100%;
    background: url(https://bmpack.de/media/image/storage/opc/Teaser%20Slider/woman-with-food-to-take-away-in-the-shop-window.jpg);
    background-size: cover;
    border-radius: 11px;
}

a.ban-btn{
    position: absolute;
    bottom: 0;
    padding: 13px 29px;
    background:var(--secondary);
    color: var(--secondary-text);
    font-size: 18px;
    text-decoration: none;
    border-bottom-left-radius: 12px;
    box-shadow: 3px -6px 11px 0px #8080808f;
    -webkit-box-shadow: 3px -6px 11px 0px #8080808f;
    -moz-box-shadow: 3px -6px 11px 0px #8080808f;
}


.icons-section {
    padding-top: 81px;
    padding-bottom: 15px;
}
.icons-section .row {
    margin-bottom: 48px;
}
.theme-icon-box {
    /* background: white; */
    padding: 0 6px;
    padding-top: 15px;
    padding-bottom: 4px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.1s ease;
    -webkit-transition: transform 0.1s ease;
    -moz-transition: transform 0.1s ease;
}
.theme-icon-box:hover {
    /* opacity: 0.6; */
    transform: scale(1.05) translateY(-1px);
    -webkit-transform: scale(1.05) translateY(-1px);
    -moz-transform: scale(1.05) translateY(-1px);
}
.theme-icon-img img {
    height: 73px;
    margin-bottom: 10px;
} 

.theme-icon-box p.theme-title a {
    font-size: 16px;
    color: #333333;
    transition: color 0.1s ease;
    -webkit-transition: color 0.1s ease;
    -moz-transition: color 0.1s ease;
}
.theme-icon-box:hover p.theme-title a {
    color: var(--primary-light);
}


p.banner-title {
    font-size: 22px;
    margin-bottom: 35px;
    margin-top: -23px;
}

.active-sale{
    margin-bottom: 2rem;
}
.active-sale .col {
    padding: 1rem 0rem;
    text-align: center;
}
.active-sale .col .content-wrap{
    padding: 0;
    border-radius: 8px;
    margin: 12px;
    max-width: 500px;
    text-align: center;
    border: 1px solid transparent;
    height: 100%;
    box-shadow: 1px 3px 10px -2px rgba(0,0,0,0.2);
    -webkit-box-shadow: 1px 3px 10px -2px rgba(0,0,0,0.2);
    -moz-box-shadow: 1px 3px 10px -2px rgba(0,0,0,0.2);
}
.active-sale .col .content-wrap .card-body{
    padding:0px;
}

.active-sale .weekly-sale,
.active-sale .daily-sale{
    margin-top: 26px;
    padding: 0 12%;
}

h3.sale-title{
    background: var(--primary-light);
    padding: 15px 29px;
    font-weight: 600;
    font-size: 20px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.sale-btn {
    display: block;
    margin-top: 22px;
}
.sale-box {
    text-align: center;
    padding: 0 10%;
}
.sale-img {
    border-bottom: 1px solid #8080804a;
} 
.opc-Countdown .row.text-center {
    justify-content: center;
}
.opc-Countdown .row div.col:not(.expired) {
    background: linear-gradient(176deg, #535181, #302f52);
    color: white;
    padding: 0 0 !important;
    flex: 0 0 21%;
    margin: 4px 6px;
    font-size: 16px;
    border-radius: 7px;
}
.opc-Countdown .cntdwn-item {
    font-size: 45px;
    font-weight: 700;
}
.cntdwn-unit {
    margin-top: -8px;
}
.sale-action a {
    display: block;
}
.sale-action a {
    background: linear-gradient( 180deg, #6c8238ab, #1a2a03c7);
    padding: 15px 20px;
    color: white;
    font-weight: 600;
    border-radius: 10px;
    transition: 0.3s all ease-in-out;
}

.news-offer-title {
    background: #FDF9DB;
    padding: 15px 29px;
    font-weight: 600;
    font-size: 20px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    margin-bottom: 0;
}
.news-img {
    background: #fdf9db;
    height: 158px;
    text-align: center;
}

.sale-img img,
.news-img img {
    width: 85%;
}
.news-content {
    text-align: center;
    padding: 0 10%;
}
.news-title {
    font-size: 22px;
    margin-top: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 11px;
}
p.news-desc {
    color: #525252;
    font-size: 14px;
    line-height: 19px;
}
.home_form form.footer_news_hide {
    display: block;
}
.news-mail input {
    border-radius: 50px !important;
    background: white !important;
    border: 1px solid #E6E6E6;
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
    -webkit-box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
    -moz-box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
}
.news-submit {
    justify-content: center;
    margin-top: 24px;
    margin-bottom: 18px;
}
.news-submit button {
    background: linear-gradient( 180deg, #fdce42, #db9b03);
    border: 0;
    font-size: 16px;
    padding: 11px 51px;
    border-radius: 10px;
    transition: 0.3s all ease-in-out;
}

.left-icon {
    padding: 15px 10px;
}
.left-icon img {
    margin-right: 6px;
    width: 28px;
}

.home-sec3 .text-sec{
    position: relative;
    z-index: 1;
}
.home-sec3 .burger-pack {
    max-width: 683px;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    right: 0px;
    height: 100%;
    width: 669px;
    top: 0px;
    z-index: 0; 
}

.container.cta-box {
    padding-top: 65px;
    padding-bottom: 50px;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 45px;
    font-weight: 600;
}
.cta-box .sub {
    font-size: 20px;
    color: var(--primary);
}
ul.cta-list {
    list-style: none;
    padding: 0;
    font-size: 20px;
    font-weight: 400;
    color: var(--primary);
}
ul.cta-list li {
    position: relative;
    padding-left: 37px;
    margin-bottom: 0rem;
}
ul.cta-list li:before {
    content: "";
    width: 22px;
    height: 22px;
    background: url(/media/image/storage/opc/double-check.png);
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    left: 0;
    top: 3px;
}
p.cta-btn {
    margin-top: 37px;
    margin-bottom: 54px;
}
p.cta-btn a {
    background: var(--secondary);
    padding: 13px 23px;
    color: white;
    border-radius: 50px;
    padding-right: 51px;
    font-size: 18px;
    position: relative;
    box-shadow: 0 5px 10px var(--secondary-shadow);
    -webkit-box-shadow: 0 5px 10px var(--secondary-shadow);
    -moz-box-shadow: 0 5px 10px var(--secondary-shadow);
    transition:  box-shadow 0.3s ease;
    -webkit-transition:  box-shadow 0.3s ease;
    -moz-transition:  box-shadow 0.3s ease;
}
p.cta-btn a:hover {
    box-shadow: 0 0px 0px var(--secondary-shadow);
    -webkit-box-shadow: 0 0px 0px var(--secondary-shadow);
    -moz-box-shadow: 0 0px 0px var(--secondary-shadow);
}
p.cta-btn a:after {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    background: url(/media/image/storage/opc/button-icon.png);
    background-repeat: no-repeat;
    background-size: 100%;
    right: 13px;
    top: 10px;
}
img.burger-pack, .burger-pack img {
    position: absolute;
    width: 669px !important;
    right: -70px;
    top: -63px;
    z-index: 8;
}
.row.icon-offer-box {
    margin-top: 57px;
    padding: 0 16%;
}
.info-box {
    height: 433px;
    background-repeat: no-repeat !important;
    background-size: cover!important;
    margin-top: 54px;
    border-radius: 18px;
}

.info-box.one {
    background: url(/media/image/storage/opc/vegatable-woman.jpg);
}
.info-box.two {
    background: url(/media/image/storage/opc/innovative-packing.jpg);
}

.text-part h2, .text-part span {
    font-weight: 700;
}
.text-part p, .text-part span {
    line-height: 1.7em;
}

.second-cta {
    background: url(/media/image/storage/opc/cta-background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 74px;
    margin-top: 110px;
    padding-bottom: 98px;
}

.icons-section-container:before {
    content: "";
    background: url(/media/image/storage/opc/section-divider-grey.png);
    left: 0;
    right: 0;
    top: -48px;
    height: 100px;
    position: absolute;
}
.icons-section-container:after {
    content: "";
    background: url(/media/image/storage/opc/shape-divider-grey-down.png);
    position: absolute;
    left: 0;
    right: 0;
    height: 80px;
    background-position: bottom;
    bottom: -80px;
}

.container-fluid.opc-Container .opc-Container {
    max-width: 1350px;
    margin: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}
.cat-section .small-title {
    margin-bottom: 34px;
}
.cat-section>div>.row {
    margin-bottom: 28px;
}
p.cat-title {
    margin-top: 13px;
    font-size: 18px;
    margin-left: 0px;
}
p.cat-title a{
    font-size: 16px;
    position: relative;
    color: var(--primary);
    font-weight: bold;
}
p.cat-title a:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f054";
    position: absolute;
    right: -17px;
    top: 50%;
    font-size: 13px;
    transform: translateY(-40%);
}

.text-grid a span {
    color:var(--secondary) !important;
    text-decoration: none;
}
.text-grid a:hover span {
    color:var(--primary-light) !important;
}

/*-------------- mini cart */
p.delete_notice:before {
    content: "\2717";
    margin-right: 8px;
}

p.delete_notice { 
    font-size: 15px;
    color: darkred;
    margin-top: 6px;
    margin-bottom: 0;
}

p.update_notice:before {
    content: "\2713";
    margin-right: 8px;
}

p.update_notice {
    color: var(--primary-light);
    font-weight: 400;
    font-style: italic;
    font-size: 13px;
    margin-top: 6px;
    margin-bottom: 0;
}


div#cartpanel {
    right: -428px;
}
div#cartpanel.show {
    right: 0;
}
div#cartpanel{
    position: fixed;
    background: white;
    top: 0;
    height: 100%;
    z-index: 9999;
    width: 428px;
    transition: 0.3s all ease-in-out;
}

div#cartpanel .zakeke-edit-wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.basket-items a.to-redesign-link,
div#cartpanel a.to-redesign-link,
div#cartpanel .zakeke-edit-wrap .btn.cart-items-delete-button{
    padding: 4px 4px 4px 0px;
    text-align: center;
    color: var(--primary-md);
}
.basket-items a.to-redesign-link span.label,
div#cartpanel a.to-redesign-link span.label{
    font-weight: 400;
    font-style: italic;
    font-size: 12px;
}
.basket-items a.to-redesign-link:hover,
div#cartpanel a.to-redesign-link:hover{
    color: var(--primary-light);
}

div#cartpanel .cart-title{
    color: var(--primary);
    font-size: 18px;
    padding: 0 28px;
    padding-bottom: 21px;
    padding-top: 20px;
    font-weight: bold;
    border-bottom: 1px solid var(--gray-light);
}
a.dropdown-item.cart-dropdown-empty {
    display: block;
    white-space: inherit;
    padding: 24px 37px !important;
}
div#cartpanel-backdrop.fade-show {
    background: #000000bd;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 1;
    transition: 0.3s all ease-in-out;
    z-index: 9999;
}

button#cartsidepanel {
    background: transparent;
    border: 0;
    text-align: center !important;
    color: var(--primary);
    transition: color 0.2s ease-in-out;
}
button#cartsidepanel:hover {
    color: var(--primary-light);
}
.empty-cart {
    padding: 30px 2px;
    text-align: center;
    color:var(--primary);
}

.empty-cart .title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
}

.empty-cart .title p {
    white-space: pre;
}
.home_form form.footer_news_hide {
    display: block;
}

.fa-sup{
    background-color: var(--primary-light);
}


form#cart-form.ajax_cart {
    height: calc(100% - 425px);
    overflow-y: auto;
    padding-bottom: 50px;
}

.cartbar  .table-responsive{
    padding-left:0em !important;
    padding-right:0em !important;
}
.cartbar  .dropdown-cart-items tbody tr{
    border-bottom: 1px dashed #ebebeb;
    border-top: 1px dashed #ebebeb;
}
.cartbar  .dropdown-cart-items tbody tr:nth-child(1){ 
    border-top: 0px dashed #ebebeb;
}
.table-striped tbody tr:nth-of-type(even){
    background-color: transparent;
}
.cartbar  .dropdown-cart-items tr > td{
    padding:0.5rem;
}
.cartbar .dropdown-cart-items .form-row img{
    max-width: 40px;
    height: auto;
}
div#cartpanel table a{
    font-weight: 700;
    font-size: 14px;
    color:var(--primary);
}
div#cartpanel table td.text-right-util.text-nowrap-util{
    color: var(--primary-light);
    font-weight: bold;
    font-size: 16px;
}
input.form-control.quantity-side{
    width: 67px;
    border-radius: 4px;
    background-color: #fff !important;
    border: 0px;
    padding: 7px 7px;
    min-height: 25px;
    height: auto;
    box-shadow: inset 2px 2px 7px #80808069;
    -webkit-box-shadow: inset 2px 2px 7px #80808069;
    -moz-box-shadow: inset 2px 2px 7px #80808069;
}

div#cartpanel .dropdown-body {
    position: absolute;
    bottom: 0;
    background: white;
    box-shadow: 0 -9px 20px #8080802e;
    -webkit-box-shadow: 0 -9px 20px #8080802e;
    -moz-box-shadow: 0 -9px 20px #8080802e;
}

.btn-link.cart-items-delete-button{
    color:var(--danger);
    padding-top: 2px;
}
.btn-link.cart-items-delete-button:hover{
    color:var(--danger);
}
li.cart-dropdown-total-item {
    text-align: right;
}
li.font-weight-bold-util {
    text-align: right;
    font-size: 18px;
    margin-top: 5px;
    margin-bottom: 29px;
}
.cart-dropdown-total-item-price.cart-total{
    font-weight: 600;
    font-size: 22px;
    font-family: arial;
    color: var(--secondary-dark);
}

.cart-dropdown-total-item a{
    text-decoration: underline;
    font-style: italic;
    color:var(--primary-light);
} 

li.cart-dropdown-total-item {
    text-align: right;
}
.row.cart-dropdown-buttons a.btn.cart-dropdown-go.btn-outline-primary {
    margin-bottom: 15px;
    padding: 10px 13px;
    margin-top: 1rem;
}

/*-------------------------------------- PRODUCT DETAILS PAGE */
.bonus-info-wrap{
    align-items: center;
    display: flex;
}
.row.bonus-info{
    align-items: center;
}
div#reward-points+hr {
    display: none;
}
.shortdesc {
    margin-left: 4rem;
}
h3.short-desc {
    font-size: 22px;
    font-weight: 700;
    color: #8bbf0e;
    margin-top: 37px;
}

.shortdesc ul {
    list-style: none;
    padding: 0;
}
.shortdesc ul li {
    position: relative;
    padding-left: 23px;
}
.shortdesc ul li:before {
    content: "\2714";
    color: #8bbf0e;
    position: absolute;
    left: 0;
    top: 2px;
}

form#buy_form{
    border-bottom: 1px dashed #cacaca;
    margin-bottom: 50px;
    padding-bottom: 40px;
}
.product-detail #image_wrapper #gallery {
    margin-bottom: 2rem;
    background: #fff;
    border-radius: 8px;
    overflow: clip;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.3);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.3);
}
.product-detail .full-screen #image_wrapper #gallery {
    border-radius: 8px;
    overflow: inherit;
    box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
    -moz-box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
}

.product-title {
    font-size: 30px;
    line-height: 40px;
    color: var(--primary);
    font-weight: bold;
}

#product-offer .product-gallery{
    padding-right: 4rem;
}
#product-offer .product-info ul.info-essential {
    margin: 0rem;
}
#product-offer .product-info ul.info-essential li strong,
#product-offer .product-info .hersteller strong{
    font-weight: normal;
}
/* #product-offer .customizable-product-info .price-section .price_label{
    display: block;
} */
ul.info-essential.list-unstyled {
    color: grey;
}

#product-offer .hersteller img{
    height: 56px;
}
#product-offer .hersteller a [itemprop="name"] {
    display: none;
}
#product-offer .review-line{
    color: var(--secondary-dark);
    font-weight: 600; 
    padding-top: 20px;
    font-size: 15px;
    cursor: pointer; 
}

#product-offer .product-info .product-offer{
    padding-top: 0em;
}
#product-offer .details-row{
    /* border-bottom: 1px dashed #cacaca !important;
    border-top: 1px dashed #cacaca; */
    padding-top: 0rem;
    /* padding-bottom: 1.5rem; */
    margin: 20px 0px;
}
#product-offer .details-row .price-section{
    border-top: 1px dashed #cacaca !important;
    border-bottom: 1px dashed #cacaca !important;
    padding: 1rem 0rem;
    margin-bottom: 2rem;
}
#product-offer  .variations-top{
    border-top: 1px dashed #cacaca !important;
    /* border-bottom: 1px dashed #cacaca !important; */
    padding: 1rem 0rem;
    margin-top: 1rem;
}
#product-offer  .price-bottom{
    margin-top: 0em;
}

.price-section > .row .price-wrapper-col{
   padding:0rem;
}

.border-dashed-right {
    border-right: 1px dashed #cacaca !important;
}
.product-offer{
    margin-bottom: 2rem; 
    padding-top: 30px;
    /* margin-top: 25px; */
    /* border-top: 1px dashed #cacaca !important; */
}
#product-offer .product-info .stock-information.stock-information-p {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
#product-offer .product-info .stock-information {
    border-top: 0;
    font-size: 16px;
    padding-top: 0 !important;
    border-bottom: 0px dashed #cacaca !important;
}
#product-offer .product-info .product-offer > .row{
    margin-bottom: 1rem;
}
#product-offer .product-info .product-offer > .row.btn-3d-wrap{ 
    max-width: 600px;
}

#add-to-cart {
    margin-top: 1rem;
}
#product-offer .product-info .question-on-item .question {
    padding: 0;
    color: var(--secondary-dark);
    text-decoration: underline;
}
#product-offer .btn-link,
#product-offer .estimated-delivery .estimated-delivery-info{
    font-weight: bold;
}
.btn-link:hover,
.estimated-delivery:hover .estimated-delivery-info{
    color:var(--primary-light);
}

.form-counter{
    border-radius: 4px;
}

#add-to-cart #quantity-grp .input-group-text{
    display: none;
}
#add-to-cart #quantity-grp{
    background: #fff !important;
    border: 1px solid #E9E5E5 !important;
    border-radius: 10px;
    overflow: clip;
    box-shadow: inset 0.5px 0.5px 6px rgba(0,0,0,0.13); 
    -webkit-box-shadow: inset 0.5px 0.5px 6px rgba(0,0,0,0.13); 
    -moz-box-shadow: inset 0.5px 0.5px 6px rgba(0,0,0,0.13);  
}
#add-to-cart #quantity-grp input#quantity{
    background: transparent !important;
}

.bulk-prices {
    font-weight: 700;
    width: 98%;
    max-width: 700px;
    margin: 0px;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    /* background: #fff; */
    /* box-shadow: 0px 2px 10px -2px rgba(0,0,0,0.2); */
}

.bulk-prices .table {
    border-collapse: separate;
    color: #333;
}
.table-hover tbody tr:hover {
    background-color: #d6eaa540;
}
.bulk-prices .table thead th {
    border: 0px;
    font-size: 14px;
    color: var(--primary);
    vertical-align: top;
}
.bulk-prices .table td {
    border-top: var(--dashed-border);
}
.disc_percentage {
    color: var(--primary-light);
    /* margin-right: 12px; */
}

.add-qty a {
    background:var(--primary-light);
    padding: 7px;
    border-radius: 5px;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.3px;
}

.wishlist-button.green{
    color: var(--primary-light);
    /* font-weight: 600;
    height: 50px;
    margin-right: 0px;*/
    padding-right: 0; 
}
.estimated-delivery,
.delivery-status .status-2, .signal_image .status-2{
    color:var(--primary-light);
}
.delivery-status .status-2, .signal_image .status-2{
    color: #8DBF17;
    font-weight: 600;
}

ul#product-tabs{
    border: 0; 
}

#product-tabs li:not(:nth-child(1)){
    border-left: 1px dashed var(--primary);
}
.tab-navigation #product-tabs .nav-item{
    padding:0 1rem;
}
.tab-navigation #product-tabs .nav-item .nav-link{
    font-weight: 400;
    font-family: Arial, Helvetica, sans-serif;
}
.tab-navigation .nav-item:not(:last-child){
    margin-right: 0rem;
}
.tab-navigation #product-tabs .nav-item:first-child{
    padding-left: 0rem;
}
.tab-navigation .nav-link.active::after, .tab-navigation .nav-link:hover::after{
    width: 0px;
}
.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link{
    font-weight: bold !important;
    font-size: 1.2em;
}

div#tab-description span {
    font-family: "Arial" !important;
}
.product-attributes .table {
    width: 90%;
    margin-bottom: 1rem;
    color: #525252;
    margin-left: 4rem;
    font-size: 0.85rem;
}
.table-bordered-outline tr:last-child,
.table-bordered-outline tr,
.table-bordered-outline tr:first-child{
    border-width: 0px;
    border-top-width: 0px;
    border-bottom-width: 1px;
}

.badge-primary{
    color: var(--primary);
    background-color: var(--primary-light);
    font-size: 14px;
    font-weight: 600;
}
a.badge-primary:hover, a.badge-primary:focus{
    color: var(--primary-light);
    background-color: var(--primary);
}

.product-attributes .table tbody tr{
   border-bottom: 1px solid var(--border-light);
}

.pr_desc_flex{
    position: relative;
}
.desc p strong{
    font-weight: 600;
    font-size: 1.2rem;
}
.pr_desc_flex .toggle-content{
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, calc(100%/2));
    align-items: baseline;
}
.pr_desc_flex:not(.show) .toggle-content{ 
    max-height: 500px;
    position: relative;
}
.product-attributes .title {
    margin-left: 4rem;
    font-size: 24px;
    font-weight: 600;
}

.recommendations.d-print-none {
    padding: 50px 2rem;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}
.product-offer-sliders{
    position: relative;
    background: white;
    padding-left: 0rem;
    padding-right: 0rem;
    padding-top: 3rem;
}
.product-offer-sliders:before {
    content: "";
    background: url(/media/image/storage/opc/shape-divider-grey-down.png);
    position: absolute;
    left: 0;
    right: 0;
    height: 109px;
    background-position: bottom;
    top: -53px;
}
.product-offer-sliders:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url(/media/image/storage/opc/section-divider-grey.png);
    background-position: top;
}
.slick-slider-other.is-not-opc {
    margin-top: 4rem;
}
.slick-slider-other .hr-sect {
    font-weight: 600;
    text-align: center; 
    display: block;
    color: var(--primary);
}
.recommendations .hr-sect.h2 {
    text-align: center !important;
    background: #eaece7;
    padding: 12px 4px;
    margin-bottom: 0;
    border-radius: 8px;
    font-size: 20px;
}

/* .partslist .product-wrapper{
    background-color: white;
    margin: 0.5rem !important;
    border-radius: 12px;
    box-shadow: 1px 2px 12px -2px rgba(0,0,0,0.16);
    -webkit-box-shadow: 1px 2px 12px -2px rgba(0,0,0,0.16);
    -moz-box-shadow: 1px 2px 12px -2px rgba(0,0,0,0.16);
} */
.partslist .slick-slide{
    padding: 0.5rem !important;
}
 .slick-slide .item-slider-desc{
    font-weight: 600;
}
.slick-slider .slick-track, .slick-slider .slick-list{
    padding:0.8rem 0rem;
}

.slick-slider[data-slick-type="product-slider"] .slick-slide,
.partslist .slick-slide{
    background-color: white;
    margin: 0.5rem !important;
    padding: 0.4rem;
    border-radius: 12px;
    box-shadow: 1px 2px 12px -2px rgba(0,0,0,0.16);
    -webkit-box-shadow: 1px 2px 12px -2px rgba(0,0,0,0.16);
    -moz-box-shadow: 1px 2px 12px -2px rgba(0,0,0,0.16);
}
#fieldset-payment .custom-control.custom-radio, 
#checkout-shipping-payment .custom-control.custom-radio,
.checkout-payment-options > div,
.checkout-shipping-form-options > div{
    width: 100%;
}
#fieldset-payment label, #checkout-shipping-payment label{
    display: block;
    width: 100%;
}
#checkout-shipping-payment .custom-control.custom-radio .col.title{
    margin-bottom: 0em;
}

#frmAddToCart {
    display: none;
}

/* unit price for customizable products */

.price_wrapper.unit_price_wrapper {
    margin-top: 15px;
    font-size: 18px;
}

.product-offer .calc-unit-price-field a .sparen {
    font-style: italic;
    font-weight: 600;
    color: #8dbf17;
    font-size: 12px;
}


/* style for data download cards */

.mediafiles-zip .download-file-title {
    font-weight: bold;
    display: inline-block;
    margin-bottom: 5px;
}

.mediafiles-zip .download-file-link {
    font-weight: 400;
    display: inline-block;
    padding-left: 5px;
    margin-bottom: 5px;
}

.mediafiles-zip a.download-link:before {
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    content: "\f019";
}


/* Buttons popup style for customizable products (zakeke) */

#add-to-cart.is_customizable {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
}

#add-to-cart.is_customizable.active {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
}

#add-to-cart.is_customizable.active .basket-form-inline {
    position: relative;
    background: #fff;
    height: auto;
    padding: 1em;
    padding-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95%;
    z-index: 999;
    max-width: 600px;
    border-radius: 15px;
}

#add-to-cart.is_customizable.active .hide-qty {
    display: none;
}

#add-to-cart.is_customizable.active .col-icon {
    position: relative;
    display: block;
    font-size: 70px;
}

#add-to-cart.is_customizable.active .icon-upload:before {
    content: "\f093";
    font-weight: bold;
    font-family: "Font Awesome 5 Free";
}

#add-to-cart.is_customizable.active .icon-edit:before {
    content: "\f044";
    font-weight: bold;
    font-family: "Font Awesome 5 Free";
}

#add-to-cart.is_popup .ls-hide-popup-btn {
    position: absolute;
    cursor: pointer;
    right: 7px;
    top: 0px;
    line-height: 1;
    font-size: 25px;
}

#add-to-cart.is_popup .ls-hide-popup-btn:hover {
    color: #f2ac96;
}

#add-to-cart.is_popup .ls-hide-popup-btn:before {
    content: "\f00d";
    font-weight: bold;
    cursor: pointer;
    font-family: "Font Awesome 5 Free";
}


#customizer-popup .modal-dialog{
    width: 95%;
    height: 80%;
    top: 8%;
    margin:1rem auto;
}
#customizer-popup .modal-content{
    height: 100%;
}
/* #customizer-popup .modal-content .modal-header{
    border-width: 0px;
} */
#zakeke-container iframe {
    width: 100%;
    height: 79vh;
    padding: 20px;
    box-sizing: border-box;
    align-self: center;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}


/*
*------------------------- personalisierte verpackungen page
*/
.feature-point {
    margin-top: 55px;
}

.kat-row {
    padding-top: 7rem;
    padding-bottom: 7rem;
}

h3.kat-section-title {
    margin-bottom: 3rem;
}

p.img-tile-kat {
    font-size: 18px;
    font-weight: 600;
    margin-top: 24px;
}

.kat-img-box {
    text-align: center;
}

p.img-tile-kat a {
    color: var(--primary);
}

.cs_two {
    background: #eef8ff;
    padding-bottom: 50px;
    padding-left: 0;
    padding-right: 0;
}
.cs_three {
    padding-left: 0;
    padding-right: 0;
}
.cs_four {
    padding-bottom: 75px;
    
    background: #fffbe9; 
}
.cs_three,
.cs_two,
.cs_four,
.cs_five{
    padding-left: 0;
    padding-right: 0;
    padding-top: 50px;
    padding-bottom: 50px;
}

.custom-shape-divider-top svg path{
    fill: white;
}
.svg_bottom_four svg path {
    fill: #fffbe9;
}
.custom-shape-divider-top {
    position: absolute;
    left: 0;
    right: 0;
    transform: rotate(180deg);
    top: -121px;
}
.svg_bottom_four .custom-shape-divider-top {
    bottom: -50px;
}

.svg_bottom_three .custom-shape-divider-top { 
    bottom: -55px;
}
.svg_bottom_five .custom-shape-divider-top {
    top: -50px;
}
.svg_bottom_faq

.custom-shape-divider-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 124px;
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
   
}

.custom-shape-divider-top svg {
    height: 50px;
}

.rotate-45{
    vertical-align: middle;
    border-style: none;
    position: relative;
    display: inline-block;
    max-width: 600px;
    transform: rotate(45deg);
}

img.text-options {
    /* box-shadow: 10px 20px 40px 0 #8080802e; */
    border-radius: 20px;
    transform: rotate(-7deg);
    margin-top: 50px;
    
}
.cs_three.save-design ul{
    list-style: none;
    margin:0px;
    padding:0px;
}
img.save-design {
    /* box-shadow: 5px 26px 60px 0 #8080803d; */
    border-radius: 20px;
    margin-top: -15px;
    transform: rotate(7deg);
    -webkit-transform: rotate(7deg);
    -moz-transform: rotate(7deg);
}
.cs_five_img_wrap img,
img.text-options ,
img.save-design
{
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 500px;
}

.cs_five_img_wrap{
    margin-bottom: 1rem;
}
.cs_five_img_wrap img{
    max-width: 800px;
}


.guide-image {
    background-image: url(/media/image/storage/opc/Konfigurator_3D_Startbild.png) !important;
    padding-top: 8%;
    padding-bottom: 10%;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: 0% 100% !important;
}

#personalisierte-verpackungen #content-wrapper.has-fluid {
    padding-top: 0em;
}
#personalisierte-verpackungen h2 {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 42px;
}
#personalisierte-verpackungen h3 {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 27px;
    color: var(--primary);
    font-family: arial;
}
#personalisierte-verpackungen .kat-img-box img {
    border-radius: 50%;
    box-shadow: 0px 10px 10px #5c5c5c0a;
    -webkit-box-shadow: 0px 10px 10px #5c5c5c0a;
    -moz-box-shadow: 0px 10px 10px #5c5c5c0a;
    border: 1px solid #f0f0f0;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -ms-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
}
#personalisierte-verpackungen .kat-img-box a:hover img{
    transform: scale(0.95);
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    border: none;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}
#personalisierte-verpackungen .kat-img-box .img-tile-kat {
    margin-top: 12px !important;
}
#personalisierte-verpackungen h2 {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 42px;
}
#personalisierte-verpackungen .btn-primary {
    background: #f2ac96;
    box-shadow: 4px 7px 13px -6px #dd896f;
    -webkit-box-shadow: 4px 7px 13px -6px #dd896f;
    -moz-box-shadow: 4px 7px 13px -6px #dd896f;
}
#personalisierte-verpackungen .btn-primary, .custom-btn, #personalisierte-verpackungen .btn {
    border-radius: 50px;
    margin-top: 22px;
    font-size: 18px;
    padding: 10px 30px;
}

.ui-sec .col:nth-of-type(1){
    text-align: center;
    order: 2;
    margin-top: 50px;
}
.ui-sec ul {
    list-style-type: none;
    padding: 0;
}
.text-sec li, .ui-sec li {
    position: relative;
    padding-left: 37px;
    margin-bottom: 15px;
}
.ui-sec li::before, .text-sec li:before {
    content: "";
    width: 22px;
    height: 22px;
    background: url(/media/image/storage/opc/double-check-green.png);
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    left: 0;
    top: 3px;
}

.step-main-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 3.5rem;
}

p.cta-btn.seventh-btn-anps a {
    background: #71139a;
    white-space: nowrap;
    font-size: 15px;
    box-shadow: -1px 2px 13px 1px #71139a99;
    -webkit-box-shadow: -1px 2px 13px 1px #71139a99;
    -moz-box-shadow: -1px 2px 13px 1px #71139a99;
}
.step-row-section .col {
    place-self: center;
    position: relative;
    z-index: 999;
}

.step-row-section .col {
    place-self: center;
    position: relative;
    z-index: 999;
}
.steps-boxes-sec .step {
    margin: 20px 0;
    box-sizing: border-box;
    padding: 50px 35px;
    border-radius: 10px;
    /* box-shadow: 0 10px 30px grey; */
    transition: all 0.4s ease;
    position: relative;
}

.step-title {
    position: absolute;
    top: -10px;
    background: #c69bd9;
    color: #fff;
    padding: 2px 10px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 1rem;
}
.step-sub-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.steps-boxes-sec .second.step, .steps-boxes-sec .third.step {
    border: 1px solid #f6d9ff;
    background: #ffffff17;
}

.steps-boxes-sec .first.step {
    background: #d678ff17;
    border: 1px solid #f6d9ff;
    box-shadow: 0 10px 30px -10px #f5d5ff;
    -webkit-box-shadow: 0 10px 30px -10px #f5d5ff;
    -moz-box-shadow: 0 10px 30px -10px #f5d5ff;
}
.first.step .cta-btn {
    display: none;
}

.second-cta.anspercta {
    margin: 0;
    padding: 4rem 1rem 11rem 1rem;
}
p.so-btn.eighth-btn-anps a {
    background: #ff841c;
}
.advantages-sec {
    padding-top: 80px;
    padding-bottom: 120px;
}
.reference-slider {
    padding: 60px 0;
}

.cs_faq {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 71px !important;
}

.accordian-row-section {
    padding: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.accordian-row-section .card .card-header {
    background: #f9f9f9;
    padding: 10px;
}
.accordian-row-section .card .card-header button {
    padding: 22px 12px 23px 13px !important;
    border-bottom: 1px solid #d4d4d4;
    margin: 4px;
    width: 100%;
    border-radius: 0px !important;
}
.accordian-row-section .card  .card-body{
    background-color:rgb(249, 249, 249);
}
.custom-shape-divider-top svg{
    width: 100%;
}
.cs_faq .custom-shape-divider-top svg path{
    fill:rgb(249, 249, 249);
}
.cs_faq .custom-shape-divider-top {
    top: -190px;
}

.reference-slider .wrapper{
    margin: 20px 0;
    box-shadow: 0 10px 10px #8080801c;
    -webkit-box-shadow: 0 10px 10px #8080801c;
    -moz-box-shadow: 0 10px 10px #8080801c;
}
.reference-slider .slick-slide img {
    z-index: -1;
    /* padding-bottom: 40px; */
    width: inherit;
    position: relative;
    -webkit-border-radius: 10px 10px 0 0;
    -moz-border-radius: 10px 10px 0 0;
    -ms-border-radius: 10px 10px 0 0;
    -o-border-radius: 10px 10px 0 0;
    border-radius: 10px 10px 0 0;
}
p.review {
    display: flex;
    background: linear-gradient(180deg, transparent 0%, #ffffff 15%);
    padding: 55px 25px 20px 25px;
    border-radius: 0 0 10px 10px;
    margin-top: -40px;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: 0;
    box-shadow: 0 10px 10px #8080801c;
    -moz-box-shadow: 0 10px 10px #8080801c;
    -webkit-box-shadow: 0 10px 10px #8080801c;
}

.adv-icon-box {
    display: grid;
    align-items: center;
    grid-gap: 5%;
    grid-template-columns: 15% 80%;
    margin: 30px 5px 35px 5px;
}
.adv-icon-img a::before {
    content: '';
    display: block;
    background: #7f886a;
    width: 55px;
    height: 60px;
    position: absolute;
    opacity: 0.25;
    border-radius: 20px 30px 10px 8px;
    left: 10px;
    transform: rotate(335deg);
}
.adv-content h4 {
    font-size: 20px;
    margin-bottom: 12px;
}
/*
* ------------------------------------------------------------ ACCOUNT-STYLES 
*
*/
.account-head-data .account-head-data-credit {
    text-align: center;
    font-weight: 700;
    border: 1px solid var(--primary-light);
    border-radius: 8px;
}

/*
* ------------------------------------------------------------ FOOTER-STYLES 
*
*/
#brevo-conversations{
    bottom:150px;
    z-index: 999 !important;
}


footer#footer {
    padding-top: 110px;
    background-color: var(--dark-color);
    color: white;
    position: relative;
}
footer#footer:before {
    content: "";
    background: url(/media/image/storage/opc/section-grey-divider.png);
    left: 0;
    right: 0;
    height: 70px;
    position: absolute;
    z-index: 8; 
    top: -53px;
}

.footer-top {
    border-bottom: 1px dashed #e8e8e8;
    padding-bottom: 24px;
}
#footer .footer-logo {
    width: auto;
    height: auto !important;
    text-align: center;
    vertical-align: bottom;
}
.footer-seals {
    text-align: center;
    margin-top: 52px;
}
.footer-seals img {
    margin: 0 7px;
}

#footer.newsletter-active #footer-boxes {
    margin-top: 1.5rem;
}
div#footer-boxes {
    margin-bottom: 30px;
    margin-top: 40px;
}
#footer .productlist-filter-headline {
    color: white;
    font-size: 18px;
}

#footer .nav-link {
    color: white; 
}

.smoothscroll-top{
    bottom: 100px !important;
    right: 25px;
    background-image: linear-gradient( 261deg, #859465 0%, #4e5a3a 74%);
    color: #fff;
    z-index: 1000;
}
#consent-settings-btn{
    bottom:100px !important;
}


#footer .newsletter-footer {
    text-align: center;
    align-items: center;
}
.foot-co-title,
.newsletter-footer-heading {
    font-size: 18px;
    color: white;
    font-weight: 600;
}

.newsletter-footer .input-group-append {
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 5;
}
.newsletter-footer .input-group-append button {
    padding: 0;
    min-width: 60px !important;
    height: 50px;
    border-radius: 0px 4px 4px 0px !important;
    background: linear-gradient( 180deg, #6c8238ab, #1a2a03c7);
    border: 0;
}
.contact-details p {
    margin: 0;
    font-size: 14px;
    margin-bottom: 2px;
}
p.foot-call {
    margin-bottom: 18px;
}
.contact-details a {
    color: white;
}
p.foot-call a {
    color: var(--secondary);
    font-weight: 700;
    font-size: 18px;
}
.what-box {
    display: flex;
    margin-top: 20px;
    font-size: 16px;
}
.what-box img {
    width: 37px;
    margin-right: 10px;
}
.what-box .content p {
    margin: 0;
}

#footer .newsletter-footer p.info {
    font-size: 14px;
}

.newsletter-footer input#newsletter_email {
    background: #DCDCDC !important;
    border-radius: 6px !important;
    padding: 25px 14px;
    border: 0px;
    box-shadow: 5px 10px 6px rgba(0,0,0,0.16);
    -webkit-box-shadow: 5px 10px 6px rgba(0,0,0,0.16);
    -moz-box-shadow: 5px 10px 6px rgba(0,0,0,0.16);
}

.pay-ship {
    background: var(--primary);
    padding-top: 22px;
    padding-bottom: 18px;
}

.footnote-vat a{
    color: var(--secondary);
    text-decoration: underline;
}
.footnote-vat a:hover{
    color: var(--primary-light);
}

#footer #copyright {
    background: #383838;
    margin: 0 !important;
}
#footer #copyright>div {
    text-align: left;
} 


/*----------------------------------------- mobile-footer */
.mobile-footer{
    display: none;
    position: fixed;
    width: 100%;
    left:0px;
    right:0px;
    justify-content: space-between;
    align-items: center;
    padding:1rem;
    bottom:0px;
    z-index: 9;
    background-color: #fff;
    box-shadow: 0px -4px 10px -2px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px -4px 10px -2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px -4px 10px -2px rgba(0, 0, 0, 0.2);
}
.mobile-footer .menu{
    flex:1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    flex-direction: column;
}
.mobile-footer a{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    flex-direction: column;
}

.mobile-footer a .fa-sup{
    right:0px;
    left:auto;
}
.mobile-footer .label{
    font-size: 12px;
   color:var(--primary-light);
   font-weight: 600;
   padding-top: 4px;;
}

.mobile-footer img{
    position: relative;
    display: inline-block;
    width: 26px;
    height: auto;
    margin:0 auto;
}

#footer-menu-info.show{
    display: flex !important;
    align-items: center;
}
#footer-menu-info.show .modal-dialog {
    transform: none;
    width: 100%;
    max-width: 600px;
    max-height: 80%;
    overflow-y: auto;
}

.footer-infog .modal-header{
    border-bottom: transparent;
}
div#footer-menu-info button.close {
    right: 31px;
    top: 31px;
    background: transparent;
    color: #FFA979;
    font-size: 30px;
}

ul.footer-info-link,
ul.footer-info-links{
    list-style: none;
    padding:0px;
}
ul.footer-info-links .ls-lgroup {
    margin-bottom: 1rem;
}
ul.footer-info-links .ls-lgroup:last-child{
    margin-bottom: 0rem;
}
ul.footer-info-links .ls-links-title{
    border-bottom: 1px solid #ebebeb;
    font-size: 1.2rem;
}
ul.footer-info-link li {
    margin-bottom: 9px;
}
ul.footer-info-link li a{
    padding-left:10px;
}
ul.footer-info-link li a:before{
    content: "\f105";
    font-weight: bold;
    font-family: "Font Awesome 5 Free";
    color:var(--primary-light);
    padding-right: 7px;
}

/*
 * ------------------------------------------------------------ PRODUCT LIST PAGE
 */
.product-list.layout-gallery .row.variations,
.product-list.layout-list .row.variations{
    flex-direction: column-reverse;
}
.product-list.layout-list .row.variations .pro-attr{
    padding-top: 0px;
}
.product-list.layout-list .row.variations .d-onlist-none{
    display: none;
}
.product-list .row.variations .mass-dim-col{
    padding-bottom: 1rem;
}

 .btn-filter-box {
    font-size: 18px;
    font-weight: 600;
    color: #383838;
}
 .productlist-page-nav .displayoptions > div{
    margin-bottom: 0.5rem;
 }

 .productbox.productbox-hover .productbox-inner::before,
 .shop-sidebar 
{
    box-shadow: 1px 2px 12px -2px rgba(0,0,0,0.16);
    -webkit-box-shadow: 1px 2px 12px -2px rgba(0,0,0,0.16);
    -moz-box-shadow: 1px 2px 12px -2px rgba(0,0,0,0.16);
}

.small-variations-row .price_wrapper{
    margin-top: 0rem;
    margin-bottom: 0rem;
}
.small-variations-row .item-list-basket-details{
    margin-top: 0rem;
    margin-bottom: 0rem;
}

.layout-list .productbox-actions .btn.btn-outline-primary,
.small-variations-row .item-list-basket-details a.btn-outline-primary{
    display: inline-block;
    padding:0.5em;
    background-color: var(--primary-light);
    color: var(--primary-text);
    border:none;
    background: linear-gradient( 180deg, #6C8238, #1A2A03);
    box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.2);
}
.small-variations-row .item-list-basket-details a.btn-outline-primary:hover{
    background: linear-gradient( 180deg, #6C8238, #1A2A03);
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
    -moz-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
}

/*---------------------- sidebar */
.aside-active {
    background: #F9F9F9 !important;
}
.shop-sidebar {
    background: white;
    margin-right: 20px;
    padding: 40px 24px;
    border-radius: 10px;
    
}

.productlist-filter-headline {
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 14px;
    margin-bottom: 19px;
}
.productlist-filter-headline,
.shop-sidebar .nav-link,
.shop-sidebar .nav-panel>.nav>.active>.nav-link {
    border-bottom: 1px dashed #cdd6b8;
}
.shop-sidebar a{
    font-size: 15px;
    font-weight: 500;
    color:var(--dark-color);
}
.shop-sidebar li.nav-item.dropdown.active>span>a,
.shop-sidebar a.active{
    font-weight: 600; 
}
.shop-sidebar .dropdown-toggle::after, [data-toggle=collapse]:not(.navbar-toggler)::after{
    color: var(--primary-light);
    font-size: 13px;
}
.aside-active .row.breadcrumb-wrapper{
    border:0px;
    padding:12px 0px;
}
.noUi-horizontal .noUi-handle,
.noUi-horizontal .noUi-connect{
    background: var(--primary-light);
}
.noUi-horizontal .noUi-handle{
    box-shadow:0px 0px 0px 5px rgba(var(--primary-light-rgb), 0.5);
    -webkit-box-shadow:0px 0px 0px 5px rgba(var(--primary-light-rgb), 0.5);
    -moz-box-shadow:0px 0px 0px 5px rgba(var(--primary-light-rgb), 0.5);
}

.is-item-list h1.h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-md);
}

.cat-footer {
    position: relative;
    background: white;
    padding: 90px 0;
    padding-top: 130px;
}
.cat-footer:before {
    content: "";
    left: 0;
    right: 0;
    height: 59px;
    position: absolute;
    top: 0;
    z-index: 1;
    width: 100%;
    background: url(/media/image/storage/opc/shape-divider-grey-down.png);
    background-position: bottom;
}
.cat-footer .desc {
    column-count: 2;
    column-gap: 60px;
}

.offer-icons-list {
    padding-top: 60px;
    padding-bottom: 54px;
    position: relative;
}
.offer-icons-list:before {
    content: "";
    background: url(/media/image/storage/opc/section-divider-grey.png);
    height: 150px;
    position: absolute;
    top: -50px;
    background-size: 100%;
    background-repeat: no-repeat;
    left: 0;
    right: 0;
}
hr.productlist-page-nav-top {
    border-top: 1px dashed #c5c5c5;
}
hr.productlist-page-nav-bottom {
    display: none;
}
.row.productlist-page-nav-header-m.productlist-page-nav.no-gutters {
    margin-bottom: 43px;
}

.blog-overview .blog-overview-main .custom-select,
.displayoptions .btn-group > a,
.displayoptions button.btn.btn-outline-secondary {
    border-radius: 10px !important;
    background: #fff;
    /* border: 0px; */
    border-color: var(--primary-light);
    border-width: 1px;
    color: var(--primary-light);
    box-shadow: 1px 2px 8px -2px rgba(0,0,0,0.2);
    -webkit-box-shadow: 1px 2px 8px -2px rgba(0,0,0,0.2);
    -moz-box-shadow: 1px 2px 8px -2px rgba(0,0,0,0.2);
}
.displayoptions .btn-group > a { 
    border-radius: 10px !important;
    margin-right: 16px;
}
.displayoptions .btn-group a.btn-outline-secondary:not(:disabled).active {
    border-color: var(--primary-light);
    background-color: var(--primary-light);
}


.displayoptions .dropdown-menu{
    border-radius: 10px; 
    border-color: var(--primary-light);
    overflow-x:clip;
    border: 1px solid #fff;
}

.dropdown-item:hover, .dropdown-item:focus, .dropdown-item.active{
    background-color: #dde0d89c;
    color:var(--primary);
}

.page-item.active .page-link::after, .page-item.active .page-text::after{
    border-bottom: 4px solid var(--primary);
}

/* productbox */
.productbox,
.productbox .form.form-basket ,
.productbox .form.form-basket .productbox-inner{
    height: 100%;
}

.price, .disposal-fee span.fee{
    color:var(--secondary-dark);
    font-weight: bold;
}
.price .price_label.pricestarting{
    font-weight: 400;
    font-size: 14px;
    color: var(--dark);
}

.grid-bottom.row .price.productbox-price {
    font-size: 21px;
}
.productbox.productbox-hover .productbox-inner::before{
    border-radius: 12px;
}
.productbox-inner .box-details-col{
    padding-left:1rem;
    padding-right:1rem;
    padding-bottom: 1rem;
    
}

.productbox .productbox-title {
    font-size: 18px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom:10px;
    padding-bottom: 10px;
    text-align: left;
}
.productbox .variations .text-success{
   display: none;
}
.productbox .price-col{
    padding-right: 0em;
    display: flex;
    align-items: center;
}
.productbox .price-wrap-row{
    /* margin-top: 1rem; */
}
.productbox .cart-col{
   /* padding-left: 0em;  */
}
.productbox .price-col.fw,
.productbox .cart-col.fw{
   padding-left: 1rem; 
   padding-right: 1rem; 
}

.small-variations-row .item-list-basket-details{
    margin-top: 1rem;
}
.productbox .cart-col .basket-details-add-to-cart{
   margin-top: 0rem;
}
.productbox .productbox-title a {
    color: var(--dark-color);
    font-size: 14px;
}
.productbox-price{
    font-family: "Arial";
    font-size: 21px;;
}

.price-note .text-danger.text-stroke,
.price_wrapper .old-price del{
    font-weight: 600;
    color: var(--dark) !important;
    opacity: 0.7;

    /* font-size: 14px;
    font-weight: bold;
    color:var(--dark) !important;
    opacity: 0.7;
    text-decoration-color: var(--danger);
    text-decoration-thickness: 0.1rem; */
}
/* .price-note .text-danger.text-stroke{
    font-size: 16px;
} */

.small-variations-row .item-list-basket-details .input-group.form-counter{
    overflow: clip;
    border:0px;
    border-radius: 7px;
    box-shadow: inset 0px 0px 7px -2px rgba(0,0,0,0.5);
    -webkit-box-shadow: inset 0px 0px 7px -2px rgba(0,0,0,0.5);
    -moz-box-shadow: inset 0px 0px 7px -2px rgba(0,0,0,0.5);
}
.small-variations-row .item-list-basket-details .input-group.form-counter input{
    background-color: transparent;
}
.small-variations-row .item-list-basket-details .input-group.form-counter .input-group-prepend {
    order: 3;
    height: 50%;
    position: absolute;
    right: 1px;
    bottom: 0px;
    background: var(--border-light);
}
.small-variations-row .item-list-basket-details .input-group.form-counter .input-group-append {
    background: var(--secondary);
    color: var(--secondary-text);
}
.small-variations-row .item-list-basket-details .input-group.form-counter .input-group-prepend, 
.small-variations-row .item-list-basket-details .input-group.form-counter .input-group-append {
    padding:0px 4px;
    height: 50%;
    cursor: pointer;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    -webkit-transition: box-shadow 0.2s ease, transform 0.2s ease;
    -moz-transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.small-variations-row .item-list-basket-details .input-group.form-counter .input-group-prepend:hover, 
.small-variations-row .item-list-basket-details .input-group.form-counter .input-group-append:hover {
    z-index: 9;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5); 
}

/*---------- productlist */
#product-list.layout-list .product-wrapper:last-child,
#product-list.layout-list .product-wrapper:not(:last-child){
    margin-bottom:2rem;
    height: auto !important;
}
#product-list.layout-list .product-wrapper .productbox-inner{
    height: 100%;
}
    
#product-list:not(.layout-list) .product-wrapper:not(:last-child) {
    margin-bottom: 4rem;
}
#product-list.layout-gallery .product-wrapper:last-child{
    margin-bottom: 4rem;
}
.product-list.layout-gallery .product-wrapper.col {
    height: auto !important;
}
.product-list.layout-gallery .productbox-inner > .row{
    height: 100%;
}
.product-list.layout-gallery .box-details-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product-list .productbox-inner {
    padding:0.6rem;
}
.product-list.layout-list .productbox-title {
    text-align: left;
    margin-left: 0;
    font-size: 1.3rem;
    padding-top: 10px;
}
.layout-list .productbox .productbox-title a {
    font-size: 16px;
    font-weight: 700;
    color: black;
}
.layout-list .form-basket{
    padding-right: 1rem;
    padding-bottom: 1rem;
}

.layout-list .productbox-onhover{
    opacity: 1;
}
.productlist-item-detail dd.col{
    white-space: initial;
} 

.product-detail .variations dt{
    font-weight: 600;
    color: var(--primary);
}

.variation.swatches .var-tooltip-wrap {
    max-width: 500px;
    position: relative;
    /* display: none; */
    right: 0px;
    top: 75%;
    width: auto;
}
.swatches-text.active .var-tooltip-text {
    color: #333333;
    font-size: 16px;
    font-weight: 400;
}
.var-tooltip-wrap .var-tooltip-text {
    max-width: 300px;
    display: none;
    position: absolute;
    right: -100%;
    opacity: 0;
    background-color: #fff;
    color: var(--primary);
    border-radius: 8px;
    max-width: 500px;
    min-width: 300px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
}
.swatches-text.active .var-tooltip-text {
    color: #333333;
    font-size: 16px;
    font-weight: 400;
}

.variation.swatches .var-tooltip-btn {
    display: none;
    padding-left: 5px;
}
.swatches-text .var-tooltip-text h2, .swatches-text .var-tooltip-text h3, .swatches-text .var-tooltip-text h4, .swatches-text .var-tooltip-text h1 {
    font-size: 20px;
    color: #A5CC49;
    font-weight: 600;
}

/*--------------- ribbons */
.ribbon.ribbon-6,
.ribbon.ribbon-7,
.ribbon.ribbon-8 {
    display: none;
}

.productbox-ribbon.ribbon{
    left: -1.1rem;
}
.productbox-ribbon.ribbon.ribbon-1{
    color:#fff;
}
.ribbon.ribbon-1::before {
    content: "";
    width: 30px;
    height: 30px;
    font-size: 0;
    line-height: 0;
    z-index: 5;
    background: url(/media/image/storage/opc/trending.png);
    background-repeat: no-repeat;
    transition: all 0.4s ease-in-out;
    border-right-color: transparent;
}
.slick-slider[data-slick-type="product-slider"]{
    padding:1rem;
} 
.item-slider .productbox-ribbon.ribbon.ribbon-1 {
    left: auto;
    right: 0px;
}
.item-slider .eco-ribbon {
    top:8px;
}
.layout-list .productbox-ribbon.ribbon.ribbon-1 {
    left: auto;
    right: 12px;
    top: 82px;
}
.layout-gallery .productbox-ribbon.ribbon.ribbon-1 {
    top: 60px !important;
    right: 2px !important;
    left: auto;
}
.ribbon.ribbon-1 {
    background-color: #eeb70000;
    color: #52525200;
    font-size: 0px;
    width: 0px;
    background-color:transparent;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

.ribbon.ribbon-1::after {
    display: none;
}


.productbox.productbox-hover .productbox-inner::before {
    content: "";
    background-color: #ffffff;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    transition: all 0.2s ease-in-out;
}
.eco-ribbon {
    background: url(/media/image/storage/opc/eco-friendly.png);
    width: 49px;
    height: 26px;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    z-index: 99;
    top: 0rem;
    left:-0.57rem;
    transform: translateX(-7px);
    transition: 0.2s all ease-in-out;
}
.gallery-with-action .eco-ribbon{
    left:1rem;
}
.eco-ribbon.below {
    top: 2rem;
}
.eco-ribbon.details-ribbon { 
    top: 2.5rem;
    left: 1.4rem;
}

.sale-ribbon > span{
    position: relative;
}
.sale-ribbon {
    display: inline-block;
    background: url(/media/image/storage/opc/salie-batxh.png);
    background-size: 100%;
    background-repeat: no-repeat;
    width: 66px;
    height: 25px;
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary-dark);
    padding-left: 8px;
    line-height: 24px;
    position: absolute;
    top: 0rem;
    z-index: 99;
    transition: 0.2s all ease-in-out;
    left: -0.57rem;
    transform: translateX(-6px);
    text-align: left;
}

.pro-attr {
    font-size: 15px;
    color: #b1b1b1;
    font-weight: 400;
    padding: 8px 0px;
    margin: 0px;
}

.layout-gallery .pro-attr {
    font-size: 13px;
}
.pro-attr.row div {
    padding: 0;
    line-height: 18px;
}
.layout-gallery .in-stock {
    font-size: 12px;
}
.in-stock, .out-stock {
    text-align: right;
}
.in-stock {
    color: var(--success); 
    font-weight: 500;
    font-size: 14px;
}
.out-stock {
    color: var(--danger);
}
.in-stock i.fas.fa-check-circle {
    font-size: 13px;
}

.dimension-grid {
    color: #b1b1b1;
    font-weight: 400;
    font-size: 13px;
    padding: 0;
    margin-top: -7px; 
}

.box-details-col .productbox-variation-gallery{
    width: 100%;
    padding: 0rem 1rem 0rem 1rem;
}
.box-details-col .mass-dim-col{
   padding-bottom: 1rem;
}
.swatches-text{
    border-radius: 4px;
    border: 1px solid var(--gray);
    background: var(--gray-light);
    
    padding: 0.25rem 0.8375rem;
    border: 2px solid #525252;
    font-weight: 700;
    box-shadow: 2px 2px 10px 0px rgba(0,0,0,0.2);
    -webkit-box-shadow: 2px 2px 10px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 2px 2px 10px 0px rgba(0,0,0,0.2);
}
 .productbox-variation-gallery .swatches-text{
    padding: 0.3rem 0.5rem;
 }
 .swatches-text:hover,
 .swatches-text.active,
 .productbox-variation-gallery .swatches-text.active{
    /* border:1px solid var(--primary-light);
    background-color: var(--primary-light);
    color:var(--primary-text); */
    border: 2px solid #8dbf17;
    background-color: #f5f7fa;
    font-weight: 700;
    color: #8dbf17;
    box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
    -moz-box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
}
.swatches-selected.text-success{
    font-weight: bold;
    color:var(--secondary) !important;
    font-size: 16px;
}

.product-wrapper .productbox-image-col{
    padding-top:1rem;
}

.productbox-column .list-gallery{
    padding-bottom: 1rem;
}

.product-wrapper .item-list-price{
    margin-bottom:0rem;
}

.variations .variation-badge{
    display: none;
}

.vaiation-wrapper .btn.dropdown-toggle{
    border-radius: 4px;
}
.vaiation-wrapper .unit_price_wrapper{
    margin-top: 1rem;
    margin-bottom: 0rem;
}
.bootstrap-select.custom-select button.dropdown-toggle:focus, .bootstrap-select.custom-select button[data-toggle=collapse]:focus:not(.navbar-toggler),
.bootstrap-select.custom-select.show button.dropdown-toggle, .bootstrap-select.custom-select.show button[data-toggle=collapse]:not(.navbar-toggler){
    border-color: var(--primary-light);
}
.dropdown-toggle::after, [data-toggle=collapse]:not(.navbar-toggler)::after{
    font-size: 17px;
    color: var(--primary-light);
}


.price-range-inputs .input-group-prepend{
    display: none;
}
.price-range-inputs .price-range-input{
    border-top-right-radius: 6px !important;
    border-bottom-right-radius: 6px !important;
}

.hereseller_list {
    position: absolute;
    bottom: 0;
    right: 15px;
}
.hereseller_list img {
    width: auto;
    height: auto;
    max-height: 55px;
    max-width: 80px;
    padding-bottom: 10px;
}

aside#sidepanel_left{
    padding: 0px;
}

/*----------------------------------------- Anmeldung page */
form#login_form {
    background: white;
    border-radius: 10px;
    padding: 30px 27px;
    box-shadow: 3px 7px 6px rgb(0 0 0 / 16%);
    -webkit-box-shadow: 3px 7px 6px rgb(0 0 0 / 16%);
    -moz-box-shadow: 3px 7px 6px rgb(0 0 0 / 16%);
}
/*----------------------------------------- CART PAGES */
.cart-summary .cart-bo:not(:empty){
    position: relative;
    display: inline-block;
    margin: 0px;
    line-height: 1;
    margin-bottom: 2rem;
}
.cart-summary .cart-bo .future-reward-points{
    line-height: 1.5;
}

.cart-row {
    background: white;
    padding: 22px 3px;
    margin-bottom: 40px;
    border-radius: 10px;
    margin: 0;
    box-shadow: 3px 7px 6px rgb(0 0 0 / 16%);
    -webkit-box-shadow: 3px 7px 6px rgb(0 0 0 / 16%);
    -moz-box-shadow: 3px 7px 6px rgb(0 0 0 / 16%);
}
.cart-row.cart-contact-row {
    margin-bottom: 2rem;
}
.cart-row h3 {
    font-weight: 600;
    font-size: 20px;
}
.info-cart {
    display: flex;
    align-items: center;
}
.info-cart div {
    width: 20%;
}
.info-cart .cart-bo {
    width: 80%;
}
.info-cart img {
    margin-right: 8px;
}
.call-cta.call {
    margin-top: 36px;
}
.call-cta img {
    position: relative;
    top: -4px;
}
.call-cta a {
    font-weight: 700;
    margin-left: 7px;
    font-size: 22px;
}
.cart-row p.info {
    font-size: 17px;
    color: #b1b1b1;
    font-weight: 700;
    margin-top: 3px;
}
.call-cta.email {
    margin-top: 58px;
}

/*--------------*/

.basket #cart-checkout-btn {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background: linear-gradient(178deg, var(--primary-md), var(--primary-light)); */
}
.checkout-button-row-submit .submit_once.btn-primary, 
.basket #cart-checkout-btn {
    background: linear-gradient( 180deg, #7f886a, #1a2a03d1);
}

.checkout-register-form .checkout-button-row-submit{
    display: none;
}

.basket #cart-checkout-btn:before {
    content: "";
    background: url(/media/image/storage/opc/security.png);
    width: 30px;
    height: 30px;
    background-size: 100%;
    left: 8%;
    background-repeat: no-repeat;
    top: 16px;
}
.basket #cart-checkout-btn:after {
    content: "";
    background: url(/media/image/storage/opc/right-arrow.png);
    width: 26px;
    height: 26px;
    background-size: 100%;
    right: 5%;
    background-repeat: no-repeat;
    top: 17px;
}

.cart-items-body{
    padding:1.2rem 0rem;
}
.basket .basket-freegift{
    background: #fff;
    margin: 2rem 0rem;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    /* box-shadow: 3px 7px 8px 0px rgba(0,0,0,0.16); */
}
.basket .basket-freegift .basket-heading{
    color: var(--primary);
    font-weight: 800;
}
.basket-freegift .product-wrapper-freegift .custom-control-label .square-image img{
    border-radius: 8px;
}

h1.h2.basket-heading {
    font-weight: 700;
}
.basket .basket-items {
    margin-bottom: 4rem;
}
.basket .basket-items .cart-items-body.type-2 .col-sep,
.basket .basket-items .cart-items-body.type-4 .col-sep,
.basket .basket-items .cart-items-body.type-11 .col-sep,
.basket .basket-items .cart-items-body.item-1 .col-sep{
    display: none;
}
.basket .basket-items .cart-items-body.type-2 .col-sep,
.basket .basket-items .cart-items-body.type-1 .col-sep{
    padding-bottom: 1rem;
    display: none;
}
.cart-items-body:nth-child(even) {
    background: #f9f9f9;
}

.basket .basket-items .cart-items-body.type-4{
    /* margin-top: 1rem; */
    /* border-top: 1px solid var(--primary); */
    padding-top: 1rem;
    background: var(--highlight);
}

.basket-items {
    background: white;
    padding: 18px 16px;
    border-radius: 8px;
    padding-bottom: 0;
    box-shadow: 3px 7px 8px rgb(0 0 0 / 16%);
    -webkit-box-shadow: 3px 7px 8px rgb(0 0 0 / 16%);
    -moz-box-shadow: 3px 7px 8px rgb(0 0 0 / 16%);
}

.cart-items-body .cart-items-image{
    max-width: 120px;
}

.cart-items-image img {
    width: 90px !important;
    border-radius: 8px;
}
.cart-items-body .cart-pro-title{
    flex:1;
}
div#order-confirm .card,
.card.checkout-confirmation-shipping,
.card.checkout-confirmation-billing-address,
.card.checkout-summary,
.sticky-top.cart-summary .card {
    background: white;
    border-radius: 12px;
    margin-top: 63px;
    overflow: clip;
    box-shadow: 3px 7px 8px rgb(0 0 0 / 16%);
    -webkit-box-shadow: 3px 7px 8px rgb(0 0 0 / 16%);
    -moz-box-shadow: 3px 7px 8px rgb(0 0 0 / 16%);
}
div#order-confirm .card,
.card.checkout-confirmation-shipping,
.card.checkout-confirmation-billing-address,
.card.checkout-summary {
    margin-top: 0px;
}
.sticky-top.cart-summary .card {
    margin-top: 0;
    padding-top: 0.5rem;
}

.card.checkout-confirmation-shipping,
.card.checkout-confirmation-billing-address{
    margin-bottom: 2rem;
}
.basket-summary .card-body {
    padding: 18px 27px;
}

.btn-link.cart-items-delete-button{
    color: var(--secondary);
    text-decoration: none !important;
}
button.cart-items-delete-button img{
    display: block;
    margin: auto;
}

.cart-items-quantity .form-counter{
    background: #fff !important;
    overflow: clip;
    border: 1px solid #E9E5E5 !important;
    border-radius: 10px;
    max-width: 100px;
    box-shadow: inset 0.5px 0.5px 6px rgba(0,0,0,0.13);
    -webkit-box-shadow: inset 0.5px 0.5px 6px rgba(0,0,0,0.13);
    -moz-box-shadow: inset 0.5px 0.5px 6px rgba(0,0,0,0.13);
}
.cart-items-quantity .form-counter button.btn.btn-increment.btn-{
    color: var(--primary-light);
}
.cart-items-quantity .form-counter button.btn.btn-increment.btn-, 
.cart-items-quantity .form-counter button.btn.btn-decrement.btn- {
    height: 100%;
    padding: 0 9px !important;
}
.cart-items-quantity .form-counter input.quantity{
    background-color: transparent;
    padding:2px;
}
.cart-pro-title a.cart-items-name{
    font-weight: 600;
    color:var(--primary);
}

.cart-pro-title ul.list-unstyled {
    display: flex;
    font-size: 13px;
    flex-wrap: wrap;
    color: #969696;
}
/* .cart-pro-title ul.list-unstyled li {
    width: 50%;
} */
.cart-pro-title ul.list-unstyled li{
    display: flex;
    flex-wrap: wrap;
    font-size: 12px;
    max-width: 50%;
    width: auto;
    padding: 0px 7px 7px 0px;
    
}
.cart-items-body {
    position: relative;
}
.cart-pro-title ul.list-unstyled li > div{
    padding:4px;
    border-radius: 4px;
    background-color: var(--light); 
}

.cart-items-body span.variation-cart {
    font-size: 13px;
    margin-bottom: 5px;
    color: var(--primary-md);
    display: block;
}
.cart-items-body .cart-items-stuck-price  span.stuck-price {
    font-weight: bold;
    position: relative;
    font-size: 16px;
    display: inline-block;
    color: var(--primary-light);
    margin-bottom: 10px;
}
.cart-items-body .cart-items-single-price  span.unit-price {
    font-weight: bold;
    font-size: 15px;
    color: var(--primary-light);
}
.cart-items-header .h-title-col{
    margin-left: auto;
}
.cart-items-header .h-unitprice-col,
.cart-items-header .h-quantity-col{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0rem;
    margin-left: auto;
    white-space: nowrap;
}
.cart-items-body .cart-items-delete,
.cart-items-body .cart-items-price,
.cart-items-body .cart-items-quantity,
.cart-items-body .cart-items-single-price{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0rem;
}
.cart-items-body .cart-items-quantity{
    justify-content: flex-end;
}

.cart-items-body .cart-items-delete{
    margin-top: 0rem;
    justify-content: flex-end;
    position: absolute;
    right:1rem;
}

/* .row.cart-items-body.type-4 .cart-items-single-price, */
.row.cart-items-body.type-2 button.btn.cart-items-delete-button ,
.row.cart-items-body.type-3 button.btn.cart-items-delete-button ,
.row.cart-items-body.type-4 button.btn.cart-items-delete-button {
    display: none;
}



.row.cart-items-body.type-4 .cart-items-price{ 
    /* padding-right: 0px; */
    /* justify-content: flex-end; */
}
.row.cart-items-body.type-4 .cart-items-delete,
.row.cart-items-body.type-4 .cart-pro-title{
    margin-left: 4px;
}
.row.cart-items-body.type-2 .cart-pro-title,
.row.cart-items-body.type-3 .cart-pro-title,
.row.cart-items-body.type-4 .cart-pro-title{
    font-weight: bold;
}

/* .basket-items .cart-items-body.type-1:last-child .col-sep{
    display: none;
} */

/* .row.cart-items-body.type-3,
.row.cart-items-body.type-4{
    background: #efefef;
    padding-bottom: 1rem;
    padding-top: 1rem;
    margin-bottom: 1rem;
}
.row.cart-items-body.type-3 .col-sep,
.row.cart-items-body.type-4 .col-sep{
   display: none;
} */

.cart-upload-container,
.disposal-fee.row {
    background: white;
    margin: 0;
    padding: 28px 4px !important;
    border-radius: 10px;
    margin-bottom: 28px;
    margin-top: -31px;
    box-shadow: 3px 7px 6px rgba(0,0,0,0.16);
    -webkit-box-shadow: 3px 7px 6px rgba(0,0,0,0.16);
    -moz-box-shadow: 3px 7px 6px rgba(0,0,0,0.16);
}
.cart-upload-container{
   padding:1rem !important; 
}
.cart-upload-container .btn-file{
    background-color: var(--primary-md);
    background: linear-gradient( 180deg, #7f886a, #1a2a03d1);
    color: var(--primary-text);
    border:0px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}
.cart-upload-container .file-caption.form-control{
    border: 1px solid #d8d8d8;
    background: white !important;
    border-radius: 8px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}
.cart-upload-container .h3.section-heading{
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--secondary-dark);
}
.cart-upload-container .upload-scheme-cart{
    background-color: var(--light);
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 14px; 
}
.disposal-fee.row .btn-primary,
.disposal-fee.row input[type="submit"] {
    background: var(--primary-md);
    border: 0;
    color: white;
    font-weight: 600;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 1rem;
}
.disposal-fee.row input[type="submit"]:hover {
    opacity: 0.8;
}
.col-md-2.fee-amount {
    font-weight: 700;
    font-size: 16px;
    color: var(--secondary);
    text-align: right;
}
.disposal-fee.row p {
    margin: 0;
    font-size: 14px;
}

.cart-summary .basket-summary-notice{
    margin: 0 auto;
    margin-top: 25px;
    background: var(--highlight);
    padding: 0.5rem;
    border-radius: 14px;
}

.summary-info {
    margin-top: 25px;
}
.summary-info .title {
    text-align: left;
    font-weight: 600;
    font-size: 18px;
    color:var(--primary);
    margin-bottom: 16px;
}
.summary-info ul {
    list-style: none;
    padding: 0;
    font-size: 16px;
}

.summary-info ul li {
    margin-bottom: 7px;
    color: #929292;
    position: relative;
    padding-left: 28px;
}
.summary-info ul li:before {
    content: url(/media/image/storage/opc/check.png);
    position: absolute;
    left: 0;
    top: 2px;
}

div#coupon-form  {
    margin-bottom: 1rem;
    background: var(--light);
    padding: 1rem;
    border-radius: 12px;
    margin-top: -1rem;
    margin-left: -1rem;
    margin-right: -1rem;
}
div#coupon-form .title {
    font-size: 18px;
    font-weight: 600;
    color: #a2a2a2;
    text-align: center;
    border-bottom: 1px dashed #b1b1b1;
    padding-bottom: 7px;
    margin-bottom: 26px;
}

div#existing-customer .card-body .h3{
    color: var(--primary-light);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 1rem;
}
div#existing-customer .card-body input, 
input#couponCode {
    border:1px solid #d8d8d8;
    
    background: white !important;
    border-radius: 8px !important;
    box-shadow: inset 0 0 8px 1px #8080804a; 
    -webkit-box-shadow: inset 0 0 8px 1px #8080804a; 
    -moz-box-shadow: inset 0 0 8px 1px #8080804a; 
}
div#coupon-form button {
    border: 2px solid;
    color: var(--secondary);
    font-size: 15px;
    margin-bottom: 1rem;
    margin-top: -5px;
    border-radius: 8px;
    background-color: #fff;
    padding: 0.5rem;
    box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.2);
}
div#coupon-form button:hover {
    box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
    -moz-box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
}
div#coupon-form button:before {
    content: url(/media/image/storage/opc/pink-double-check.png);
    position: relative;
    top: 5px;
}
.basket .basket-summary .basket-summary-total span.price_label,
.card-body .text-left-util .tax_label{
    font-weight: 600;
    color:var(--primary-md);
}
.basket .basket-summary .basket-summary-total .price-col{
    color:var(--secondary-dark);
}

/*------------------------------ order confirmation */
div#order-confirm .card-header span.h3 {
    font-size: 19px;
    font-weight: 700;
}

.checkout-confirmation-items .future-reward-points{
    text-align: center;
    font-weight: 600;
}


/*------------------------------ checkout items */
.checkout-items-item{
    padding:0rem 1rem;
}

/*------------------------------ steps */

.checkout-back {
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px dashed #adb0aa;
    padding-bottom: 21px;
    margin-bottom: 38px;
    /* margin-top: -28px; */
    position: relative;
}

.stepper{
    border:none;
    background: transparent;
}
.stepper .step::before,
.stepper .step::after{
    display: none;
}
.stepper .step-active{
    background-color: transparent;
}

.stepper .step .step-content{
    flex-direction: column;
    justify-content: center;
}
.stepper .step .step-content .step-text{
   margin:0 auto;
}
.stepper .step .step-content .badge-pill{
    order:2;
    margin:0 auto;
    position: relative;
    z-index: 1;
}
.stepper .step .step-content span.fas{
   display: none;
}


.stepper .step .step-content::after{
    content: "";
    position: absolute;
    height: 0.125rem;
    background:var(--gray);
    
    z-index: 0;
    bottom: 11px;
    left: -1rem;
    right: -1rem;
}
.stepper .step:first-child .step-content::after{
    left: 50%;
    right: -1rem;
}
.stepper .step:last-child .step-content::after{
    left: -1rem;
    right: 50%;
}
.stepper .step.step-active .step-content::after{
    background-image: linear-gradient(to right, var(--primary-light) , var(--gray));
}
.stepper .step.step-active:not(.step-current) .step-content::after{
    background-image: linear-gradient(to right, var(--primary-light) , var(--primary-light));
}
.stepper .step.step-current .step-content::after{
    background-image: linear-gradient(to right, var(--primary-light) , var(--gray)); 
} 

/* .checkout-existing-customer {
    max-width: 350px;
} */

#register-customer{
    justify-content: center;
}

.login-register-wrap{
    max-width: 1000px;
}

.card.checkout-summary{
    /* max-width: 600px; */
    margin: 0 auto;
}

/* .update-adrs-row .col #order-proceed-as-guest, */
.checkout-existing-customer .card-gray,
.checkout-existing-customer .card{
    border-radius: 12px;
    background-color: white;
    box-shadow: 3px 7px 6px rgba(0,0,0,0.16);
    -webkit-box-shadow: 3px 7px 6px rgba(0,0,0,0.16);
    -moz-box-shadow: 3px 7px 6px rgba(0,0,0,0.16);
}
.checkout-existing-customer  .form-row .col-lg-6{
    min-width: 100% !important;
}

.checkout-button-row-submit{
    padding:0px;
    margin-top: 1rem; 
}

.login-register-wrap{
    /* background-color: #fff; */
    border-radius: 12px;
}

.update-adrs-row .col #order-proceed-as-guest .form-control,
.update-adrs-row .col #order-proceed-as-guest .custom-select,
#register-customer .login-register-wrap .custom-select,
#register-customer .login-register-wrap input[type="email"].form-control,
#register-customer .login-register-wrap input[type="number"].form-control,
#register-customer .login-register-wrap input[type="tel"].form-control,
#register-customer .login-register-wrap input[type="text"].form-control{
    /* border-radius: 8px;
    border-color: transparent; */
    border-radius: 0px;
    border: 0px solid transparent;
    border-bottom: 2px solid var(--gray);
    background: transparent !important;
    box-shadow: none !important;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
}
#register-customer .login-register-wrap .form-group,
.update-adrs-row .col #order-proceed-as-guest .form-group{
    margin-top: 1rem;
}

#order-proceed-as-guest .col-form-label,
#register-customer .login-register-wrap label.col-form-label{
    background: transparent !important;
    left:0rem;
}

form#form-register .h3{
    color:var(--primary);
    font-size: 15px;
    font-weight: 600;
    margin-top: 15px;
}

.form-group select{
    border-color: var(--gray) !important; 
    cursor: pointer;
}



/*-------------- forms */
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before{
    border-color: var(--primary-light);
}
.custom-control-input:checked ~ .custom-control-label::before{
    border-color: var(--primary-light);
    background-color: var(--primary-light);
}
.custom-checkbox.custom-control-input{
    cursor: pointer;
}

.update-adrs-row .col #order-proceed-as-guest{
    /* max-width: 600px; */
    margin:0 auto;
    padding:1rem;
}
.update-adrs-row .col #order-proceed-as-guest .checkout-button-row{
    padding:0rem 1rem;
}



/*----- checkout shipping & versand---*/
#fieldset-payment label, #checkout-shipping-payment label{
    border: 1px solid var(--primary-light);
    padding: 16px 11px;
    display: block;
    width: 100%;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
    -moz-box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);

    transition: border 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    -webkit-transition: border 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    -moz-transition: border 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

#fieldset-payment input[type=radio]:checked+label, #checkout-shipping-payment input[type=radio]:checked+label {
    border: 1px solid white;
    background-color: var(--highlight);
   
    box-shadow: 2px 4px 10px 0px rgba(0,0,0,0.16);
    -webkit-box-shadow: 2px 4px 10px 0px rgba(0,0,0,0.16);
    -moz-box-shadow: 2px 4px 10px 0px rgba(0,0,0,0.16);
    
}
.custom-control-inline label{
    cursor: pointer;
}
#fieldset-payment .custom-control.custom-radio,
#checkout-shipping-payment .custom-control.custom-radio{
    padding-left: 0em; 
}
#fieldset-payment .custom-control.custom-radio .custom-control-label:before,
#checkout-shipping-payment .custom-control.custom-radio .custom-control-label:before {
    display: none;
}

h3.checkout-confirmation-heading{
    color:var(--primary);
}
.card-products #coupon-form .title{
    padding: 20px 25px;
    margin: 0 20px;
    color: var(--primary);
    border-color: #000;
    font-size: 19px;
    font-weight: 700;
    text-align: left;
}

.card.checkout-summary .card-header a.btn-link{
    color:var(--primary-light);
}

.card.checkout-confirmation-shipping .card-header .btn-link, 
.card.checkout-confirmation-billing-address  .card-header .btn-link{
    color: var(--primary-text);
}
.card.checkout-confirmation-shipping .card-header , 
.card.checkout-confirmation-billing-address  .card-header{
    background-color: var(--primary-light);
}
.card.checkout-confirmation-shipping .card-header span.toggle, 
.card.checkout-confirmation-billing-address  .card-header span.toggle,
 .card.checkout-summary .card-header span.toggle {
   display: none;
}

.card#panel-edit-comment .card-header,
.checkout-confirmation .checkout-confirmation-items div#coupon-form,
.checkout-confirmation .checkout-confirmation-items .card-header{
    background-color: transparent;
}

.card#panel-edit-comment .card-body textarea{
    border-radius: 12px;
    border:1px dashed var(--primary);
    padding:1rem;
}

div#panel-submit-order .card-header .btn-link{
    position: absolute;
    background: none;
    top: 7px!important;
    right: 6px!important;
    color: #8dbf17;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

div#order-confirm .card.card-products{
    border: 2px solid var(--primary-md);
}
div#order-confirm .card.card-products .list-unstyled{
    display: none;
}
div#order-confirm .card.card-products .checkout-items-item-image-wrapper{
    padding-right: 0em;
    padding-left: 0em;
    width: 40px;
    max-width: 40px;
}
div#order-confirm .card.card-products .checkout-items-item-quantity,
div#order-confirm .card.card-products .checkout-items-item-price-single,
div#order-confirm .card.card-products .checkout-items-item-main{
    padding-right: 0em;
    padding-left: 0em;
}
div#order-confirm .card.card-products .price-col{
    padding-left: 0px;
}
div#order-confirm .card.card-products .checkout-items-item-price-single{
    padding-right: 10px;
}

/* div#order-confirm .card.card-products .checkout-items-item-quantity,
div#order-confirm .card.card-products .checkout-items-item-price-single{
    max-width: fit-content;
} */
div#order-confirm .card.card-products .checkout-items-item-main{
    font-weight: bold;
    /* flex: 1; */
}
div#order-confirm .card.card-products .checkout-items-item-main a{
    color:var(--primary-md);
}
.card-products .card-body {
    margin-top: 0!important;
    padding: 0;
}
#panel-submit-order .checkout-items-header {
    display: none !important;
}
.checkout-confirmation #coupon-form{
    padding-bottom: 0px;
    margin-bottom: 0px;
}
.checkout-confirmation .order-confirmation-bo{
    background: var(--light);
    margin-bottom: 1rem;
}
.checkout-confirmation .checkout-confirmation-items .card-body{
    padding:1rem; 
    padding-top:0rem; 
}


/*---------------------------------------------------- Free Gifts */
.gift_meter, .coupon_meter {
    background: white;
    margin: 0;
    padding: 28px 20px !important;
    border-radius: 10px;
    margin-bottom: 60px;
    margin-top: -40px;
    min-height: 300px;
    position: relative;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    box-shadow: 3px 7px 6px rgb(0 0 0 / 16%);
    -webkit-box-shadow: 3px 7px 6px rgb(0 0 0 / 16%);
    -moz-box-shadow: 3px 7px 6px rgb(0 0 0 / 16%);
}
.gift_meter .progress-bar-wrap, .coupon_meter .progress-bar-wrap{
    width: 100%;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
}
.heading-gift {
    font-weight: 700;
    font-size: 22px;
    color: var(--primary-md);
}

#cart-progress-steps {
    margin-top: -1.2em!important;
    /* display: flex; */
    /* justify-content: space-between; */
}
#cart-progress-bar {
    border-radius: 0;
    border: 1px solid #eaeaea;
    margin-top: -1em;
    color: cornflowerblue;
    background: floralwhite;
}

#cart-progress-bar, #cart-progress-steps {
    /* width: 100%; */
    width: 85%;
    position: relative;
    height: 15px;
    box-sizing: border-box;
    margin: 0 20px;
}

#cart-progress-steps .step {
    position: absolute;
    /* width: 80px; */
    height: 20px;
    font-size: 14px;
    text-align: center;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
}

#cart-progress-steps .discount{
    font-size: 12px;
    line-height: 1.25em !important;
    color: #4b5631;
    display: none !important;
}

#cart-progress-steps .step:before {
    content: '';
    display: block;
    position: absolute;
    width: 40px;
    height: 16px;
    border-left: 2px solid black;
    /* left: 50%; */
    left: 0;
    top: -5px;
}
#cart-progress-steps .step:after {
    content: '';
    display: block;
    background-image: url(/media/image/storage/opc/gift-box.svg);
    width: 30px;
    height: 30px;
    position: absolute;
    top: -19.5px;
    /* right: 27px; */
    background-size: 100%;
    background-repeat: no-repeat;
}
#cart-progress-steps .gift_amt {
    font-weight: 600;
    color: var(--secondary);
    font-size: 16px;
    position: absolute;
    width: max-content;
    left: -15px;
    top: 15px;
}

.gift_meter .leftcol, .coupon_meter .leftcol {
    display: block;
    width: 100%;
    margin-top: 1rem;
}
.gift_meter .continue-shopping , .coupon_meter .continue-shopping {
    width: 100%;
    justify-content: flex-end;
}
.gift_meter .continue-shopping .col, .coupon_meter .continue-shopping .col{
    flex: inherit;
    text-align: right;
    width: auto;
    text-align: right;
}

.basket-freegift .product-wrapper-freegift {
    height: auto;
}
.basket-freegift .product-wrapper-freegift .custom-control-label {
    border-color: var(--primary-light);
    border-radius: 8px;
    padding:0.5rem;
}
.badge-check .badge-circle{
    background-color: var(--primary-light);
    border-color: var(--primary-light);
}
.cart-items-body.type-11{
    background: rgba(var(--primary-light-rgb), 0.2);
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.cart-items-body.type-11 .cart-pro-title ul.list-unstyled li > div{
    background-color: #fff;
    color: #333;
    /* border: 1px solid var(--primary); */
}

/*
 * ------------------------------------------------------------ ACCOUNT PAGE 
 *
 */
 
 /* style for data download cards */
 #refresh-files {
     cursor: pointer;
     animation: rotate 1.5s linear infinite;
    }
    
    
    
    .mediafiles-zip .download-file-title {
        font-weight: bold;
        display: inline-block;
        margin-bottom: 5px;
    }
    
    .mediafiles-zip .download-file-link {
        font-weight: 400;
        display: inline-block;
        padding-left: 5px;
        margin-bottom: 5px;
    }
    
    .mediafiles-zip a.download-link:before {
        font-family: "Font Awesome 5 Free";
        font-weight: bold;
        content: "\f019";
    }
    
    
/*
* ------------------------------------------------------------ NEWSLETTER PAGE 
*
*/

div#newsletter-subscribe {
    padding: 31px 37px;
    background: white;
    border-radius: 8px;
    box-shadow: 3px 7px 8px rgb(0 0 0 / 16%);
    -webkit-box-shadow: 3px 7px 8px rgb(0 0 0 / 16%);
    -moz-box-shadow: 3px 7px 8px rgb(0 0 0 / 16%);
}

div#newsletter-unsubscribe{
    padding: 31px 37px;
}


/*
* ------------------------------------------------------------ About us PAGE 
*
*/

#main-wrapper.main-wrapper-aboutus,
#main-wrapper.main-wrapper-about-us{
    padding-bottom: 0em;
}

h1.about-us {
    font-weight: 600;
    text-align: center;
    margin-top: 0;
    padding-top: 28px;
    margin-bottom: 34px;
}
.about-one {
    background: white;
    padding-top: 36px;
}

.about-one div[data-area-id="col-0"] {
    align-self: center;
}

.about-two {
    padding: 100px 0px;
}

.about-two img {
    border-radius: 24px;
    box-shadow: 20px 16px 34px -14px #80808061;
    -webkit-box-shadow: 20px 16px 34px -14px #80808061;
    -moz-box-shadow: 20px 16px 34px -14px #80808061;
}

.container-fluid.opc-Container.about-text {
    background: white;
    padding: 78px 0;
}

.container-fluid.opc-Container.about-three {
    padding: 70px 32px;
    margin-bottom: -106px;
    padding-bottom: 109px;
}

/*
* ------------------------------------------------------------ BLOG PAGE 
*
*/

.newsbox.blog-preview {
    background: white;
    padding: 21px 21px;
    border-radius: 8px;
    box-shadow: 3px 7px 8px rgb(0 0 0 / 16%);
    -webkit-box-shadow: 3px 7px 8px rgb(0 0 0 / 16%);
    -moz-box-shadow: 3px 7px 8px rgb(0 0 0 / 16%);
}

.newsbox.blog-preview .newsbox-footer a{
    color:var(--primary-light);
}


/*
* ------------------------------------------------------------ MUSTERBESTELLUNG PAGE 
*
*/

.container.opc-Container.muster_title {
    padding-bottom: 100px;
    padding-top: 36px;
}
.container-fluid.opc-Container.muster-first {
    padding-top: 100px;
    padding-bottom: 100px;
}
.container-fluid.opc-Container.muster-last img,
.container-fluid.opc-Container.muster-first img{
    border-radius: 24px;
    box-shadow: 20px 16px 34px -14px #80808061;
    -webkit-box-shadow: 20px 16px 34px -14px #80808061;
    -moz-box-shadow: 20px 16px 34px -14px #80808061;
}
h2.mu_head {
    position: relative;
    padding-left: 18px;
    margin-bottom: 9px;
    margin-top: 28px;
}
h2.mu_head::before {
    width: 8px;
    height: 100%;
    background: #c8d385;
    content: "";
    position: absolute;
    left: 0;
}

.container-fluid.opc-Container.muster-last {
    padding-top: 100px;
    padding-bottom: 100px;
}


/*
* ------------------------------------------------------------ PAYMENTS PAGE 
*
*/

.pay_method {
    display: flex;
    margin-bottom: 13px;
}
.pay_method h3 {
    margin-bottom: 7px;
    font-weight: 700;
}

/*
 * ------------------------------------------------------------ KONTAKT PAGE 
 *
 */
 h1.ko-title {
    text-align: center !important;
    font-weight: 600;
    padding-top: 41px;
    padding-bottom: 20px;
}

.ko-one {
    background: white;
    text-align: center;
    padding: 31px 5px;
    border-radius: 8px;
    box-shadow: 3px 7px 8px rgb(0 0 0 / 16%);
    -webkit-box-shadow: 3px 7px 8px rgb(0 0 0 / 16%);
    -moz-box-shadow: 3px 7px 8px rgb(0 0 0 / 16%);
}
.ko-one i {
    color: transparent;
    display: block;
    margin-bottom: 12px;
}

.ko-one i:before {
    color: var(--primary-light);
    font-size: 40px;
}

.ko-one .title {
    font-size: 28px;
    font-weight: 700;
    color: #3e4f3c;
}
.ko-one .content a {
    display: block;
    margin-bottom: 5px;
}
.ko-one .content p {
    margin-bottom: 5px;
}

 /*
 * ------------------------------------------------------------ ANIMATIONS 
 *
 */
#new_customer.row > .col > h1.h2{
    text-align: center;
}
#new_customer.row #panel-register-form{
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0px 4px 12px -3px rgba(0,0,0,0.3);
    -webkit-box-shadow: 0px 4px 12px -3px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 4px 12px -3px rgba(0,0,0,0.3);
}

 /*
 * ------------------------------------------------------------ ANIMATIONS 
 *
 */
 @keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

 @keyframes blink {
    0% {
        background: #fbe020;
    }
    25% {
        background: #eeff8f;
    }
    50% {
        background: #fbe020;
    }
    100% {
        background: #ffe000;
    }
}

@keyframes blink-after {
    0% {
        border-left: 20px solid #fbe020;
    }
    25% {
        border-left: 20px solid #eeff8f;
    }
    50% {
        border-left: 20px solid #fbe020;
    }
    100% {
        border-left: 20px solid #ffe000;
    }
}

/*-------- tooltip with delayed timing */
@keyframes displayToolTip {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes displayToolTip {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-moz-keyframes displayToolTip {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}



/*
 * ------------------------------------------------------------ MEDIA QUERIES 
 *
 */