/* IMPORT */
@import url("font.css");
@import url("all.min.css");
@import url("animate.css");
@import url("lightbox.css");
@import url("datetimepicker.min.css");


/* MAIN STYLE */
html, body {
  height: 100%;
  position: relative;
}
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  color: #eee; 
  padding-top: 87px;
}


/* TYPOGRAPHY */
h4, p, .btn {
  -moz-hyphens: auto; 
  -o-hyphens: auto; 
  -webkit-hyphens: auto; 
  -ms-hyphens: auto; 
  hyphens:auto; 
}

h1, h2, h3 {
  font-family: 'Oswald', sans-serif;
  line-height: 1.5;
  margin: 15px 0;
  padding: 0;
  font-weight: 400;
  color: #009640;
  text-transform: uppercase;
}
h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  line-height: 1.5;
  margin: 15px 0;
  padding: 0;
  font-weight: 500;
  color: #db2119;
  text-transform: uppercase;
}

.after-line::after {
  content: '';
  display: block;
  height: 3px;
  background: #009640;
  width: 150px;
  margin: 5px 0 15px 0;
}
.text-center.after-line::after {
  margin: 5px auto 15px auto;
}

p {
  line-height: 1.8;
  margin: 15px 0;
  text-align: justify;
}

a, a:not([href]):not([tabindex]) {
  text-decoration: none;
  color: #db2119;
  cursor: pointer;
}
a:hover,
a:focus,
a:not([href]):not([tabindex]):hover {
  text-decoration: none;
  color: #aa1913;
}

small {
  display: block;
  font-size: 75%;
  font-weight: 300;
  color: #fff;
}

hr {
  border-color:  #009640;
  margin: 30px 0;
}

ul.ul li {
  line-height: 2.2;
  list-style: square;
}
.ul ul li {
  list-style: circle;
}

.bg-light {
  background-color: #fff !important;
  color: #111 !important;
}
.bg-secondary {
  background-color: #111 !important;
  color: #fff !important;
}
.bg-winner {
  background-color: #cea456 !important;
  color: #fff !important;
}

.h-auto {
  min-height: auto !important;
}

.img-fluid {
  border-radius: 5px;
}

.two-cols {
  -moz-column-width: 400px;
  -moz-column-gap: 30px;
  -webkit-column-width: 400px;
  -webkit-column-gap: 30px;
  column-width: 400px;
  column-gap: 30px;

  hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto; 
}

/* BUTTON */
.btn {
  border: none;
  box-shadow: none !important;
  font-weight: 600;
  border-radius: 5px;
  word-break: break-all;
}
.btn-full {
  width: 100%;
}

.btn-dark {
  background-color: #333 !important;
  color: #fff;
}
.btn-dark:hover,
.btn-dark:focus {
  background-color: #222 !important;
  color: #fff;
}
.btn-primary,
.btn-danger {
  background-color: #db2119 !important;
  color: #fff;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-danger:hover,
.btn-danger:focus {
  background-color: #aa1913 !important;
  color: #fff;
}


/* TOPLINE */
.topline {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
  display: block;
  z-index: 1500;
  padding: 15px 0;
}
.topline .logo {
  width: 250px;
  position: fixed;
  top: 12.5px;
  left: 50%;
  transform: translateX(-50%);
}


/* NAVIGATION */
.menu-btn {
  padding: 10px;
  margin: 5px 15px;
  display: block;
  min-width: 40px;
  max-width: 60px;
  text-align: center;
  cursor: pointer;
  color: #db2119 !important;
  text-transform: uppercase;
  font-weight: 700;
}
.menu-btn:hover {
  color: #aa1913 !important;
}

.menu {
  position: fixed;
  top: 87px;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: 330px;
  z-index: 1250;
  background: #151515;
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.75);
  margin-left: -330px;
  transition: all 0.25s;
}
.nav_underlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1240;
  background: rgba(0,0,0,0.5);
  min-width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  display: none;
  cursor: default;
}

.menu nav {
  position: relative;
  display: block;
  overflow-y: auto;
  height: 100%;
}
.menu nav a {
  display: block;
  padding: 15px 30px;
  color: #fff;
  border-bottom: 1px solid #333;
  background: #151515;
  transition: all 0.25s;
  font-weight: 600;
}
.menu nav a:hover,
.menu nav a:focus {
  background: #222;
  color: #db2119;
}
.menu nav a.active {
  background: #222;
  color: #009640;
}

.menu nav a i {
  transition: all 0.25s; 
}
.menu nav a:hover i,
.menu nav a:focus i,
.menu nav a.active i {
  padding-right: 10px;
}
.menu nav a:last-child {
  border-bottom: none;
}

