@charset "UTF-8";
/* CSS Document */
/* Quicksand */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 400;
  src: url('../Fonts/Quicksand-VariableFont_wght.ttf'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


:root {
  --text-color: hsl(0deg 0% 20%);
  --link-color: hsl(40deg 100% 30%);
  --link-color-hover: hsl(40deg 100% 50%);
  --title-color: hsl(40deg 100% 30%);
  --grey: hsl(0deg 0% 50%);
  --light-grey: hsl(0deg 0% 80%);
  --light-red: hsl(40deg 100% 100%);
  --page-width: 1024px;
  --pagehead-height: 120px;
  --text-font: 'Quicksand', Arial, Helvetica, sans-serif;
  --title-font: 'Quicksand', Arial, Helvetica, sans-serif;
  --gap: 1rem;
  --doublegap: 2rem;
  --teaser-height: 40vw;
}


* {
	margin:0px;
	padding:0px;
	border:none;
	box-sizing: border-box;
}


.clear {
    clear: both;
}
.vihi {
    position: absolute;
    display: block;
    margin: -1px;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

body {
	width:100%;
	background-color: #fff;
    font-family: var(--text-font);
	font-size: 1.2rem;
    line-height: 1.9rem;
	font-weight: 300;
	color: var(--text-color);
}
.pagehead {
    display: block;
    position: sticky;
    top: 0;
    height: var(--pagehead-height);
    width: 100%;
    z-index: 100;
    background-color: #fff;
}
.pagehead > div {
    width: var(--page-width);
    height: var(--pagehead-height);
    margin: 0 auto;
    position: relative;
}
#homelink {
    position: absolute;
    left: var(--gap);
    top: 10px;
    z-index: 110;
}
#homelink a {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
    width: 200px;
    height: 106px;
    display: block;
}
.minicart {
    position: absolute;
    right: var(--gap);
    top: var(--gap);
}

.contenthead {
    position: relative;
}
#pagetitle {
    position: sticky;
    z-index: 1;
    top: var(--pagehead-height);
    height: 50px;
    background-color: var(--link-color);
    width: 100%;
}
#pagetitle h1 {
    width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--gap);
    font-size: 24px;
    line-height: 50px;
    color: #fff;
    font-family: var(--text-font);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.01em;
    white-space: nowrap;
    opacity: 0.8;
}



.contentmain {
    margin-top: 5rem;
}
.contentmain > div {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--doublegap);
    width: var(--page-width);
    padding: 0 var(--gap);
}
.contentmain > .teaser-full {
    width: 100%;
    padding: 0;
}

section {
    clear: left;
}
footer {
    clear: both;
    display: block;
    height: 50px;
    font-size: 0.9rem;
    line-height: 25px;
    color: white;
    background: var(--link-color);
}
.contentfoot {
    width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--gap);
}





/** GENERAL **/
optgroup {
    padding-top:3px;
    padding-bottom:3px;
}
    
table {
    border-collapse:collapse;
}
th, td {
    text-align:left;
    vertical-align:top;
}
p {
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}
p + p {
	padding-top:16px;
}
img {
    border-radius: 10px;
}
#content table {
	width: 100%;
}
#content tr:nth-of-type(even) {
    background: rgba(0,0,0,0.1);
}
thead tr {
    background: var(--link-color);
    color: white;
}
th {
    font-weight: bold;
    white-space: nowrap;
}
td, th {
    padding-left: 10px;
    padding-right:10px;
}
td:first-of-type {
    padding-left: 0;
}
td:last-of-type {
    padding-right: 0;
}
#content td:first-of-type {
	padding-left: 2px;
}
#content td:last-of-type {
	padding-right: 2px;
}
dl {
}
dt {
    float: left;
    clear: left;
    width: 110px;
    font-size: 12px;
    color: var(--grey);
    padding-right: 9px;
}
dd {
    font-size: 12px;
}
.align-center, .text-center {
    text-align: center;
}

/** Titles */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--title-color);
    font-style: normal;
    font-weight: 700;
    font-family: var(--title-font);
    clear: left;
}

