body {
    font-family: "Signika";
    font-size: 20px;
    font-weight: 300;
    color: #222222;
    margin: 0;
    padding: 0;
}

.lws_body {
/*    background: rgba(140,140,140, 0.7); /* grau */
/*    background: rgba(0,50,180, 0.7); /* blau */
/*    background: rgba(170,90,0, 0.7); /* braun */
    background: rgba(255,255,255, 0.7); /* weiß */
    background-repeat: no-repeat;
    background-attachment: fixed;
}

a
{
  text-decoration: none;
  color: #333;
  font-weight: 400;
  transition: color 0.3s ease, background-color 0.3s ease;
}

a:hover
{
  color: #ffbe50;
}

form {
  margin: 0;
}

input[type="file"] {
  font-family: "Signika";
  font-size: 70%;

}

p {
  margin: 10px 0;
}

ul {
  margin: 0;
}
ul li {
  padding-top: 2px;
  padding-bottom: 2px;
}

header,
footer {
  display: grid;
  align-items: center;
  justify-items: center;
  height: auto;
  z-index: 1;
}

header {
  grid-template-columns: repeat(8, auto);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  background-color: #ffbe50;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

footer {
    grid-template-columns: repeat(4, auto);
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.24);
    background-color: #ffbe50;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

header > a,
footer > a {
  justify-self: stretch;
  align-self: stretch;
  text-align: center;
  height: 58px;
  line-height: 58px;
  text-decoration: none;
  font-size: 22px;
  color: #212121;
  font-weight: 400;
}

header > a:hover,
footer > a:hover {
  background-color: #7F97A2;
}

.btn {
    background: #0071BC;
}

.grid { /* Standard-Grid */
  display: grid;
  grid-template-columns: minmax(825px, 50vw);
  grid-template-rows: auto 1fr auto;
  height: 100vh;
  justify-content: center;

}
.grid_s { /* Grid für Shop-Bearbeitung */
  display: grid;
  grid-template-columns: minmax(825px, 50vw);
  grid-template-rows: auto 1fr auto;
  height: 100vh;
  justify-content: center;

}

.banner1 {
  width: 100%;
  max-width:100%;
  max-height: 500px;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
}
.banner_q {
  float: right;
  max-width: 330px;
  height: auto;
  margin: 0 0 6px 10px;
}
.banner_h {
  float: right;
  width: auto;
  max-height: 360px;
  margin: 0 0 6px 10px;
}
.text-over-image {
  background-color: rgba(255, 255, 255, 1);
  position: absolute;
  top: 70px;
  width: 180px;
  height: 58px;
  padding-left: 20px;
  line-height: 58px;
  padding-right: 20px;
  color: rgba(0, 0, 0, 1);
  mix-blend-mode:lighten;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.seitentitel, .text-over-image {
  font-size: 200%;
  font-weight: bold;
}
.page {
  position: relative;
  top: -6px;
  margin: 0 0 8px 0;
}

.ueberschrift {
  margin-top: 22px;
  font-size: 110%;
  font-weight: bold;
}
.ueberschrift_eng {
  margin-top: 22px;
  margin-bottom: 2px;
  font-size: 110%;
  font-weight: bold;

}

.text {
  text-align: justify;
  hyphens: auto;
}
.text_l {
  text-align: left;
  hyphens: auto;
}

.small {
  font-size: 110%;
  font-weight: bold;
}
.klein {
  font-size: 80%;
}
.normal {
  font-weight: normal;
}
.rechts {
  float: left;
  text-align: right;
}


.content {
  background-color: #ffffff;
  z-index: 0;
  margin-bottom: 10px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 20px;
  -webkit-box-shadow: 0px 0px 300px -5px rgba(0,0,0,0.5);
  -moz-box-shadow: 0px 0px 300px -5px rgba(0,0,0,0.5);
  box-shadow: 0px 0px 300px -5px rgba(0,0,0,0.5);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.fehler, .erfolg, .hinweis {
  font-weight: bold;
}
.fehler {
  color: #D00;
}
.erfolg {
  color: #0C0;
}
.hinweis {
  color: #00D;
}

.bullet > li {
  list-style:circle;
  margin: 6px 0;
  text-align: left;
}

/* Shop */
.shop {
  width: 100%;
  height: fit-content;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.i-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  grid-area: i-img;
}

.i-title {
  font-weight: bold;
  hyphens: none;
}

.i-desc {
  padding: 0 10px 10px 10px;
  grid-area: i-desc;
  text-align: left;
  hyphens: auto;
  overflow: hidden;
}

.i-preis {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: 10px;
  justify-self: stretch;
  align-self: end;
  grid-area: i-preis;
}

.preis {
  font-weight: bold;
}

.anzahl {
  justify-self: right;
  align-self: end;
  padding: 0 10px 10px 0;
  font-size: 90%;
  font-weight: 400;
  grid-area: i-preis;
}

.number {
    background-color: #ddd;
    border: none;
    padding: 2px;
    width: 40px;
    line-height: 150%;
    font-size: 18px;
    text-align: center;
}

.item {
  background-color: #7F97A2;
  display: grid;
  width: 100%;
  height: 300px;
  border-radius: 4px;
  grid-template-columns: minmax(30px, 150px) 1fr;
  grid-template-rows: 250px 50px;
  grid-template-areas: 'i-img i-desc'
                       'i-img i-preis';
}

.item:hover {
  background-color: #98abb4;
  color: #333333;
}

.item > h3 {
  margin: 0;
}

.item > img {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.zurkasse {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(50px, 1fr);
  align-items: center;
  justify-items: end;
  width: 100%;
  border-radius: 4px;
  margin-top: 20px;
  margin-bottom: 0;
}

.b-submit {
  margin: 0;
  height: 50px;
  width: auto;
  padding: 4px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 4px;
  border: none;
  background-color: #7F97A2;
  font-family: "Signika", sans-serif;
  font-weight: bold;
  font-size: 100%;
  cursor: pointer;
}

.b-submit:hover {
  background-color: #ffbe50;
  transition: background-color 0.3s ease;
}

.f_feld {
  font-family: "Signika";
  font-size: 100%;
  font-weight: normal;
}
.f_but, .f_but_h {
  padding: 1px;
  border: none;
  border: solid 1px;
  border-color: #BBBBBB;
  border-radius: 4px;
  font-family: "Signika";
  font-size: 90%;
  cursor: pointer;
/*  font-weight: bold;
  background: #CCCCCC;
  background: linear-gradient(rgba(240,240,240,1) 0%, rgba(190,190,190,1) 100%);
  color: #104999;
  cursor: pointer;
  text-shadow: 2px 2px 1px rgba(240,248,255,.6);
  text-align: center; */
}
.f_but_h {
  padding: 2px 16px;
}
.f_but_h:hover {
  background-color: #ffbe50;
  transition: background-color 0.3s ease;
}

/* Shop-Artikel ("Lightbox") */
.lightbox {
	/** Default lightbox to hidden */
	display: none;

	/** Position and style */
	position: fixed;
	z-index: 40;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 80px 0 0 0;
	text-align: center;
	background: rgba(0,0,0,0.5);
}

.lightbox:target {
  outline: none; /* Remove default browser outline */
  display: block; /* Unhide lightbox */
}

.show_art {
  max-width: 800px;
  max-height: 73vh;
  overflow-y: auto;
  padding: 20px;
  margin: 0 auto;
  background-color: #DDD;
  color: #000;
  text-align: left;
  hyphens: auto;
  border-radius: 8px;
  box-shadow: 0 0 15px #fff;
}

.quittung {
  position: absolute;
  top: -50px;
}

.fett {
  font-weight: bold;
}
.h_fett {
  font-weight: 400;
}

/* Ende Shop */

/* Kasse */
.k_title {
  font-size: 130%;
  font-weight: bold;
}
.kasse {
  display: grid;
  grid-template-columns: 40px 1fr 80px 80px;
}
.k_epreis, .k_gpreis {
  text-align: right;
}
.k_gpreis {
  padding-right: 4px;
}
.k_spreis {
  padding-right: 4px;
  text-align: right;
  font-weight: bold;
}
.k_anz {
  text-align: center;
}
.k_summe {
  grid-column: 1 / 4;
  font-weight: bold;
  padding-left: 4px;
}
.kt, .kf { /* Kopf/Fusszeile orange Hintergrund */
  padding-top: 4px;
  padding-bottom: 4px;
  background-color: #ffbe50;
}
.kl1 { /* Zeile heller Hintergrund */
  padding-top: 2px;
  padding-bottom: 2px;
  background-color: #ffffee;
}
.kl2 { /* Zeile dunkler Hintergrund */
  padding-top: 2px;
  padding-bottom: 2px;
  background-color: #ffefcb;
}
.kblo {
  border-top-left-radius: 4px;
}
.kbro {
  border-top-right-radius: 4px;
}
.kblu {
  border-bottom-left-radius: 4px;
}
.kbru {
  border-bottom-right-radius: 4px;
}

/* Ende Kasse */

.border-bottom-left {
  border-bottom-left-radius: 8px;
}

.border-bottom-right {
  border-bottom-right-radius: 8px;
}

.border-top-left {
  border-top-left-radius: 8px;
}

.border-top-right {
  border-top-right-radius: 8px;
}

/* Mobiles Menue */
#mobile_bg {
  display: none;
  position: absolute;
  height: 58px;
  z-index: 1;
  width: 100%;
  background-color: #ffbe50;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

#menuToggle
{
  display: none;
  position: relative;
  top: 20px;
  left: 20px;
  width: calc(100vw - 30px);
  z-index: 2;

  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;

  cursor: pointer;

  opacity: 0; /* hide this */
  z-index: 3; /* and place it over the hamburger */

  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;

  background: #333333;
  border-radius: 3px;

  z-index: 2;

  transform-origin: 4px 0px;

  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/*
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  position: absolute;
  width: 100px;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  border-bottom-right-radius: 8px;
  background: #7F97A2;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */

  transform-origin: 0% 0%;
  transform: translate(-100%, 0);

  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  font-size: 22px;
  font-weight: 400;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: none;
} /* Ende Mobiles Menue */

/* Editieren-Button */
#ed_main {
  display: flex;
  align-items: center;
  justify-content: center;
}
#ed, #ed_out {
  z-index: 3;
  margin: 4px 8px;
  padding: 3px 10px;
  width: auto;
  height: auto;
  border: 1px;
  background-color: #FFFFFF;
  border-radius: 4px;

/* Hintergrund mit Verlauf */
  background: #CCCCCC;
  background: linear-gradient(rgba(240,240,240,1) 0%, rgba(190,190,190,1) 100%);

/* Textformatierung */
  font-family: "Signika";
  font-weight: bold;
  font-size: 105%;
  color: #104999; /* Standardtextfarbe: dunkles blau mit etwas mehr blau */
  text-shadow: 2px 2px 1px rgba(240,248,255,.6); /* heller Schatten */
  text-align: center;
}
#ed a, #ed_out a {
  text-decoration: none;
  color: #104999; /* dunkles blau mit etwas mehr blau */
  font-weight: bold;
} /* Ende Editieren-Button */

/* Linkfarbe des Textes (bei Mouseover) */
#ed:hover > a , #ed_out:hover > a , .menu li:hover > a, .s_but:hover {
  color: #ffbe50; /* Orange */
}