.menu nav .dropdown {
  display: none;
  border-bottom: 1px solid #333;
}
.menu nav .dropdown a {
  outline: none !important;
  padding: 10px 30px 10px 45px;
  font-size: 16px;
  border: none;
}


/* SECTION */
section {
  padding: 60px 15px;
  background-color: #111;
  z-index: 800;
  position: relative;
  overflow: hidden;
}

section#start {
  min-height: 100%;
  background-color: transparent;
  background-image: url("../img/bg.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
section#start .main-title {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) rotate(-6.5deg);
  text-transform: uppercase;
  font-size: 90px;
  text-shadow: 0 0 10px rgba(0,0,0,0.5);
  color: #fff;
  font-weight: bold;
}
section#start .main-title small {
  margin-top: -25px;
  font-size: 40px;
  font-weight: 500;
}

section#start .fleisch {
  width: 400px;
  position: fixed;
  z-index: -1 !important;
  top: -300px;
  left: 0;
}
section#start .fleisch2 {
  width: 400px;
  position: fixed;
  z-index: -1 !important;
  bottom: -200px;
  right: 0;
}
section#start .fleisch3 {
  width: 500px;
  position: fixed;
  z-index: -1 !important;
  bottom: 0px;
  left: -250px;
}
section#start .fleisch4 {
  width: 500px;
  position: fixed;
  z-index: -1 !important;
  top: 80px;
  right: -200px;
}
section#start .fleisch5 {
  width: 500px;
  position: fixed;
  z-index: -1 !important;
  top: 80px;
  right: -200px;
}
section#start .fleisch6 {
  width: 400px;
  position: fixed;
  z-index: -1 !important;
  top: 80px;
  right: -50px;
}
section#start .fleisch7 {
  width: 500px;
  position: fixed;
  z-index: -1 !important;
  bottom: -120px;
  left: -100px;
}
section#start .fleisch8 {
  width: 400px;
  position: fixed;
  z-index: -1 !important;
  top: -50px;
  left: -100px;
}

section#start .red-line {
  position: fixed;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  left: 0;
  right: 0;
}

.scroll-down {
  color: rgba(255,255,255,1.0);
  text-transform: uppercase;
  font-weight: bold;
  display: block;
  margin-top: 30px;
  text-decoration: none;
  font-size: 25px;
  text-align: center;
  text-shadow: 0 0 10px rgba(0,0,0,0.5);
  
  position: fixed;
  bottom: 45px;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  transition: all 0.25s;
  
  animation-name: btnStart_End;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}
.scroll-down:hover {
  opacity: 1;
  filter: opacity(100);
  color: #fff;
  bottom: 40px;
}
@keyframes btnStart_End {
  0% {
    bottom: 45px;  
    color: rgba(255,255,255,0.75);
  }
  50% {
    bottom: 35px;  
    color: rgba(255,255,255,1.0);
  }
  100% {
    bottom: 45px;  
    color: rgba(255,255,255,0.75);
  }
}

.top-decoration {
  background-image: url("../img/content-bg-top.jpg");
  background-attachment: scroll;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: auto;  
}

.parallax {
  min-height: 50px;
  padding: 30px 15px; 
  display: block;
  background: #222;
  z-index: 800;
  position: relative;
  background-image: url("../img/parallax2.jpg");
  background-attachment: scroll;
  background-position: center;
  background-repeat: repeat-x;
  background-size: 70%;
}
.parallax h2 {
  margin: 15px 0;
  text-shadow: 0 0 15px #fff, 0 0 15px #fff;
  text-transform: uppercase;
}


/* FOOTER */
footer {
  background: #db2119;
  color: #fff;
  z-index: 800;
  position: relative;
  padding: 45px 0;
  box-shadow: inset 0 30px 20px -15px rgba(0,0,0,0.5);
}
footer a, footer h3 {
  color: #fff;
}
footer a:hover,
footer a:focus,
footer a.active {
  color: #111;
}
footer .copyright {
  font-weight: 600;
  color: #fff;
}


/* FORM */
label {
  font-size: 18px;
  transition: all 0.25s;
  color: #fff;
  font-weight: 400;
}
.form-control {
  border-radius: 5px;
  padding: 15px;
  box-shadow: none;
  transition: all 0.25s;
  background: #333;
  color: #fff;
  border: 1px solid transparent;
}
.form-control:focus {
  color: #fff;
  background: #333;
  box-shadow: inset 0 30px 20px -15px rgba(0,0,0,0.5);
  outline: none;
  border-color: transparent;
}

