/*-------------------------------------------------------------------------------------

  Copyright (c) 2020 Pixelzauber GmbH, Switzerland
  CSS definition for main stylesheet

-------------------------------------------------------------------------------------*/
@charset "UTF-8";
@import url("jquery.fancybox.css");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;1,400;1,500&display=swap");

:root {
  --color-black: rgb(0, 0, 0);
  --color-black-90: rgb(26, 26, 26);
  --color-black-80: rgb(51, 51, 51);
  --color-black-70: rgb(77, 77, 77);
  --color-black-60: rgb(102, 102, 102);
  --color-black-50: rgb(128, 128, 128);
  --color-black-40: rgb(153, 153, 153);
  --color-black-30: rgb(179, 179, 179);
  --color-black-20: rgb(204, 204, 204);
  --color-black-10: rgb(230, 230, 230);
  --color-black-05: rgb(242, 242, 242);
  --color-white: rgb(255, 255, 255);

  --color-brown-dark: rgb(75, 67, 60);
  --color-brown-accent: rgb(122, 105, 91);
  --color-brown: rgb(139, 116, 96);
  --color-brown-light: rgb(192, 185, 167);
  --color-sand: rgb(249, 248, 245);
  --color-shadow: rgba(77, 77, 77, 0.3);
  --color-shadow-hover: rgba(0, 0, 0, 0.5);

  --color-red: rgb(210, 0, 0);
  --color-green: rgb(46, 141, 0);
  --font-main: "Montserrat", Arial, Helvetica, sans-serif;
  --font-title: "Montserrat", Arial, Helvetica, sans-serif;
  --time_020: 0.2s;
}

/**
 * ANCHOR normalize
 *
 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

select,
input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  /*-moz-border-radius : 0;*/
  border-radius: 0;
}

html {
  height: 100%;
  font-size: 16px;
}

body {
  height: 100%;
}

body ol,
body ul {
  list-style: none;
  margin-bottom: 0;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

ul,
ol {
  padding: 0;
  margin-left: 25px;
}

a,
a:active,
a:focus,
button,
button:focus,
button:active {
  outline: none;
  outline: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 8px;
}

/**
 * ANCHOR layout
 *
 */
.content,
.inner {
  position: relative;
  margin: 0 auto;
  width: calc(100% - 60px);
  max-width: 1178px;
  height: auto;
}
.content {
  max-width: 778px;
}
.inner .content {
  width: 100%;
}

.mobile {
  display: none;
}
.desktop {
  display: block;
}

.block,
.block_05,
.block_10,
.block_15,
.block_20,
.block_25,
.block_30,
.block_33,
.block_35,
.block_40,
.block_45,
.block_50,
.block_55,
.block_60,
.block_65,
.block_66,
.block_70,
.block_75,
.block_80,
.block_85,
.block_90,
.block_95,
.block_100 {
  float: left;
  height: auto;
}

.block {
  display: flex;
  flex-wrap: wrap;
  float: left;
  margin: 0 -8px;
  width: calc(100% + 16px);
}
.block > .block {
  margin: 0 8px;
  display: block;
}
.block.border {
  margin: 8px;
}
.block.half {
  width: calc(50% - 16px);
}
.block.third {
  width: calc(33.3333% - 16px);
}
.block.two-third {
  width: calc(66.6666% - 16px);
}
.block.quarter {
  width: calc(25% - 16px);
}
.block.three-quarter {
  width: calc(75% - 16px);
}
.block.fifth {
  width: calc(20% - 16px);
}
.block.two-fifth {
  width: calc(40% - 16px);
}
.block.three-fifth {
  width: calc(60% - 16px);
}
.block.four-fifth {
  width: calc(80% - 16px);
}
.block.full {
  width: calc(100% - 16px);
}
.block_05 {
  width: 5%;
}
.block_10 {
  width: 10%;
}
.block_15 {
  width: 15%;
}
.block_20 {
  width: 20%;
}
.block_25 {
  width: 25%;
}
.block_30 {
  width: 30%;
}
.block_33 {
  width: 33.3333%;
}
.block_35 {
  width: 35%;
}
.block_40 {
  width: 40%;
}
.block_45 {
  width: 45%;
}
.block_50 {
  width: 50%;
}
.block_55 {
  width: 55%;
}
.block_60 {
  width: 60%;
}
.block_65 {
  width: 65%;
}
.block_66 {
  width: 66.6666%;
}
.block_70 {
  width: 70%;
}
.block_75 {
  width: 75%;
}
.block_80 {
  width: 80%;
}
.block_85 {
  width: 85%;
}
.block_90 {
  width: 90%;
}
.block_95 {
  width: 95%;
}
.block_100 {
  width: 100%;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--color-brown);
  background: linear-gradient(90deg, var(--color-brown-accent) 0%, var(--color-brown) 15%, var(--color-brown) 85%, var(--color-brown-accent) 100%);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  z-index: 100;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 100px;
  height: 120px;
  width: calc(100% - 200px);
}
.logo {
  float: left;
  margin: 0;
  width: 50%;
  max-width: 311px;
}
.logo img {
  float: left;
  width: 100%;
}
.navTop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.basket {
  float: left;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  background-image: url(../images/icon_basket_white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px auto;
  transition: all var(--time_020);
}
.basket:hover {
  background-image: url(../images/icon_basket_black.svg);
}

.mainImage {
  position: relative;
  float: left;
  margin-top: 120px;
  width: 100%;
  height: calc(100% - 120px);
  background: var(--color-gray);
}
.image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.image img {
  float: left;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.teaser {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  bottom: 33vh;
  width: 100%;
}
.clickDown {
  position: absolute;
  left: calc(50% - 20px);
  bottom: 30px;
  width: 40px;
  height: 40px;
  background-image: url(../images/icon_arrow_down.svg);
  background-repeat: no-repeat;
  background-size: 40px auto;
  cursor: pointer;
}

section {
  float: left;
  margin: 0;
  padding: 70px 0 100px 0;
  width: 100%;
}
section.spacing {
  margin-top: 120px;
}

footer {
  float: left;
  padding: 80px 0 20px 0;
  width: 100%;
  background-color: var(--color-brown-dark);
}

#overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 100000;
}

#navMobile {
  position: fixed;
  right: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: var(--color-white);
  z-index: 90;
  transition: all 0.3s ease-in-out;
  overflow-x: hidden;
  overflow-y: auto;
}
#navMobile.open {
  right: 0;
}