h1 {
    margin-bottom: 30px;
    font-size: 52px;
    line-height: 58px;
    font-weight: 300;
}
h2 {
    margin: 80px 0px 20px 0px;
    font-size: 32px;
    line-height: 36px;
    font-weight: 300;
}
h3 {
    margin:30px 0px 8px 0px;
    font-size: 24px;
    line-height: 28px;
    font-weight: 300;
}
h4 {
    font-size: 20px;
    line-height: 23px;
    margin-bottom: 5px;
    margin-top: 30px;
}
h5, h6 {
    font-size: inherit;
    line-height: inherit;
}
.contentmain > div:first-of-type h2 {
    margin-top: 0;
}
.contentright h2 {
    font-size: 28px;
    line-height: 33px;
}
footer h2 {
    font-size: 22px;
    margin: 16px 0 16px 0;
    line-height: 24px;
}
.ce-intext h3 {
    margin-top: 0;
}

hr {
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: var(--light-grey);
    }
div.divider {
    margin-bottom: 10px;
}


time {
    font-size: 11px;
    color: var(--grey);
}

/** Lists */
li {
	margin:0; 
	padding:0; 
	text-indent: -18px;
	list-style: none;
}
.frame {
    clear: both;
}
.frame li {
  margin: 5px 0 5px 22px;
}
.frame li:before {
    content: '•';
    font-weight: bold;
    color: var(--link-color);
    padding-right: 10px;
}


/* frame classes */


/** Links */
a {
	text-decoration:none;
	color: var(--link-color);
    transition: 1s;
	}

a:hover {
	text-decoration:none;
	color: var(--link-color-hover);
    transition: 0s;
	}
.btn {
    width: auto;
    min-width: 20px;
    cursor: pointer;
    display: inline-block;
    padding: 0 1rem;
    border-width: 1px;
    border-style: solid;
    border-radius: 4px;
    transition: 0.2s;
    font-size: 1rem;
    line-height: 2.1rem;
    user-select: none;
    text-transform: uppercase;
    margin-top: 1rem;
    margin-right: 1rem;
}
.btn.btn-primary {
    border-color: var(--link-color);
    background-color: var(--link-color);
    color: white;
}
.btn.btn-primary:hover {
    background-color: white;
    color: var(--link-color);
}
.btn.btn-secondary {
    border-color: var(--grey);
    background-color: var(--grey);
    color: white;
}
.btn.btn-secondary:hover {
    background-color: white;
    color: var(--grey);
}

/* teasers */
.teaser-full {
    width: 100%;
    height: var(--teaser-height);
    overflow: hidden;
    position: relative;
}

