/*
* {
     outline: 1px solid red; 
}
*/

/* lato-300 - latin */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/lato-v20-latin-300.eot"); /* IE9 Compat Modes */
  src: local(""),
    url("../fonts/lato-v20-latin-300.eot?#iefix") format("embedded-opentype"),
    /* IE6-IE8 */ url("../fonts/lato-v20-latin-300.woff2") format("woff2"),
    /* Super Modern Browsers */ url("../fonts/lato-v20-latin-300.woff")
      format("woff"),
    /* Modern Browsers */ url("../fonts/lato-v20-latin-300.ttf")
      format("truetype"),
    /* Safari, Android, iOS */ url("../fonts/lato-v20-latin-300.svg#Lato")
      format("svg"); /* Legacy iOS */
}
/* lato-300italic - latin */
@font-face {
  font-family: "Lato";
  font-style: italic;
  font-weight: 300;
  src: url("../fonts/lato-v20-latin-300italic.eot"); /* IE9 Compat Modes */
  src: local(""),
    url("../fonts/lato-v20-latin-300italic.eot?#iefix")
      format("embedded-opentype"),
    /* IE6-IE8 */ url("../fonts/lato-v20-latin-300italic.woff2") format("woff2"),
    /* Super Modern Browsers */ url("../fonts/lato-v20-latin-300italic.woff")
      format("woff"),
    /* Modern Browsers */ url("../fonts/lato-v20-latin-300italic.ttf")
      format("truetype"),
    /* Safari, Android, iOS */ url("../fonts/lato-v20-latin-300italic.svg#Lato")
      format("svg"); /* Legacy iOS */
}
/* lato-regular - latin */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/lato-v20-latin-regular.eot"); /* IE9 Compat Modes */
  src: local(""),
    url("../fonts/lato-v20-latin-regular.eot?#iefix")
      format("embedded-opentype"),
    /* IE6-IE8 */ url("../fonts/lato-v20-latin-regular.woff2") format("woff2"),
    /* Super Modern Browsers */ url("../fonts/lato-v20-latin-regular.woff")
      format("woff"),
    /* Modern Browsers */ url("../fonts/lato-v20-latin-regular.ttf")
      format("truetype"),
    /* Safari, Android, iOS */ url("../fonts/lato-v20-latin-regular.svg#Lato")
      format("svg"); /* Legacy iOS */
}
/* lato-700 - latin */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/lato-v20-latin-700.eot"); /* IE9 Compat Modes */
  src: local(""),
    url("../fonts/lato-v20-latin-700.eot?#iefix") format("embedded-opentype"),
    /* IE6-IE8 */ url("../fonts/lato-v20-latin-700.woff2") format("woff2"),
    /* Super Modern Browsers */ url("../fonts/lato-v20-latin-700.woff")
      format("woff"),
    /* Modern Browsers */ url("../fonts/lato-v20-latin-700.ttf")
      format("truetype"),
    /* Safari, Android, iOS */ url("../fonts/lato-v20-latin-700.svg#Lato")
      format("svg"); /* Legacy iOS */
}
/* lato-700italic - latin */
@font-face {
  font-family: "Lato";
  font-style: italic;
  font-weight: 700;
  src: url("../fonts/lato-v20-latin-700italic.eot"); /* IE9 Compat Modes */
  src: local(""),
    url("../fonts/lato-v20-latin-700italic.eot?#iefix")
      format("embedded-opentype"),
    /* IE6-IE8 */ url("../fonts/lato-v20-latin-700italic.woff2") format("woff2"),
    /* Super Modern Browsers */ url("../fonts/lato-v20-latin-700italic.woff")
      format("woff"),
    /* Modern Browsers */ url("../fonts/lato-v20-latin-700italic.ttf")
      format("truetype"),
    /* Safari, Android, iOS */ url("../fonts/lato-v20-latin-700italic.svg#Lato")
      format("svg"); /* Legacy iOS */
}

:root {
  --col-orange: #e6642a;
  --col-green: #8dba47;
  --col-green-dark: #009145;
  --col-brown: #8b6239;
  --col-yellow: #ffef6b;
  --padding: 30px;
}

@media screen and (min-width: 900px) {
  :root {
    --padding: 60px;
  }
}

