:root {

    --color-accent: rgba(0, 0, 0, .9);
    --color-text: rgba(0, 0, 0, .9);
   /*
   --color-text: rgba(0, 71, 171, 1);
   */
    --font-text: 'Inter';
}


html {
    scroll-behavior: smooth;
}

body {
    font-size: 16px;
    font-family: var(--font-text), sans-serif;
    color: var(--color-text);
    background-color: transparent;
    font-weight: 300;
    line-height: 140%;
    position: relative;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    flex-basis: auto;
    flex-wrap: wrap;
}

img.site-bg {
    position: fixed;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    object-fit: fill;
    z-index: -1;
    opacity: .65;
}

.ml-0 {
    margin-left: 0;
}

a {
    color: var(--color-text);
}

a.page-content,
.body a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-decoration-style: dotted;
}

strong, b {
    font-weight: 500;
}

h1, h2, h3, h4, h5 {
    color: var(--color-text);
    position: relative;
    font-family: var(--font-text), sans-serif;
    display: block;
    line-height: 135%;
    font-weight: 400;
    margin-bottom: 0.25em;
    font-size: 16px;
}

h1 {
    font-size: 24px;
    margin-bottom: .5em;
}

h2 {
    font-size: 18px;
}

p {
    margin-bottom: 0.8em;
}

.body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0.8em 0;
}

.body ul li {
    padding-left: 1.5em;
    text-indent: -1.2em;
}

.body ul li::before {
    content: "∙ ";
    color: var(--color-text);
}

.body ol {
    list-style-type: none;
    margin-bottom: 0.8em;
    margin-left: 1.8em;
}
.body ol li {
    counter-increment: count-me;
}

.body ol li::before {
    content: counter(count-me) ". ";
    display: block;
    position: relative;
    max-width: 0;
    max-height: 0;
    left: -1.3em;
    top: .05em;
    color: var(--color-text);
    font-weight: 400;
}

.body img {
    display: block;
    width: 100%;
}

.body.small {
    font-size: 14px;
}

main {
    width: 100%;
}

.content {
    position: relative;
    clear: both;
    width: 95%;
    max-width: 960px;
    margin: 0 auto;
}

main nav.shop {
    display: none;
}

body.shop {
    background: #efece9;
}
body.shop img.site-bg{
    display: none;
}
/*******************************************/
/* Header
/*******************************************/

   /* .shop main .content:first-of-type,
    .page main .content:first-of-type {
        margin-top: 27px;
    }*/

    .header {
        width: 100%;
        padding: 15px 0;
        min-height: 90px;
    }
    .header .content {
        display: flex;
        flex-direction: row;
        flex-basis: auto;
        flex-wrap: nowrap;
    }
    .header .content *:first-child {
        margin-left: auto;
    }

    .header ul.main-nav {
        display: none;
    }


/*******************************************/
/* Responsive-Navigation
/*******************************************/

a#offcanvas-menu {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    padding: 15px 10px 10px 10px;
    background: #efece9;
    text-align: center;
    border-radius: 50%;
}

a#offcanvas-menu span.bar {
    background-color: var(--color-text);
    display: block;
    float: left;
    height: 3px;
    margin: 0 auto 6px auto;
    width: 30px;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

#offcanvas-menu.toggled span:first-child {
    transform: translateY(9px) rotate(45deg);
}

#offcanvas-menu.toggled span {
    transform-origin: center center 0;
}

#offcanvas-menu.toggled span:nth-child(2) {
    opacity: 0;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

#offcanvas-menu.toggled span:last-child {
    transform: translateY(-9px) rotate(-45deg);
}

.sidr-open #sidr-body-overlay {
    display: block;
}

#sidr-body-overlay {
    background-color: rgba(0, 0, 0, 0.2);
    bottom: 0;
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 999998;
}