.teaser-full .teaser-img-wrap {
    position: absolute;
    width: 100%;
    height: var(--teaser-height);
}
.teaser-full img {
    width: 100%;
    height: var(--teaser-height);
    border-radius: 0;
}
.teaser-full h2 {
    position: absolute;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 0 10px black;
    font-size: 4vw;
    right: -80vw;
    top: 3vw;
    margin: 0;
    transition-duration: 2s;
    transition-timing-function: cubic-bezier(0.075, 0.820, 0.165, 1.000); /* easeOutCirc */
}
.teaser-full.act h2 {
    right: 2vw;
}
.teaser-full .teaser-content {
    color: black;
    position: absolute;
    max-width: 30vw;
    bottom: -80vw;
    left: 2vw;
    background-color: rgba(255,255,255,0.6);
    padding: 1rem;
    border-radius: 4px;
    transition-duration: 2s;
    transition-timing-function: cubic-bezier(0.075, 0.820, 0.165, 1.000); /* easeOutCirc */
}
.teaser-full.act .teaser-content {
    bottom: 2vw;
}
.teaser-full .teaser-content h3 {
    margin-top: 0;
}
.teaser-full .teaser-content p {
    text-shadow: 0px 0px 15px white, 0px 0px 20px white;
}
.contenthead.notempty {
    height: var(--teaser-height);
    overflow: hidden;
}
.contenthead.notempty .teaser-full {
    position: absolute;
    display: none;
}
.contenthead.notempty .teaser-full.act {
    display: block;
}
.contenthead > ul {
    position: absolute;
    bottom: 0;
    line-height: 0;
    text-align: center;
    width: 100%;
}
.contenthead > ul > li {
    display: inline-block;
    width: 1.6vw;
    height: 1.6vw;
    margin: 1vw;
    border-radius: 1vw;
    background: rgba(255,255,255,0.4);
    border: 1px solid white;
    transition-duration: 0.5s;
}
.contenthead > ul > li:hover {
    cursor: pointer;
}
.contenthead > ul > li.act {
    background: rgba(0,0,0,0.6);
}
.teaser-tile {
    box-shadow: 0 0 10px rgb(0 0 0 / 12%);
}
.teaser-tile a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.teaser-tile .teaser-content {
    color: var(--text-color);
    padding: 10px 10px 0;
    flex-grow: 1;
}
.teaser-tile .teaser-img-wrap {
    overflow: hidden;
}
.teaser-tile .teaser-img-wrap {
    overflow: hidden;
    width: 100%;
    line-height: 0;
    margin-bottom: 3px;
    flex-grow: 0;
}
.teaser-btn {
    padding: 0 10px 10px;
    flex-grow: 0;
}
.teaser img {
    transition-duration: 0.2s;
    transition-timing-function: ease-out;
}
.teaser:hover a img {
    transform: scale(1.1);
}
.teaser-tile h2,
.teaser-tile h3,
.teaser-tile h4,
.teaser-tile h5,
.teaser-tile h6 {
    margin-top: 0.5rem;
    margin-bottom: 0.3rem;
}
.teaser:hover a h2,
.teaser:hover a h3,
.teaser:hover a h4,
.teaser:hover a h5,
.teaser:hover a h6 {
    color: var(--link-color);
}
.teaser:hover .btn.btn-primary {
    background-color: white;
    color: var(--link-color);
}

/* image gallery */
.imagegallery .gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.imagegallery .gallery a {
    display: flex;
}
.imagegallery .gallery.cols-10 a {
    width: calc((var(--page-width) - var(--doublegap)) / 10 - 4px);
}
.imagegallery .gallery.cols-9 a {
    width: calc((var(--page-width) - var(--doublegap)) / 9 - 4px);
}
.imagegallery .gallery.cols-8 a {
    width: calc((var(--page-width) - var(--doublegap)) / 8 - 4px);
}
.imagegallery .gallery.cols-7 a {
    width: calc((var(--page-width) - var(--doublegap)) / 7 - 4px);
}
.imagegallery .gallery.cols-6 a {
    width: calc((var(--page-width) - var(--doublegap)) / 6 - 4px);
}
.imagegallery .gallery.cols-5 a {
    width: calc((var(--page-width) - var(--doublegap)) / 5 - 4px);
}
.imagegallery .gallery.cols-4 a {
    width: calc((var(--page-width) - var(--doublegap)) / 4 - 4px);
}
.imagegallery .gallery.cols-3 a {
    width: calc((var(--page-width) - var(--doublegap)) / 3 - 4px);
}
.imagegallery .gallery.cols-2 a {
    width: calc((var(--page-width) - var(--doublegap)) / 2 - 4px);
}
.imagegallery .gallery a img {
    width: 100%;
    height: auto;
    border: 1px solid var(--light-grey);
}





/* cart, cart-products */
.text-right {
    text-align: right;
}
.fa span, .far span, .fas span {
    font-family: Arial, sans-serif;
    color: white;
    background: var(--link-color);
    border: 2px solid white;
    width: 1.4rem;
    height: 1.4rem;
    position: absolute;
    display: block;
    border-radius: 1rem;
    font-size: 1rem;
    line-height: 1.2rem;
    text-align: center;
    top: -0.3rem;
    right: -0.3rem;
}
.minicart .fas {
    font-size: 2rem;
    color: var(--link-color);
}

