:root{

  --fs-menua: 1.4rem;
  --fs-600: 2rem;
  --fs-500: 1.5rem;
  --fs-400: 1.2rem;

  --color-primary: #757876;
  --color-shadow: #636464;
  --color-secondary: #F78E3F;
}

.h100{
  height: 100%;
}

html{
  margin: 0px;
  font-size: var(--fs-400);
  overflow: unset;
}

.redinput{
  color: rgb(255, 0, 55);
}

body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    margin: 0;
    background-image: url("../../../c6743.background-image-desktop.webp");
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: overlay;
}

/* Mobile: kleineres Hintergrundbild + kein fixed-attachment (Performance) */
@media screen and (max-width: 1199px) {
  body {
    background-image: url("../../../c6743.background-image-mobile.webp");
    background-attachment: scroll;
  }
}

.icon{
  width: 36px;
  height: 36px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.gmaps{
  width: 15%;
}

@media screen and (min-width: 1199px) {
  ::-webkit-scrollbar{
    background: transparent;
    width: 4px;
    z-index: 1;
  }

  ::-webkit-scrollbar-thumb{
    background: white;
    border-radius: 10px;
  }

  ::-webkit-scrollbar-corner{
    border-radius: 10px;
  }
}

h1{
  text-align: center;
  font-size: var(--fs-600);
  background-color: var(--color-primary);
  color: white;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 5px;
  margin: 10px 0px 10px 0px;
  box-shadow: 0 5px 0 var(--color-shadow);
}

h2{  
  font-size: var(--fs-500);
  text-align: center;
  color: white;
  background-color: var(--color-primary);
  margin: 0px;
  padding: 10px;
}

p{  
  font-size: var(--fs-400);
}

header {
  width: 100%;
  position: fixed;
  display: grid;
  grid-template-columns: auto 1fr 7fr;
  gap: 5px;
  grid-template-rows: auto;
  grid-template-areas: 
    "logo banner links"
    "logo nav nav";
  background-color: var(--color-primary);
  box-shadow: 0 5px 0 var(--color-shadow);
  padding-top: 5px;
  z-index: 1;
}

#logo{
  grid-area: logo;
  justify-self: right;
  margin-right: 5px;
  width: 100%;
  max-width: 100px;
  margin: 5px;
}

#banner{
  width: 100%;
  color: white;
  justify-content: left;
  align-self: center;
  opacity: 0.8;
  font-size: var(--fs-menua);
  white-space: nowrap;
}

.links{
  grid-area: links;
  justify-self: right;
  align-self: center;
  margin-right: 100px;
  display: flex;
  z-index: 5;
}

.link{
  margin-left: 5px;
}

.index {
  display: inline-block;
}


.nav{
  grid-area: nav;
  text-align: center;
}

.nav input{
  display: none;
}

.nav label{
  display: none;
  width: 26px;
  float: left;
  margin-left: 30px;
  margin-right: 30px;
}

.menu a{
  flex-grow: 1;
  color: white;
  text-decoration: none;
  margin-left: 25px;
  margin-top: 10px;
  text-align: center;
  font-size: var(--fs-menua);
  opacity: 0.8;
  white-space: nowrap;
}

.menu a:hover{
  opacity: 1;
}

#buchtext{
  margin-left: 10px;
  margin-right: 10px;
}

@media screen and (max-width: 1199px) {

  header {
    padding-top: 0px;
      grid-template-columns: 1fr 1fr 1fr;
      grid-template-areas: 
    "logo links nav";
    align-items: center;
  }

  h1{
    margin-top: 0px;
    border-radius: 0px;
  }

  #banner{
    display: none;
  }

  #logo{
    justify-self: left;
  }

  .nav{
    justify-self: right;
  }

  .links{
    justify-self: center;
    margin-right: 0px;
  }

  #bars{
    padding: 8px;
  }

  .nav label{
    width: -moz-fit-content;
    width: fit-content;
    display: block;
    color: white;
    background-color: #F78E3F;
    padding-left: 5px;
    padding-right: 6px;
    border-radius: 5px;
    margin-top: 10px;
  }

  .menu{
    position: absolute; 
    background-color: var(--color-primary);
    top: 109px;
    right: 0px;
    display: none;
    z-index: 3;
  }

    .menu a{
    display: block;
    border-bottom: 1px solid #F78E3F;
    margin: 0;
  }

  #toggle:checked + .menu{
    display: block;
  }

  #meinbuchpic{
    display: block;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 1199px) {

  #splitview{
    display:flex;
  }

  #meinbuchpic{
    height: 70vh;
  }

  #hauptvideo video{
    height: 70vh;
    background-color: black;
  }
}