.sidr {
   /* background: #efece9 none repeat scroll 0 0;
    background: #efece9;*/
    background: url("/styles/images/rand_web.png") top right;
    box-shadow: none;
    color: var(--color-text);
    display: block;
    font-family: var(--font-text), sans-serif;
    font-size: 16px;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    top: 0;
    width: 230px;
    z-index: 999999;
    padding-top: 15px;
    padding-right: 30px;
    /* flip background vertically */
    -webkit-transform:scaleX(-1);
    -moz-transform:scaleX(-1);
    -ms-transform:scaleX(-1);
    transform:scaleX(-1);
}

.sidr ul {
    -webkit-transform:scaleX(-1);
    -moz-transform:scaleX(-1);
    -ms-transform:scaleX(-1);
    transform:scaleX(-1);
}

.sidr ul {
    border: 0 none;
}
.home .sidr ul.shop-navigation,
.page .sidr ul.shop-navigation {
    display: none;
}
.shop .sidr ul.page-navigation {
    display: none;
}

.sidr ul li,
.sidr ul li:hover,
.sidr ul li.active,
.sidr ul li.sidr-class-active {
    border: 0 none;
    line-height: 130%;
    margin-bottom: 8px;
    margin-left: 10px;
    margin-right: 10px;
}

.sidr ul li a, .sidr ul li:not(.title) span {
    color: var(--color-text);
    display: inline-block;
    font-weight: 300;
}

.sidr ul li a img {
    display: inline-block;
    height: 60px;
    vertical-align: -23px;
}

.sidr ul li:not(.title) a span {
    display: inline-block;
    line-height: 120%;
    padding: 0;
}

.sidr ul.shop-navigation li.title:first-of-type span {
    margin-bottom: 5px;
}
.sidr ul.shop-navigation li:last-of-type {
    border-bottom: 1px solid rgba(0,0,0,.5);
    padding-bottom: 1em;
    margin-bottom: 1em;
}


.sidr ul li.title span {
    font-weight: 600;
    line-height: 130%;
}

.sidr ul li.category span {
    /*
    margin-left: 15px;
    */
}

.sidr ul li a,
.sidr ul li span {
    padding: 0 5px;
}

.sidr ul li a span {
    padding: 0;
}
.sidr ul.shop-nav {
    display: block;
}
.sidr ul.shop-nav li a span {
    margin-left: 0;
}
.sidr ul li:hover > a,
.sidr ul li:hover > span,
.sidr ul li:hover > a span,
.sidr ul li.selected > a,
.sidr ul li.active > a,
.sidr ul li.active > span,
.sidr ul li.active > a span,
.sidr ul li.sidr-class-active > a,
.sidr ul li.sidr-class-active > span,
.sidr ul li.sidr-class-active > a span {
    box-shadow: none;
    color: var(--color-text);
    font-weight: 600;
}


.sidr ul li:hover, .sidr ul li.active, .sidr ul li.sidr-class-active, .sidr ul li.selected {
    border-top: 0 none;
    background-color: transparent;
}

/*******************************************/
/* Grid
/*******************************************/

.grid {
    width: calc(100% + 60px);
    display: flex;
    flex-basis: auto;
    margin-left: -60px;
}

.grid.row {
    flex-direction: row;
}

.grid.column {
    flex-direction: column;
}

.grid.wrap {
    flex-wrap: wrap;
}

.grid .item {
    margin-left: 60px;
    /*margin-right: auto;*/
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    margin-bottom: 30px;
    align-items: flex-start;
}
.grid .item p {
    margin-left: 0;
}
.grid .item span {
    display: block;
    width: 100%;
}
.grid .item {
    width: calc( 100% - 60px );
    margin-left: 60px;
}

.grid .item.product {
    position: relative;
}


/*******************************************/
/* Inhalts-Bilder
/*******************************************/

.image-wrapper img {
    margin-bottom: 0 !important;
}

.image-wrapper p {
    color: rgba(0, 0, 0, 0.5);
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    line-height: 16px;
}

.fr-dib {
    width: auto;
    max-width: 100%;
    display: block;
    float: none;
    margin: 20px 0 20px 0;
}

.fr-dii {
    display: inline-block;
    width: auto;
    max-width: 100%;
}