/**
 * ANCHOR text
 *
 */
body {
  font-family: var(--font-main);
  color: var(--color-black-60);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  text-align: left;
  -webkit-text-size-adjust: none;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 20px 0;
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 40px;
  color: var(--color-brown-dark);
  line-height: 1.2;
}

h1,
.h1 {
  margin-top: 0;
}
h1.shoph1 {
  font-size: 32px;
}
h2,
.h2 {
  font-size: 25px;
}

h3,
.h3 {
  font-size: 20px;
}

h4,
.h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

h5,
.h5,
h6,
.h6 {
  font-size: 18px;
  margin-bottom: 8px;
}

.first {
  margin-top: 0;
}

.solo {
  margin-top: 0;
  margin-bottom: 10px;
}

.center {
  text-align: center;
}

p {
  margin-bottom: 10px;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

a {
  /*font-weight: 500;*/
  color: var(--color-brown);
  text-decoration: none;
}

a:hover {
  color: var(--color-black);
  text-decoration: none;
}

a[name],
a[name]:hover {
  color: var(--color-brown);
  text-decoration: none;
}

em {
  font-style: italic;
}

pre {
  padding: 10px 19px;
  margin: 18px 0 12px 0;
  line-height: 20px;
  width: auto;
  color: var(--color-brown);
  border: 1px solid var(--color-darkgray);
  background-color: var(--color-gray);
  overflow: auto;
  overflow-y: hidden;
}

sup {
  line-height: 1em;
}

blockquote {
  position: relative;
  float: left;
  padding: 0;
  margin: 20px 0 20px 20px;
  width: calc(100% - 20px);

  font-size: 2.56rem;
  font-weight: bold;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--color-black);
}

blockquote:before {
  position: absolute;
  padding: 0;
  margin: 0;
  content: "\00AB";
  left: -20px;
  top: 0;
  width: 20px;
  height: 50px;
  font-size: 2.56rem;
  line-height: 1.2;
}

/*
blockquote:after {
	content: '\00BB';
	text-align: right;
	right: 0;
	bottom: 50px;

}
*/
blockquote cite {
  margin-right: 33px;
  padding-top: 3px;
  font-size: 1.375rem;
  font-weight: normal;
  text-transform: none;
}

blockquote cite:before {
  content: none;
}

ol,
ul {
  margin: 0;
  padding: 0 0 12px 0;
  width: 100%;
}

ul ul,
ol ol {
  margin: 0;
  padding: 0;
  width: 100%;
}

ul li {
  list-style: none;
  text-align: left;
  margin: 0 0 4px 15px;
}

ul li::before {
  float: left;
  content: "\25CF";
  color: var(--color-black);
  margin: 7px 0 -10px -13px;
  display: block;
  font-size: 8px;
}

ol li {
  margin-left: 30px;
  line-height: 1.5em;
  list-style: decimal;
}

ul.invert li a {
  color: var(--color-black);
}

ul.invert li a:hover {
  color: var(--color-red);
}

ul.none li {
  margin-left: 2px;
}

ul.none li::before {
  content: none;
  margin-left: 0;
}

@media print {
  ol {
    margin: 0 0 0 24px;
    padding: 0;
    list-style: decimal;
  }

  ul {
    margin: 0 0 0 17px;
    padding: 0;
    list-style: disc;
  }

  ol li,
  ul li {
    margin: 0;
    padding: 0;
    background: none;
  }
}

b,
strong {
  font-weight: 500;
}

hr {
  padding: 0 0 20px 0;
  margin: 20px 0 0 0;
  height: 0;
  border: 0;
  border-top: 1px solid var(--color-black);
}

table {
  margin-bottom: 10px;
  font-family: var(--font-main);
  font-size: 1em;
}

table th {
  border-bottom: 1px dotted var(--color-black);
  font-weight: 400;
  padding: 2px 0 5px 0;
  text-align: left;
}

table td {
  padding: 6px 0 3px 0;
}

table.none,
table.none td {
  padding: 0px;
  margin-bottom: 0px;
}

table.zebra thead tr {
  background-color: var(--color-darkgray);
}

table.zebra tbody tr:nth-child(even) {
  background-color: var(--color-gray);
}

.column {
  column-count: 2;
  column-gap: 30px;
}

/**
 * ANCHOR socialmedia
 *
 */
