@charset "utf-8";
/* CSS Document */
/* ############################## CSS RESET START ############################## */
* {
  margin-top: 0;
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  /* iOS default border-radius bei Formularen & Buttons verhindern */
  outline: 0;
  box-shadow: none;
  list-style: none;
  -webkit-box-sizing: border-box;
  /* alle Boxgrößen inkl. margin, padding, border berechnen */
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-text-size-adjust: none;
  /* automatische Textskalierung verhindern */
  -ms-text-size-adjust: none;
  -webkit-appearance: none;
  /* native Browserstyles verhindern */
  -moz-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: /*rgba(0,0,0,0.30);*/ transparent;
  /* tap Feedback verhindern */
}
*:before, *:after { /* Pseudoelemente werden durch * nicht angesprochen */
  box-sizing: inherit;
}
textarea { /* Scrollbalken in IE für Formular-Textfelder entfernen */
  overflow: auto;
}
img, object, embed, video { /* Skalierung der Bilder auf maximal 100% begrenzen */
  max-width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 1px;
}
.nowrap {
  white-space: nowrap;
}

/* KORREKTUR: Platzhalter im Button anzeigen, aber aus der Liste entfernen */
/* Notwendig, da appearance:none die native hidden-Logik in Safari (iOS) oft deaktiviert */
option[hidden] {
  display: none !important;
}
/* ############################### CSS RESET END ###############################

/* ################# BROWSER- & DEVICESPECIFIC ADAPTIONS START ################# */
/* FIREFOX ===================================================================== */
/*@media screen and (min--moz-device-pixel-ratio:0) {
}*/
/*WEBKIT*/
/*@media screen and (-webkit-min-device-pixel-ratio:0) {
}*/
/* INTERNETEXPLORER ============================================================ */
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /*vermeidet Height-Rendering-Fehler bei verschachtelten Flexboxen*/
  .main, section, article, div {
    min-height: 1px;
  }
}
/*EDGE ========================================================================= */
/* HIGH RESOLUTION DEVICES ===================================================== */
/*@media screen and (-webkit-min-device-pixel-ratio: 1.25), (min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
}*/
/* ################# BROWSER- & DEVICESPECIFIC ADAPTIONS END ################### */
/* ############################# CSS BASICS START ############################## */
/* el-messiri-regular - latin */
@font-face {
  font-family: 'El Messiri';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/el-messiri-v5-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('El Messiri'), local('ElMessiri-Regular'), url('../fonts/el-messiri-v5-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/el-messiri-v5-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/el-messiri-v5-latin-regular.woff') format('woff'), /* Modern Browsers */ url('../fonts/el-messiri-v5-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/el-messiri-v5-latin-regular.svg#ElMessiri') format('svg'); /* Legacy iOS */
}
/* el-messiri-500 - latin */
@font-face {
  font-family: 'El Messiri';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/el-messiri-v5-latin-500.eot'); /* IE9 Compat Modes */
  src: local('El Messiri Medium'), local('ElMessiri-Medium'), url('../fonts/el-messiri-v5-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/el-messiri-v5-latin-500.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/el-messiri-v5-latin-500.woff') format('woff'), /* Modern Browsers */ url('../fonts/el-messiri-v5-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/el-messiri-v5-latin-500.svg#ElMessiri') format('svg'); /* Legacy iOS */
}
/* el-messiri-600 - latin */
@font-face {
  font-family: 'El Messiri';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/el-messiri-v5-latin-600.eot'); /* IE9 Compat Modes */
  src: local('El Messiri SemiBold'), local('ElMessiri-SemiBold'), url('../fonts/el-messiri-v5-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/el-messiri-v5-latin-600.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/el-messiri-v5-latin-600.woff') format('woff'), /* Modern Browsers */ url('../fonts/el-messiri-v5-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/el-messiri-v5-latin-600.svg#ElMessiri') format('svg'); /* Legacy iOS */
}
/* el-messiri-700 - latin */
@font-face {
  font-family: 'El Messiri';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/el-messiri-v5-latin-700.eot'); /* IE9 Compat Modes */
  src: local('El Messiri Bold'), local('ElMessiri-Bold'), url('../fonts/el-messiri-v5-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/el-messiri-v5-latin-700.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/el-messiri-v5-latin-700.woff') format('woff'), /* Modern Browsers */ url('../fonts/el-messiri-v5-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/el-messiri-v5-latin-700.svg#ElMessiri') format('svg'); /* Legacy iOS */
}
body::selection {} /*Mit dem Pseudoelement kann die Vorder- und Hintergrundfarbe von ausgewählten Elementen (z.B. markiertem Text) bestimmt werden. */
input:focus, textarea:focus, select:focus { /* Fokus für Eingabefelder definieren */
}
h1 {
    display: inline-block;
    font-size: 1.075em;
    color: #FFFFFF;
    margin-top: 1.5em;
    font-weight: normal;
    text-align: center;
    margin-bottom: 0.3em;
    border: 1px solid #555555;
    border-radius: 99px;
    background-color: #567700;
    padding-left: 1em;
    padding-right: 1em;
    padding-top: 6px;
    padding-bottom: 3px;
    line-height: 1.4em;
}
h2 {
  font-size: 1em;
  display: flex;
  margin-top: 0.8em;
  color: #252525;
  justify-content: flex-start;
  margin-bottom: 0.3em;
  /* [disabled]padding-left: 1em; */
  font-weight: 600;
}
h3 {
  color: #252525;
  text-align: left;
  display: inline-block;
  background-color: #E1C77A;
  font-size: 1em;
  margin-top: 1.5em;
  text-decoration: underline;
  font-weight: 400;
}
h4 {
  font-size: 1em;
  display: flex;
  margin-top: 0.8em;
  color: #252525;
  justify-content: flex-start;
  margin-bottom: 0.3em;
  font-weight: normal;
  padding-left: 1em;
}
.meldung {
    background-color: #491F00;
    color: #FFFFFF;
    padding-left: 1.5em;
    padding-right: 1.5em;
    padding-top: 0.5em;
    padding-bottom: 1.5em;
    font-size: 1.2em;
    text-align: left;
    display: block;
    border: 5px dotted rgba(214,165,0,1.00);
}
.meldung-highlight {
  color: #FDC300;
}
.no_wrap {
  white-space: nowrap;
  margin-left: 0px;
  margin-right: 0px;
}
.highlight1 {
  color: #B81B00;
  line-height: inherit;
}
.smalltext {
  font-size: 0.8em;
}
.alert {
  display: none;
  margin-top: 1em;
  background-color: #DFDBCF;
  color: #202220;
  padding-top: 1em;
  padding-right: 1em;
  padding-bottom: 1em;
  padding-left: 1em;
  font-size: 1.13em;
  border: 1px solid #679647;
}
.none {
    display: none;
}
p {
  margin-top: 1em;
}
main a:link {
  color: #D03F00;
  text-decoration: none;
  line-height: 0em;
}
main a:visited {
  color: rgba(208, 63, 0, 1.00);
  text-decoration: none;
}
main a:hover {
  color: rgba(86, 119, 0, 1.00);
  text-decoration: none;
}
main a:active {
  color: inherit;
  text-decoration: none;
}
body {
  font-family: "El Messiri", sans-serif;
  color: #202220;
  background-color: #6d6038;
  overflow-y: scroll;
  background-attachment: fixed;
  line-height: normal;
  /* [disabled]font-weight: 500; */
}
.layout_wrapper {
  margin: 0 auto;
  max-width: 900px;
}
nav a.universal_hover {
  color: #000 !important; /*Android zeigt für Link-Typofarbe stets das Mouseevent an!*/
}
header a.universal_hover, footer a.universal_hover {
  color: #841400 !important; /*Android zeigt für Link-Typofarbe stets das Mouseevent an!*/
  padding-right: 0px;
}
header ul A:link {
  color: #000;
  text-decoration: none;
}
header ul A:visited {
  color: #000;
  text-decoration: none;
}
header ul A:hover {
  color: #841400;
  text-decoration: none;
}
header ul A:active {
  color: #841400;
  text-decoration: none;
}
nav ul A:link {
  color: #FFF;
  text-decoration: none;
}
nav ul A:visited {
  color: #FFF;
  text-decoration: none;
}
nav ul A:hover {
  color: #000;
  text-decoration: none;
}
nav ul A:active {
  color: #000;
  text-decoration: none;
}
footer ul A:link {
  color: #000;
  text-decoration: none;
}
footer ul A:visited {
  color: #000;
  text-decoration: none;
}
footer ul A:hover {
  color: #000;
  text-decoration: none;
}
footer ul A:active {
  color: #000;
  text-decoration: none;
}
/* ############################### CSS BASICS END ############################## */
/* MEDIA QUERY MOBILE ========================================================== */
@media screen and (min-width:0px) {
  header {
    margin-top: 20px;
  }
  header .header_image {
    width: 100%;
    padding-top: 0px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    padding-left: 0px;
    padding-right: 0px;
  }
  .header_image img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }
  header ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    /* [disabled]height: 40px;
*/
    color: #000000;
    background-color: #e1c77a;
    padding-top: 8px;
    border-top: 1px solid #15110C;
    border-bottom: 1px solid #252525;
    border-left: 0px solid #7E6F41;
    border-right: 0px solid #7E6F41;
    padding-bottom: 5px;
  }