.page-image {
    margin-bottom: 1em;
    display: block;
}
/*******************************************/
/* Section
/*******************************************/
section {
    width: 100%;
}
hr {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    padding-left: -15px;
    padding-right: -15px;
    border: none;
    border-top: 1px solid #dadada;
}
section.page {
    display: flex;
    flex-direction: column;
    flex-basis: auto;
}
section.headline {
    margin-bottom: 30px;
}

div .content.body {
    display: flex;
    flex-direction: column;
    flex-basis: auto;
}
section .content.body {
    margin-bottom: 60px;
}
/*
.page.map {
    display: flex;
    width: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    flex-basis: auto;
}

img.leaflet-marker-icon { filter: hue-rotate(120deg); }
*/

/*******************************************/
/* Home
/*******************************************/
/*body.home nav.header {
    display: none;
}*/
body.home .content {
    max-width: 960px;
}
body.home img.home-logo {
    margin: 3em auto;
    width: 80%;
    max-width: 500px;
    display: block;
}
body.home ul.home-navigation {
    width: calc(100% + 30px);
    display: flex;
    flex-direction: row;
    flex-basis: auto;
    flex-wrap: wrap;
    margin-left: -30px;
}
body.home ul.home-navigation li {
    display: inline-block;
    width: calc(50% - 30px);
    margin-left: 30px;
}
body.home ul.home-navigation li a {
    width: 100%;
    display: block;
}
body.home ul.home-navigation li a img {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    display: block;
}
/*******************************************/
/* Page
/*******************************************/



/*******************************************/
/* Shop
/*******************************************/
body.shop {

}

/*.shop {
    background: url("/styles/images/hintergrund.jpg") 100% / cover;
    background-blend-mode: normal;
}*/

ul.shop-filter {
    display: inline-block;
    padding: 0;
    text-align: center;
}

ul.shop-filter li {
    display: inline-block;
    margin-right: 10px;
}

ul.shop-filter li a.button {
    background-color: #5c5c5c;
}

ul.shop-filter li a.button.selected {
    background-color: #000000;
}
.divider-more-products {
    margin-bottom: 30px;
}
.product article.grid {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto auto auto auto auto auto;
    margin-left: 0;
    width: 100%;
}

form.add_to_cart_form .grid {
    justify-content: flex-start;
}
form.add_to_cart_form .grid .item {
    width: auto;
}

.product select.quantity {
    max-width: 5em;
}

.product article.grid .box {
    height: auto;
}
.product article.grid .box.img {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 3;
}
.product .box.img.gallery {
    width: 100%;
    float: left;
    display: flex;
    flex-flow: row wrap;
    margin-bottom: 30px;
    align-content: flex-start;
}
.product .box.img.gallery a.fancybox {
    width: calc( 33.33% - 15px);
    margin-right: 15px;
    margin-bottom: 15px;
}
.product .box.img.gallery a.fancybox:first-child {
    width: calc( 100% - 15px);
    margin-right: 0;
}
.product .box.img.gallery a.fancybox img {
    width:100%;
}
.product article.grid .box.img img {
    display: block;
    width: 100%;
}
.product article.grid .box.description {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 8;
    grid-row-end: 9;
    font-size: 16px;
}
.product article.grid .box.title {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 3;
    grid-row-end: 4;
}

.product article.grid .box.price {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 5;
    grid-row-end: 6;
    margin-top: .5em;
    margin-bottom: 1.6em;
    text-align: left;
}
.product article.grid .box.flavor {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 6;
    grid-row-end: 6;
    margin-bottom: 1.6em;
}

.product article.grid .box.product-text {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 7;
    grid-row-end: 8;
}
.product .add_to_cart_form button {
    margin: 24px 0 0 0;
}
.product .add_to_cart_form .grid {
    margin-left: -30px;
}
.product .add_to_cart_form .grid .item {
    margin-bottom: 20px;
    margin-left: 30px;
}
.product .box.flavor .price-info {
    font-size: 13px;
}
.product .box.flavor .stock-info {
    font-size: 13px;
}