ul.socialmedia {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: left;
  margin: 0;
  padding: 0;
  width: auto;
  list-style: none;
}
ul.socialmedia li {
  display: inline;
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background-size: 40px auto;
  background-position: center;
  background-repeat: no-repeat;
}
ul.socialmedia li::before {
  content: none;
}
ul.socialmedia li a {
  display: inline-block;
  margin: 0;
  padding: 0 0 0 40px;
  width: 40px;
  height: 40px;
  background-size: 40px auto;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  opacity: 1;
  transition: opacity var(--time_020);
}
li.youtube {
  background-image: url(../images/icon_socialmedia_youtube_black.svg);
}
li.youtube a {
  background-image: url(../images/icon_socialmedia_youtube_blue.svg);
}
footer li.youtube a {
  background-image: url(../images/icon_socialmedia_youtube_white.svg);
}
li.facebook {
  background-image: url(../images/icon_socialmedia_facebook_black.svg);
}
li.facebook a {
  background-image: url(../images/icon_socialmedia_facebook_blue.svg);
}
footer li.facebook a {
  background-image: url(../images/icon_socialmedia_facebook_white.svg);
}
li.instagram {
  background-image: url(../images/icon_socialmedia_instagram_black.svg);
}
li.instagram a {
  background-image: url(../images/icon_socialmedia_instagram_blue.svg);
}
footer li.instagram a {
  background-image: url(../images/icon_socialmedia_instagram_white.svg);
}
li.youtube:hover a,
li.facebook:hover a,
li.instagram:hover a,
footer li.youtube:hover a,
footer li.facebook:hover a,
footer li.instagram:hover a {
  opacity: 0;
}

/**
 * ANCHOR text custom
 *
 */
a.pdf,
a.doc,
a.xls,
a.ppt,
a.jpg,
a.zip,
a.mp4,
a.xd,
a.download {
  background-color: transparent;
  background-position: 0 3px;
  background-size: 14px auto;
  background-repeat: no-repeat;
  padding-left: 22px;
  padding-right: 0;
}
a.download {
  background-position: 0 3px;
  background-size: 22px auto;
  padding-left: 28px;
}
a.pdf {
  background-image: url("../images/icon_files_pdf.svg");
}
a.doc {
  background-image: url("../images/icon_files_doc.svg");
}
a.xls {
  background-image: url("../images/icon_files_xls.svg");
}
a.ppt {
  background-image: url("../images/icon_files_ppt.svg");
}
a.jpg {
  background-image: url("../images/icon_files_img.svg");
}
a.zip {
  background-image: url("../images/icon_files_zip.svg");
}
a.mp4 {
  background-image: url("../images/icon_files_mp4.svg");
}
a.xd {
  background-image: url("../images/icon_files_xd.svg");
}
a.download {
  background-image: url("../images/icon_files_download.svg");
}
a.none,
a:hover.none {
  background: none;
  padding-right: 0px;
  padding-left: 0px;
}

.teaser h2 {
  font-size: 60px;
  font-weight: 400;
  color: var(--color-white);
  text-shadow: 0 0 6px var(--color-brown-dark), 0 0 20px var(--color-brown-dark), 0 0 40px var(--color-brown);
}

.breadcrumb {
  float: left;
  margin: 33px 0 11px 0;
  width: 100%;
  font-size: 16px;
}
.breadcrumb.detail {
  margin: 0 0 50px 0;
}

.store .block-left {
  float: left;
  margin: 0;
  width: 38.65%;
}
.store .block-right {
  float: left;
  margin: 40px 0 0 60px;
  width: calc(61.35% - 60px);
}
.store img {
  float: left;
  width: 100%;
  max-width: 380px;
  border-radius: 50%;
}

.toggle-wrapper {
  float: left;
  padding: 0;
  margin-bottom: 20px;
  border-bottom: solid 1px var(--color-black-30);
  width: 100%;
}
.toggle {
  float: left;
  padding: 0;
  border-top: solid 1px var(--color-black-30);
  width: 100%;
  cursor: pointer;
}
.toggle h3 {
  position: relative;
  margin: 0;
  padding: 15px 0 15px 30px;
  line-height: 1.2em;
}
.toggle h3::before,
.toggle h3::after {
  position: absolute;
  display: block;
  content: "";
  top: 26px;
  left: 0;
  width: 16px;
  height: 2px;
  background-color: var(--color-brown-dark);
  transition: 0.3s;
}
.toggle h3::after {
  top: 19px;
  left: 7px;
  width: 2px;
  height: 16px;
}
.toggle .display {
  display: none;
  position: relative;
  float: left;
  margin: 0;
  padding: 5px 0 10px 30px;
  width: calc(100% - 30px);
}
.toggle.open h3::after {
  transform: rotate(270deg);
}

.tabs-wrapper {
  position: relative;
  float: left;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
}
.tabs-wrapper ul {
  display: flex;
  gap: 1px;
  padding: 0;
  margin: 0;
  width: 100%;
  height: auto;
  border-bottom: solid 1px var(--color-brown-dark);
}
.tabs-wrapper li {
  float: left;
  padding: 0;
  margin: 0;
  outline: none;
}
.tabs-wrapper li::before {
  content: none;
}
.tabs-wrapper li a {
  float: left;
  padding: 10px 20px;
  margin: 0;
  cursor: pointer;
  background-color: var(--color-brown-dark);
  color: var(--color-white);
  transition: background-color 0.2s;
}

.tabs-wrapper li a.inactive {
  background-color: var(--color-brown-light);
}
.tabs-wrapper li a:hover,
.tabs-wrapper li a.inactive:hover {
  background-color: var(--color-brown-dark);
  outline: none;
}
.tabs-wrapper .container {
  clear: both;
  padding: 11px 0;
  margin: 0;
  width: 100%;
  text-align: left;
}

footer h1,
footer h2,
footer h3,
footer h4,
footer p,
footer a {
  color: var(--color-white);
  transition: all var(--time_020);
}
footer p {
  margin-bottom: 33px;
}
footer a {
  font-weight: unset;
}
footer a:hover {
  color: var(--color-brown-light);
}