header ul:last-child  {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    /* [disabled]height: 40px;
*/
    color: #000000;
    background-color: #E1C77A;
    padding-top: 8px;
    border-top: 0px solid #15110C;
    border-bottom: 1px solid #252525;
    border-left: 0px solid #7E6F41;
    border-right: 0px solid #7E6F41;
    padding-bottom: 5px;
  }
.slider ul li:first-child {
    font-weight: bold;
}

.slider ul {
    width: 100vw;       /* Jedes ul nimmt die volle Viewport-Breite ein */
    flex-shrink: 0;     /* Verhindert, dass Flexbox die ul zusammenquetscht */
    margin: 0;
    padding-top: 2w;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 1.5vw;    /* Etwas Abstand nach oben/unten */
    text-align: center; /* Zentriert die Listenpunkte */
    display: block;
}
    
  header ul li {
    white-space: nowrap;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 5.4vw;
  }
  header ul li a {
    cursor: pointer;
  }
  nav {}
  nav ul {
    display: none;
    font-size: 1.375em;
    background-color: #ad4a03;
    padding-top: 9px;
    padding-left: 15%;
    padding-right: 15%;
    color: #000000;
    padding-bottom: 8px;
    border-bottom-width: 0px;
  }
  nav ul li {
    border-top: 1px solid #15110C;
    height: 43px;
    display: flex;
    align-items: center;
    width: 100%;
    /* [disabled]padding-top: 3px;
*/
  }
  nav ul li:first-child {
    border-top: 0px solid #15110C;
    white-space: nowrap;
  }
  nav ul li a {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    padding-top: 3px;
    white-space: nowrap;
  }
  nav span.selected {
    color: #000000;
    border-bottom-width: medium;
  }
  nav .menu_button_bar {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    background-color: #ad4a03;
    cursor: pointer;
    border-bottom: 1px solid #252525;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
  }
  nav #mobile_menu_button {}
  /* MENU ICON START ============================================================= */
  .menu_icon {
    display: flex;
    position: relative;
    width: 28px;
    height: 30px;
    cursor: pointer;
    background-color: transparent;
    transition: background 0.3s/;
    top: 0;
    right: 0;
  }
  .menu_icon span {
    display: block;
    position: absolute;
    top: 13px;
    left: 0;
    right: 0;
    height: 4px;
    background: #fff;
  }
  .menu_icon span:before, .menu_icon span:after {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #fff;
    content: "";
  }
  .menu_icon span:before {
    top: -9px;
  }
  .menu_icon span:after {
    bottom: -9px;
  }
  .menu_icon-X span {
    transition: background 0s 0.3s;
  }
  .menu_icon-X span:before, .menu_icon-X span:after {
    transition-duration: 0.3s, 0.3s;
    transition-delay: 0.3s, 0s;
  }
  .menu_icon-X span:before {
    transition-property: top, transform;
  }
  .menu_icon-X span:after {
    transition-property: bottom, transform;
  }
  .menu_icon-X.is-active span {
    background: none;
  }
  .menu_icon-X.is-active span:before {
    top: 0;
    transform: rotate(45deg);
  }
  .menu_icon-X.is-active span:after {
    bottom: 0;
    transform: rotate(-45deg);
  }
  .menu_icon-X.is-active span:before, .menu_icon-X.is-active span:after {
    transition-delay: 0s, 0.3s;
  }
  /* MENU ICON END =============================================================== */ main {
    display: flex;
    flex-direction: column;
    background-color: #e1c77a;
    border-left: 0px solid #7E6F41;
    border-right: 0px solid #7E6F41;
    /* [disabled]padding-left: 2em;
*/
    /* [disabled]padding-right: 2em;
*/
    min-height: 700px;
    /* [disabled]padding-bottom: 2em;
*/
    /* [disabled]padding-top: 2em;
*/
  }
  main .mainimage {
    /* [disabled]border-top: 1px solid #252525;
*/ /*border-bottom: 1px solid #252525;*/
  }
  main .mainimage ul {
    position: absolute;
    right: 0px;
    font-size: 3.571vw;
    margin-right: 0.6em;
    color: #FFFFFF;
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-end;
    justify-content: center;
    top: 0px;
    height: 100%;
  }
  main .mainimage ul li {
    background-color: #D03F00;
    padding-right: 0.4em;
    padding-left: 0.4em;
    margin-top: 1.071vw;
    display: flex;
    height: 1.6em;
    align-items: center;
    flex-grow: row nowrap;
    padding-top: 0.2em;
    border-top-left-radius: 0.7em;
    border-bottom-right-radius: 0.7em;
  }
  main .mainimage ul li:first-child {
    margin-top: 0px;
  }
  main .mainimage ul li.green_bg {
    background-color: #567700;
    font-size: 0.9em;
  }
  main .mainimage ul li i {
    margin-top: -0.245em;
    font-size: 1em;
    margin-left: 0.4em;
    opacity: 0.7;
    /* [disabled]display: none;
*/
  }
  main .mainimage ul li.green_bg i {
    margin-top: -0.2em;
    font-size: 1em;
    margin-left: 0.4em;
    /* [disabled]display: none;
*/
  }
  main div.content {
    padding-left: 0.75em;
    padding-right: 0.75em;
    padding-bottom: 1.5em;
    font-size: 1.2em;
    /* [disabled]font-weight: 500; */
  }
  div.content .imbiss_image_container {
    display: flex;
    flex-direction: column;
    margin-top: 0em;
  }
  div.content .square_image_wrapper {
    display: flex;
    justify-content: center;
    margin-top: 1.5em;
  }
  div.content .square_image_wrapper div {
    width: calc(50% - 1.7855%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(126, 111, 65, 1.00);
  }
  .square_image_wrapper div:first-child {
    margin-right: 1.5em;
  }
  div.content .ratio21_image_wrapper {
    margin-top: 1.5em;
  }
  div.content .ratio21_image_wrapper div {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(126, 111, 65, 1.00);
  }
  div.content .teaser_partyplatte_wrapper {
    display: flex;
    justify-content: left;
    align-items: flex-start;
    margin-top: 0em;
    margin-bottom: 0em;
    flex-direction: column-reverse;
  }
  div.content .teaser_partyplatte_wrapper div {
    width: 100%;
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
  }
  div.content .teaser_partyplatte_wrapper div:first-child {
    width: 100%;
    margin-top: 1em;
    margin-right: 0px;
    margin-left: 0px;
  }
  .image50_wrapper {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 0.75em;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0em;
  }
  .image50_wrapper div:first-child {
    /* [disabled]margin-bottom: 2em;
*/
    margin-right: auto;
    width: 80%;
  }
  .image50_wrapper div:last-child {
    width: 80%;
    margin-right: 0px;
    margin-left: auto;
    margin-top: 2em;
  }
  /* MAIL-FORMULAR START ============================================================= */
  form .form {}
  form .message_ratio_wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 34%;
    min-height: 200px;
  }
  form .message {
    width: 100%;
    line-height: inherit;
    height: 100%;
    resize: none;
    /*verhindert vertikalen Abstand der Textarea in Chrome*/
    display: block;
    padding-top: 0.6em;
    padding-left: 0em;
    position: absolute;
    border-radius: 20px;
  }
  form .form_text {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border-color: #B0B0B0;
    border-style: solid;
    /* [disabled]border-width: 1px;
*/
    padding-left: 1em;
    padding-right: 1em;
    background-color: #FBDE88;
    /* [disabled]-webkit-box-shadow: 1px 1px 7px rgba(21,17,12,1.00);
*/
    /* [disabled]box-shadow: 1px 1px 7px rgba(21,17,12,1.00);
*/
      
      
  }
  form input:focus, textarea:focus, select:focus {
    border: 1px #95C11F solid;
    box-shadow: 0px 0px 4px #95C11F;
  }