.productlist.grid {
    grid-template-columns: repeat(6, 1fr);
    display: grid;
    grid-auto-rows: 1fr;
    grid-column-gap: var(--doublegap);
    grid-row-gap: var(--doublegap);
}
.productlist.grid .product {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}
.productlist.grid .product > * {
    width: 100%;
}
.productlist .product img {
    width: 100%;
    height: auto;
}
.productlist {
    font-size: 1rem;
    line-height: 1.2rem;
}
.productlist h4 {
    font-size: 1rem;
    line-height: 1.1rem;
    margin-top: 0;
}
.product_meta {
    position: relative;
    height: 2rem;
    margin-top: 0.5rem;
    text-align: right;
}
.product_price .instead_price {
    font-size: 0.8rem;
}
.productlist .discount {
    display: inline-block;
    background-color: hsl(0 50% 50% / 1);
    background-color: var(--title-color);
    color: white;
    padding: 1px 3px;
    font-size: 0.8rem;
    border-radius: 0.2rem;
    font-family: Arial, sans-serif;
    font-weight: bold;
    word-spacing: -0.1rem;
    left: 0;
    position: absolute;
}
.productlist .product .stock {
    font-family: Arial, sans-serif;
    color: white;
    background: hsl(120 28% 40% / 1);
    width: 1.2rem;
    height: 1.2rem;
    display: inline-block;
    border-radius: 2rem;
    font-size: 0.7rem;
    line-height: 1.2rem;
    text-align: center;
    margin-left: 0.5rem;
    font-weight: bold;
}
.productlist .product.no-stock .stock {
    background-color: var(--grey);
}
.stockmessage {
    font-size: 1rem;
}
.stockmessage.stock-notavaiable {
    color: #c00;
}
.product-main {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.product-images {
    width: 50%;
}
.product-infos {
    width: 50%;
}
.f-carousel__thumbs {
    --f-thumb-width: 72px;
    --f-thumb-height: 90px;
}
.f-carousel *, .f-carousel *:before, .f-carousel *:after {
    box-sizing: inherit;
    max-width: 100%;
    height: auto;
}
.fevariantItem {
    line-height: 1.3rem;
    margin-top: 1.3rem;
}
.fevariantType_Radio label, .fevariantType_Checkbox label {
    margin-left: 1.1rem;
    text-indent: -1.1rem;
}
ul.pagination {
    text-align: center;
}
body.level-0 ul.pagination {
    display: none;
}
ul.pagination li {
    display: inline-block;
    margin: 0;
    text-indent: 0;
    list-style: none;
    text-align: center;
}
ul.pagination li:before {
    content: '';
    display: none;
}
ul.pagination li a {
    font-family: Arial, sans-serif;
    font-weight: bold;
    width: 1.4rem;
    min-width: unset;
    padding: 0;
    cursor: pointer;
    display: inline-block;
    border-width: 1px;
    border-style: solid;
    transition: 0.2s;
    font-size: 0.8rem;
    line-height: 1.4rem;
    user-select: none;
    margin-top: 1rem;
    margin-right: 0.5rem;
}
ul.pagination li a:hover {
    color: white;
    background-color: var(--link-color);
    border-color: var(--link-color);
}
ul.pagination li.disabled a {
    opacity: 0.5;
    cursor: not-allowed;
}
.add-to-cart-form .form-control.quantity {
    width: 70px;
    text-align: right;
}
.add-to-cart-form .form-control.add_basket {
    width: auto;
}
.form-success {
    color: green;
    background-color: #cfc;
    border: 1px solid green;
    border-radius: 1px;
    margin-top: 10px;
    padding: 3px 10px;
    display: inline-block;
}
.alert-success:before {
    display: inline-block;
    content: "\f058";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 6px;
}
.form-error {
    color: #c00;
    background-color: #fdd;
    border: 1px solid #c00;
    border-radius: 1px;
    margin-top: 10px;
    padding: 3px 10px;
    display: inline-block;
}
.alert-warning:before, 
.tx-cart li.alert:before,
.tx-cart .validation-error:before {
    display: inline-block;
    content: "\f06a";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 6px;
    color: #c00;
}
.tx-cart form.form-currency {
    display: none;
}
.checkout-product-table span.btn {
    margin: 0;
}
.checkout-product-table tr td {
    padding-bottom: 1rem;
    padding-top: 1rem;
}
.product-sku {
    font-size: 0.9rem;
    line-height: 1.1rem;
}
.checkout-product-table .feVariants {
    font-size: 1rem;
    line-height: 1.3rem;
}
.checkout-product-table .feVariant {
    display: table-row;
}
.checkout-product-table .feVariant > span {
    display: table-cell;
    padding-right: 1rem;
}
.checkout-product-table .feVariant > span > dt {
    font-size: 0.9rem;
    display: inline;
    float: none;
    clear: none;
}
.checkout-product-table .feVariant > span > dl {
    display: inline;
}
.checkout-product-table .feVariant > span.fePrice {
    text-align: right;
}
#form-order .row.top-buffer {
    display: flex;
    justify-content: space-between;
}
#form-order .row.top-buffer > div {
    width: calc(50% - var(--gap));
}
.accept-terms label {
    line-height: 1.2rem;
    text-indent: -1.4rem;
    margin-left: 1.4rem;
}
.accept-terms label input {
    width: 1.2rem;
}
.tx-cart .price {
    white-space: nowrap;
}
p.alert-message {
    display: inline-block;
}
.tx-cart li.alert, .tx-cart .validation-error {
    margin: 0;
    text-indent: 0;
    color: #c00;
}
.method-list {
    display: flex;
    column-gap: 1rem;
}
.tx-cart fieldset {
    margin-bottom: 0;
}
.tx-cart label {
    display: block !important;
}