html,
body {
  padding: 0px;
  margin: 0px;
  background-image: url(../img/background_lainen.gif);
  background-repeat: repeat;
  width: 100%;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 10px;
}

hr {
  border: none;
  border-bottom: 1px dashed var(--col-orange);
  margin: calc(var(--padding) / 2);
}
hr:last-of-type {
  display: none;
}

h1 {
  font-size: 2.6rem;
  color: var(--col-orange);
  margin: 0px;
}
h3 {
  color: var(--col-orange);
  font-style: italic;
  font-size: 1.6rem;
  margin: 0px;
}

p,
ul,
a {
  font-size: 1.4rem;
  font-size: clamp(1.4rem, 1.4rem, 1.5rem);
}
p {
  line-height: 160%;
}
a {
  color: black;
}

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

#wrapper {
  position: relative;
  margin: 0px auto;
  width: 100%;
  max-width: 1200px;
  min-height: calc(100vh - 40px);
}

#navigation-container {
  position: fixed;
  width: 100%;
  max-width: 1200px;
  z-index: 9999;
  background-image: url(../img/background_lainen.gif);
}

#navigation {
  position: relative;
  margin: 0px auto;
  display: none;
  padding: 25px 0px;
}
#navigation.active {
  position: relative;
  margin: 0px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

#logo {
  margin: 0px auto;
  width: 120px;
}

nav {
  margin: 0px auto;
  max-width: 240px;
}

nav a {
  display: block;
  padding: 8px 0px;
  text-align: center;
  text-decoration: none;
  color: var(--col-orange);
  border-top: 1px dashed var(--col-orange);
  font-size: 1.6rem;
}
nav a:last-of-type {
  border-bottom: 1px dashed var(--col-orange);
}

nav a.gruen {
  color: var(--col-green-dark);
}
nav a.active {
  font-weight: 600;
}
nav a.hide {
  display: none;
}

.navigation-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  margin: 8px auto;
}

.navigation-icons > .social-icons {
  display: flex;
  margin: 8px auto;
}

.navigation-icons .social-icons img {
  height: 32px;
  margin: 5px;
}

.navigation-icons > .aaa > img {
  min-width: 180px;
  max-width: 240px;
}

#burger {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 25px;
  height: 25px;
  background-image: url(../img/icon-burger-open.svg);
  background-size: contain;
  background-position: center center;
}
#burger.open {
  background-image: url(../img/icon-burger-close.svg);
}

#content {
  position: relative;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.6);
}
#content > div:first-child {
  padding-top: 20px;
  margin-top: 0px;
}
#content > div#headerimage,
#content > div#headerimage-start {
  padding-top: 0px;
}

#footer {
  display: flex;
  width: 100%;
  background-color: gray;
  justify-content: center;
  align-items: center;
  padding: 10px 0px;
  color: white;
  position: relative;
  bottom: 0px;
}
#footer a {
  text-decoration: none;
  color: white;
}

.region {
  padding: calc(var(--padding) / 2);
}

.column {
  display: flex;
  flex-wrap: wrap;
  margin: calc(var(--padding) / 2) auto;
}
.column > div {
  flex: 1 0 50%;
  box-sizing: border-box;
  min-width: 310px;
}
.column > div.text {
  padding: 0px calc(var(--padding) / 2);
}
.column > div.image {
  padding: 0px;
}
.column > div.image:nth-child(even) img {
  padding-left: calc(var(--padding) / 2);
  box-sizing: border-box;
}
.column > div.image:nth-child(odd) img {
  padding-right: calc(var(--padding) / 2);
  box-sizing: border-box;
}
p,
h1,
h2,
h3,
.column > div.image img {
  margin: 0px;
  margin-bottom: 2rem;
}
p:last-child,
.column > div.image img:last-child {
  margin: 0px;
  margin-bottom: 0px;
}
h1 + h3 {
  margin-top: -2rem;
}

ul.termine {
  list-style: none;
  padding: 0px;
}
ul.termine li {
  margin: 10px 0px;
}

#lorem {
  height: 150vh;
  background-color: rgba(0, 0, 0, 0.1);
}

#orangecontent {
  background-color: var(--col-orange);
  padding: calc(var(--padding) / 2);
  color: white;
}