.product-list .item form.quick_add_btn button {
    -webkit-appearance: none;
    -moz-appearance: none;
    position: absolute;
    border-radius: 50%;
    padding: 6px 0;
    height: 45px;
    width: 45px;
    right: 0;
    top: -25px;
    text-align: center;
    margin-top: 1em;
    background: #efece9 !important;
    border: none;
}

.product-list .item div.quick_add_btn_success {
    position: absolute;
    padding: 6px 0;
    height: 45px;
    width: 45px;
    right: 0;
    top: 0px;
}

.product-list .item form.quick_add_btn button img.icon-cart-add {

}
.product-list .item form.quick_add_btn button img.icon-cart-add-sym {
    z-index: 2;
    width: 8px;
    display: block;
    position: absolute;
    top: 13px;
    left: 18px;
    line-height: 45px;
    rotate: -9deg;
}
.product-list .item form.quick_add_btn button span {
    position: absolute;
    top: 3px;
    line-height: 45px;
    display: block;
    font-weight: 600;
    width: 100%;
    color: #FFFFFF;
}
.product-list .item form.quick_add_btn button:hover {
    transform: scale(1);
}

.category-list .item a,
.product-list .item a {
    width: 100%;
    display: block;
}

.product-list .item figure {
    margin: 0 0 20px 0;
    width: 100%;
    display: block;
}

.product-list .item figure img {
    width: 100%;
    display: block;
}

.product-list .text-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    position: relative;
    width: 100%;
}

.product-list .item h2 {
    font-size: 18px;
    text-align: center;
}
.product-list .text-wrap p {
   padding-right: 45px;
}

.product-list .text-wrap a {
    display: block;
    width: 100%;
}
.product-list .text-wrap .left {
    width: 60%;
    margin-top: 10px;
}

.product-list .text-wrap .right {
    width: 30%;
    margin-left: auto;
    margin-top: 10px;
    line-height: 160%;
    margin-right: 10px;
}
.product-list .text-wrap .right span {
    text-align: right;
}
.product-list .text-wrap .detail-price {
    font-size: 13px;
}

.product-list .text-wrap .price {
    font-weight: 500;
}

.product-list .text-wrap a.shipping {
    width: auto;
    display: inline-block;
}

.category-list h2 {
    font-size: 18px;
    text-align: center;
}
.category-list figure {
   margin: 0 0 15px 0;
}
.category-list figure img {
    display: block;
    width: 100%;
}
/*******************************************/
/* Gallery
/*******************************************/

#gallery {
    display: flex;
    flex-direction: row;
    flex-basis: auto;
    flex-wrap: wrap;
    margin: 60px 0 0 -30px;
    width: calc(100% + 30px);
}

#gallery .item {
    width: calc(100% - 30px);
    margin-left: 30px;
    margin-top: 15px;
}

#gallery .item  img{
    width: 100%;
    /* border: 10px solid white;
     box-shadow: rgba(0,0,0,.4) 0 3px 7px;
     rotate: 3deg;*/
}/*
#gallery .item:nth-of-type(2) img{
    rotate: -2deg;
}
#gallery .item:nth-of-type(3) img{
    rotate: 4deg;
}
#gallery .item:nth-of-type(3) img{
    rotate: -3deg;
}*/
.fancybox-bg {
    background-color: var(--color-accent);
}

/*******************************************/
/* Form                                    */
/*******************************************/

form h3 {
    margin-bottom: 0.5em;
}

form .item.half {
    margin-top: 30px;
    margin-bottom: 0;
}

label {
    width: 100%;
    float:left;
    margin-left: 0;
    font-size: 16px;
    margin-bottom: 3px;
}

label.required {
    font-weight: 600;
}

input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border:none;
    border-radius: 0;
    font-size: 16px;
    width: 100%
}


/*!* remove standard-styles *!
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    !* appearance: none; *!
    border-radius: 0;
}

!* hide browser-styling (arrow) in IE10 *!
select::-ms-expand {
    display:none;
}

.lt-ie10 select {
    background-image: none;
}

select {
    background: rgba(109,110,94,0.1) url("/styles/images/select-arrow.png") no-repeat scroll right center / 23px auto;
    margin-bottom: 10px;
}

select:focus {
    background: rgba(109, 110, 94, 0.1) url("/styles/images/select-arrow-active.png") no-repeat scroll right center / 23px auto;
    margin-bottom: 10px;
}*/