/* Normalzustand für das Select-Feld (wie deine Placeholder) */
select.form_text {
  color: inherit;
  opacity: 1;
  outline: none;
}

/* Fokus-Zustand für das Select-Feld (entspricht opacity 0.5 bei Fokus) */
select.form_text:focus {
  opacity: 0.5;
  border: 1px #95C11F solid; /* Damit es zu deinem oberen Block passt */
  box-shadow: 0px 0px 4px #95C11F;
}    
    
  /* Placeholder in Textfeldern formatieren */
  .form_text::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
  }
  .form_text:focus::-webkit-input-placeholder {
    color: inherit;
    opacity: 0.5;
  }
  .form_text::-moz-placeholder {
    color: inherit;
    opacity: 1;
  }
  .form_text:focus::-moz-placeholder {
    color: inherit;
    opacity: 0.5;
  }
  .form_text:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
  }
  .form_text:focus:-ms-input-placeholder {
    color: #B0B0B0;
    opacity: 0.5;
  }
  form .textfield_container {
    display: flex;
    flex-direction: column;
    margin-top: 0px;
    align-items: flex-start;
    justify-content: flex-start;
  }
  form .textfield {
    width: 100%;
    margin-top: 24px;
    height: 2em;
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding-top: 0.2em;
    /* [disabled]border-width: 1px;
*/
    /* [disabled]border-color: #AD4A03;
*/
  }