#content{
  flex: 1 0 auto;
  background-color: white;
  padding: 0px 10px 10px 10px;
  margin: 170px 10% auto 10%;
  border-radius: 5px;
}

.center{
  text-align: center;
}

@media screen and (max-width: 1199px) {

  #content{
    width: 100%;
    margin-left: 0px;
    padding: 0px;
    border-radius: 0px;
  }

  #hauptvideo video{  
    width: 100%    !important;
    height: auto   !important;
  }
}

#hauptvideo{
  scroll-snap-align: start;
}

#map {
  height: 400px;
  width: 100%;
}

#video_sub{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.video_small{
  width: 33%;
}


@media screen and (max-width: 1199px) {

  .videos{
    flex-direction: column;
  }

  .video_small{
    width: 100%;
    margin: 5px 0px;
  }
}

.credentials{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
}

.credentials p{
  text-align: center;
  word-wrap: break-word;
  background-color: var(--color-primary);
  color:white;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 5px 0 var(--color-shadow);
}

#contentteam{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  border-radius: 5px;
}

@media screen and (max-width: 1199px) {
  #contentteam{
    flex-direction: column;
  }
}

#contentshop{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.shop-item{
  display: grid;
  width: 100%;
  grid-template-columns: 2fr 2fr 1fr;
  grid-template-rows: auto;
  grid-gap: 10px;
  grid-template-areas: 
    "Hauptbild  Artikel Preis"
    "Hauptbild  Variationen Preis"
    "Hauptbild  Bilder  Preis";
  border-radius: 5px;
  background-color: var(--color-primary);
  padding: 10px;
  margin-top: 5px;
}

.shop-item .Hauptbild{
  grid-area: Hauptbild;
}

.shop-item .Artikel{
  grid-area: Artikel;
}

.shop-item .Preis{
  grid-area: Preis;
  color: white;
  white-space: nowrap;
}

.shop-item a{
  padding: 5px;
  margin-top: 10px;
  color:  white;
  background-color: #636464;
  text-decoration: none;
  border-radius: 5px;
  border: 1px solid #555555;
}

.shop-item .Variationen{
  grid-area: Variationen;
  color: white;
}

.shop-item .Bilder{
  grid-area: Bilder;
  margin-top: auto;
}

* {box-sizing:border-box}

@keyframes slideInFromBottom {
  0% {
      transform: translateY(0);
  }
  100% {
      transform: translateY(-100%);
  }
}

#warenkorb.showcart{
  animation: 500ms ease-out 0s 1 slideInFromBottom;
  transform: translateY(-100%);
}

#warenkorb.cartseen{
  transform: translateY(-100%);
}

#warenkorb{
  position: fixed;
  bottom: -50px;
  height: 50px;
  right: 25%;
  width: 50%;
  background-color: var(--color-secondary);
  text-align: center;
  border-top: 2px solid var(--color-primary);
  border-right: 2px solid var(--color-primary);
  border-left: 2px solid var(--color-primary);
  z-index: 2;
}

#warenkorb>form{
  width: 100%;
  max-width: 100%;
  border: none;
  margin: 0px;
  padding: 0px;
}


#zurKasse{
  background-color: transparent;
  color:white;
  font-size: var(--fs-menua);
  line-height: 50px;
  border: none;
  margin: 0px;
  padding: 0px;
}


#contentarticle{
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  grid-gap: 10px;
  grid-template-areas: 
    "gallery options"
    "description description";
  padding: 10px;
}

#gallery{
  grid-area: gallery;
  position: relative;
  display: inline-block;
}