.content-block-left-40 {
  float: left;
  margin: 0;
  width: 38.65%;
}
.content-block-right-60 {
  float: left;
  margin: 40px 0 0 60px;
  width: calc(61.35% - 60px);
}
.content-block-left-60 {
  float: left;
  margin: 40px 60px 0 0;
  width: calc(61.35% - 60px);
}
.content-block-right-40 {
  float: left;
  margin: 0;
  width: 38.65%;
}
img.circle {
  width: 100%;
  border-radius: 50%;
}

/**
 * ANCHOR navigation
 *
 */
nav ul {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0;
}
nav ul li {
  position: relative;
  padding: 0;
  margin: 0;
  white-space: nowrap;
}
nav ul li::before {
  content: none;
}
nav ul li a {
  display: flex;
  align-items: center;
  height: 40px;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  line-height: 1;
  color: var(--color-white);
}

nav ul li ul {
  display: none;
  position: absolute;
  float: left;
  padding: 15px 0 15px 0;
  margin: 0;
  left: -20px;
  top: 35px;
  width: auto;
  height: auto;
  background-color: var(--color-brown);
}
nav ul li ul li {
  float: left;
  margin: 0;
  padding: 0;
  left: 0;
  height: auto;
  white-space: nowrap;
  width: 100%;
  clear: both;
}
nav ul li ul li a {
  padding: 6px 20px;
  height: auto;
  font-weight: 400;
  text-transform: none;
  color: var(--color-white);
}
nav ul li a:hover,
nav ul li a.starter_active,
nav ul li ul li a.active {
  color: var(--color-black);
}

/**
 * ANCHOR navigation mobile
 *
 */
.navMobileIcon {
  display: none;
  position: absolute;
  overflow: hidden;
  margin: 0;
  padding: 0;
  top: 30px;
  right: 20px;
  width: 30px;
  height: 30px;
  font-size: 0;
  text-indent: -9999px;
  appearance: none;
  box-shadow: none;
  border-radius: 0;
  border: none;
  cursor: pointer;
  -webkit-transition: background-color 300ms;
  -moz-transition: background-color 300ms;
  -o-transition: background-color 300ms;
  transition: background-color 300ms;
  background-color: transparent;
  outline: none;
  outline: 0;
}
.navMobileIcon:hover,
.navMobileIcon:focus {
  background-color: transparent;
  outline: none;
  outline: 0;
}
.navMobileIcon span {
  display: block;
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-white);
}
.navMobileIcon span:before,
.navMobileIcon span:after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  content: "";
}
.navMobileIcon span:before {
  top: -8px;
}

.navMobileIcon span:after {
  bottom: -8px;
  width: 70%;
}
.navMobileIconX span {
  transition: background-color 0s 0.3s;
}
.navMobileIconX span:before,
.navMobileIconX span:after {
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0s;
}
.navMobileIconX span:before {
  transition-property: top, transform;
}
.navMobileIconX span:after {
  transition-property: bottom, transform;
}
.navMobileIconX.is-active span {
  background: none;
}
.navMobileIconX.is-active span:before {
  top: 0;
  transform: rotate(45deg);
}
.navMobileIconX.is-active span:after {
  bottom: 0;
  transform: rotate(-45deg);
  width: 100%;
}
.navMobileIconX.is-active span:before,
.navMobileIconX.is-active span:after {
  transition-delay: 0s, 0.3s;
}

#navMobile ul {
  position: relative;
  float: left;
  margin: 120px 0 0 0;
  padding: 0;
  width: 100%;
}
#navMobile ul li {
  position: relative;
  float: left;
  margin: 0;
  padding: 0;
  width: 100%;
  list-style: none;
  background-image: none;
}
#navMobile ul li::before {
  content: none;
}
#navMobile ul li a {
  position: relative;
  float: left;
  margin: 0;
  padding: 15px 30px;
  width: calc(100% - 60px);
  display: block;
  font-size: 26px;
  text-decoration: none;
  color: var(--color-black);
  font-weight: 400;
  line-height: 1;
}

/* Level 2 */
#navMobile ul li ul {
  padding: 0;
  margin: 0 0 15px 0;
  width: 100%;
  border: none;
  display: none;
}

#navMobile ul li ul li {
  padding: 0;
}

#navMobile ul li ul li a {
  position: relative;
  float: left;
  margin: 0;
  padding: 5px 30px 5px 45px;
  width: calc(100% - 75px);
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-black);
  line-height: 1.2em;
}

/* Level 3 */
#navMobile ul li ul li ul li a {
  padding: 5px 0;
  font-size: 18px;
}

#navMobile a.starter_active,
#navMobile a.active {
  color: var(--color-brown);
}

#navMobile ul li .openSubmenu {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 50px;
  text-align: center;
  cursor: pointer;
}

#navMobile ul li.level-1 > ul.menu {
  display: none;
}

#navMobile ul li.level-1.starter_active > ul.menu,
#navMobile ul li.level-2 > ul.menu {
  display: block;
}

#navMobile ul li.level-1 .plus {
  background: transparent url("../images/icon_nav_plus.svg") right 34px center no-repeat;
  background-size: 22px auto;
}

#navMobile ul li.level-1 .minus {
  background: transparent url("../images/icon_nav_minus.svg") right 34px center no-repeat;
  background-size: 22px auto;
}

/**
 * ANCHOR forms
 *
 */