form .selection {
    width: 100%;
    margin-top: 24px;
    height: 2em;
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding-top: 0.2em;
    /* [disabled]border-width: 1px;
*/
    /* [disabled]border-color: #AD4A03;
*/
    margin-bottom: 24px;
  }
  form .textfield_route {
    width: 100%;
    height: 2em;
    line-height: 2em;
    margin-top: 24px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    border-radius: 20px;
    padding-top: 0.2em;
    margin-bottom: 2em;
  }
  /*DATENSCHUTZ CHECK START =============================================================*/
  /* Customize the label (the container) */
  .container {
    display: block;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    left: -2em;
    margin-left: 2em;
  }
  /* Hide the browser's default checkbox */
  .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    background-color: #AA4095;
    margin-top: 1.65em;
    margin-left: 0.6em;
  }
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0.10em;
    left: 0.20em;
    height: 1.3em;
    width: 1.3em;
    background-color: #D03F00;
    border-color: #8E8E8E;
    border-style: solid;
    /* [disabled]border-width: 1px;
*/
    border-radius: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  /* On mouse-over, add background color */
  .container:hover input ~ .checkmark {
    background-color: #567700;
    border: 0px solid #8E8E8E;
  }
  /* When the checkbox is checked, add a blue background */
  .container input:checked ~ .checkmark {
    background-color: #567700;
    border: 0px solid #8E8E8E;
  }
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  /* Show the checkmark when checked */
  .container input:checked ~ .checkmark:after {
    display: block;
  }
  /* Style the checkmark/indicator */
  .container .checkmark:after {
    left: 0.4em;
    top: 0.1em;
    width: 0.45em;
    height: 0.9em;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  form .datenschutz-wrapper {
    display: flex;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 24px;
    margin-bottom: 24px;
  }
  /*DATENSCHUTZ CHECK END =============================================================*/
  form .submit_button {
    display: flex;
    margin-top: 0em;
    font-size: 1.2em;
    color: #FFF;
    border: 0px solid rgba(176, 176, 176, 1.00);
    padding-left: 1em;
    padding-right: 1em;
    margin-left: auto;
    margin-right: auto;
    background-color: #D03F00;
    cursor: pointer;
    height: 2em;
    align-items: center;
    border-radius: 30px;
    font-family: "El Messiri", sans-serif;
    padding-top: 0.2em;
  }
  form .submit_button.universal_hover {
    background-color: #567700;
  }
  .opt_out {
    display: flex;
    justify-content: center;
    margin-top: 0.75em;
    margin-bottom: 1.5em;
    font-family: "El Messiri", "El Messiri Medium", "El Messiri SemiBold";
  }
  .opt_out button {
    display: flex;
    text-align: center;
    border-radius: 11px;
    color: rgba(0, 0, 0, 1.00);
    font-family: "El Messiri", sans-serif;
    font-size: 0.75em;
    padding-left: 5px;
    padding-top: 1px;
    padding-right: 5px;
    padding-bottom: 0px;
    cursor: pointer;
  }
  form .submit_button:focus {
    border: none;
    box-shadow: none;
  }
  p.confirmation_text {
    text-align: left;
    display: block;
    color: rgba(37, 37, 37, 1.00);
    /* [disabled]font-size: 1.13em;
*/
    background-color: rgba(251, 222, 136, 1.00);
    border-radius: 50px;
    padding-top: 1em;
    padding-right: 1em;
    padding-bottom: 1em;
    padding-left: 1em;
  }
  #counter {
    color: rgba(132, 20, 0, 1.00);
  }
  div.ratio_map_wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 67%;
    height: 0;
    min-height: 470px;
    display: flex;
  }
  div#map {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    /* [disabled]right: 0px;