#options{
  grid-area: options;
}

#description{
  grid-area: description;
}

.shoppicture{
  display: none;
}

.w100{
  width: 100%;
}

.caption {
  color: #f2f2f2;
  background-color: var(--color-primary);
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  border-radius: 5px;
}

@media screen and (max-width: 800px) {
  #contentshop{
    flex-direction: column;
  }

  .shop-item{
    max-width: 100%;
    margin: 5px auto;
    grid-template-areas: 
    "Artikel  Artikel Artikel"
    "Variationen  Variationen Preis"
    "Hauptbild  Hauptbild  Hauptbild";
  }

  #contentarticle{
    display: block;
  }
}

#contentpreise{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.angebot{
  flex: 1 0 33%;
  border: 1px solid var(--color-primary);
  margin: 1px;
}

@media screen and (max-width: 1199px) {

  #contentpreise{
  flex-direction: column;
  }

  .angebot{
    width: 100%;
  }
}

.angebot p{
  margin-top: 0px;
  padding: 10px;
}

.team{
  max-width: 400px;  
}

.team-item{
  align-items:center;
  border: 1px solid var(--color-primary);
  margin: 10px;
  background-color: var(--color-primary);
  width: 40%;
}


@media screen and (max-width: 1199px) {
  .team-item{
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

.team-item p{
  padding: 0px 20px 20px 20px;
  margin: 0px auto 0px auto; 
  color: white;
  max-width: 400px;
  text-align: center;
}

.team-item img{
  width: 100%;
}

.cookiebutton{
  background-color: var(--color-primary);
  color: white;
  font-size: var(--fs-400);
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 5px;
  cursor: pointer;
}

button{
  background-color: var(--color-primary);
  color: white;
  font-size: var(--fs-400);
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 5px;
  cursor: pointer;
  vertical-align: middle;
}

.calendarbutton{
  background-color: var(--color-primary);
  color: transparent;
  font-size: 1px;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 5px;
  cursor: pointer;
}

.togglebutton{
  background-color: lightgrey !important;
}

.togglebutton p{
  display: none;
}

.calendar{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 99%;
  height: 700px;
}

.calendarcell{
  text-align: center;  
  border: 3px solid white;
  background-color: lightgrey;
  width: 14%;
  height: 125px;
}

.calendarcell_head{
  height: 40px !important;
  background-color: var(--color-primary);
}

.calendarcell select{
  width: 95%;
}

.calendarcell p {
  font-size: var(--fs-400);
  margin-top: 5px;
  color:white;
  word-wrap: unset;
}

.calendarcell_head p {
  margin-top: 1px;
  color: white;
  word-wrap: unset;
}

@media screen and (max-width: 1520px) {

  .calendar{
      flex-wrap: nowrap;
      height: auto;
  }

  .calendarcell{
    text-align: center;
    border: 3px solid white;
    background-color: lightgrey;
    width: 100%;
  }

  .emptycell{
    display: none;
  }

}

#reservierung{
  border: none;
  max-width: 95%;
  width: 95%;
}


@media screen and (min-width: 800px) {
  .abwrow{
    display: inline-grid;
    width: 100%;
    grid-template-columns: 1fr 1fr 50px 1fr 1fr;
    grid-template-rows: auto;
    grid-gap: 10px;
    text-align: center;
    max-width: 100%;
  }

}

.nodisplay{
  display: none;
}

.showat800{
  display: none;
}

@media screen and (max-width: 799px) {
  .abwrow{
    grid-template-columns: 0px 1fr 50px 1fr 1fr;
  }

  .hideat800{
    display: none;
  }

  .showat800{
    display:block;
    width: 100%;
    text-align: center;
  }

  .at800{
    display:block;
    width: 100%;
    text-align: center;
  }

}

.abwrow *{
  margin-top: auto;
  margin-bottom: auto;
}

.maxw20{
  width: 100%;
}

.maxw100{
  max-width: 100%;
}

.impressum{
  background-color: #F0F0F0;
}

.impressum p {
  padding: 0px 10px;
  color: #9d9d9e;
}

#footer{
  flex-shrink: 0;
  max-height: 50px;
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  width: 100%;
  flex-grow: 20;
  background-color: var(--color-primary);
  box-shadow: 0 0 5px var(--color-shadow);
}