#contactDescription {
  margin-bottom: 22px;
}
form,
fieldset {
  float: left;
  margin: 0;
  padding: 0;
  width: 100%;
}
.row {
  float: left;
  width: 100%;
}
.form-group {
  float: left;
  margin: 0;
  width: 100%;
}
legend {
  display: none;
}
label {
  float: left;
  margin: 0;
  padding-top: 9px;
  width: 30%;
}
.contactFormGroup {
  float: left;
  width: 70%;
}
select,
input,
textarea {
  float: left;
  margin: 0 0 5px 0;
  padding: 10px 15px;
  width: 70%;
  height: auto;
  border-radius: 3px;
  border: 1px solid var(--color-black-20);
  background-color: var(--color-sand);
  outline: none;
  font-family: var(--font-main);
  font-size: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

select {
  padding-right: 4px;
  background-image: url("../images/icon_nav_down.svg");
  background-size: 20px auto;
  background-position: right 15px center;
  background-repeat: no-repeat;
}

textarea {
  padding-top: 10px;
  height: 124px;
}

input[type="submit"],
input[type="button"],
input[type="reset"] {
  float: left;
  padding: 10px 0 10px 0;
  margin-top: 22px;
  cursor: pointer;
  color: var(--color-white);
  border: 1px solid var(--color-brown);
  background-color: var(--color-brown);
  width: calc(35% - 22px);
  height: auto;
  font-weight: 400;
}

input[type="submit"] {
  margin-left: calc(30% + 11px);
}

input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
  color: var(--color-white);
  border: 1px solid var(--color-black);
  background-color: var(--color-black);
}

input[type="reset"] {
  display: none;
}

input.continue-button {
  background-image: url(../images/icon_nav_forward.svg);
  background-size: 18px auto;
  background-repeat: no-repeat;
  background-position: right 11px center;
}

form .container {
  display: block;
  position: relative;
  margin: 5px 0;
  padding: 4px 0 0 40px;
  width: 100%;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

form .container input {
  position: absolute;
  opacity: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  border: none;
  width: 0;
  height: 0;
}

.checkmark,
.radiomark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 26px;
  width: 26px;
  border: 1px solid var(--color-darksand);
  background-color: var(--color-sand);
}

.error + .checkmark,
.error .checkmark,
.error .radiomark {
  border: 1px solid var(--color-red) !important;
}

.radiomark {
  border-radius: 50%;
}

.checkmark:after,
.radiomark:after {
  content: "";
  position: absolute;
  display: none;
}

form .container:hover input ~ .checkmark:after,
form .container input:checked ~ .checkmark:after,
form .container:hover input ~ .radiomark:after,
form .container input:checked ~ .radiomark:after {
  display: block;
}

form .container:hover .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid var(--color-darksand);
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

form .container .checkmark:after,
form .container:hover input:checked ~ .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid var(--color-black);
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

form .container:hover .radiomark:after {
  top: 6px;
  left: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-gray);
}

form .container .radiomark:after,
form .container:hover input:checked ~ .radiomark:after {
  top: 6px;
  left: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-black);
}

#contactFormError {
  display: none;
  padding-bottom: 22px;
}

.text-danger {
  margin-bottom: 8px;
  color: var(--color-red);
  font-weight: 400;
}

.is_required {
  color: var(--color-red);
}

/**
 * ANCHOR captcha
 *
 */

#captcha {
  float: left;
  margin: 0;
  padding: 0;
  width: 35%;
  min-width: 420px;
}

#contactFormCaptchaError {
  float: left;
  margin: 0 11px;
  padding: 14px 0 0 0;
  width: calc(100% - 22px);
}

#coreCaptchaLabel {
  float: left;
  padding-bottom: 10px;
  width: calc(100% - 22px);
}

#coreCaptchaCode {
  width: calc(50% - 22px);
  height: 62px;
  font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 3px;
}

#coreCaptchaImage {
  margin: 0 11px;
  width: calc(50% - 22px);
}

/**
 * ANCHOR loader
 *
 */
.loader {
  position: relative;
  margin: 0 auto;
  top: 45%;
  width: 100px;
  height: 100px;
  text-align: center;
}
.loader > div {
  background-color: var(--color-red);
  height: 100%;
  margin: 0 1px;
  width: 4px;
  display: inline-block;
  -webkit-animation: loader 1.2s infinite ease-in-out;
  animation: loader 1.2s infinite ease-in-out;
}
.loader .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.loader .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.loader .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.loader .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
@-webkit-keyframes loader {
  0%,
  60%,
  100% {
    -webkit-transform: scaleY(0.4);
  }
  30% {
    -webkit-transform: scaleY(1);
  }
}
@keyframes loader {
  0%,
  60%,
  100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  30% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}

/**
 * ANCHOR inspiration grid
 *
 */
.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0px, 1fr));
  gap: 22px 22px;
}
.inspiration-grid div {
  overflow: hidden;
}
.inspiration-grid div div {
  padding-top: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 10s ease-out 0s;
}
.inspiration-grid div:nth-child(1),
.inspiration-grid div:nth-child(6n + 1),
.inspiration-grid div:nth-child(6n - 1) {
  grid-area: span 2 / span 2;
}
.inspiration-grid div:hover div {
  transform: scale(1.35);
}

/**
 * ANCHOR shop
 *
 */
.checkout-process {
  float: left;
  width: 100%;
}
.checkout-process ul {
  display: flex;
  justify-content: space-between;
  margin: 11px 0 33px 0;
  background: linear-gradient(180deg, var(--color-white) 21px, var(--color-black-10) 21px, var(--color-black-10) 23px, var(--color-white) 21px);
}
.checkout-process ul li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 0 22px;
  list-style: none;
  font-size: 16px;
  color: var(--color-black-30);
  background-color: var(--color-white);
}
.checkout-process ul li:first-child {
  padding-left: 0;
}
.checkout-process ul li:last-child {
  padding-right: 0;
}