.spezial-cont .form-control {
  border-color: #fff;
}
.form-group.has-error .spezial-cont .form-control {
  border-color: #db2119;
}
.spezial-cont .form-control:disabled,
.spezial-cont .form-control[readonly] {
  background-color: #333;
}

.form-group.has-error label { 
  color: #db2119; 
}
.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select { 
  border: 1px solid #db2119; 
}
.has-error .form-control::-webkit-input-placeholder {
  color: #db2119;
}
.has-error .form-control:-moz-placeholder {
  color: #db2119;
}
.has-error .form-control::-moz-placeholder {
  color: #db2119;
}
.has-error .form-control:-ms-input-placeholder {
  color: #db2119;
}
.has-error .form-control::-webkit-input-placeholder, .has-error .form-control::-webkit-input-placeholder {
  color: #db2119;
}
.has-error .form-control:-moz-placeholder, .has-error .form-control:-moz-placeholder {
  color: #db2119;
}

.help-block {
  color: #fff;
}
.has-error .help-block {
  color: #db2119;
}

#danke {
  display: none;
}

.form-check-set {
  padding: 0;
}
.form-check-set .form-check-input {
  opacity: 0;
}
.form-check-set .form-check-label {
  padding: 10px 15px;
  display: block;
  background: #333;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 15px;
}

.form-check-set .form-check-input:checked  ~ .form-check-label,
.form-check-set .form-check-input:hover  ~ .form-check-label {
  background: #1d8000;
  transform: scale(1.025);
}

.has-error.form-check-set .form-check-label {
  background: #db2119;
  color: #fff;
}

select.form-control:not([size]):not([multiple]) {
  height: auto;
}

.input-group .form-control {
  padding: 10px 15px;
}
.input-group .btn {
  padding: 10px 20px;
  line-height: 1.5;
}


/* SPEZAIL CONTENT */
.spezial-cont {
  background: #db2119;
  color: #fff;
  padding: 15px;
  display: block;
  border-radius: 5px;
/*  box-shadow: 0 0 10px 0 rgba(0,0,0,0.5), inset 0 30px 20px -15px rgba(0,0,0,0.5); */
  margin: 15px 0;
  transition: all 0.25s;
}
.spezial-cont.grey {
  background: #333;
}

a.spezial-cont:hover {
  transform: scale(1.025);
}
.spezial-cont.no-hover:hover {
  transform: scale(1) !important;
}
.spezial-cont.disabled {
  opacity: 0.25;
}

.spezial-cont h3,
.spezial-cont h4,
.spezial-cont h5,
.spezial-cont h6 {
  color: #fff;
}
.akt_day {
  border: 1px solid green;
}

.spezial-cont-titel {
  min-height: 75px;
  margin-bottom: 0;
}
.spezial-cont-titel.red {
  background: #db2119;
  padding: 15px;
  position: relative;
  margin-left: -15px;
  margin-right: -15px;
  margin-top: -15px !important;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.spezial-cont-text {
  min-height: 80px;
  padding-top: 5px;
  display: flex;
  align-items: flex-end;
}
.spezial-cont-preis {
  text-align: right;
}
.spezial-cont-logo {
  max-width: 150px;
}
.spezial-cont-logo.pos-end {
  margin-left: auto;
  display: block;
}

.spezial-cont.tagesmenu-item {
	min-height: 195px;
}

.rezept {
  display: flex;
  flex-direction: column;
  padding: 0;
  min-height: calc(100% - 30px);
}
.rezept-img {
  min-width: 350px;
  min-height: 200px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px 5px 0 0;
}
.rezept-content {
  display: block;
  padding: 15px;
}
.rezept-title {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 22px;
}
.rezept-title small {
  font-size: 16px;
}
.rezept-text {
  font-size: 16px;
  color: #fff !important;
  margin-top: 15px;
}

.rezept-winner {
  display: flex;
  flex-direction: row;
  position: relative;
  padding: 0;
  background-color: #db2119 !important;
  background-image: url('../img/winner-bg.png');
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 150px;
}
.rezept-winner .rezept-img {
  min-height: 250px;
  border-radius: 5px 0 0 5px;
}
.rezept-winner .rezept-title {
  font-size: 28px;
}

.rezept .badge,
.rezept-winner .badge {
  padding: 5px 7.5px !important;
  font-size: 12px;
}


/* GALERIE */
.galerie a {
  position: relative;
  display: block;
}
.galerie img {
  border: 1px solid #db2119;
  opacity: 1;
  transition: all 0.25s;
  margin-top: 15px;
  margin-bottom: 15px;
  filter: grayscale(0.25);
  position: relative;
}
.galerie img:hover {
  opacity: 1; 
  filter: grayscale(0);
}

.galerie-set h5 {
  font-size: 14px;
}


/* ANIVIEW */
.aniview-pos {
  position: absolute;
  z-index: -1;
}


/* map */
#map1, #map2, #map3, #map4, #map5 {
  height: 300px;
  width: 100%;
}