.question {
    font-style: italic;
}
.author {
    font-size: 12px;
    text-transform: uppercase;
}
.quotes {
    color: rgb(205,25,25);
    font-size: 30px;
    line-height: 40px;
}
.quotes:before {
    color: var(--light-grey);
    display: inline-block;
    content: '«';
    font-size: 50px;
    transform: scale(1,1.5);
}
.quotes:after {
    color: var(--light-grey);
    display: inline-block;
    content: '»';
    font-size: 50px;
    transform: scale(1,1.5);
    margin-left: 8px;
}

.ce-gallery img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
}
.ce-gallery[data-ce-columns="2"] .ce-column {
    width: calc(50% - 9px);
}
.ce-gallery[data-ce-columns="3"] .ce-column {
    width: calc(33.3% - 12px);
}
.ce-gallery[data-ce-columns="4"] .ce-column {
    width: calc(25% - 13.5px);
}
.ce-gallery[data-ce-columns="5"] .ce-column {
    width: calc(20% - 14.4px);
}
.ce-gallery[data-ce-columns="6"] .ce-column {
    width: calc(16.66% - 15px);
}
.ce-gallery[data-ce-columns="7"] .ce-column {
    width: calc(14.28% - 15.43px);
}
.ce-gallery[data-ce-columns="8"] .ce-column {
    width: calc(12.5% - 15.75px);
}
.ce-gallery figcaption {
    font-size: 80%;
    line-height: 130%;
}