*/
    /* [disabled]bottom: 0px;
*/
    border-radius: 20px;
    /* [disabled]margin-top: 24px;
*/
    /* [disabled]margin-bottom: 8px;
*/
    background-color: #BBBBBB;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .map-typo {
    font-family: Lato, sans-serif;
    font-size: 14px;
    padding-top: 0em;
    padding-right: 0em;
    padding-bottom: 0em;
    padding-left: 0em;
    line-height: 1.4em;
    letter-spacing: 0.01em;
    color: rgba(21, 17, 12, 1.00);
    width: auto;
  }
  .map-typo span {
    /* [disabled]font-size: 14px;
*/
    font-weight: 700;
    color: rgba(21, 17, 12, 1.00);
  }
  /* MAIL-FORMULAR END ============================================================= */
  .container_nav_gerichte {
    margin-top: 1.5em;
    display: flex;
    margin-bottom: 0em;
  }
  .container_nav_gerichte ul {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-left: 0em;
  }
  .container_nav_gerichte ul li:first-child {
    margin-right: 12px;
    margin-left: 0em;
  }
  .container_nav_gerichte ul li {
    background-color: rgba(126, 111, 65, 1.00);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    font-size: 5.5vw;
    color: rgba(255, 255, 255, 1.00);
    height: 1.6em;
    padding-top: 0.2em;
    cursor: pointer;
    margin-left: 12px;
    margin-right: 0em;
    width: 407px;
    /* [disabled]border: 1px solid #555555;
*/
  }
  .container_nav_gerichte span {
    display: none;
  }
  .container_nav_gerichte ul li:hover {
    /* [disabled]background-color: rgba(86,119,0,1.00);
*/
  }
  ul li.nav_gerichte_highlight {
    background-color: #D03F00;
  }
  ul li.nav_gerichte_highlight2 {
    background-color: #567700;
  }
  .container_tellergerichte {}
  .container_sandwiches {}
  .wrapper_gerichte {
    display: flex;
    flex-direction: column;
  }
  .gerichte {
    display: flex;
    flex-flow: column nowrap;
    border-radius: 13px;
    margin-top: 1.5em;
    border: 1px solid rgba(126, 111, 65, 1.00);
    overflow: hidden;
  }
  .gerichte .bild {
    position: relative;
  }
  .gerichte .typo {
    /* [disabled]background-color: #2E1D19;
*/
    position: absolute;
    top: 0.8em;
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
    flex-direction: column;
    padding-bottom: 0em;
    padding-left: 0em;
    padding-right: 0em;
    padding-top: 0em;
    color: #FFF;
    font-size: 4vw;
  }
  .gerichte .name {
    color: #FFFFFF;
    font-size: 1.2em;
    line-height: 1em;
  }
  .gerichte .beschreibung {
    color: #d9c07f;
    font-size: 0.75em;
    margin-top: 0em;
    line-height: 1.7em;
    width: 100%;
  }
  .gerichte .preise {
    font-size: 1.1em;
    color: #d9c07f;
    margin-top: -2px;
  }
  .gerichte .normale_preise {
    position: absolute;
    right: 8px;
    background-color: rgba(154, 126, 38, 1.00);
    border-radius: 3.5em / 2em;
    bottom: 48px;
    font-size: 1.25em;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* [disabled]padding-top: 0.25em;
*/
    color: rgba(255, 255, 255, 1.00);
    border-color: rgba(46, 29, 25, 1.00);
    border-style: solid;
    /* [disabled]border-width: thin;
*/
    padding-left: 0.3em;
    padding-right: 0.3em;
    height: 2em;
    padding-bottom: 0.1em;
    font-weight: 600;
  }
  .gerichte .xl_preise {
    position: absolute;
    right: 44px;
    background-color: rgba(154, 126, 38, 1.00);
    border-radius: 4em / 2em;
    bottom: 8px;
    font-size: 1.25em;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* [disabled]padding-top: 0.25em;
*/
    color: rgba(255, 255, 255, 1.00);
    border-color: rgba(46, 29, 25, 1.00);
    border-style: solid;
    /* [disabled]border-width: thin;
*/
    padding-left: 0.3em;
    padding-right: 0.3em;
    height: 2em;
    padding-bottom: 0.1em;
    font-weight: 600;
  }
  .gerichte_platzhalter {
    display: none;
  }
  .bild .xl_preise span {
    color: rgba(21, 17, 12, 1.00);
    margin-right: 0.25em;
    font-size: 0.75em;
    padding-bottom: 0.15em;
    /* [disabled]font-weight: 700;
*/
  }
  .preistafel {
    display: flex;
    padding-top: 0.5em;
    padding-right: 1em;
    padding-bottom: 0.5em;
    padding-left: 1em;
    border-radius: 25px;
    background-color: #841400;
    color: #FFFFFF;
    font-weight: normal;
    justify-content: space-between;
    width: 13.8em;
    margin-top: 0.2em;
  }
  .preistafel div:last-child {
    text-align: right;
  }
  .highlight_preistafel {
    color: #E1C77A;
    font-size: 0.8em;
  }
  footer {
    display: flex;
    background-color: #E1C77A;
    height: 35px;
    font-size: 13px;
    color: #000000;
    padding-top: 3px;
    padding-left: 0em;
    padding-right: 0em;
    border-bottom-left-radius: 11px;
    border-bottom-right-radius: 10px;
    margin-bottom: 40px;
    border-top: 1px solid #252525;
  }
  footer ul {
    display: flex;
    justify-content: space-around;
    width: 100%;
    align-items: center;
  }
  footer ul li {
    padding-left: 0.7em;
    padding-right: 0.7em;
  }
  footer div {
    display: none;
  }
  #back_to_top {
    width: 40px;
    height: 40px;
    display: flex;
    padding-bottom: 2px;
    border-radius: 75px;
    background-color: rgba(126, 111, 65, 1.00);
    justify-content: center;
    align-items: center;
    right: 4%;
    position: fixed;
    bottom: 80px;
    opacity: 0.5;
  }
  #back_to_top img {
    height: 1em;
  }
  #back_to_top.universal_hover {
    background-color: rgba(195, 154, 27, 1.00);
  }
  main .mainimage img {}