.checkout-process ul li::before {
  content: none;
  margin: 0;
}
.checkout-process ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 5px auto;
  width: 40px;
  height: 40px;
  border: solid 2px var(--color-black-10);
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  line-height: 1;
  color: var(--color-black-20);
}
.checkout-process ul li.completed,
.checkout-process ul li.current {
  color: var(--color-brown);
}
.checkout-process ul li.completed span {
  border: solid 2px var(--color-brown);
  background-image: url(../images/icon_basket_check_brown.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30px auto;
}
.checkout-process ul li.current span {
  color: var(--color-white);
  border: solid 2px var(--color-brown);
  background-color: var(--color-brown);
}

ul.shop-box {
  position: relative;
  float: left;
  margin: 0;
  padding: 0;
  width: 48px;
  height: 44px;
}
ul.shop-box li {
  position: relative;
  float: left;
  display: none;
  padding: 0;
  margin: 0 0 0 48px;
}
ul.shop-box li.cart::before {
  content: none;
  margin: 0;
}
ul.shop-box li.cart {
  display: block;
  margin: 0;
  width: 48px;
  height: 44px;
}
ul.shop-box li.cart::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;

  margin: 0;
  padding: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--color-brown-dark);
}
ul.shop-box li.cart a {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 3px 0 21px 28px;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 1;
  font-size: 14px;
  color: var(--color-white);
}

/**
 * ANCHOR paging
 *
 */
.pagingPages {
  /*
  display: grid;
  grid-template-columns: 40px 40px 40px 40px;
  gap: 8px;
  */
  display: flexbox;
}
.pagingFirst,
.pagingLast,
.pagingPages b,
.pagingPages a {
  padding: 10px 18px;
  margin: 0 4px;
  border: 1px solid var(--color-brown);
  background-color: var(--color-sand);
  color: var(--color-brown);
}
.pagingFirst,
.pagingLast {
  padding: 10px 20px;
  background-image: url(../images/icon_nav_back_blue.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px auto;
}
.pagingLast {
  background-image: url(../images/icon_nav_forward_blue.svg);
}

.pagingFirst:hover,
.pagingLast:hover,
.pagingPages b,
.pagingPages a:hover {
  background-color: var(--color-brown);
  color: var(--color-white);
}
.pagingFirst:hover {
  background-image: url(../images/icon_nav_back.svg);
}
.pagingLast:hover {
  background-image: url(../images/icon_nav_forward.svg);
}

/* Kategorie/Vorschau */
.grid {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 33px -11px;
  width: calc(100% + 22px);
}
.grid-categorie {
  margin-bottom: 100px;
}
article {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  margin: 11px;
  width: calc(33.3333% - 22px);
  box-shadow: 0 0 10px var(--color-shadow);
}
article .categorie,
article .product {
  position: relative;
  float: left;
  width: 100%;
  cursor: pointer;
}
article figure {
  position: relative;
  width: 100%;
  margin: 0;
  /*background-color: var(--color-black-20);*/
  transition: background-color var(--time_020);
  overflow: hidden;
  text-align: center;
}
article figure::before {
  content: "";
  float: left;
  padding-top: 100%;
}
article figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
article .description {
  float: left;
  padding: 15px 25px 0 25px;
  width: calc(100% - 50px);
}

article .categorie h2 {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--color-white);
  text-shadow: 0 0 5px var(--color-black), 0 0 20px var(--color-black);
  transition: background-color var(--time_020);
  background-color: rgba(0, 0, 0, 0.1);
}
article:hover .categorie h2 {
  background-color: rgba(0, 0, 0, 0.8);
}
article .description h2 {
  margin: 10px 0;
}
article .description p {
  margin: 0;
}

.grid-brand article {
  width: calc(16.6666% - 22px);
  min-height: 120px;
}
.grid-brand article:hover,
.grid-product article:hover {
  box-shadow: 0 0 12px var(--color-shadow-hover);
}

.grid-product article .product figure img {
  padding: 20px 20px 0 20px;
  width: calc(100% - 40px);
  height: calc(100% - 20px);
  object-fit: scale-down;
}
article .functions {
  display: flex;
  justify-content: space-between;
  padding: 0 0 15px 0;
  width: 100%;
}
article form {
  float: left;
}
article button.add-to-cart,
article .not-in-stock {
  align-self: flex-end;
  margin-left: 10px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background-image: url(../images/icon_basket_brown.svg);
  background-size: 24px auto;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--color-white);
  transition: 0.3s;
}
article .not-in-stock {
  background-image: url(../images/icon_not-in-stock.svg);
  cursor: default;
}
article button:hover.add-to-cart {
  transform: translateY(-8px);
}
article .currency,
article .price,
article .discount {
  display: flex;
  flex-wrap: wrap;
  align-self: center;
  margin: 0 10px 0 0;
  color: var(--color-brown);
  font-weight: 500;
  font-size: 22px;
}
article .discount,
article .discount .currency,
article .discount .price {
  color: var(--color-red);
}
article .discount .price {
  margin: 0;
}
article h2 {
  margin: 0;
}

.paging {
  float: left;
  margin: 55px 0 0 0;
  width: 100%;
  text-align: center;
}