/* file icons in links */
p a[href$=".pdf"]:before, li a[href$=".pdf"]:before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('../Icons/FileExt/pdf.png');
    background-repeat: no-repeat;
    background-size: 100%;
    margin-right: 3px;
    top: 2px;
    position: relative;
}
p a[href$=".zip"]:before, li a[href$=".zip"]:before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('../Icons/FileExt/zip.png');
    background-repeat: no-repeat;
    background-size: 100%;
    margin-right: 3px;
    top: 2px;
    position: relative;
}
p a[href$=".doc"]:before,  li a[href$=".doc"]:before,
p a[href$=".docx"]:before, li a[href$=".docx"]:before,
p a[href$=".dot"]:before,  li a[href$=".dot"]:before,
p a[href$=".dotm"]:before, li a[href$=".dotm"]:before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('../Icons/FileExt/doc.png');
    background-repeat: no-repeat;
    background-size: 100%;
    margin-right: 3px;
    top: 2px;
    position: relative;
}
p a[href$=".xls"]:before,  li a[href$=".xls"]:before,
p a[href$=".xlsx"]:before, li a[href$=".xlsx"]:before,
p a[href$=".xlt"]:before,  li a[href$=".xlt"]:before,
p a[href$=".xltm"]:before, li a[href$=".xltm"]:before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('../Icons/FileExt/xls.png');
    background-repeat: no-repeat;
    background-size: 100%;
    margin-right: 3px;
    top: 2px;
    position: relative;
}
p a[href$=".jpg"]:before,  li a[href$=".jpg"]:before,
p a[href$=".jpeg"]:before, li a[href$=".jpeg"]:before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('../Icons/FileExt/jpg.png');
    background-repeat: no-repeat;
    background-size: 100%;
    margin-right: 3px;
    top: 2px;
    position: relative;
}
p a[href^="https://www.google.com/maps/place/"]:before, li a[href^="https://www.google.com/maps/place/"]:before {
    content: '';
    display: inline-block;
    width: 29px;
    height: 29px;
    background-image: url(/fileadmin/ic_place_24px_red.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    margin-right: 3px;
    top: 2px;
    position: relative;
    margin-top: -9px;
}
p a.thumbnail:before, li a.thumbnail:before {
    display: none;
}





/* forms, powermail, registration */
label {
  display: block;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}
div.checkbox label, div.radio label {
    margin-top: 0px;
    margin-bottom: 1px;
}
.powermail_fieldwrap_type_text {
    margin-top: 1rem;
}
input, 
select, 
textarea {
    border-width: 1px 1px 1px 5px;
    border-color: var(--light-grey);
    border-style: solid;
    border-radius: 4px;
    padding: 5px 5px;
    font-size: 1rem;
    font-family: var(--text-font);
}

input[required], 
select[required], 
textarea[required],
input[data-validation*=required],
input.required,
select.required,
textarea.required {
    border-left-color: var(--link-color);
}
input[type=text], 
input[type=tel], 
input[type=phone], 
input[type=date], 
input[type=datetime-local], 
input[type=email], 
input[type=url], 
input[type=number], 
input[type=password], 
input[type=submit],
select, 
textarea,
.tx-indexedsearch input {
    width: 100%;
    max-width: 500px;
}
.powermail_field .radio,
.powermail_field .checkbox,
.registration .radio ,
.registration .checkbox  {
    display: inline-block;
    margin-right: 1.5rem;
}
input.powermail_field_error,
select.powermail_field_error,
textarea.powermail_field_error {
    background-color: var(--light-red);
    border-top: 1px solid var(--link-color);
    border-right: 1px solid var(--link-color);
    border-bottom: 1px solid var(--link-color);
}
ul.powermail-errors-list li:before, div.field-errors:before {
    display: block;
    content: ' ';
    width: 0;
    height: 0;
    border-width: 12px;
    border-color: transparent transparent var(--link-color);
    border-style: solid;
    margin-top: -16px;
    padding-right: 0;
}
ul.powermail-errors-list, div.field-errors {
    color: var(--link-color);
    font-weight: bold;
    padding: 0;
}
div.powermail_fieldwrap_text,
div.powermail_fieldwrap_submit {
    margin-top: 20px;
}
input[type=submit][disabled],
button[disabled] {
    opacity: 0.4 !important;
    cursor: not-allowed;
}

fieldset.nolabel legend {
    display: none;
}
fieldset {
    margin-bottom: 40px;
}
.tx-powermail h3 {
    display: none;
}
legend.powermail_legend {
}





/* fileuploads */
.ce-uploads-2 {
    display: flex;
    flex-wrap: wrap;
}
.ce-uploads li {
    margin: 0 0 0.6rem 0;
    text-indent: 0;
}
.ce-uploads-2 li {
    margin: 0 2rem 2rem 0;
}
.ce-uploads li:before {
    display: none;
}
.ce-uploads img {
    padding-right: 8px;
    float: left;
}
.ce-uploads-2 img {
    border: 1px solid var(--light-grey);
    padding: 0;
    box-sizing: content-box;
    float: none;
}
.ce-uploads span {
    padding-top: 4px;
    display: inline-block;
}
.ce-uploads-filesize {
    padding-left: 8px;
    font-size: 0.9rem;
    color: var(--grey);
}
.ce-uploads img.icon {
    width: 32px;
}

.csc-textpic-intext-left-nowrap h1,
.csc-textpic-intext-right-nowrap h1 {
    margin-top: 0;
}






/* navigation */
nav {
    user-select: none;
}
.hnav ul, .hnav li {
    text-indent: 0;
    padding: 0;
    list-style: none;
}

.hnav > ul {
    z-index: 200;
    display: flex;
}

.hnav > ul > li {
    display:inline-block;
    z-index: 200;
    position: relative;
}
.hnav a {
    font-family: var(--title-font);
    font-weight: 300;
    color: var(--title-color);
    transition:  0.3s;
    white-space: nowrap;
    text-transform: uppercase;
    font-size: 1rem;
    line-height: 3rem;
    padding: 0 var(--gap);
    height: 3rem;
    display: block;
}
.hnav a:hover,
.hnav li.act > a {
    transition:  0s;
    color: var(--link-color);
}
.hnav > ul > li > a {
    display: inline-block;
}

.hnav > ul > li b {
    display: inline-block;
    width: 100%;
    height: 3rem;
    background: rgba(255,255,255,0);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 100;
    transition: 0s 0.2s;
}
.hnav > ul > li:hover b {
    height: 0;
}


/* sub */
.hnav > ul > li > ul {
    background-color: rgba(255,255,255,0.98);
    position: absolute;
    max-height: calc(100vh - var(--pagehead-height) - 10px);
    overflow: auto;
    left: 0;
    text-align: left;
    opacity: 0;
    transform: scale(1,0);
    transform-origin: top center;
    transition: opacity 0.3s linear 0.3s, transform 0s linear 0.6s;
    box-shadow: 3px 10px 30px rgb(0 0 0 / 30%);
    padding: var(--gap) 0;
    border-radius: 0 0 5px 5px;
}

.hnav > ul > li:hover  ul {
    opacity: 1;
    transform: scale(1,1);
    transition: opacity 0.2s linear 0s, transform 0s linear 0s;
}
/* sub sub */ 
.hnav ul ul ul {
    padding-left: var(--gap);
    margin-top: -0.4rem;
    margin-bottom: 0.4rem;
}
.hnav ul ul ul a {
    line-height: 1.8rem;
    height: 1.8rem;
    text-transform: none;
}   


.rootnav {
    position: absolute;
    bottom: 0;
    right: 0;
}

.metanav {
    position: absolute;
    left: 0;
    top: 0;
}
.menuid50 a, .menuid51 a {
    color: rgba(255,255,255,0) !important;
    width: 24px;
    overflow: hidden;
    display: inline-block;
}
.menuid50 a:before, .menuid51 a:before {
    font-family: 'Font Awesome 5 Brands';
    font-size: 18px;
    color: hsl(0deg 0% 37%);
    position: relative;
}
.menuid50 a:hover:before, .menuid51 a:hover:before {
    color: var(--link-color);
}
.menuid50 a:before {
    content: "\F39E";
    left: -2px;
    top: 0px;
}
.menuid51 a:before {
    content: "\F16D";
    left: -5px;
    top: 0px;
}

/* meta menu */
.metanav {
    position: absolute;
    top: 8px;
    right: 100px;
}
.metanav > ul,
.metanav > ul > li {
    z-index: 75;
}
.metanav > ul > li > a {
    height: 36px;
}


/* language menu */
.langnav > ul,
.langnav > ul > li {
    z-index: 75;
}
.langnav > ul > li > span {
    display: inline-block;
    height: 36px;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 42px;
}





    
/* footer menu */
footer .frame-type-menu_pages ul, footer .frame-type-menu_subpages ul {
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 50px;
}
footer .frame-type-menu_pages li, footer .frame-type-menu_subpages li {
    list-style: none;
    text-indent: 0;
    padding: 0;
    margin: 0;
    display: inline-block;
    float: left;
}
footer .frame-type-menu_pages li:before, footer .frame-type-menu_subpages li:before {
    content: none;
    display: none;
}
footer .frame-type-menu_pages a, footer .frame-type-menu_subpages a {
    color: white;
    margin: 0 8px;
    display: block;
}
footer .frame-type-menu_pages a, footer:hover .frame-type-menu_subpages a:hover {
    color: var(--link-color-hover);
}





/* Responsive Section */
@media only screen 
    and (max-width: 1023px) 
{
:root {
  --page-width: 100%;
}

.teaser-full .teaser-content h3 {
    font-size: 2.4vw;
    line-height: 2.8vw;
}
.teaser-full .teaser-content {
    font-size: 1.7vw;
    line-height: 2.3vw;
}
.person-item {
    width: calc(33% - var(--gap) );
}
.imagegallery .gallery.cols-10 a {
    width: calc(var(--page-width) / 10 - 4px);
}
.imagegallery .gallery.cols-9 a {
    width: calc(var(--page-width) / 9 - 4px);
}
.imagegallery .gallery.cols-8 a {
    width: calc(var(--page-width) / 8 - 4px);
}
.imagegallery .gallery.cols-7 a {
    width: calc(var(--page-width) / 7 - 4px);
}
.imagegallery .gallery.cols-6 a {
    width: calc(var(--page-width) / 6 - 4px);
}
.imagegallery .gallery.cols-5 a {
    width: calc(var(--page-width) / 5 - 4px);
}
.imagegallery .gallery.cols-4 a {
    width: calc(var(--page-width) / 4 - 4px);
}
.imagegallery .gallery.cols-3 a {
    width: calc(var(--page-width) / 3 - 4px);
}
.imagegallery .gallery.cols-2 a {
    width: calc(var(--page-width) / 2 - 4px);
}
.productlist.grid {
    grid-template-columns: repeat(3, 1fr);
}
}


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

.tx-sf-banners > div > div {
    margin-bottom: var(--gap);
    flex-basis: 45%;
}
.teaser-full .teaser-content {
    max-width: unset;
    left: 0;
    border-radius: 0;
}
.teaser-full.act .teaser-content {
    bottom: 0;
}
.teaser-full .teaser-content h3 {
    font-size: 1.1rem;
    line-height: 1.3rem;
}
.teaser-full .teaser-content {
    font-size: 0.9rem;
    line-height: 1.2rem;
}
.imagegallery .gallery.cols-10 a {
    width: calc(var(--page-width) / 5 - 4px);
}
.imagegallery .gallery.cols-9 a {
    width: calc(var(--page-width) / 5 - 4px);
}
.imagegallery .gallery.cols-8 a {
    width: calc(var(--page-width) / 4 - 4px);
}
.imagegallery .gallery.cols-7 a {
    width: calc(var(--page-width) / 4 - 4px);
}
.imagegallery .gallery.cols-6 a {
    width: calc(var(--page-width) / 3 - 4px);
}
.imagegallery .gallery.cols-5 a {
    width: calc(var(--page-width) / 3 - 4px);
}
.imagegallery .gallery.cols-4 a {
    width: calc(var(--page-width) / 2 - 4px);
}
.imagegallery .gallery.cols-3 a {
    width: calc(var(--page-width) / 2 - 4px);
}
.imagegallery .gallery.cols-2 a {
    width: calc(var(--page-width) / 2 - 4px);
}
.hnav a {
    padding: 0 9px;
}
.hnav > ul > li:last-of-type > ul {
    text-align: right;
    left: auto;
    right: 0;
}
.hnav > ul > li:last-of-type ul ul {
    padding-left: 0;
    padding-right: var(--gap);
}
.ce-intext .ce-gallery {
    width: 45%;
}
#form-order .row.top-buffer {
    display: block;
}
#form-order .row.top-buffer > div {
    width: auto
}
}


@media only screen 
    and (max-width: 548px) 
{
.hnav a {
    text-transform: none;
}
.hnav > ul > li > a {
    padding: 0 5px;
}
.productlist.grid {
    grid-template-columns: repeat(2, 1fr);
}
.product-main {
    display: block;
}
.product-images, .product-infos {
    width: 100%;
}
.ce-intext.ce-left .ce-gallery ,
.ce-intext.ce-right .ce-gallery {
    width: auto;
    display: block;
    float: none;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.checkout-step-table, .checkout-product-table {
    font-size: 1rem;
}
.checkout-product-table td {
    line-height: 1.2rem;
}
}


@media only screen 
    and (max-width: 431px) 
{
#homelink a {
    height: 68px;
}
}

@media only screen 
    and (max-width: 391px) 
{
footer {
    font-size: 0.75rem;
}
}