.orangecontent {
  background-color: var(--col-orange);
  padding: calc(var(--padding) / 2);
  color: white;
  margin-bottom: 25px;
}
.orangecontent a {
  color: white;
}

#browncontent {
  background-color: var(--col-brown);
  padding: var(--padding);
  color: white;
  height: calc(100% - var(--padding));
}

#orangecontent h1,
#browncontent h1 {
  color: var(--col-yellow);
}

#browncontent h3 {
  color: white;
}
#browncontent h4 {
  font-size: 1.3rem;
}

#headerimage {
  position: relative;
  height: 300px;
  width: 100%;
  overflow: hidden;
}
#headerimage .slide {
  position: absolute;
  height: 300px;
  width: 100%;
}
#headerimage img {
  object-fit: cover;
  width: 100%;
  height: 300px;
  display: inline-block;
}

#headerimage-start {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#headerimage .slide {
  position: absolute;
  height: 450px;
  width: 100%;
}
#headerimage img {
  object-fit: cover;
  width: 100%;
  height: 450px;
  display: inline-block;
}

#sliderbuttons {
  position: absolute;
  bottom: 0px;
  top: 50%;
  transform: translateY(-50%);
  color: yellow;
  font-size: 35px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: fit-content;
}
#sliderbuttons div {
  padding: 20px;
  cursor: pointer;
}

#galerie-container {
  display: flex;
  flex-wrap: wrap;
}

.galerie-item {
  --img-size: 180px;
  width: var(--img-size);
  height: var(--img-size);
  margin: 5px;
}
.galerie-item a {
  width: 100%;
  height: 100%;
  display: block;
}
.galerie-item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.inline-gallery {
  display: none;
}

.workshop {
  display: flex;
  justify-content: space-between;
  padding: calc(var(--padding) / 2);
}
.workshop-info {
  width: 65%;
}
.workshop-anmeldung {
  width: 30%;
}
.w-titel h2 {
  color: var(--col-green);
  margin: 0px;
}
.w-datum h3 {
  color: var(--col-green);
  margin: 0px;
  font-style: italic;
}
.w-link a {
  display: inline-block;
  background-color: var(--col-green);
  color: white;
  text-decoration: none;
  padding: 4px;
  font-weight: 600;
}

.termin-link {
  color: var(--col-yellow);
  text-decoration: underline;
  font-style: italic;
}

#gmap-boutique,
#gmap-hofladen {
  margin: 25px auto;
  border: 1px solid var(--col-orange);
  background-image: url(../img/karte_platzhalter.svg);
  background-position: center center;
  background-size: cover;
}
#gmap-boutique p,
#gmap-hofladen p {
  margin: 25px;
  font-weight: 600;
}

#gmap-boutique iframe,
#gmap-hofladen iframe {
  width: 100%;
  height: 350px;
}

a.gmap-button {
  border: 1px solid var(--col-orange);
  color: var(--col-orange);
  background-color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  padding: 8px;
  margin: 5px auto;
  cursor: pointer;
}

.nomargin {
  margin-top: 0px;
}

.presse-link {
  margin: 3px 0px;
}
.presse-link a {
  text-decoration: none;
  color: white;
}

.GalButton {
  display: block;
  padding: 5px 0px;
  max-width: 390px;
  background-color: var(--col-orange);
  text-align: center;
  border-radius: 5px;
  position: relative;
}
.GalButton a {
  color: white;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  position: relative;
}
.GalButton a::before {
  content: url(../img/icon-fotogalerie.svg);
  width: 20px;
  position: absolute;
  left: -28px;
  height: 100%;
  margin-right: 8px;
  display: inline-block;
}