/* Produkt */
.product {
  float: left;
  width: 100%;
}
.product .images {
  float: right;
  margin: 0 25px 0 0;
  padding: 0;
  width: calc(50% - 25px);
  min-height: 400px;
}
.product .images .frame {
  position: relative;
  float: left;
  border-radius: 4px;
  margin: 0 0 11px 0;
  width: 100%;
}
.product .images .frame.thumb {
  width: 33.3333%;
  cursor: pointer;
}
.product .images .frame.thumb:hover {
  box-shadow: 0 3px 6px var(--color-darksand);
}
.product .images .frame::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.product .images .wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.product .images .thumb .wrapper {
  padding: 11px;
}
.product .images .wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product .content {
  float: right;
  margin: 0 0 0 25px;
  padding: 0;
  width: calc(50% - 25px);
  min-height: 400px;
}
.product .content .h2 {
  margin-top: 0;
  margin-bottom: 8px;
  line-height: 1.1;
}
.product .content table {
  margin-bottom: 0;
}
.product .content table td {
  vertical-align: top;
}
.product .functions {
  float: left;
  margin: 22px 0 55px 0;
  width: 100%;
}
.product .shop_options {
  float: left;
  padding: 22px 0 0 0;
  width: 100%;
}
.product .shop_options .shop_options_click {
  float: left;
  margin: 0 0 11px 0;
  width: 100%;
}
.product .shop_options .shop_options_click .shop_options-wrapper {
  float: left;
  padding: 11px 22px 11px 0;
  min-width: 140px;
  width: auto;
}
.product .shop_options .shop_options_click select {
  font-size: 16px;
  padding-right: 40px;
  width: auto !important;
  max-width: calc(100% - 162px) !important;
}
.product .functions .price-wrapper {
  float: left;
  padding-top: 5px;
  width: auto;
}
.product .functions .cart-button {
  float: right;
  margin-left: 22px;
  width: auto;
}
.product .functions button.add-to-cart,
.product .functions .not-in-stock {
  margin: 0;
  padding: 0 75px 0 30px;
  width: auto;
  height: 60px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  background-image: url(../images/icon_basket_black.svg);
  background-size: 32px auto;
  background-position: right 25px center;
  background-repeat: no-repeat;
  background-color: var(--color-white);
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-black-60);
  box-shadow: 0 0 10px var(--color-shadow);
  transition: 0.2s;
}
.product .functions button.add-to-cart:hover {
  box-shadow: 0 0 10px var(--color-shadow-hover);
}
.product .functions .not-in-stock {
  padding-top: 16px;
  background-color: var(--color-red);
  background-image: url(../images/icon_not-in-stock.svg);
  font-weight: 500;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  cursor: default;
}
.product .functions .currency,
.product .functions .price-detail,
.product .functions .discount {
  float: left;
  margin: 0 10px 0 0;
  color: var(--color-brown);
  font-weight: 500;
  font-size: 22px;
}
.product .functions .discount,
.product .functions .discount .currency,
.product .functions .discount .price-detail {
  color: var(--color-red);
}
.product .functions .discount .price-detail {
  margin: 0;
}

/* chart */
.cart table {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.cart table tr {
  height: 100%;
}
.cart table th {
  border-bottom: 1px solid var(--color-black);
  padding: 10px 0;
  margin: 0;
  font-weight: 500;
  font-size: 18px;
}
.cart table td {
  padding: 10px 0;
  margin: 0;
  vertical-align: middle;
  border-bottom: 1px dotted var(--color-black);
}
.cart table td a {
  margin: 0;
  padding: 0;
  color: var(--color-black);
}
.cart input.shop_input,
.cart textarea.shop_input {
  margin: -6px 0;
  padding: 8px 15px;
}
.cart input.shop_quantity,
.cart input.shop_coupon {
  margin: -6px 0;
  padding: 8px 15px;
  width: 60px;
  text-align: center;
  height: unset;
}
.cart input.shop_coupon {
  text-align: left;
  width: 100%;
}
.cart .delete-icon {
  float: left;
  margin: 2px 0 0 15px;
  padding: 5px;
  height: 18px;
}
.cart .delete-icon:hover {
  opacity: 0.5;
}
.cart .delete-icon img {
  float: left;
  height: 100%;
  width: auto;
}
.cart .a_right {
  text-align: right;
}

.cart-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin: 44px 0 0 0;
  width: 100%;
}
.cart-buttons input {
  margin: 0 0 0 22px;
}

#shop table span {
  float: left;
  clear: left;
}

/* Login */
.customer_new,
.customer_old {
  float: left;
  margin: 0;
  width: 45%;
  max-width: 450px;
}
.customer_old {
  float: right;
}
.customer_new input,
.customer_old input {
  margin: 4px 0;
  width: 100%;
}
.customer_new input[type="submit"],
.customer_old input[type="submit"] {
  margin: 11px 0 22px 0;
}
.reg_block {
  float: left;
  margin-bottom: 33px;
  width: 100%;
}

/* Account */
.customer_address {
  float: left;
  margin-bottom: 33px;
  width: 100%;
}
#shipping_address {
  float: left;
  margin-top: 22px;
  width: 100%;
}
#shipping_address .country2 {
  float: left;
  width: caLC(70% - 16px);
  padding: 10px 0 15px 16px;
}
.account_details {
  float: left;
  margin: 33px 0;
  width: 100%;
}
#account_password p {
  margin-left: 30%;
}

#shop_acc_data input[type="submit"] {
  margin-left: 30%;
}
#shop_acc_data input[name="zip"],
#shop_acc_data input[name="zip2"] {
  width: 95px;
  margin-right: 5px;
}
#shop_acc_data input[name="city"],
#shop_acc_data input[name="city2"] {
  width: calc(70% - 100px);
}

/**
 * ANCHOR responsive
 *
 */
@media only screen and (max-width: 1400px) {
  .header {
    margin: 0 auto;
    width: calc(100% - 60px);
    max-width: 1178px;
  }
}