input[type='text'],
input[type='tel'],
input[type='email'],
input[type='password'],
textarea,
select {
    font-size: 16px;
    font-weight: 400;
    font-family: Inter, sans-serif;
    background-color: rgba(0,0,0,0.01);
    width: 100%;
    height: 35px;
    margin-left: 0;
    padding: 5px 6px;
    margin-bottom: 10px;
    border-radius: 4px;
    color: rgba(0,0,0,1);
    border: 1px solid rgba(0,0,0,.5);
}

select:focus,
input:focus,
textarea:focus {
    outline: 0;
    border: 1px solid rgba(0,0,0,.85) !important;
}

form div.checkbox {
    float: left;
    margin-bottom: 15px;
    width: 100%;
}

form div.small {
    width: 100%;
    padding-top: 5px;
}

form input.error, form textarea.error {
    border: 1px solid rgba(219,8,18,1);
}

form input.checkbox-type {
    width: 60%;
}

form input[type="checkbox"] {
    margin-left: 0;
}

label.checkbox input {
    display: none;
}

label.checkbox span {
    border: 1px solid ;
    display: inline-block;
    float: left;
    font-size: 22px;
    height: 18px;
    margin-right: 10px;
    margin-top: 2px;
    position: relative;
    width: 18px !important;
}
select.error,
label.checkbox.error span {
    border: 1px solid rgba(219,8,18,1);
}

label.checkbox i {
    padding-left: 7px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    font-style: normal;
    display: inline-block;
    width: calc(100% - 28px);
}

[type=checkbox]:checked + span:before {
    content: '\2714';
    position: absolute;
    color: #6d6e62;
    top: -5px;
    left: 1px;
}

[type=checkbox]:checked + label.checkbox span {
    border: 0.5px solid #6d6e62;
}

textarea {
    height: 128px !important;
}
a.button,
button {
    font-weight: 400;
    display: inline-block;
    cursor: pointer;
    padding: 8px 16px;
    color: #000000;
    font-size: 100%;
    margin-left: auto;
    margin-top: 15px;
    margin-bottom: 30px;
    background-color: #efece9;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    text-decoration: none !important;
    font-family: var(--font-text), sans-serif;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,.5);
}

.shop .product button,
.shop .product .button {
    border: 1px solid rgba(0,0,0,.5);
}
button:disabled{
    cursor: not-allowed;
}
button:disabled:hover {
    -webkit-transform: none;
    transform: none;
}

button.prev-next{
    margin-top: auto;
}

span.validatormessage {
    color: rgba(219,8,18,1);
    display: block;
    margin-top: -25px;
    font-size: 16px;
}

.checkbox span.missing {
    color: rgba(219,8,18,1);
    display: block;
    margin-left: 29px;
}

.product_prev_next {
    width: 100%;
}
.product_prev_next .button {
    margin-bottom: 0;
}
/*************
    Footer
*************/
footer {
    margin: auto 0 20px 0;
}
footer ul {
    margin: 0 auto;
    text-align: center;
}

footer ul li {
    display: inline-block;
    font-size: 16px;
    position: relative;
    margin-right: 20px;
}
footer ul li.selected,
footer ul li:hover {
    font-weight: 600;
}
footer ul li a:after {
     display: block;
     content: attr(title);
     font-weight: 600;
     height: 1px;
     color: transparent;
     overflow: hidden;
     visibility: hidden;
}
footer ul li:after {
    position: absolute;
    content: "∙";
    right: -15px;
    top: 0;
}

footer ul li:last-of-type:after {
    content: "";
}

.toTop {
    border-radius: 100%;
    bottom: 40px;
    display: none;
    height: 32px;
    position: fixed;
    right: 45px;
    width: 32px;
    font-size: 32px;
    overflow: visible;
    z-index: 90;
    text-align: center;
}

.toTop a {
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.toTop div.background {

}