.LinkButton {
  display: block;
  padding: 5px 0px;
  max-width: 390px;
  background-color: var(--col-orange);
  text-align: center;
  border-radius: 5px;
  position: relative;
}
.LinkButton a {
  color: white;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.ShopButton {
  display: block;
  padding: 5px 0px;
  max-width: 390px;
  background-color: var(--col-orange);
  text-align: center;
  border-radius: 5px;
  position: relative;
}
.ShopButton a {
  color: white;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  position: relative;
}
.ShopButton a::before {
  content: url(../img/icon-shopbutton.svg);
  width: 20px;
  position: absolute;
  left: -28px;
  height: 100%;
  margin-right: 8px;
  display: inline-block;
}

a.download-link {
  position: relative;
  text-decoration: none;
  color: black;
  font-weight: 600;
  padding-left: 28px;
}
a.download-link::before {
  content: url(../img/icon-download.svg);
  width: 20px;
  position: absolute;
  left: 0;
  height: 100%;
  margin-right: 8px;
  display: inline-block;
}

.datenschutz-container h3 {
  color: white;
  font-size: 1.5rem;
}
.datenschutz-container h4 {
  font-size: 1.4rem;
}

/*-----------------------
SHOP SHOP
-----------------------*/

#shop-header {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0px calc(var(--padding) / 2);
}
#shop-header > div {
  margin: 10px;
}

#shop-banner-wrapper {
  position: relative;
  height: 330px;
  overflow: hidden;
}

#shop-banner-container {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* padding-bottom: 36%; */
  min-height: 330px;
  width: 100%;
  overflow: hidden;
}

.shop-banner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 100%;
  display: inline-block;
}

.shop-banner-img {
  position: relative;
}
.shop-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.shop-banner-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.shop-banner-info {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 100%;
  width: 50%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
}

.shop-banner-titel {
  position: relative;
}
.shop-banner-titel p {
  padding: 10px;
  border: 1px dashed var(--col-orange);
  margin: 0px auto;
  max-width: 75%;
  text-align: center;
  font-style: italic;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--col-orange);
  background-color: rgba(255, 255, 255, 0.5);
}

.shop-banner-button {
  display: block;
  padding: 5px;
  background-color: var(--col-orange);
  border-radius: 3px;
  color: white;
}
.shop-banner-button a {
  text-decoration: none;
  color: white;
}

#banner-controls {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  pointer-events: none;
}

#banner-controls-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  margin: 25px;
}
.prev-banner,
.next-banner {
  display: inline-block;
  font-size: 7rem;
  color: var(--col-orange);
  cursor: pointer;
  pointer-events: all;
}

#banner-controls-points {
  position: absolute;
  bottom: 10px;
  justify-self: flex-end;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0px auto;
  margin-top: auto;
  width: fit-content;
  left: 50%;
  transform: translateX(-50%);
}
.pointer {
  width: 11px;
  height: 11px;
  border: 2px solid var(--col-orange);
  border-radius: 30px;
  margin: 5px;
  cursor: pointer;
  pointer-events: all;
}
.pointer.active {
  background-color: var(--col-orange);
}

#breadcrumbs {
  padding: 0px calc(var(--padding) / 2);
  margin-bottom: 25px;
  font-size: 1.3rem;
  color: var(--col-brown);
}
#breadcrumbs a {
  text-decoration: none;
  font-weight: bold;
  margin: 0px 8px;
  display: inline-block;
  color: var(--col-brown);
}

.article-header {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.article-header label {
  font-size: 1.2rem;
}
.article-header > div {
  box-sizing: border-box;
  flex: 1 0 50%;
  min-width: 310px;
}
.article-header > div:first-child {
  padding-right: calc(var(--padding) / 2);
}
.article-header > div:last-child {
  padding-left: calc(var(--padding) / 2);
}

.article-header h1,
.article-header h2,
.article-header h3 {
  color: white;
}

.shop-header-image {
  position: relative;
}
.more-images-icon {
  position: absolute;
  bottom: 10px;
  right: 45px;
  width: 40px;
  height: 40px;
  pointer-events: none;
}
.more-images-icon img {
  max-width: 100%;
}

#Shop-Navigation {
  padding: calc(var(--padding) / 2) 0px;
}
#Shop-Navigation a {
  color: var(--col-orange);
  margin-right: 10px;
  margin-bottom: 7px;
  text-decoration: none;
  position: relative;
  text-transform: uppercase;
  display: inline-block;
  white-space: break-spaces;
  border: 1px solid #e6642a3b;
  padding: 3px;
}
#Shop-Navigation a.active {
  font-weight: 600;
  background-color: #e6642a1a;
}
/*#Shop-Navigation a:hover {
    text-decoration: underline;
}
#Shop-Navigation a::before {
    content: '•';
    position: absolute;
    left: -18px;
    top: 0;
    text-decoration: none;
    font-weight: 400;
}
#Shop-Navigation a:last-of-type::after {
    content: '•';
    position: absolute;
    right: -18px;
    top: 0;
    text-decoration: none;
    font-weight: 400;
}*/