/* pagination */
.pagination {
  margin-top: 15px !important;
}
.page-item {
  margin-right: 5px;
}
.page-item:last-child {
  margin-right: 0;
}
.page-link {
  border: none;
  background-color: #333;
  color: #fff;
  box-shadow: none !important;
  font-weight: 800;
  font-size: 16px;
  border-radius: 5px;
  transition: all .25s;
}
.page-link:hover,
.page-link:focus,
.page-link.active {
  background-color: #db2119;
  color: #fff;
}


/* sonstiges */
.historie-jahr {
	font-weight: bold;
	font-size: 22px;
}


/* MODAL */
.modal {
	z-index: 1600;
}
.modal-xl {
  max-width: 1140px;
}
.modal-content {
	border: none;
}
.modal-header {
	border: none;
  background-color:#db2119;
}
.modal-title {
	margin: 0;
  color: #fff;
}
.modal-body {
	background-color: #fff;
  color:  #000;
}
.modal-footer {
	border: none;
  background-color: #db2119;
  color: #fff;
  border-bottom-left-radius: .3rem;
  border-bottom-right-radius: .3rem;
}
.modal-backdrop {
	z-index: 1550;
}
.modal .close {
  color: #fff;
}

.right-divider {
	border-right: 1px solid #009640;
}

/* JOBBOX */
.jobbox {
  display: block;
  height: 100%;
  padding: 0 0 15px 0;
}
.jobbox .jobbox-inner {
  display: flex;
  flex-flow: column;
  justify-content:space-between;
  border: 1px solid #db2119;
  height: 100%;
  background: #111;
}
.jobbox .jobbox-title {
  font-weight: bold;
  padding: 15px;
  background: #db2119;
  color: #fff;
}
.jobbox .jobbox-text {
  padding: 15px;
  font-size: 16px;
  background: #111;
}
.jobbox .jobbox-text p:first-child {
  margin-top: 0;
}
.jobbox .jobbox-text p:last-child {
  margin-bottom: 0;
}
.jobbox .jobbox-control {
  display: block;
}
.jobbox .jobbox-control .btn {
  border-radius: 0;
}


/* IMAGE */
.fachgeschaeft-img {
	display: block;
	min-height: 300px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

/* accordion */
.accordion .card {
  border: none;
  border-radius: 5px;
  background-color: #333;
}
.accordion .card-header {
  padding: 0;
  border: none;
  border-radius: 5px;
}
.accordion .card-header .btn {
  padding: 15px;
  border-radius: 5px;
  background-color: #db2119;
  color: #fff;
  font-size: 18px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23fff" class="bi bi-chevron-down" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708"/></svg>');
  background-position: center right 15px;
  background-repeat: no-repeat;
  background-size: 22px;
}
.accordion .card-header .btn:hover,
.accordion .card-header .btn:focus {
  background-color: #aa1913;
  color: #fff;
  text-decoration: none !important;
}
.accordion .card-header .btn:not(.collapsed) {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23fff" class="bi bi-chevron-up" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708z"/></svg>');
}



/* RESPONSIVE */
@media (max-width: 1199.98px) {
  /* SECTION */
  section#start {
    background-attachment: scroll;
  }
  /* SECTION */
  section#start .main-title {
    font-size: 100px; 
    margin-top: 45px;
  }
  section#start .main-title small {
    font-size: 40%;  
    margin-top: -30px;
  } 
}
@media (max-width: 991.98px) {
	.right-divider {
		border-right: none;
		border-bottom: 1px solid #009640;
	}
}
@media (max-width: 767.98px) {}
@media (max-width: 575.98px) {
  /* TOPLINE */
  .topline .logo {
    width: 160px;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* SECTION */
  section#start .main-title {
    font-size: 50px;  
    margin-top: 15px;
  }
  section#start .main-title small {
    font-size: 40%;  
    margin-top: -15px;
  }
  
  /* NAVIGATION */
  .menu nav a {
    padding: 7.5px 30px;
  }
  
  /* GALERIE */
  .galerie h5 {
    font-size: 14px;
  }
}