@media only screen and (max-width: 1160px) {
  /* shop */
  .product .functions button.add-to-cart,
  .product .functions .not-in-stock {
    padding: 0 0 0 60px;
    width: 60px;
    border-radius: 50%;
    overflow: hidden;
    background-position: center;
  }
}
@media only screen and (max-width: 980px) {
  .header {
    width: calc(100% - 40px);
  }
  nav ul {
    gap: 20px;
  }
}
@media only screen and (max-width: 900px) {
  .navTop ul.mainNav {
    display: none;
  }
  .navMobileIcon {
    display: block;
  }

  .header {
    height: 90px;
  }
  .navTop {
    margin-right: 60px;
  }
  .mainImage {
    margin-top: 90px;
    height: calc(100% - 90px);
  }

  /* shop */
  .product .images {
    float: left;
    margin: 0;
    width: 100%;
  }
  .product .content {
    float: left;
    margin: 0;
    width: 100%;
  }

  .product .functions button.add-to-cart,
  .product .functions .not-in-stock {
    padding: 0 75px 0 30px;
    width: auto;
    border-radius: 30px;
    background-position: right 25px center;
    overflow: unset;
  }
  .product .functions .not-in-stock {
    padding-top: 16px;
  }

  footer .block.third {
    width: calc(100% - 16px);
  }
}
@media only screen and (max-width: 700px) {
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }

  article {
    width: calc(50% - 22px);
  }
  .store .block-left {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .store .block-right {
    margin: 20px 0 0 0;
    width: 100%;
  }

  footer {
    padding: 22px 0;
  }
  .footer-left,
  .footer-right,
  .footer-center {
    margin: 0 0 11px 0;
    text-align: unset;
    width: 100%;
  }
  .bubble {
    right: 0;
    scale: 0.75;
  }
  #shop_acc_data input[name="zip"],
  #shop_acc_data input[name="zip2"],
  #shop_acc_data input[name="city"],
  #shop_acc_data input[name="city2"] {
    width: 70%;
    margin-right: 0;
  }
}
@media only screen and (max-width: 580px) {
  .inner {
    width: calc(100% - 40px);
  }

  #navMobile ul li a {
    padding: 15px 20px;
    width: calc(100% - 40px);
  }

  #navMobile ul li ul li a {
    padding: 5px 20px 5px 35px;
    width: calc(100% - 55px);
  }

  #navMobile ul li .openSubmenu {
    right: 0;
    width: 100%;
  }
  #navMobile ul li.level-1 .plus {
    background-position: calc(100% - 20px) center;
  }

  #navMobile ul li.level-1 .minus {
    background-position: calc(100% - 20px) center;
  }

  .footer-left {
    background-size: 100px auto;
  }

  h1,
  .h1,
  h2,
  .h2,
  h3,
  .h3,
  h4,
  .h4,
  h5,
  .h5,
  h6,
  .h6 {
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
  }
  h1,
  .h1 {
    font-size: 40px;
  }

  /* form */
  label {
    margin-bottom: 4px;
  }
  input,
  select,
  input[type="submit"],
  #shop_acc_data input[name="zip"],
  #shop_acc_data input[name="zip2"],
  #shop_acc_data input[name="city"],
  #shop_acc_data input[name="city2"],
  #shop_acc_data input[type="submit"] {
    margin-right: 0;
    margin-left: 0;
    width: 100%;
  }
  input[type="submit"] {
    margin-bottom: 10px;
  }

  /* shop */
  article h2 {
    font-size: 24px;
  }

  .product .functions {
    margin: 11px 0;
  }
  .product .functions button.add-to-cart,
  .product .functions .not-in-stock {
    padding: 0 0 0 60px;
    width: 60px;
    border-radius: 50%;
    background-position: center;
    overflow: hidden;
  }
}

@media print {
  .navTop,
  .navSub,
  .logo.maileg,
  .basket,
  .navIcon,
  .navMobileIcon,
  #navMobile,
  section.insta,
  .footer-center,
  button.add-to-cart,
  .not-in-stock,
  .clickDown,
  .delimiter {
    display: none;
  }

  .inner,
  footer .inner {
    margin: 0 5mm 0 15mm;
    width: calc(100% - 20mm);
    max-width: unset;
  }

  header {
    position: relative;
    height: 25mm;
    -webkit-box-shadow: unset;
    -moz-box-shadow: unset;
    box-shadow: unset;
  }

  .mainImage {
    float: left;
    margin: 5mm 5mm 0 15mm;
    width: calc(100% - 20mm);
    height: 80mm;
  }
  .bubble {
    top: 15mm;
    left: unset;
    right: -5mm;
    width: 50mm;
    height: 50mm;
  }

  section {
    padding: 0 0 8mm 0;
  }
  section.spacing {
    margin-top: 0;
    padding-top: 0;
  }
  .store .block-right {
    margin-top: 0;
  }

  .product .images {
    width: calc(40% - 25px);
  }
  .product .content {
    width: calc(60% - 25px);
  }
  .product .images .frame {
    display: none;
  }
  .product .images .frame.thumb {
    display: block;
    margin: 0;
    width: 100%;
  }
  .product .functions {
    margin: 0 0 22px 0;
  }

  footer {
    break-inside: avoid;
    margin: 0;
    background-color: var(--color-white);
  }
  .footer-left {
    margin: 0 25px 0 0;
    width: calc(40% - 25px);
  }
  .footer-right {
    margin: 0 0 0 25px;
    width: calc(60% - 25px);
  }

  body {
    font-size: 12px;
  }
  h1,
  .h1 {
    font-size: 36px;
  }
  h2,
  .h2 {
    font-size: 16px;
  }
  h1.h2 {
    font-size: 36px;
  }
  h3,
  .h3 {
    font-size: 14px;
  }
  h4,
  .h4 {
    font-size: 12px;
  }
  h5,
  .h5 {
    font-size: 12px;
  }
  h6,
  .h6 {
    font-size: 12px;
  }

  footer h1,
  footer h2,
  footer h3,
  footer h4,
  footer h5,
  footer p,
  footer a {
    color: var(--color-black);
    font-size: 12px;
  }
}