#wk {
  position: fixed;
  max-height: 80%;
  width: 90%;
  max-width: 600px;
  background-color: var(--col-orange);
  padding: calc(var(--padding) / 2);
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  outline: 100vw solid rgba(255, 255, 255, 0.8);
  z-index: 9999;
  overflow-y: scroll;
}

#wk-button {
  display: inline-block;
  padding: 7px;
  background-color: var(--col-orange);
  border-radius: 3px;
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
}

#wk-artikelanzahl {
  font-weight: bold;
}
#shop-search-form {
  display: flex;
  justify-content: center;
  align-items: center;
}

#shop-search-form input {
  border: none;
  padding: 7px;
  border-radius: 3px;
}

#search-submit {
  width: 18px;
  height: 18px;
  padding: 5px;
  background-color: var(--col-orange);
  border-radius: 3px;
  margin-left: 7px;
  cursor: pointer;
}
#seach-submit img {
  max-width: 100%;
}

#wk-close {
  font-size: 1.4rem;
  padding: 5px;
  border-radius: 3px;
  background-color: white;
  color: var(--col-brown);
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  right: 8px;
  top: 8px;
  width: 15px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#shop-category-list {
  -display: flex;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  -flex-wrap: wrap;
  -justify-content: flex-start;
  margin: 0px auto;
  margin-bottom: 25px;
  padding: calc(var(--padding) / 2);
}
#shop-category-list > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  -flex: 0 1 150px;
  -margin-left: 15px;
  text-align: center;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0);
  transition: background-color ease-in 0.3s;
}
#shop-category-list > div:hover {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  -flex: 0 1 150px;
  -margin-left: 15px;
  text-align: center;
  background-color: rgba(255, 94, 0, 0.2);
  transition: background-color ease-out 0.3s;
}
#shop-category-list a {
  text-decoration: none;
}
span.price {
  color: var(--col-orange);
  font-size: 1.6rem;
  font-weight: 600;
  justify-self: flex-end;
  padding-top: 15px;
  margin-bottom: 10px;
}
span.subtitel {
  font-size: 1.3rem;
}

.shop-thumbnail {
  object-fit: cover;
  max-width: 90%;
  height: 200px;
  margin: 10px auto;
}

#auswahl-felder {
  width: 100%;
}
#auswahl-felder label,
#anzahl-label {
  display: inline-block;
  width: 25%;
}
#auswahl-felder select {
  -webkit-appearance: none;
  appearance: none;
  display: inline-block;
  background-color: white;
  width: 100%;
  padding: 3px;
  text-align: center;
  text-align: -webkit-center;
  border: none;
  border-radius: 4px;
  font-size: 1.2rem;
  color: var(--col-orange);
  padding-left: 20px;
}
#auswahl-felder select:focus-visible {
  outline: none;
}
#auswahl-felder .select-wrap {
  display: inline-block;
  width: 50%;
  position: relative;
}
#auswahl-felder .select-wrap::after {
  content: ">";
  position: absolute;
  left: 3px;
  top: 0px;
  transform: rotate(90deg);
  display: block;
  width: 20px;
  height: 100%;
  font-size: 1.1rem;
  z-index: 2;
  color: var(--col-orange);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

#anzahl {
  -webkit-appearance: none;
  appearance: none;
  display: inline-block;
  background-color: white;
  width: 100%;
  padding: 3px;
  text-align: center;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  color: var(--col-orange);
  -moz-appearance: textfield;
}

.spin-button-wrap {
  display: inline-block;
  position: relative;
  color: var(--col-orange);
  font-size: 1.6rem;
  width: 40px;
}

.spin-btn-minus {
  position: absolute;
  z-index: 5;
  height: 100%;
  left: 3px;
  top: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.spin-btn-plus {
  position: absolute;
  z-index: 6;
  height: 100%;
  right: -4px;
  top: 0px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  cursor: pointer;
}

#anzahl::-webkit-inner-spin-button,
#anzahl::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
}