/* Submit-Button */
.s_but {
  padding: 4px 10px;
  margin-top: 10px;
  border-radius: 4px;
  border: none;
  font-family: "Signika";
  font-weight: bold;
  font-size: 110%;
  background: #CCCCCC;
  background: linear-gradient(rgba(240,240,240,1) 0%, rgba(190,190,190,1) 100%);
  color: #104999;
  cursor: pointer;
  text-shadow: 2px 2px 1px rgba(240,248,255,.6);
  text-align: center;
}
.s_but:hover {
  transition: color 0.3s ease;
}

/* Umschalten auf Mobil-Ansicht */
@media screen and (max-width: 850px) {
  footer {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
  }

  #menuToggle, #mobile_bg {
    display: block;
  }

  header {
    visibility: hidden;
	height: 30px;
	min-width: 100px;
	overflow: hidden;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .shop {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .zurkasse {
      margin-top: 10px;
  }
}

@media screen and (max-width: 430px) {
  .banner_q, .banner_h {
    width: 100%;
    max-width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
  }
  .text {
    text-align: left;
  }

} /* Ende Umschalten auf Mobilansicht */

.kontakt {
  display: grid;
  grid-template-columns: 25% 75%;
  grid-template-rows: auto auto;
  grid-gap: 6px;
  background-color: #EEE;
  padding: 8px;
  margin-bottom: 10px;
  border-radius: 4px;
}
.kontakt_cc {
  grid-column: 1 / 3;
}

.id_email {
  width: 97%;
  margin-right: 8px;
}
.id_text {
  font-family: 'Signika', Arial, sans-serif;
  font-weight: 300;
  font-size: 80%;
}
.plz {
  max-width: 60px;
}
.ort {
  width: 50%;
  }
.if_google {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 4px;
}

.button_r {
  display: flex;
  position: relative;
  float: right;
}

.shift-l {
  left: 50px;
}

.laden {
  display: block;
  position: relative;
  left: -113.5px;
  float: right;
  width: 50px;
  z-index: 1;
  visibility: hidden;
}

/* Grids für Anzeigen */
/* Downloads d_ ... */
/* Shop s_ ... */

.d_anz, .d_anz_e, .d_anz_el, .s_anz_e, .s_anz_el, .s_anz_k, .s_anz_i, .s_anz_m {
  display: grid;
  grid-template-rows: auto auto;
}
.d_anz {
  grid-template-columns: minmax(50px, 120px) minmax(120px, 1fr) minmax(50px, 100px) 64px;
}
.d_anz_e {
  grid-template-columns: minmax(60px, 140px) minmax(140px, 1fr) minmax(110px, 170px) 98px;
}
.d_anz_el {
  grid-template-columns: minmax(60px, 120px) minmax(140px, 1fr) minmax(80px, 130px) 70px 30px;
}
.s_anz_e {
  grid-template-columns: minmax(60px, 260px) minmax(140px, 1fr) 80px;
}
.s_anz_el {
  grid-template-columns: minmax(60px, 120px) minmax(140px, 1fr) 150px 60px 30px;
}
.s_anz_k {
  grid-template-columns: minmax(70px, 1fr) 120px minmax(100px, 1fr);
}
.s_anz_i {
  grid-template-columns: minmax(100px, 1fr) minmax(100px, 1fr);
}
.s_anz_m {
  grid-template-columns: minmax(100px, 1fr);
}
.d_head, .d_head_e, .d_head_el, .d_foot, .d_foot_e, .d_foot_el, .s_head_e, .s_head_el, .s_head_i, .s_head_m, .s_foot_e, .s_foot_i, .s_foot_m, .s_foot_el {
  padding: 4px 0 2px 6px;
  background-color: #ffbe50;
  font-weight: bold;
}
.s_head_e, .s_foot_e, .s_besch {
  grid-column: 1 / 4;
}
.s_head_i, .s_foot_i {
  grid-column: 1 / 3;
}
.s_head_m, .s_foot_m {
  grid-column: 1 / 2;
}
.d_head, .d_head_e, .d_head_el, .d_foot, .d_foot_e, .d_foot_e {
  grid-column: 1 / 5;
}
.d_head_el, .d_foot_el, .s_head_el, .s_foot_el {
  grid-column: 1 / 6;
}
.d_head, .d_head_e, .d_head_el, .s_head_e, .s_head_el, .s_head_i, .s_head_m {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.d_foot, .d_foot_e, .d_foot_el, .s_foot_e, .s_foot_el, .s_foot_i, .s_foot_m {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  font-weight: 300;
  font-size: 80%;
}
.d_line {
  padding: 2px 6px;
  background-color: #ffefcb;
}
.d_line1, .d_line2, .s_besch {
  font-size: 80%;
  padding: 4px 6px;
}
.d_line1, .s_besch { /* Zeile heller Hintergrund */
  background-color: #ffffee;
}
.d_line2 { /* Zeile dunkler Hintergrund */
  background-color: #ffefcb;
}
.b_l {
  border-left: 1px solid #ffbe50;
}
.b_r {
  border-right: 1px solid #ffbe50;
}
.b_lr {
  border-left: 1px solid #ffbe50;
  border-right: 1px solid #ffbe50;
}
.anz_kopf {
  background-color:#ffffee; 
  margin: 0 0 -4px 0; 
  padding: 0 0 0 6px;
} 













/* Schriften einbinden */


/* latin-ext */
@font-face {
  font-family: 'Signika';
  font-style: normal;
  font-weight: 300;
  src: local('Signika-Light'), url(fonts/Signika-Light1.woff2) format('woff2');
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Signika';
  font-style: normal;
  font-weight: 300;
  src: local('Signika-Light'), url(fonts/Signika-Light2.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* latin-ext */
@font-face {
  font-family: 'Signika';
  font-style: normal;
  font-weight: 400;
  src: local('Signika'), local('Signika-Regular'), url(fonts/Signika1.woff2) format('woff2');
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Signika';
  font-style: normal;
  font-weight: 400;
  src: local('Signika'), local('Signika-Regular'), url(fonts/Signika2.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* latin-ext */
@font-face {
  font-family: 'Signika';
  font-style: normal;
  font-weight: 600;
  src: local('Signika-Semibold'), url(fonts/Signika-Semibold1.woff2) format('woff2');
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Signika';
  font-style: normal;
  font-weight: 600;
  src: local('Signika-Semibold'), url(fonts/Signika-Semibold2.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* latin-ext */
@font-face {
  font-family: 'Signika';
  font-style: normal;
  font-weight: 700;
  src: local('Signika-Bold'), url(fonts/Signika-Bold1.woff2) format('woff2');
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Signika';
  font-style: normal;
  font-weight: 700;
  src: local('Signika-Bold'), url(fonts/Signika-Bold2.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
