@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Allura&family=Charm:wght@400;700&family=Eagle+Lake&family=Felipa&family=Meddon&family=Merriweather:ital,opsz,wdth,wght@0,18..144,87..112,300..900;1,18..144,87..112,300..900&display=swap");
:root {
  --document_padding: 1rem;
}
@media screen and (min-width: 782px) {
  :root {
    --document_padding: 2rem;
  }
}

@keyframes spring {
  0% {
    transform: scale(1) translateY(0);
  }
  10% {
    transform: scale(1.2, 0.6);
  }
  30% {
    transform: scale(0.8, 1.1) translateY(-0.5rem);
  }
  50% {
    transform: scale(1) translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
footer button#scrolltotop:hover:after {
  animation: spring 2s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
}

html {
  overscroll-behavior: none;
  scroll-behavior: smooth;
  background-color: #0D0907;
  background-image: linear-gradient(#060606, transparent), linear-gradient(to top left, #28282B, transparent), linear-gradient(to top right, #0C0404, transparent);
  background-blend-mode: screen;
}
@supports (font: -apple-system-body) {
  html {
    scrollbar-width: none;
  }
}
html::before {
  content: "";
  width: 100vw;
  height: 100vh;
  background-image: url(../img/noise.svg);
  z-index: 1;
  position: fixed;
  background-blend-mode: screen;
  opacity: 0.45;
}
html body {
  margin: 0;
  position: relative;
  z-index: 2;
  max-width: 100%;
  min-height: 100vh;
  width: 100vw;
  display: grid;
  grid-auto-flow: row;
  grid-template-rows: auto min-content;
  align-items: center;
  padding-left: var(--document_padding);
  padding-right: var(--document_padding);
  box-sizing: border-box;
}
html body header {
  z-index: 100;
  width: 100vw;
  height: 15rem;
  position: fixed;
  left: 0;
  top: 0;
}
html body header + * {
  margin-top: 15rem;
  padding-top: calc(var(--document_padding) * 3);
  padding-bottom: calc(var(--document_padding) * 3);
}
html body header::after {
  opacity: 0;
  z-index: -1;
  content: "";
  background-image: linear-gradient(to bottom, rgba(13, 9, 7, 0) 0%, rgba(13, 9, 7, 0) 19%, rgba(13, 9, 7, 0) 34%, rgba(13, 9, 7, 0) 47%, rgba(13, 9, 7, 0) 56.5%, rgba(13, 9, 7, 0) 65%, rgba(13, 9, 7, 0) 73%, rgba(13, 9, 7, 0) 80.2%, rgba(13, 9, 7, 0) 86.1%, rgba(13, 9, 7, 0) 91%, rgba(13, 9, 7, 0) 95.2%, rgba(13, 9, 7, 0) 98.2%, rgba(13, 9, 7, 0) 100%);
  position: absolute;
  left: 0;
  top: 4.3526785714rem;
  height: 2rem;
  width: 100vw;
}
html body header.logo_small {
  padding-top: calc(var(--document_padding) / 2);
  height: 4.3526785714rem;
  background-color: rgba(13, 9, 7, 0);
  background-blend-mode: hue;
}
html body header.logo_small h1 {
  overflow: hidden;
  transition: overflow linear 0s 0.3s;
}
html body header.logo_small h1 a {
  height: 4.3526785714rem;
}
html body header.logo_small h1 a::after {
  opacity: 0;
  transition: opacity ease-in-out 0.3s 0s;
}
html body header.logo_small::after {
  opacity: 1;
}
html body header:not(.logo_small) {
  top: var(--document_padding);
}
html body header:not(.logo_small) h1 {
  height: 15rem;
  line-height: 15rem;
  transition: overflow linear 0s 0s;
}
html body header:not(.logo_small) h1 a {
  height: 15rem;
}
html body header:not(.logo_small) h1 a::after {
  opacity: 1;
  transition: opacity ease-in-out 0.25s 0.3s;
}
html body header h1 {
  position: absolute;
  right: 50%;
  transform: translateX(calc(50% - var(--document_padding) * 0));
  font-size: 0;
}
html body header h1 > a {
  background-color: blue;
  display: inline-block;
  background-image: url("../img/logo_wortmarke.png");
  background-size: 100% auto;
  background-position: bottom;
  width: 15rem;
  transition: height ease-in-out 0.5s;
}
html body header h1 > a::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 15rem;
  height: 15rem;
  background-image: url("../img/logo_illustration.png");
  background-size: 100% auto;
}
html body header h1 > a:link, html body header h1 > a:visited {
  color: inherit;
  background-color: unset;
}
html body header h1 > a:hover, html body header h1 > a:focus, html body header h1 > a:active {
  color: inherit;
  background-color: unset;
  opacity: 1;
}
html body main {
  scroll-snap-type: y mandatory;
  display: grid;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 782px) {
  html body main {
    grid-template-columns: [full-start] 1fr [main-start] auto [main-end] 1fr [full-end];
  }
  html body main *:not(.full-width) {
    grid-column: main-start/main-end;
  }
  html body main *.full-width {
    grid-column: full-start/full-end;
    margin-left: calc(var(--document_padding) * -1);
    margin-right: calc(var(--document_padding) * -1);
  }
}
html body main .wp-block-columns.is-layout-flex,
html body main .wp-block-column.is-layout-flex {
  row-gap: 6.1917364224rem;
}
html body main .wp-block-button a {
  border-width: 0.05rem;
}
html body main .is-position-sticky {
  top: 8.3526785714rem;
}
@media all and (max-width: 760px) {
  html body main .wp-block-gallery .wp-block-image {
    width: 100% !important;
  }
  html body main .wp-block-gallery .wp-block-image img {
    max-height: unset;
  }
}
html body footer {
  padding-bottom: var(--document_padding);
}
@media screen and (min-width: 690px) {
  html body footer {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: repeat(auto-fill, 1fr);
    gap: 2rem;
    align-items: end;
  }
  html body footer p {
    margin: 1rem 0 0 0;
  }
  html body footer > *:last-of-type:not(.hidden), html body footer > *:nth-last-child(2):has(~ .hidden) {
    justify-self: right;
  }
}
html body footer > *:last-of-type:not(.hidden), html body footer > *:nth-last-child(2):has(~ .hidden) {
  margin-bottom: 0;
}
html body footer .hidden {
  display: none;
}

@font-face {
  font-family: "Monotype Corsiva";
  src: url("fonts/MonotypeCorsiva/MonotypeCorsivaBold.woff2") format("woff2"), url("fonts/MonotypeCorsiva/MonotypeCorsivaBold.woff") format("woff"), url("fonts/MonotypeCorsiva/MonotypeCorsivaBold.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Monotype Corsiva";
  src: url("fonts/MonotypeCorsiva/MonotypeCorsivaBoldItalic.woff2") format("woff2"), url("fonts/MonotypeCorsiva/MonotypeCorsivaBoldItalic.woff") format("woff"), url("fonts/MonotypeCorsiva/MonotypeCorsivaBoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Monotype Corsiva Regular";
  src: url("fonts/MonotypeCorsiva/MonotypeCorsivaRegularItalic.woff2") format("woff2"), url("fonts/MonotypeCorsiva/MonotypeCorsivaRegularItalic.woff") format("woff"), url("fonts/MonotypeCorsiva/MonotypeCorsivaRegularItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Monotype Corsiva";
  src: url("fonts/MonotypeCorsiva/MonotypeCorsivaRegular.woff2") format("woff2"), url("fonts/MonotypeCorsiva/MonotypeCorsivaRegular.woff") format("woff"), url("fonts/MonotypeCorsiva/MonotypeCorsivaRegular.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
::-moz-selection, mark::-moz-selection {
  opacity: 1;
  background-color: #c9a185;
  mix-blend-mode: normal;
}
::selection,
mark::selection {
  opacity: 1;
  background-color: #c9a185;
  mix-blend-mode: normal;
}

a {
  text-decoration: underline;
}
a:link, a:visited {
  color: #F9F6EE;
  transition: all 0.5s linear;
}
a:hover, a:focus, a:active {
  transition: all 0.5s linear;
  color: #0D0907;
  background-color: #c9a185;
  opacity: 0.75;
}
a:hover span, a:focus span, a:active span {
  color: #0D0907;
  transition: all 0.5s linear;
}
.is-layout-flow > h2,
.is-layout-flow > h3,
.is-layout-flow > h4 {
  margin-top: 4rem;
}

html {
  color: #F9F6EE;
  font-family: "Merriweather", Tahoma, sans-serif;
  text-rendering: geometricPrecision;
  font-weight: 200;
  letter-spacing: 0.05em;
  font-size: 105%;
}
@media screen and (min-width: 750px) {
  html {
    font-size: 115%;
  }
}
html body header h1 {
  margin: 0;
  font-weight: 400;
}
html body h2 {
  font-family: "Monotype Corsiva", "Merriweather";
  font-weight: 500;
  font-weight: 400;
  font-style: italic;
  font-size: 2em;
  font-size: 2.0736rem;
}
html body h3 {
  text-align: center;
  font-weight: 500;
  font-size: 1.2rem;
  margin-top: 2.5em;
}
html body p {
  max-width: 40ch;
  margin-bottom: 1em;
  line-height: 1.45;
  font-weight: 200;
}
html body p.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
}
html body .has-small-font-size {
  font-size: 0.8333333333rem !important;
}
html body .has-mediumfont-size {
  font-size: 1rem !important;
}
html body .has-large-font-size {
  font-size: 1.44rem !important;
}
html body .has-x-large-font-size {
  font-size: 2.0736rem !important;
}
html body .wp-block-button__link {
  text-box: trim-both cap alphabetic;
}
html body .wp-block-button.bewertung > a {
  position: relative;
  overflow: hidden;
}
html body .wp-block-button.bewertung > a::before {
  content: "✩ ";
  margin-left: -0.75ch;
  font-size: 1.3em;
  line-height: 1;
  vertical-align: text-top;
}
html body .wp-block-button.bewertung > a::after {
  z-index: -1;
  background-color: #c9a185;
  position: absolute;
  top: 0;
  left: 0;
  width: 3.5ch;
  height: 100%;
}
html body .wp-block-button.is-style-aktuelles-button .wp-block-button__link, html body .wp-block-button.is-style-aktuelles-button .wp-block-button__link:link, html body .wp-block-button.is-style-aktuelles-button .wp-block-button__link:visited {
  color: #F9F6EE;
  background-image: linear-gradient(90deg, rgba(195, 56, 58, 0.9), rgba(227, 36, 0, 0.75));
  background-color: #c3383a;
}
html body .wp-block-button.is-style-aktuelles-button .wp-block-button__link:hover, html body .wp-block-button.is-style-aktuelles-button .wp-block-button__link:focus, html body .wp-block-button.is-style-aktuelles-button .wp-block-button__link:active {
  color: #F9F6EE;
  background-image: linear-gradient(90deg, rgba(195, 56, 58, 0.9), rgba(227, 36, 0, 0.75));
  background-color: #F9F6EE;
  opacity: 1;
}
html body .wp-block-button.is-style-hidden-button {
  display: none;
}
html body .wp-block-button.is-style-hidden-button a.wp-block-button__link {
  display: none;
}
html body main ul.wp-block-list {
  padding: 0;
  margin: 0 auto;
}
html body main ul.wp-block-list.offnungszeiten {
  list-style-type: none;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
}
html body main ul.wp-block-list.offnungszeiten li {
  position: relative;
  line-height: 2;
  padding: 1em 0;
}
html body main ul.wp-block-list.offnungszeiten li:last-child {
  padding-bottom: 0;
}
html body main ul.wp-block-list.offnungszeiten li:not(:last-of-type):after {
  position: absolute;
  bottom: 0;
  content: "";
  width: calc(100% - 5em);
  margin: 0 2.5em;
  height: 1px;
  border-bottom: 1px solid #F9F6EE;
  left: 0;
}
html body main .wp-block-lazyblock-tagesteller > section.tagesteller {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}
html body main .wp-block-lazyblock-tagesteller > section.tagesteller h3 {
  margin-top: 0;
}
html body main .wp-block-lazyblock-tagesteller > section.tagesteller > dl {
  text-align: center;
  padding: 0.75em 0;
  padding: 2em 0;
  position: relative;
  max-width: 35ch;
  margin: 0;
}
html body main .wp-block-lazyblock-tagesteller > section.tagesteller > dl * {
  padding: 0;
  margin: 0;
}
html body main .wp-block-lazyblock-tagesteller > section.tagesteller > dl:not(:last-of-type):after {
  position: absolute;
  bottom: 0;
  content: "";
  width: 50%;
  margin: 0 25%;
  height: 1px;
  border-bottom: 1px solid #F9F6EE;
  left: 0;
}
html body main .wp-block-lazyblock-tagesteller > section.tagesteller > dl > dt {
  line-height: 1.25;
  font-weight: 400;
  margin-bottom: 0.75em;
}
html body main .wp-block-lazyblock-tagesteller > section.tagesteller > dl > dt p {
  margin: 0;
  display: contents;
}
html body main .wp-block-lazyblock-tagesteller > section.tagesteller > dl > dt {
  /*  */
}
html body main .wp-block-lazyblock-tagesteller > section.tagesteller > dl > dd ul.allergene {
  text-box: trim-both cap alphabetic;
  font-size: 0.75em;
  border: 0 solid yellow;
  opacity: 0.75;
  line-height: 0;
  height: 0;
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: inline-flex;
}
html body main .wp-block-lazyblock-tagesteller > section.tagesteller > dl > dd ul.allergene::before {
  content: "\a(";
}
html body main .wp-block-lazyblock-tagesteller > section.tagesteller > dl > dd ul.allergene::after {
  content: ")";
}
html body main .wp-block-lazyblock-tagesteller > section.tagesteller > dl > dd ul.allergene li:not(:last-child)::after {
  content: ", ";
}
html body main .wp-block-lazyblock-tagesteller > section.tagesteller > dl span.oder {
  font-size: 0.8333333333rem;
  line-height: 1.5rem;
  display: block;
  vertical-align: middle;
  margin: 1em 0;
  color: rgba(249, 246, 238, 0.75);
}
html body main .wp-block-lazyblock-gerichte,
html body main .wp-block-lazyblock-getranke-double-price,
html body main .wp-block-lazyblock-getranke-volumen-preis {
  scroll-snap-align: start;
}
html body main .wp-block-lazyblock-gerichte > section.menu-items > dl,
html body main .wp-block-lazyblock-getranke-double-price > section.menu-items > dl,
html body main .wp-block-lazyblock-getranke-volumen-preis > section.menu-items > dl {
  padding: 0.75em 0;
}
html body main .wp-block-lazyblock-gerichte > section.menu-items > dl *,
html body main .wp-block-lazyblock-getranke-double-price > section.menu-items > dl *,
html body main .wp-block-lazyblock-getranke-volumen-preis > section.menu-items > dl * {
  padding: 0;
  margin: 0;
}
html body main .wp-block-lazyblock-gerichte > section.menu-items > dl:not(:last-of-type),
html body main .wp-block-lazyblock-getranke-double-price > section.menu-items > dl:not(:last-of-type),
html body main .wp-block-lazyblock-getranke-volumen-preis > section.menu-items > dl:not(:last-of-type) {
  border-bottom: 0.01em solid rgba(249, 246, 238, 0.35);
}
html body main .wp-block-lazyblock-gerichte > section.menu-items > dl > dt,
html body main .wp-block-lazyblock-getranke-double-price > section.menu-items > dl > dt,
html body main .wp-block-lazyblock-getranke-volumen-preis > section.menu-items > dl > dt {
  width: 100%;
  max-width: 30ch;
  line-height: 1.25;
}
html body main .wp-block-lazyblock-gerichte > section.menu-items > dl > dt p,
html body main .wp-block-lazyblock-getranke-double-price > section.menu-items > dl > dt p,
html body main .wp-block-lazyblock-getranke-volumen-preis > section.menu-items > dl > dt p {
  border: 0 solid blue;
  margin: 0;
  display: contents;
}
html body main .wp-block-lazyblock-gerichte > section.menu-items > dl > dt ul.allergene,
html body main .wp-block-lazyblock-getranke-double-price > section.menu-items > dl > dt ul.allergene,
html body main .wp-block-lazyblock-getranke-volumen-preis > section.menu-items > dl > dt ul.allergene {
  text-box: trim-both cap alphabetic;
  vertical-align: baseline;
  font-size: 0.75em;
  font-size: 0.8333333333rem;
  border: 0 solid yellow;
  opacity: 0.75;
  line-height: 0;
  height: 0;
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: inline-flex;
}
html body main .wp-block-lazyblock-gerichte > section.menu-items > dl > dt ul.allergene::before,
html body main .wp-block-lazyblock-getranke-double-price > section.menu-items > dl > dt ul.allergene::before,
html body main .wp-block-lazyblock-getranke-volumen-preis > section.menu-items > dl > dt ul.allergene::before {
  content: "(";
}
html body main .wp-block-lazyblock-gerichte > section.menu-items > dl > dt ul.allergene::after,
html body main .wp-block-lazyblock-getranke-double-price > section.menu-items > dl > dt ul.allergene::after,
html body main .wp-block-lazyblock-getranke-volumen-preis > section.menu-items > dl > dt ul.allergene::after {
  content: ")";
}
html body main .wp-block-lazyblock-gerichte > section.menu-items > dl > dt ul.allergene li:not(:last-child)::after,
html body main .wp-block-lazyblock-getranke-double-price > section.menu-items > dl > dt ul.allergene li:not(:last-child)::after,
html body main .wp-block-lazyblock-getranke-volumen-preis > section.menu-items > dl > dt ul.allergene li:not(:last-child)::after {
  content: ", ";
}
html body main .wp-block-lazyblock-gerichte > section.menu-items > dl > dd,
html body main .wp-block-lazyblock-getranke-double-price > section.menu-items > dl > dd,
html body main .wp-block-lazyblock-getranke-volumen-preis > section.menu-items > dl > dd {
  margin: 0;
}
html body main .wp-block-lazyblock-gerichte > section.menu-items > dl > dd.beschreibung,
html body main .wp-block-lazyblock-getranke-double-price > section.menu-items > dl > dd.beschreibung,
html body main .wp-block-lazyblock-getranke-volumen-preis > section.menu-items > dl > dd.beschreibung {
  font-size: 0.8333333333rem;
  margin-top: 0.25em;
}
html body main .wp-block-lazyblock-gerichte > section.menu-items > dl > dd.titel,
html body main .wp-block-lazyblock-getranke-double-price > section.menu-items > dl > dd.titel,
html body main .wp-block-lazyblock-getranke-volumen-preis > section.menu-items > dl > dd.titel {
  font-style: italic;
  text-transform: uppercase;
  font-size: 0.8333333333rem;
}
html body main .wp-block-lazyblock-gerichte > section.menu-items > dl > dd.preis,
html body main .wp-block-lazyblock-getranke-double-price > section.menu-items > dl > dd.preis,
html body main .wp-block-lazyblock-getranke-volumen-preis > section.menu-items > dl > dd.preis {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
html body main .wp-block-lazyblock-gerichte > section.menu-items > dl > dd.preis, html body main .wp-block-lazyblock-gerichte > section.menu-items > dl > dd.preis-1, html body main .wp-block-lazyblock-gerichte > section.menu-items > dl > dd.preis-2,
html body main .wp-block-lazyblock-getranke-double-price > section.menu-items > dl > dd.preis,
html body main .wp-block-lazyblock-getranke-double-price > section.menu-items > dl > dd.preis-1,
html body main .wp-block-lazyblock-getranke-double-price > section.menu-items > dl > dd.preis-2,
html body main .wp-block-lazyblock-getranke-volumen-preis > section.menu-items > dl > dd.preis,
html body main .wp-block-lazyblock-getranke-volumen-preis > section.menu-items > dl > dd.preis-1,
html body main .wp-block-lazyblock-getranke-volumen-preis > section.menu-items > dl > dd.preis-2 {
  margin-left: 0.75em;
  min-width: 6ch;
}
html body main .wp-block-lazyblock-gerichte > section.menu-items > dl.gericht, html body main .wp-block-lazyblock-gerichte > section.menu-items > dl.getrank,
html body main .wp-block-lazyblock-getranke-double-price > section.menu-items > dl.gericht,
html body main .wp-block-lazyblock-getranke-double-price > section.menu-items > dl.getrank,
html body main .wp-block-lazyblock-getranke-volumen-preis > section.menu-items > dl.gericht,
html body main .wp-block-lazyblock-getranke-volumen-preis > section.menu-items > dl.getrank {
  display: grid;
  justify-content: stretch;
  grid-template-columns: 1fr auto max-content;
  grid-template-areas: "name preis-1 preis-2" "titel preis-1 preis-2" "beschreibung preis-1 preis-2";
}
html body main .wp-block-lazyblock-gerichte > section.menu-items > dl.gericht > *, html body main .wp-block-lazyblock-gerichte > section.menu-items > dl.getrank > *,
html body main .wp-block-lazyblock-getranke-double-price > section.menu-items > dl.gericht > *,
html body main .wp-block-lazyblock-getranke-double-price > section.menu-items > dl.getrank > *,
html body main .wp-block-lazyblock-getranke-volumen-preis > section.menu-items > dl.gericht > *,
html body main .wp-block-lazyblock-getranke-volumen-preis > section.menu-items > dl.getrank > * {
  border: 0 solid red;
}
html body main .wp-block-lazyblock-gerichte > section.menu-items > dl.gericht dt, html body main .wp-block-lazyblock-gerichte > section.menu-items > dl.getrank dt,
html body main .wp-block-lazyblock-getranke-double-price > section.menu-items > dl.gericht dt,
html body main .wp-block-lazyblock-getranke-double-price > section.menu-items > dl.getrank dt,
html body main .wp-block-lazyblock-getranke-volumen-preis > section.menu-items > dl.gericht dt,
html body main .wp-block-lazyblock-getranke-volumen-preis > section.menu-items > dl.getrank dt {
  grid-area: name;
}
html body main .wp-block-lazyblock-gerichte > section.menu-items > dl.gericht dd.beschreibung, html body main .wp-block-lazyblock-gerichte > section.menu-items > dl.getrank dd.beschreibung,
html body main .wp-block-lazyblock-getranke-double-price > section.menu-items > dl.gericht dd.beschreibung,
html body main .wp-block-lazyblock-getranke-double-price > section.menu-items > dl.getrank dd.beschreibung,
html body main .wp-block-lazyblock-getranke-volumen-preis > section.menu-items > dl.gericht dd.beschreibung,
html body main .wp-block-lazyblock-getranke-volumen-preis > section.menu-items > dl.getrank dd.beschreibung {
  grid-area: titel;
  border-color: green;
}
html body main .wp-block-lazyblock-gerichte > section.menu-items > dl.gericht dd.beschreibung, html body main .wp-block-lazyblock-gerichte > section.menu-items > dl.getrank dd.beschreibung,
html body main .wp-block-lazyblock-getranke-double-price > section.menu-items > dl.gericht dd.beschreibung,
html body main .wp-block-lazyblock-getranke-double-price > section.menu-items > dl.getrank dd.beschreibung,
html body main .wp-block-lazyblock-getranke-volumen-preis > section.menu-items > dl.gericht dd.beschreibung,
html body main .wp-block-lazyblock-getranke-volumen-preis > section.menu-items > dl.getrank dd.beschreibung {
  grid-area: beschreibung;
  border-color: green;
}
html body main .wp-block-lazyblock-gerichte > section.menu-items > dl.gericht dd.allergene, html body main .wp-block-lazyblock-gerichte > section.menu-items > dl.getrank dd.allergene,
html body main .wp-block-lazyblock-getranke-double-price > section.menu-items > dl.gericht dd.allergene,
html body main .wp-block-lazyblock-getranke-double-price > section.menu-items > dl.getrank dd.allergene,
html body main .wp-block-lazyblock-getranke-volumen-preis > section.menu-items > dl.gericht dd.allergene,
html body main .wp-block-lazyblock-getranke-volumen-preis > section.menu-items > dl.getrank dd.allergene {
  grid-area: allergene;
}
html body main .wp-block-lazyblock-gerichte > section.menu-items > dl.gericht dd.titel, html body main .wp-block-lazyblock-gerichte > section.menu-items > dl.getrank dd.titel,
html body main .wp-block-lazyblock-getranke-double-price > section.menu-items > dl.gericht dd.titel,
html body main .wp-block-lazyblock-getranke-double-price > section.menu-items > dl.getrank dd.titel,
html body main .wp-block-lazyblock-getranke-volumen-preis > section.menu-items > dl.gericht dd.titel,
html body main .wp-block-lazyblock-getranke-volumen-preis > section.menu-items > dl.getrank dd.titel {
  grid-area: titel;
}
html body main .wp-block-lazyblock-gerichte > section.menu-items > dl.gericht dd.preis.empty, html body main .wp-block-lazyblock-gerichte > section.menu-items > dl.getrank dd.preis.empty,
html body main .wp-block-lazyblock-getranke-double-price > section.menu-items > dl.gericht dd.preis.empty,
html body main .wp-block-lazyblock-getranke-double-price > section.menu-items > dl.getrank dd.preis.empty,
html body main .wp-block-lazyblock-getranke-volumen-preis > section.menu-items > dl.gericht dd.preis.empty,
html body main .wp-block-lazyblock-getranke-volumen-preis > section.menu-items > dl.getrank dd.preis.empty {
  text-align: center;
}
html body main .wp-block-lazyblock-gerichte > section.menu-items > dl.gericht dd.preis-1, html body main .wp-block-lazyblock-gerichte > section.menu-items > dl.gericht dd.volumen, html body main .wp-block-lazyblock-gerichte > section.menu-items > dl.getrank dd.preis-1, html body main .wp-block-lazyblock-gerichte > section.menu-items > dl.getrank dd.volumen,
html body main .wp-block-lazyblock-getranke-double-price > section.menu-items > dl.gericht dd.preis-1,
html body main .wp-block-lazyblock-getranke-double-price > section.menu-items > dl.gericht dd.volumen,
html body main .wp-block-lazyblock-getranke-double-price > section.menu-items > dl.getrank dd.preis-1,
html body main .wp-block-lazyblock-getranke-double-price > section.menu-items > dl.getrank dd.volumen,
html body main .wp-block-lazyblock-getranke-volumen-preis > section.menu-items > dl.gericht dd.preis-1,
html body main .wp-block-lazyblock-getranke-volumen-preis > section.menu-items > dl.gericht dd.volumen,
html body main .wp-block-lazyblock-getranke-volumen-preis > section.menu-items > dl.getrank dd.preis-1,
html body main .wp-block-lazyblock-getranke-volumen-preis > section.menu-items > dl.getrank dd.volumen {
  grid-area: preis-1;
}
html body main .wp-block-lazyblock-gerichte > section.menu-items > dl.gericht dd.preis-2, html body main .wp-block-lazyblock-gerichte > section.menu-items > dl.getrank dd.preis-2,
html body main .wp-block-lazyblock-getranke-double-price > section.menu-items > dl.gericht dd.preis-2,
html body main .wp-block-lazyblock-getranke-double-price > section.menu-items > dl.getrank dd.preis-2,
html body main .wp-block-lazyblock-getranke-volumen-preis > section.menu-items > dl.gericht dd.preis-2,
html body main .wp-block-lazyblock-getranke-volumen-preis > section.menu-items > dl.getrank dd.preis-2 {
  grid-area: preis-2;
}
html body footer #scrolltotop {
  background: none;
  border: none;
  z-index: 998;
  padding-right: 2ch;
}
html body footer #scrolltotop:after {
  content: " ↑";
  position: absolute;
}
html body footer #scrolltotop::-moz-focus-inner {
  border: 0;
  padding-left: 0;
  padding-right: 0;
  margin-left: 1em;
}
html body footer #scrolltotop:hover {
  cursor: pointer;
  cursor: n-resize;
  color: #F9F6EE;
}
html body footer #scrolltotop:hover:after {
  animation: spring 2s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
}
html body footer #scrolltotop:focus, html body footer #scrolltotop:active {
  outline: none;
}

span.ampersand {
  position: relative;
  display: inline-block;
  visibility: hidden;
  width: 2ch;
  overflow: visible;
}
h2 > span.ampersand {
  padding-right: 0.75ch;
  background-color: red;
}
span.ampersand::after {
  position: absolute;
  top: 0;
  left: 0;
  visibility: visible;
  content: "&";
  text-box: trim-both cap alphabetic;
  font-family: "Allura", cursive;
  font-weight: 500;
  font-size: 1.75em;
  overflow: visible;
}

img {
  max-height: 60vh;
  max-width: min(100vw, 100%);
  height: auto;
  width: auto;
}

body .hidden {
  display: none;
}/*# sourceMappingURL=style.css.map */