/*-----------------------
SHOP BESTELLUNG
-----------------------*/

.warenkorb-artikel {
  position: relative;
  padding: 5px 0px;
  margin: 5px 0px;
  border-bottom: 1px solid white;
  font-size: 1.2rem;
  color: white;
}
.warenkorb-artikel-preis-container {
  display: flex;
  justify-content: space-between;
}
.warenkorb-artikel-preis,
.warenkorb-artikel-gesamtpreis {
  margin: 5px 0px;
  font-weight: bold;
}
.delete-article {
  position: absolute;
  background-color: white;
  padding: 4px;
  border-radius: 4px;
  color: var(--col-orange);
  top: 5px;
  right: 0px;
  cursor: pointer;
}
.gesamtbetrag {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 5px 0px;
  text-align: right;
  color: white;
}

#bestell-angaben {
  display: grid;
  grid-template-columns: 1fr;
}

#bestell-daten {
  display: flex;
  flex-direction: column;
}

#warenkorb-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

a#order-button,
a#weiter-button {
  text-decoration: none;
}

#bestell-daten input,
#bestell-daten textarea,
#order-button,
#weiter-button {
  padding: 6px;
  border: none;
  background-color: white;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 3px;
  margin: 5px 0px;
}
#bestell-daten input[type="submit"],
#order-button,
#weiter-button {
  background-color: var(--col-green);
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
  cursor: pointer;
}
#bestell-daten input[type="submit"]:hover,
#order-button:hover {
  background-color: var(--col-green-dark);
}

#weiter-button {
  background-color: var(--col-green);
}

.zustimmung {
  display: grid;
  align-items: center;
  gap: 5px;
  grid-template-columns: 30px auto;
  font-size: 1.3rem;
  margin: 7px 0px;
}
.zustimmung input {
  width: 25px;
  height: 25px;
  margin-right: 15px;
  appearance: checkbox !important;
  -webkit-appearance: checkbox !important;
  accent-color: var(--col-green);
}
label.zustimmung {
  cursor: pointer;
}

details {
  margin: 25px 0px;
  border-bottom: 1px solid white;
}

.arrow-right {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;

  border-left: 8px solid var(--col-orange);
  margin: 3px;
  margin-right: 10px;
  margin-bottom: 0px;
  transform: translateX(8px);
}

details p:last-of-type {
  margin-bottom: 25px;
}

summary {
  cursor: pointer;
}
.summary-icon {
  display: inline-block;
  color: var(--col-orange);
}
.summary-icon .arrow-right {
  transform: rotate(90deg);
}
details[open] .summary-icon .arrow-right {
  transform: rotate(-90deg);
}

summary::-webkit-details-marker,
summary::marker {
  display: none;
  content: "";
}

@media screen and (min-width: 900px) {
  #wrapper {
    display: flex;
  }

  #navigation-container {
    position: relative;
    width: 300px;
    padding-right: 60px;
  }

  #navigation {
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  #logo {
    width: 240px;
  }

  #burger {
    display: none;
  }

  #Shop-Navigation a {
    white-space: nowrap;
  }

  #wk {
    position: absolute;
    height: auto;
    width: 500px;
    top: 100px;
  }

  #bestell-angaben {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 620px) {
  .column > div.image img {
    padding: 0px !important;
    margin: 10px auto !important;
  }
  #shop-category-list {
    grid-template-columns: 1fr 1fr;
  }

  .shop-banner-info {
    width: 100%;
  }
}

@media screen and (max-width: 374px) {
  #logo {
    max-width: 100px;
  }

  #shop-category-list {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-height: 375px) {
  #navigation {
    padding: 0px;
    height: 100vh;
    overflow-y: auto;
  }
}

@media screen and (max-width: 347px) and (max-height: 568px),
  screen and (max-height: 347px) and (max-width: 568px),
  screen and (max-width: 555px) {
  #navigation {
    padding: 0px;
    height: 100vh;
    justify-content: initial !important;
    overflow-y: auto;
    flex-direction: column;
    flex-wrap: nowrap !important;
  }

  #navigation > * {
    margin: auto;
  }

  #navigation > div::before,
  #navigation > div::after {
    content: "";
    width: 100%;
    height: 25px;
    position: relative;
    display: block;
  }
}