.slider {
    display: flex;
    width: 100%;
    max-width: 900px;
}
header .header_kontaktdaten {
    width: 100%;
    position: relative;
    height: auto;
    /* Höhe wird durch den Inhalt bestimmt */
    overflow: hidden;
    /* Versteckt Overflow nur innerhalb des Containers */
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 900px;
  }.slider ul li i {
    width: auto;
    margin-right: 0.25em;
}
}
header .kontaktdaten {
    display: none;
}


@media screen and (min-width:330px) {
  header ul li {
    font-size: 1.13em;
  }
.slider ul li {
    white-space: nowrap;
    font-size: clamp(15px, 5.4vw, 22px);
    line-height: 1.5em;
    margin-left: 0.5em;
    margin-right: 0.5em;
    text-align: center;
}

  main div.content {
    padding-left: 1.5em;
    padding-right: 1.5em;
    padding-bottom: 1.5em;
    font-size: 1.2em;
    /* [disabled]font-weight: 500; */
  }
}
@media screen and (min-width:468px) {
  /* FORM ================================== */
  form .message_ratio_wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 34%;
  }
/* FORM ================================== */
  form .popup_ratio_wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 24px;
    -webkit-box-shadow: 0px 0px;
    box-shadow: 0px 0px;
    /* [disabled]background-color: rgba(223,240,0,1.00); */
  }
  form .message {
    height: 100%;
    position: absolute;
  }
  form .ratio_map_wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 67%;
    height: 0;
  }
  form .map-typo {
    font-family: "El Messiri", sans-serif;
    font-size: 14px;
    padding-top: 0em;
    padding-right: 0em;
    padding-bottom: 0em;
    padding-left: 0em;
    line-height: 1.4em;
  }
  form .textfield_container {
    display: flex;
    flex-direction: row;
    margin-top: 0px;
    align-items: center;
    justify-content: space-between;
  }
  form .textfield {
    width: calc(50% - 1.7855vw);
    display: flex;
  }