#footer a{
  display: inline-flex;
  font-size: var(--fs-500);
  margin: 10px;
  text-decoration: none;
  color: white;
  opacity: 0.8;
  float: left;
}

#footer a:hover{
  opacity: 1;
}

#footer p{
  display: inline-flex;
  margin-top: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  margin-left: auto;
  color: white;
  float: right;
  font-size: 8px;
}

form{
  width: 50%;
  max-width: 800px;
  margin: 10px auto;
  border: 1px solid var(--color-primary);
  border-radius: 5px;
}

form:nth-child(1){
  transition: transform 1s linear;
}


@media screen and (max-width: 1199px) {
  form{
    width: 100%;
  }
}

label{
  font-size: var(--fs-400);
}

input{
  line-height: var(--fs-400);
  font-size: var(--fs-400);
  width: 100%;
}

input[type=text]{
  width: 100%;
  padding: 0px;
  margin: 0px;
  text-align: center;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: 2px solid var(--color-primary);
}

textarea{
  font-size: var(--fs-400);
}

select{
  width: 100%;
  padding: 0px;
  margin: 0px;
  text-align: center;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-left: none;
  border-right: none;
  border-bottom: 2px solid var(--color-primary);
  font-size: var(--fs-400);
}

textarea{
  width: 100%;
  padding: 0px;
  margin: 0px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid transparent;
  max-width: 100%;
  resize: none;
}

#kontaktbutton{
  width: 100%;
  padding: 0px;
  margin: 0px;
  background-color: var(--color-primary);
  color: white;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  border: none;
  font-size: var(--fs-500);
}

.kontaktkopf{
  width: 100%;
  font-size: var(--fs-600);
  background-color: var(--color-primary);
  color: white;
  text-align: center;
  margin: 0px;
  padding: 0px;
}

#kravmagapic{
  float: right;
  max-width: 100%;
}

#map{
  width: 100%;
}

#reservierung button{
  display: block !important;
  margin: auto;
}

/* The container */
.container {
  display: block;
  width: 305px;
  max-width: 100%;
  position: relative;
  padding-left: 35px;
  margin: 10px auto;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: var(--color-secondary);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.container .checkmark:after {
 	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}

@media screen and (max-width: 750px) {
  iframe {
      max-width: 100% !important;
      width: auto !important;
      height: auto !important;
      margin: 0;
  }
}

#basket{
  display: block important!;
}

#chosen{
  color: #F78E3F;
}

.success{
  background-color: var(--color-secondary);
  color: white;
  font-weight: 600;
  text-align: center;
}

.failiure{
  background-color: #fa5269;
  color: white;
  font-weight: 600;
  text-align: center;
}

::-moz-focus-inner{
  border: 0px;
}

.inactive{
  opacity: .5;
}

@media print {
  #body{
    background-image: none;
  }

  #header{
    display: none;
  }

  #hauptvideo{
    display: none;
  }

  #content{
    visibility: hidden;
  }

  #home{
    visibility: visible;
    position: absolute;
    top: 0px;
    left: 0px;
  }

  #routenplaner{
    display: none;
  }

  #videos{
    display: none;
  }

  #calendar{
    visibility: visible;
    position: absolute;
    top: 0px;
    left: 0px;
  }

  #kontaktformular{
    display: none;
  }

  #contentpreise{
    visibility: visible;
    position: absolute;
    top: 0px;
    left: 0px;
  }

  #contentkravmaga{
    visibility: visible;
    position: absolute;
    top: 0px;
    left: 0px;
  }

  #contentshop{
    visibility: visible;
    position: absolute;
    display: flex;
    flex-direction: column;    
    align-content: center;
    justify-content: space-between;
    top: 0px;
  }

  #contentteam{
    visibility: visible;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-content: center;
    top: 0px;
  }

  #footer{
    display: none;
  }

  #warenkorb{
    display: none;
  } 
}