form .selection {
    /* [disabled]width: calc(50% - 1.7855vw); */
    display: flex;
  }
  form .textfield_route {
    width: calc(50% - 10px);
  }
}
@media screen and (min-width:568px) {
  main .mainimage ul {
    font-size: 1.25em;
  }
  .image50_wrapper {
    display: flex;
    justify-content: left;
    width: 100%;
    margin-bottom: 0.75em;
    flex-direction: row;
    margin-top: 0px;
  }
  .image50_wrapper div img {}
  .image50_wrapper div:first-child {
    /* [disabled]margin-bottom: 2em;
*/
    margin-right: auto;
    width: 75%;
  }
  .image50_wrapper div:last-child {
    width: 75%;
    margin-right: 0px;
    margin-left: auto;
    margin-top: 0em;
  }
}
@media screen and (min-width:667px) {
  main div.content {
    padding-left: 1.5em;
    padding-right: 1.5em;
    padding-bottom: 1.5em;
    font-size: 1.2em;
  }
  .container_nav_gerichte ul li {
    display: flex;
    font-size: 1.25em;
    height: 1.6em;
    width: 407px;
  }
  .container_nav_gerichte span {
    display: block;
  }
  /* MAIL-FORMULAR END ============================================================= */
  .wrapper_gerichte {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 0px;
  }
  .gerichte:first-child {
    margin-right: 1.5em;
  }
  .gerichte_platzhalter {
    width: 600px;
    display: flex;
  }
  .gerichte .typo {
    /* [disabled]background-color: #2E1D19;
*/
    position: absolute;
    top: 0.8em;
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
    flex-direction: column;
    padding-bottom: 0em;
    padding-left: 0em;
    padding-right: 0em;
    padding-top: 0em;
    color: #FFF;
    font-size: 2vw;
  }
  div.content .teaser_partyplatte_wrapper {
    display: flex;
    justify-content: left;
    align-items: flex-start;
    margin-top: 1em;
    margin-bottom: 0em;
    flex-direction: row;
  }
  div.content .teaser_partyplatte_wrapper div {
    width: 50%;
    margin-top: 0em;
    margin-right: 0px;
    margin-left: 0.75em;
  }
  div.content .teaser_partyplatte_wrapper div:first-child {
    width: 50%;
    margin-top: 0px;
    margin-right: 0.75em;
    margin-left: 0px;
  }
}
/* MEDIA QUERY DESKTOP ========================================================= */
@media screen and (min-width:900px) {
  header {
    margin-top: 20px;
  }
  header .header_image {
    width: 100%;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
  }
  .header_image img {
    border-width: 0px;
}
  header ul {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    align-items: center;
    height: 34px;
    border-top: 1px solid #15110C;
    border-bottom: 1px solid #252525;
    border-left: 0px solid #7E6F41;
    border-right: 0px solid #7E6F41;
    padding-right: 4px;
    padding-left: 4px;
  }
header ul:last-child {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    align-items: center;
    height: 32px;
    color: #000000;
    /* [disabled]background-color: #E1C77A; */
    /* [disabled]border-top: 0px solid #15110C; */
    /* [disabled]border-bottom: 1px solid #252525; */
    /* [disabled]border-left: 0px solid #7E6F41; */
    /* [disabled]border-right: 0px solid #7E6F41; */
    padding-left: 2px;
    padding-right: 1px;
  }
header .kontaktdaten ul:first-child {
    background-color: rgba(216,179,100,1.00);
}

  header ul li {
    font-size: 1em;
  }
.kontaktdaten ul li:first-child {
    font-weight: bold;
}

  nav ul {
    display: flex !important;
    justify-content: space-around;
    align-items: center;
    height: 40px;
    font-size: 1.375em;
    background-color: #ad4a03;
    padding-left: 30px;
    padding-right: 30px;
    color: #000000;
    flex-direction: row;
    padding-top: 0px;
    padding-bottom: 0px;
    border-bottom: 1px solid #252525;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    border-top: 1px solid rgba(0,0,0,1.00);
  }
ul li a {
}

  nav ul li {
    border-top: 0px solid #15110C;
    height: auto;
    width: auto;
  }
  nav ul li a {
    /* [disabled]display: inline;
*/
    /* [disabled]width: auto;
*/
    padding-top: 3px;
    height: 43px;
    white-space: nowrap;
  }
  nav .menu_button_bar {
    display: none
  }
  main .mainimage ul li {
    margin-top: 0.5em;
  }
  div.content .imbiss_image_container {
    display: flex;
    flex-direction: column;
    margin-top: 0px;
  }
  div.content .square_image_wrapper div {
    width: calc(50% - 16px);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(126, 111, 65, 1.00);
  }
  form .textfield {
    width: calc(50% - 16px);
    display: flex;
  }
form .selection {
    width: calc(50% - 16px);
    display: flex;
  }
  .container_nav_gerichte {
    margin-top: 1.5em;
    display: flex;
    margin-bottom: 0px;
  }
  .gerichte {
    display: flex;
    flex-flow: column nowrap;
    border-radius: 13px;
    margin-top: 1.5em;
    border: 1px solid rgba(126, 111, 65, 1.00);
    overflow: hidden;
    width: 407px;
    min-width: 407px;
  }
  .gerichte:first-child {
    margin-right: 1.5em;
  }
  .gerichte .typo {
    /* [disabled]background-color: #2E1D19;
*/
    position: absolute;
    top: 0.8em;
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
    flex-direction: column;
    padding-bottom: 0em;
    padding-left: 0em;
    padding-right: 0em;
    padding-top: 0em;
    color: #FFF;
    font-size: 1em;
  }
  p.confirmation_text {
    text-align: center;
    /* [disabled]font-size: 1.13em;
*/
  }
  footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #E1C77A;
    height: 35px;
    font-size: 13px;
    color: #000000;
    padding-top: 3px;
    padding-left: 1em;
    padding-right: 1em;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    margin-bottom: 40px;
  }
  footer ul {
    display: flex;
    width: auto;
  }
  footer ul li {
    padding-left: 1.6em;
    padding-right: 0px;
  }
  footer div {
    display: inline;
  }
  #back_to_top {
    right: calc(50% - 414px);
  }
header .kontaktdaten {
    display: block;
}
header .header_kontaktdaten {
    display: none;
}



}
.test {
  position: relative
}
.klammern {
  font-family: Gabriola, El Messiri, "sans-serif";
  font-size: 1.2em;
  color: #AD4A03;
}
