/*-------------------------------------------------------------------------------------

  Copyright (c) 2014 Pixelzauber GmbH, Switzerland
  CSS definition for basic layout

-------------------------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed|Roboto:300i,300,400i,400,500");
@import url("https://fonts.googleapis.com/css?family=Roboto+Mono");


:root {
  --color-black: rgb(0, 0, 0);
  --color-black-90: rgb(26, 26, 26);
  --color-black-80: rgb(51, 51, 51);
  --color-black-70: rgb(77, 77, 77);
  --color-black-60: rgb(102, 102, 102);
  --color-black-50: rgb(128, 128, 128);
  --color-black-40: rgb(153, 153, 153);
  --color-black-30: rgb(179, 179, 179);
  --color-black-20: rgb(204, 204, 204);
  --color-black-15: rgb(217, 217, 217);
  --color-black-10: rgb(230, 230, 230);
  --color-black-05: rgb(242, 242, 242);
  --color-white: rgb(255, 255, 255);
  --color-orange: rgb(240, 195, 34);
  --color-blue: rgb(0, 100, 140);
  --color-red: rgb(210, 0, 0);
  --color-green: rgb(46, 141, 0);
  --color-main: rgb(193, 161, 204);
  --font-main: "Roboto", Arial, Helvetica, sans-serif;
  --font-main-cond: "Roboto Condensed", Arial, Helvetica, sans-serif;
  --font-main-mono: "Roboto Mono", monospace;
}

/**
 * ANCHOR Normalize
 *
 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

select,
input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

body {
  line-height: 1;
}

body ol,
body ul {
  list-style: none;
  margin-bottom: 0;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

ul,
ol {
  padding: 10px 0;
  margin-left: 25px;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 8px;
}

* {
  margin: 0;
  padding: 0;
}

html {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  height: 100%;
}

fieldset,
img {
  border: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

/**
 * ANCHOR Layout
 *
 */
header,
#navTop,
#headerImg,
#navMobile,
main,
#section,
.section,
section,
footer {
  position: relative;
  float: left;
  width: 100%;
  height: auto;
}

.inner {
  position: relative;
  margin: 0 auto;
  width: 1080px;
  height: auto;
}

.mobile {
  display: none;
}

.desktop {
  display: block;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.white {
  background-color: rgb(255, 255, 255);
}

.grey {
  background-color: rgb(236, 236, 237);
}

.content {
  margin: 0 15px;
  width: calc(100% - 30px);
}

.goTop {
  cursor: pointer;
}

.goMore {
  cursor: pointer;
}

#copyright {
  position: fixed;
  bottom: 70px;
  right: 10px;
  width: 20px;
  height: 500px;
  z-index: 3;
}

#copyright .rotate {
  display: block;
  width: 500px;
  height: 20px;
  -webkit-transform: rotate(90deg) translatex(-20px);
  -webkit-transform-origin: left bottom;
  -moz-transform: rotate(90deg) translatex(-20px);
  -moz-transform-origin: left bottom;
  -o-transform: rotate(90deg) translatex(-20px);
  -o-transform-origin: left bottom;
  -ms-transform: rotate(90deg) translatex(-20px);
  -ms-transform-origin: left bottom;
  transform: rotate(90deg) translatex(-20px);
  transform-origin: left bottom;
}

#copyright .rotate .rotate180 {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

header {
  position: fixed;
  float: left;
  top: 0;
  left: 0;
  padding: 0;
  height: 205px;
  background-color: rgb(41, 33, 26);
  background-image: url(../images/bg_header_1.png),
    url(../images/bg_header_2.png);
  background-position: left top, calc(100% + 20px) top;
  background-repeat: no-repeat;
  background-size: auto 205px, auto 205px;
  z-index: 1000;
}

#logo {
  float: left;
  margin: 30px 0 25px 0;
  width: 100%;
  height: auto;
  text-align: center;
}

#logo img,
#logo svg {
  width: auto;
  height: 100px;
}

svg .fil1 {
  fill: var(--color-main);
  fill-rule: nonzero;
}

svg .fil0 {
  fill: var(--color-white);
  fill-rule: nonzero;
}

#navMobile {
  position: fixed;
  right: -100%;
  top: 150px;
  width: 100%;
  height: calc(100% - 150px);
  min-height: calc(100% - 150px);
  background: var(--color-main);
  z-index: 10010;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  overflow: none;
  overflow-x: hidden;
  overflow-y: auto;
}

#navMobile.open {
  right: 0;
}

main {
  margin-top: 205px;
  padding: 60px 0;
  min-height: calc(100% - 605px);
  background: var(--color-main);
}

.nextEvent {
  margin: 60px 15px 0 15px;
  width: calc(100% - 30px);
}

.programm {
  display: block;
  float: left;
  margin: 60px 0;
  width: 100%;
}

#navigation {
  float: left;
  margin: 0 15px;
  width: calc(33.33% - 30px);
  min-height: 50px;
}

footer {
  height: 340px;
  background: rgb(41, 33, 26);
}

footer:before {
  float: left;
  width: 100%;
  height: 110px;
  content: "";
  background: var(--color-main) url(../images/bg_footer.png) center top no-repeat;
}

footer .footerBlock1,
footer .footerBlock2,
footer .footerBlock3,
footer .footerBlock4 {
  float: left;
  margin: 20px 15px 0 15px;
  width: calc(25% - 30px);
}

footer .footerBlock1 {
  width: 160px;
}

footer .footerBlock2 {
  width: calc(50% - 220px);
}

footer .footerBlock3 {
  width: calc(50% - 160px);
}

footer .footerBlock4 {
  width: 100px;
}

footer .footerBlock1 img {
  float: left;
  width: 130px;
}

#goUp {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 0;
  height: 40px;
  width: 40px;
  z-index: 100;
  cursor: pointer;
  background: rgb(41, 33, 26) url("../images/goUp.png") center no-repeat;
}

#overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 100000;
}

#react-cookie-banner {
  position: fixed;
  padding: 30px;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: var(--color-main);
  z-index: 100000;
}

/* Parallax */
.parallax {
  padding: 0;
  margin: 0;
  min-height: 50%;
  overflow: hidden;
}

.parallax img {
  display: none;
  position: absolute;
  left: 0;
  width: 100%;
  height: auto;
}

/* Standard Images */
.image-wrapper,
.image-wrapper-left,
.image-wrapper-right,
.image-wrapper-big {
  float: right;
  margin: 0 0 10px 30px;
  width: 40%;
  max-width: 280px;
  height: auto;
}

.image-wrapper-left {
  float: left;
  margin: 4px 30px 10px 0;
}

.image-wrapper-big {
  float: left;
  margin: 4px 0 0 0;
  width: 100%;
  max-width: inherit;
}

.image-wrapper-right {
  float: right;
  margin: 4px 0 10px 30px;
}

.image-wrapper img,
.image-wrapper-left img,
.image-wrapper-right img,
.image-wrapper-big img {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
}

/* Images */
.imageFrame {
  display: inline-block;
  position: relative;
  margin: 0 0 15px 0;
  padding: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.imageFrame:before {
  content: "";
  display: block;
  padding-top: 64.5%;
}

/* Video */
.responsive-iframe {
  position: relative;
  margin-top: 0px;
  margin-bottom: 20px;
  padding-bottom: 56.25%;
  padding-top: 0px;
  width: 100%;
  height: 0;
  overflow: hidden;
}

.responsive-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mobile {
  display: none;
}

.desktop {
  display: block;
}

.block,
.block_05,
.block_10,
.block_15,
.block_20,
.block_25,
.block_30,
.block_33,
.block_35,
.block_40,
.block_45,
.block_50,
.block_55,
.block_60,
.block_65,
.block_66,
.block_70,
.block_75,
.block_80,
.block_85,
.block_90,
.block_95,
.block_100 {
  float: left;
  height: auto;
}

.block {
  margin: 0 -15px;
  width: calc(100% + 30px);
}

.block.half {
  margin: 0 15px;
  width: calc(50% - 30px);
}

.block.third {
  margin: 0 15px;
  width: calc(33.3333% - 30px);
}

.block.quarter {
  margin: 0 15px;
  width: calc(25% - 30px);
}

.block.two-third {
  margin: 0 15px;
  width: calc(66.6666% - 30px);
}

.block.three-quarter {
  margin: 0 15px;
  width: calc(75% - 30px);
}

.block.full {
  margin: 0 15px;
  width: calc(100% - 30px);
}

.block.columnLeft {
  margin: 0 15px;
  width: calc(55% - 30px);
}

.block.columnRight {
  margin: 0 15px;
  width: calc(45% - 30px);
}

.block_05 {
  width: 5%;
}

.block_10 {
  width: 10%;
}

.block_15 {
  width: 15%;
}

.block_20 {
  width: 20%;
}

.block_25 {
  width: 25%;
}

.block_30 {
  width: 30%;
}

.block_33 {
  width: 33.3333%;
}

.block_35 {
  width: 35%;
}

.block_40 {
  width: 40%;
}

.block_45 {
  width: 45%;
}

.block_50 {
  width: 50%;
}

.block_55 {
  width: 55%;
}

.block_60 {
  width: 60%;
}

.block_65 {
  width: 65%;
}

.block_66 {
  width: 66.6666%;
}

.block_70 {
  width: 70%;
}

.block_75 {
  width: 75%;
}

.block_80 {
  width: 80%;
}

.block_85 {
  width: 85%;
}

.block_90 {
  width: 90%;
}

.block_95 {
  width: 95%;
}

.block_100 {
  width: 100%;
}

.form {
  float: left;
  margin-right: 30px;
  width: calc(65% - 30px);
}

.addr {
  float: right;
  width: 35%;
}

.bubble {
  position: absolute;
  box-sizing: border-box;
  top: -50px;
  right: -40px;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: fit-content;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--color-white);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  transform: rotate(10deg);
  z-index: 100;
}

/**
 * ANCHOR Text Basics
 *
 */
body {
  font-family: var(--font-main);
  color: rgb(41, 33, 26);
  font-size: 1.1rem;
  font-weight: 400;
  text-align: left;
  -webkit-text-size-adjust: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-main);
  margin: 20px 0 10px 0;
  color: rgb(41, 33, 26);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1em;
}

h1 {
  margin-bottom: 20px;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.3rem;
}

h4 {
  font-size: 1.1rem;
}

.first {
  margin-top: 0;
}

.home h1 {
  text-align: center;
}

.center {
  text-align: center;
}

p {
  line-height: 1.3em;
  margin-bottom: 8px;

  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

a {
  color: rgb(255, 255, 255);
  text-decoration: none;
}

a:hover {
  color: rgb(41, 33, 26);
  text-decoration: none;
}

a[name],
a[name]:hover {
  color: rgb(51, 51, 51);
  text-decoration: none;
}

em {
  font-style: italic;
}

pre {
  padding: 10px 19px;
  margin: 18px 0 12px 0;
  line-height: 20px;
  width: auto;
  color: rgb(0, 0, 160);

  border: 1px solid rgb(200, 200, 200);
  background-color: rgb(240, 240, 240);

  overflow: auto;
  overflow-y: hidden;
}

sup {
  line-height: 1em;
}

blockquote {
  padding: 15px 30px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 400;
  font-style: italic;
  color: rgb(110, 110, 110);
}

blockquote:before {
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
  content: "\201C";
  font-size: 4em;
}

blockquote p {
  display: inline;
}

blockquote cite {
  margin-left: 40px;
  display: block;
  font-size: 1em;
  color: rgb(179, 179, 179);
}

blockquote cite:before {
  content: "\2014 \2009";
}

/*
ul, ol {
	padding: 0 0 8px 15px;
	margin: 0;
}
ul ul, ol ol {
	padding: 0 0 0 15px;
	margin: 0;
}
li {
	padding: 0;
	line-height: 1.4em;
    margin: 0 0 0 5px;
}
ol li {
	margin-left: 15px;
}
*/

ol,
ul {
  margin: 0 0 8px 0;
  width: 100%;
}

ul ul,
ol ol {
  margin: 0 0 0 18px;
  width: calc(100% - 18px);
}

ul li {
  list-style: none;
  text-align: left;
  line-height: 1.4em;
  margin: 0 0 0 20px;
}

ul li::before {
  float: left;
  content: "\25CF";
  color: rgb(41, 33, 26);
  margin: 0 0 -10px -18px;
  display: block;
  font-size: 0.8em;
}

ol li {
  margin-left: 20px;
  list-style: decimal;
}

/*
ul {
    padding: 0 0 8px 0;
	list-style: none;
}
ul ul {
	padding: 0 0 0 15px;
}
ul li {
    padding: 0 0 4px 13px;
	background: transparent url('../images/bg_li.png') 0 -400px no-repeat;
}
*/
@media print {
  ol {
    margin: 0 0 0 24px;
    padding: 0;
    list-style: decimal;
  }

  ul {
    margin: 0 0 0 17px;
    padding: 0;
    list-style: disc;
  }

  ol li,
  ul li {
    margin: 0;
    padding: 0;
    background: none;
  }
}

b,
strong {
  font-weight: 500;
}

hr {
  padding: 0 0 20px 0;
  margin: 20px 0 0 0;
  height: 0;
  border: 0;
  border-top: 1px dotted rgb(0, 0, 0);
}

table {
  margin-bottom: 10px;
  font-family: var(--font-main);
  ;
  font-size: 1em;
}

table th {
  border-bottom: 1px dotted rgb(0, 0, 0);
  font-weight: 400;
  padding: 2px 0;
  text-align: left;
}

table td {
  padding: 2px 0;
}

table.none,
table.none td {
  padding: 0px;
  margin-bottom: 0px;
}

.column {
  column-count: 2;
  column-gap: 30px;
}

/**
 * ANCHOR Customising
 *
 */
.content a.external,
#content a.external {
  background: transparent url("../images/icon_system.png") 100% 0 no-repeat;
  padding-right: 12px;
}

.content a:hover.external,
#content a:hover.external {
  background: transparent url("../images/icon_system.png") 100% -100px no-repeat;
  padding-right: 12px;
}

.content a.pdf,
.content a:hover.pdf,
#content a.pdf,
#content a:hover.pdf {
  background: transparent url("../images/icon_system.png") 0 -198px no-repeat;
  padding-left: 20px;
  padding-right: 0;
}

.content a.doc,
.content a:hover.doc,
.content a.docx,
.content a:hover.docx,
#content a.doc,
#content a:hover.doc,
#content a.docx,
#content a:hover.docx {
  background: transparent url("../images/icon_system.png") 0 -298px no-repeat;
  padding-left: 20px;
  padding-right: 0;
}

.content a.xls,
.content a:hover.xls,
.content a.xlsx,
.content a:hover.xlsx,
#content a.xls,
#content a:hover.xls,
#content a.xlsx,
#content a:hover.xlsx {
  background: transparent url("../images/icon_system.png") 0 -398px no-repeat;
  padding-left: 20px;
  padding-right: 0;
}

.content a.ppt,
.content a:hover.ppt,
.content a.pptx,
.content a:hover.pptx,
#content a.ppt,
#content a:hover.ppt,
#content a.pptx,
#content a:hover.pptx {
  background: transparent url("../images/icon_system.png") 0 -498px no-repeat;
  padding-left: 20px;
  padding-right: 0;
}

.content a.jpg,
.content a:hover.jpg,
#content a.jpg,
#content a:hover.jpg {
  background: transparent url("../images/icon_system.png") 0 -598px no-repeat;
  padding-left: 20px;
  padding-right: 0;
}

.content a.zip,
.content a:hover.zip,
#content a.zip,
#content a:hover.zip {
  background: transparent url("../images/icon_system.png") 0 -698px no-repeat;
  padding-left: 20px;
  padding-right: 0;
}

.content a.none,
.content a:hover.none,
#content a.none,
#content a:hover.none {
  background: none;
  padding-right: 0px;
  padding-left: 0px;
}

p.button {
  padding: 20px 0 30px 0;
}

p.button a,
#content p.button a.external {
  padding: 8px 30px;
  cursor: pointer;
  color: rgb(255, 255, 255);
  background: none;
  background-color: rgb(41, 33, 26);
  border: 1px solid rgb(41, 33, 26);
}

p.button a:hover,
#content p.button a.external:hover {
  color: rgb(255, 255, 255) !important;
  border: 1px solid rgb(153, 0, 0);
  background-color: rgb(153, 0, 0);
}

.toggle {
  float: left;
  padding: 10px 0 0 0;
  width: 100%;
  border-bottom: 1px solid rgb(209, 209, 209);
  cursor: pointer;
}

.toggle h3 {
  margin: 0;
  padding: 0 0 10px 30px;
  text-transform: none;
  line-height: 1em;
  background: transparent url("../images/bg_toggle_close.png") no-repeat;
}

.toggle .display {
  display: none;
  position: relative;
  float: left;
  padding: 10px 0;
  margin-left: 30px;
  width: calc(100% - 30px);
}

.toggle.open h3 {
  background: transparent url("../images/bg_toggle_open.png") no-repeat;
}

.alina {
  float: right;
  width: 46%;
  margin: 0 0 20px 8%;
}

.act {
  float: left;
  padding-bottom: 15px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgb(255, 255, 255);
  width: 100%;
}

.act:last-child {
  border: none;
}

/*
.actDetail {
	float: left;
	margin: 0 -15px 25px -15px;
	width: calc(100% + 30px);
}
.actLeft {
	float: left;
	margin: 0 15px;
	width: calc(66.6666% - 30px);
}
.actRight {
	float: left;
	margin: 0 15px;
	width: calc(33.3333% - 30px);
}
*/
.actImage img {
  float: right;
  margin: 0 0 15px 0;
  width: 100%;
}

.events {
  float: left;
  margin-bottom: 60px;
  width: 100%;
}

.appearance {
  float: left;
  padding: 8px 0 0 0;
  border-bottom: 1px solid rgb(255, 255, 255);
  width: 100%;
}

.events .appearance:last-child {
  border-bottom: none;
}

.appearance .day {
  float: left;
  width: 40px;
}

.appearance .dateDay {
  float: left;
  width: 30px;
  margin-right: 20px;
  text-align: right;
}

.appearance .date {
  float: left;
  width: 110px;
}

.appearance .time {
  float: left;
  width: 100px;
}

.appearance .title {
  float: left;
  width: auto;
  width: calc(100% - 360px);
}

.appearance .title2 {
  float: left;
  width: auto;
  width: calc(100% - 360px);
}

.appearance .title a,
.appearance .title2 a {
  color: rgb(41, 33, 26);
}

.appearance .booking {
  float: right;
  width: 110px;
  text-align: right;
}

#copyright {
  font-size: 0.9rem;
  color: rgba(41, 33, 26, 0.25);
}

#copyright a {
  color: rgba(41, 33, 26, 0.25);
}

#copyright a:hover {
  color: rgb(255, 255, 255);
}

footer,
footer p,
footer a {
  color: rgb(255, 255, 255);
  font-size: 1rem;
}

footer a:hover {
  /*color: rgb(221,136,91);*/
  color: var(--color-main);
}

/**
 * ANCHOR socialmedia
 *
 */
ul.socialmedia {
  float: right;
  margin: 5px 0 0 0;
  padding: 0;
  width: auto;
  list-style: none;
}

ul.socialmedia li {
  float: right;
  margin: 0 0 0 11px;
  padding: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  transition: opacity 0.2s ease-in-out;
}

ul.socialmedia li:hover,
ul.socialmedia li:active {
  opacity: 0.75;
}

ul.socialmedia li::before {
  content: none;
}

ul.socialmedia li a {
  display: block;
  padding-left: 36px;
  width: 36px;
  height: 36px;
  background-size: 36px auto;
  background-position: top left;
  background-repeat: no-repeat;
  display: -moz-inline-stack;
  display: inline-block;
}

ul.socialmedia li:last-child a {
  padding-right: 0;
}

li.facebook a {
  background-image: url(../images/icon_sm_facebook.svg);
}

li.linkedin a {
  background-image: url(../images/icon_sm_linkedin.svg);
}

li.youtube a {
  background-image: url(../images/icon_sm_youtube.svg);
}

li.instagram a {
  background-image: url(../images/icon_sm_instagram.svg);
}

#react-cookie-banner {
  font-size: 1.1em;
  font-weight: 400;
  color: rgb(255, 255, 255);
}

#react-cookie-banner a {
  color: rgb(255, 255, 255);
  text-decoration: underline;
}

#react-cookie-banner a:hover {
  color: rgb(200, 200, 200);
}

#react-cookie-banner .button {
  float: right;
  margin: 0;
  margin-top: -20px;
}

#react-cookie-banner .button a {
  text-decoration: none;
}

.status {
  float: left;
  box-sizing: border-box;
  padding: 20px;
  margin-bottom: 20px;
  width: calc(100% - 40px);
  border-radius: 10px;
}

.status.success {
  border: 2px solid #338136;
  background-color: #4CAF50;
}

.status.warning {
  border: 2px solid #cfbb00;
  background-color: #FFEB3B;
}

.status.danger {
  border: 2px solid #a0271e;
  background-color: #F44336;
}

/**
 * ANCHOR Navigation Desktop
 *
 */
.navIconX {
  position: absolute;
  overflow: hidden;
  margin: 0;
  padding: 0;
  top: 20px;
  left: 15px;
  width: 30px;
  height: 30px;
  font-size: 0;
  text-indent: -9999px;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;

  -webkit-transition: background 300ms;
  -moz-transition: background 300ms;
  -o-transition: background 300ms;
  transition: background 300ms;

  background-color: transparent;
}

.navIconX:hover,
.navIconX:focus {
  background-color: transparent;
  outline: none;
}

.navIconX span {
  display: block;
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  height: 2px;
  background: none;
}

.navIconX span:before,
.navIconX span:after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgb(102, 102, 102);
  content: "";
}

.navIconX span:before {
  top: 0;
  transform: rotate(45deg);
}

.navIconX span:after {
  bottom: 0;
  transform: rotate(-45deg);
}

/**
 * ANCHOR Top Navigation 
 *
 */
#navTop {
  display: flex;
  justify-content: center;
}

#navTop ul {
  width: fit-content;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

#navTop ul li {
  display: inline-block;
  margin: 0 15px;
  padding: 0;
  list-style: none;
  background: none;
}

#navTop ul li::before {
  content: none;
}

#navTop ul li a {
  position: relative;
  float: left;
  margin: 0;
  padding: 10px 0 0 0;
  height: 35px;
  display: block;

  font-family: var(--font-main-cond);
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1rem;
  color: rgb(255, 255, 255);
}

#navTop ul li:last-child a {
  margin-right: 0;
  padding-right: 0;
}

#navTop ul li a:hover,
#navTop ul li.active a {
  /*color: rgb(221,136,91);
	color: rgb(229,127,13);
	color: rgb(255,206,46);*/
  color: var(--color-main);
}

/* Level 2 */
#navTop ul li ul {
  position: absolute;
  float: left;
  padding: 5px 0 15px 0;
  margin: 42px 0 0 -20px;
  width: auto;
  height: auto;
  background: rgb(41, 33, 26);
  border: none;
  display: none;
}

#navTop ul li ul li {
  margin: 0;
  padding: 0 20px;
  left: 0;
  height: auto;
  white-space: nowrap;
  width: 100%;
  clear: both;
}

#navTop ul li ul li a,
#navTop ul li.active ul li a {
  float: left;
  padding: 3px 0;
  margin: 0;
  height: auto;
  width: 100%;
  min-width: 120px;
  background: none;
  display: block;

  font-size: 1.2rem;
  color: rgb(255, 255, 255);
  text-align: left;
}

#navTop ul li ul li a:hover,
#navTop ul li ul li.active a {
  /*color: rgb(221,136,91);
	color: rgb(229,127,13);
	color: rgb(255,206,46);*/
  color: var(--color-main);
}

/**
 * ANCHOR Navigation 
 *
 */
#navigation ul {
  float: left;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  list-style: none;

  font-family: var(--font-main-cond);
  font-weight: 400;
  font-size: 1.3em;
}

#navigation ul li {
  float: left;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  list-style: none;
  line-height: 1em;
}

#navigation ul li::before {
  content: none;
}

#navigation ul li a {
  float: left;
  display: block;
  margin: 0;
  padding: 4px 0 3px 0;
  width: 100%;
  height: auto;
  text-decoration: none;
  color: rgb(51, 51, 51);
}

#navigation ul li.active a {
  /*color: rgb(221,136,91);
	color: rgb(229,127,13);
	color: rgb(255,206,46);*/
  color: var(--color-main);
  width: 100%;
}

/* Level 2 */
#navigation ul li ul {
  margin: 0 0 6px 0;

  font-size: 0.8em;
  font-weight: 300;
}

#navigation ul li.active ul li a {
  padding: 3px 0 2px 10px;
  color: rgb(51, 51, 51);
  width: calc(100% - 10px);
}

#navigation ul li.active ul li a:hover,
#navigation ul li.active ul li.active a {
  color: rgb(231, 120, 21);
}

/* Level 3 */
#navigation ul li ul li ul {
  font-size: 0.9em;
  font-weight: 300;
}

#navigation ul li.active ul li.active ul li a {
  padding: 3px 0 2px 20px;
  color: rgb(51, 51, 51);
  width: calc(100% - 20px);
}

#navigation ul li.active ul li.active ul li a:hover,
#navigation ul li.active ul li.active ul li.active a {
  /*color: rgb(221,136,91);
	color: rgb(229,127,13);
	color: rgb(255,206,46);*/
  color: var(--color-main);
}

/**
 * ANCHOR Mobile Navigation 
 *
 */
.navMobileIcon {
  display: none;
  position: absolute;
  overflow: hidden;
  margin: 0;
  padding: 0;
  top: 94px;
  right: 20px;

  width: 30px;
  height: 30px;
  font-size: 0;
  text-indent: -9999px;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;

  -webkit-transition: background 300ms;
  -moz-transition: background 300ms;
  -o-transition: background 300ms;
  transition: background 300ms;

  background-color: transparent;
}

.navMobileIcon:hover,
.navMobileIcon:focus {
  background-color: transparent;
  outline: none;
}

.navMobileIcon span {
  display: block;
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgb(255, 255, 255);
}

.navMobileIcon span:before,
.navMobileIcon span:after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgb(255, 255, 255);
  content: "";
}

.navMobileIcon span:before {
  top: -8px;
}

.navMobileIcon span:after {
  bottom: -8px;
}

.navMobileIconX span {
  transition: background 0s 0.3s;
}

.navMobileIconX span:before,
.navMobileIconX span:after {
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0s;
}

.navMobileIconX span:before {
  transition-property: top, transform;
}

.navMobileIconX span:after {
  transition-property: bottom, transform;
}

.navMobileIconX.is-active span {
  background: none;
}

.navMobileIconX.is-active span:before {
  top: 0;
  transform: rotate(45deg);
}

.navMobileIconX.is-active span:after {
  bottom: 0;
  transform: rotate(-45deg);
}

.navMobileIconX.is-active span:before,
.navMobileIconX.is-active span:after {
  transition-delay: 0s, 0.3s;
}

#navClose {
  float: left;
  width: 100%;
  height: 90px;
  cursor: pointer;
  background: transparent url("../images/nav-close.png") right top no-repeat;
}

#navMobile ul {
  position: relative;
  float: left;
  margin: 4px 0 0 0;
  padding: 0;
  width: 100%;
}

#navMobile ul li {
  position: relative;
  float: left;
  margin: 0;
  padding: 0;
  width: 100%;
  list-style: none;
  border-bottom: 1px solid rgb(255, 255, 255);
  background-image: none;
}

#navMobile ul li::before {
  content: none;
}

#navMobile ul li a {
  position: relative;
  float: left;
  margin: 0;
  padding: 12px 20px;
  width: 100%;
  display: block;
  font-size: 1.3em;
  text-decoration: none;
  color: rgb(41, 33, 26);
  font-weight: 400;
}

/* Level 2 */
#navMobile ul li ul {
  padding: 0;
  margin: 0 0 10px 0;
  width: 100%;
  border: none;
  display: none;
}

#navMobile ul li ul li {
  padding: 0;
  border-bottom: none;
}

#navMobile ul li ul li a {
  position: relative;
  float: left;
  margin: 0;
  padding: 0 0 8px 35px;
  width: calc(100% - 35px);
  display: block;
  text-transform: none;
  font-size: 1.1em;
  color: rgb(41, 33, 26);
}

/* Level 3 */
#navMobile ul li ul li ul li a {
  padding: 5px 0 5px 50px;
  font-size: 1em;
}

#navMobile a.starter_active,
#navMobile a.active {
  color: rgb(255, 255, 255);
}

#navMobile ul li .openSubmenu {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  width: 80px;
  height: 50px;
  text-align: center;
  cursor: pointer;
}

#navMobile ul li.level-1>ul.menu {
  display: none;
}

#navMobile ul li.level-1.starter_active>ul.menu,
#navMobile ul li.level-2>ul.menu {
  display: block;
}

#navMobile ul li.level-1 .plus {
  background: transparent url("../images/nav-plus.png") right 3px no-repeat;
}

#navMobile ul li.level-1 .minus {
  background: transparent url("../images/nav-minus.png") right 3px no-repeat;
}


/**
 * ANCHOR Formular 
 *
 */
form,
fieldset {
  float: left;
  margin: 0 -15px;
  padding: 0;
  width: calc(100% + 30px);
}

form {
  margin-bottom: 30px;
}

fieldset {
  margin: 0 0 10px 0;
  width: 100%;
}

label,
legend {
  float: left;
  margin: 0 15px;
  padding-top: 14px;
  width: calc(30% - 30px);
}

fieldset .group {
  float: right;
  margin: 0 15px;
  width: calc(70% - 30px);
}

fieldset .group label {
  margin: 0 0 5px 0;
  width: 100%;
}

.required {
  color: rgb(190, 0, 0);
}

select,
input,
textarea {
  float: left;
  margin: 0 15px 5px 15px;
  padding: 10px;
  width: calc(70% - 30px);
  height: 48px;
  border: 1px solid rgb(255, 255, 255);
  border: none;

  background-color: rgb(255, 255, 255);
  outline: none;

  font-family: var(--font-main);
  ;
  font-weight: 400;
  font-size: 1.1rem;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

select {
  padding-right: 40px;
  background-image: url('../images/bg_select.png');
  background-position: right center;
  background-repeat: no-repeat;
}

select::-ms-expand {
  display: none;
}

select:required:invalid {
  color: rgb(179, 179, 179);
}

select option[value=""][disabled] {
  display: none;
}

select option,
select:required:invalid option {
  color: rgb(51, 51, 51);
}

select.mono option {
  font-family: var(--font-main-mono);
  font-size: 0.9rem;
}



textarea {
  padding-top: 8px;
  height: 124px;
}

input[type=text],
input[type=number],
input[type=url],
input[type=tel],
input[type=email],
input[type=password],
select,
textarea {
  -webkit-padding-before: 2px;
  -webkit-padding-after: 2px;
}

/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
	select {
		background-image: url('../images/bg_select.png');
		background-position: right center;
		background-repeat: no-repeat;
	}
}
select {
	background-image: url('../images/bg_select.png');
	background-position: right center;
	background-repeat: no-repeat;
}
select::-ms-value {
	background: none;
}
*/
::-webkit-input-placeholder {
  color: rgb(179, 179, 179);
}

:-moz-placeholder {
  color: rgb(179, 179, 179);
  opacity: 1;
}

::-moz-placeholder {
  color: rgb(179, 179, 179);
  opacity: 1;
}

:-ms-input-placeholder {
  color: rgb(179, 179, 179) !important;
}

::-ms-input-placeholder {
  color: rgb(179, 179, 179);
}

::placeholder {
  color: rgb(179, 179, 179);
}

input[type=submit],
input[type=button],
input[type=reset] {
  float: right;
  cursor: pointer;
  color: rgb(255, 255, 255);
  border: 1px solid rgb(41, 33, 26);
  background-color: rgb(41, 33, 26);
  width: calc(35% - 30px);
}

input[type=submit]:hover,
input[type=button]:hover,
input[type=reset]:hover {
  border: 1px solid rgb(153, 0, 0);
  background-color: rgb(153, 0, 0);
}

input[type=checkbox],
input[type=radio] {
  float: left;
  padding: 6px;
  margin: -2px 10px 0 0;
  width: 20px;
  height: 20px;
  border: 6px solid rgb(255, 255, 255);
}

:root .checkbox input[type=checkbox] {
  margin-top: -3px\0/IE9;
}

:root .radio input[type=radio] {
  margin-top: -3px\0/IE9;
}

input[type=radio] {
  border-radius: 50%;
}

input[type=checkbox]:checked,
input[type=radio]:checked {
  background-color: rgb(55, 55, 55);
}

div.error {
  padding: 10px 10px 2px 10px;
  margin-bottom: 20px;
  color: rgb(255, 255, 255);
  background-color: rgb(180, 0, 0);
  display: none;
}

/* Form stretched */
form.stretched label {
  display: none;
}

form.stretched legend {
  margin-bottom: 5px;
  width: calc(100% - 30px);
}

form.stretched fieldset .group {
  width: calc(100% - 30px);
}

form.stretched fieldset .group label {
  display: block;
}

form.stretched input[type=text],
form.stretched input[type=number],
form.stretched input[type=url],
form.stretched input[type=tel],
form.stretched input[type=email],
form.stretched input[type=password],
form.stretched select,
form.stretched textarea {
  width: calc(100% - 30px);
}

form.stretched input[type=submit],
form.stretched input[type=button],
form.stretched input[type=reset] {
  width: calc(50% - 30px);
}

form.stretched p {
  float: left;
  margin: 15px;
  width: calc(100% - 30px);
}



/**
 * ANCHOR Search Page 
 *
 */
.navSearchIconX {
  position: absolute;
  overflow: hidden;
  margin: 0;
  padding: 0;
  top: 38px;
  right: 30px;
  width: 30px;
  height: 30px;
  font-size: 0;
  text-indent: -9999px;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;

  -webkit-transition: background 300ms;
  -moz-transition: background 300ms;
  -o-transition: background 300ms;
  transition: background 300ms;

  background-color: transparent;
}

.navSearchIconX span {
  display: block;
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  height: 2px;
  background: none;
}

.navSearchIconX span:before,
.navSearchIconX span:after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgb(255, 255, 255);
  content: "";
}

.navSearchIconX span:before {
  top: 0;
  transform: rotate(45deg);
}

.navSearchIconX span:after {
  bottom: 0;
  transform: rotate(-45deg);
}


.search form {
  margin: 0;
  padding: 8px;
  margin-left: calc(50% - 300px);
  width: 584px;
  background: rgb(255, 255, 255);
  /*
	-webkit-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.75);	
	-moz-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.75);
	box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.75);	
	*/
}

.search input {
  float: left;
  border: none;
  margin: 0;
  padding: 5px 10px;
  height: 44px !important;
  width: calc(100% - 44px);
  color: rgba(51, 51, 51, 1);
  border: none;
  background: transparent;
}

.search input:focus {
  color: rgba(51, 51, 51, 1);
}

.search input[type=submit] {
  float: left;
  margin: 0;
  padding: 0;
  height: 44px !important;
  width: 44px;
  background: transparent url('../images/icon_search.png') center -92px no-repeat;
  background-size: 25px auto;
}

.search input[type=submit]:hover {
  border: none;
}


/*-------------------------------------------------------------------------------------
  Search result
-------------------------------------------------------------------------------------*/
.searchForm {
  float: left;
  width: 100%;
  height: auto;
}

.searchForm input {
  float: left;
  margin-bottom: 8px;
  margin-right: 2%;
  height: 35px !important;
  width: 63%;
}

.searchForm input[type=submit] {
  float: left;
  margin-bottom: 8px;
  margin-right: 0;
  padding: 0px 25px !important;
  height: 35px !important;
  width: 35%;
}


.searchResult {
  float: left;
  margin-top: 20px;
  margin-bottom: 5px;
  width: 100%;
  cursor: pointer;
}

.searchResult h3,
.searchResult p {
  margin: 0;
}

.searchResult p .resultPath {
  color: rgb(150, 150, 150);
}


/**
 * ANCHOR Loader
 *
 */
/*
<div class="loader">
	<div class="rect1"></div>
	<div class="rect2"></div>
	<div class="rect3"></div>
	<div class="rect4"></div>
	<div class="rect5"></div>
</div>
*/
.loader {
  position: relative;
  margin: 0 auto;
  top: 35%;
  width: 60px;
  height: 70px;
  text-align: center;
}

.loader>div {
  background-color: rgb(41, 33, 26);
  height: 100%;
  width: 6px;
  display: inline-block;
  -webkit-animation: loader 1.2s infinite ease-in-out;
  animation: loader 1.2s infinite ease-in-out;
}

.loader .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.loader .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.loader .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.loader .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes loader {

  0%,
  60%,
  100% {
    -webkit-transform: scaleY(0.4)
  }

  30% {
    -webkit-transform: scaleY(1.0)
  }
}

@keyframes loader {

  0%,
  60%,
  100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }

  30% {
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}


/*
<div class="loader"><span class="loader-inner"></span></div>
*/
/*
.loader {
	display: inline-block;
	width: 60px;
	height: 60px;
	position: relative;
	border: 4px solid rgb(200,0,0);
	top: 35%;
	left:calc(50% - 30px);
	animation: loader 4s infinite ease;
}
.loader-inner {
	vertical-align: top;
	display: inline-block;
	width: 100%;
	background-color: rgb(200,0,0);
	animation: loader-inner 4s infinite ease-in;
}
@keyframes loader {
	0%   { transform: rotate(0deg); }
	25%  { transform: rotate(180deg); }
	50%  { transform: rotate(180deg); }
	75%  { transform: rotate(360deg); }
	100% { transform: rotate(360deg); }
}
@keyframes loader-inner {
	0%   { height: 0%; }
	25%  { height: 0%; }
	50%  { height: 100%; }
	75%  { height: 100%; }
	100% { height: 0%; }
}
*/


/*
<div class="loader"></div>
*/
/*
.loader {
	display: inline-block;
	position: relative;
	top:calc(40% - 80px);
	left:calc(50% - 80px);
	width: 160px;
	height: 160px;
	background-color: rgb(200,0,0);
	border-radius: 100%;  
	-webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
	animation: sk-scaleout 1.0s infinite ease-in-out;
}
@-webkit-keyframes sk-scaleout {
	0% { -webkit-transform: scale(0) }
	100% { -webkit-transform: scale(1.0); opacity: 0; }
}
@keyframes sk-scaleout {
	  0% { -webkit-transform: scale(0); transform: scale(0); } 
	  100% { -webkit-transform: scale(1.0); transform: scale(1.0); opacity: 0; }
}
*/


/**
 * ANCHOR Alphabetical 
 *
 */
ul.alphabet {
  float: left;
  margin: -5px 0 25px -5px;
  padding: 0;
  width: 100%;
  border-bottom: 1px dotted rgb(0, 0, 0);
}

ul.alphabet li {
  float: left;
  margin: 0;
  padding: 0;
  display: inline;
  list-style: none;
}

ul.alphabet li::before {
  content: none;
}

ul.alphabet li a {
  float: left;
  margin: 0 0 0 0;
  padding: 3px;
  color: rgb(227, 30, 36);
}

ul.alphabet li.active a {
  font-weight: 400;
  color: rgb(0, 0, 0);
}


/**
 * ANCHOR Monatskalender
 *
 */
.monthlyView {
  float: right;
  width: 190px;
  margin: 0 0 20px 30px;
}

.monthlyView td {
  padding: 0;
  height: 26px;
  width: 26px;
  text-align: center;
}

.monthlyView td.info {
  width: calc(100% - 26px);
  text-align: left;

}

.monthlyView td a {
  display: block;
  height: 100%;
}

.monthlyView td a:hover {
  text-decoration: none;
}

.monthlyView td.ti {
  font-size: 0.85em;
}

.monthlyView td.ti.wk {
  font-weight: 500;
}

.monthlyView td.td {
  font-size: 0.85em;
  background-color: rgb(225, 225, 225);
  color: rgb(51, 51, 51);
}

.monthlyView td.td.wk {
  font-weight: 500;
  background-color: rgb(200, 200, 200);
  color: rgb(51, 51, 51);
}

.monthlyView td.td a,
.monthlyView td.td.wk a {
  color: rgb(255, 255, 255);
}

.monthlyView td.td a:hover,
.monthlyView td.td.wk a:hover {
  color: rgb(51, 51, 51);
}

.monthlyView td.td.vacant,
.monthlyView td.td.wk.vacant {
  background: rgb(40, 130, 0);
  color: rgb(255, 255, 255);
}

.monthlyView td.td.vacant a,
.monthlyView td.td.wk.vacant a {
  display: block;
  padding-top: 5px;
  width: 100%;
  height: calc(100% - 5px);
}

.monthlyView td.td.provisorily,
.monthlyView td.td.wk.provisorily {
  background-color: rgb(248, 195, 0);
  color: rgb(255, 255, 255);
}

.monthlyView td.td.definitiv,
.monthlyView td.td.wk.definitiv {
  background-color: rgb(200, 0, 0);
  color: rgb(255, 255, 255);
}

.monthlyView td.td.onStock1,
.monthlyView td.td.wk.onStock1 {
  background-color: rgb(100, 200, 0);
  color: rgb(255, 255, 255);
}

.monthlyView td.td.onStock2,
.monthlyView td.td.wk.onStock2 {
  background-color: rgb(40, 130, 0);
  color: rgb(255, 255, 255);
}

.monthlyView .tooltip {
  position: relative;
  display: block;
  padding-top: 5px;
  width: 100%;
  height: calc(100% - 5px);
  cursor: pointer;
}

.monthlyView .tooltip .tooltiptext {
  visibility: hidden;
  position: absolute;
  padding: 15px 0 5px 0;
  margin-left: -75px;
  width: 150px;
  bottom: 100%;
  left: 50%;
  border-radius: 0px;
  background-color: rgb(76, 76, 76);
  color: rgb(255, 255, 255);
  font-size: 1.1em;
  font-weight: 300;
  text-align: center;
  z-index: 1;
}

.monthlyView .tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border-width: 8px;
  border-style: solid;
  border-color: rgb(76, 76, 76) transparent transparent transparent;
}

.monthlyView .tooltip:hover .tooltiptext {
  visibility: visible;
}

.monthlyView .tooltip .tooltiptext h4 {
  margin-bottom: 5px;
  font-weight: 500;
  color: rgb(255, 255, 255);
}


/**
 * ANCHOR Seatingplan
 *
 */

.seatingplan {
  float: left;
  margin: 10px 15px 10px 15px;
  width: calc(100% - 30px);
}

.seatingplan .stage {
  float: left;
  padding: 12px 0;
  margin: 5px 0 30px 104px;
  width: 293px;
  text-align: center;
  color: rgb(255, 255, 255);
  background-color: rgba(0, 0, 0, 0.5);
}

.seatingplan .row {
  float: left;
  width: 100%;
}

.seatingplan .placeholder {
  float: left;
  width: 37px;
  height: auto;
}

.seatingplan .rownr {
  float: left;
  margin: 0;
  padding-top: 10px;
  width: 30px;
  height: auto;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.0em;
  text-align: left;
}

.seatingplan .seat {
  float: left;
  margin: 0 4px 4px 0;
  padding-top: 10px;
  width: 34px;
  height: 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.0em;
  background: rgb(255, 255, 255);

}

.seatingplan .seat.transparent {
  background: rgba(255, 255, 255, 0.25);
}

.seatingplan .info {
  float: left;
  margin: 0 4px 4px 0;
  padding-top: 2px;
  padding-left: 6px;
  border: 3px solid transparent;
  width: auto;
  height: 18px;
  font-weight: 300;
  line-height: 1.0em;
}

.seatingplan .current {
  background: rgb(51, 51, 51);
  color: rgb(255, 255, 255);
}

.seatingplan .sold {
  background: rgb(153, 0, 0);
  color: rgb(255, 255, 255);
}

.seatingplan .reserve {
  background: rgb(153, 204, 51);
  color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
}

.seatingplan .free {
  cursor: pointer;
}


.seatingplan .container {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  width: 34px;
  height: 38px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.container input {
  position: absolute;
  opacity: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  border: none;
  width: 0;
  height: 0;
}

.container .checkmark {
  position: absolute;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 10px;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.0em;
  text-align: center;
  background-color: rgb(166, 166, 166);
}

.container .checkmark.cat2 {
  background-color: rgb(217, 217, 217);
}

.container .checkmark.cat1 {
  background-color: rgb(242, 242, 242);
}

.container .checkmark.sold {
  background: rgb(153, 0, 0);
  color: rgb(255, 255, 255);
}

.container .checkmark.free {
  cursor: pointer;
}

.container input:checked~.checkmark {
  background-color: rgb(153, 204, 51);
  color: rgb(0, 0, 0);
}



#forwarding .border {
  margin: 0 15px;
}


/**
 * ANCHOR Headlines
 *
 */
.headlines {
  margin-top: 60px;
}

.headlines .imageFrame {
  margin-bottom: 12px;
}

/**
 * ANCHOR Staff (Simple Layout)
 *
 */

.staff-grid {
  display: flex;
  flex-wrap: wrap;
  float: left;
  margin: 0 -15px;
  width: calc(100% + 30px);
  height: auto;
}

.staff-grid .staff {
  float: left;
  margin: 15px;
  width: calc(25% - 30px);
  height: auto;
}

.staff-grid .staff .imageFrame {
  margin-bottom: 10px;
}

.staff-grid .staff .imageFrame:before {
  padding-top: 125%;
}


/**
 * ANCHOR Staff (Complex Layout)
 *
 */
.staff-grid {
  margin: 0 -15px 60px -15px;
  width: calc(100% + 30px);
  overflow: hidden;
}

.staff-cell {
  float: left;
  position: relative;
  margin: 15px;
  width: calc(33.3333% - 30px);
}

.staff-basic {
  float: left;
  width: 100%;
}

.staff-basic .staff-overlay {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
}

.staff-basic .staff-image {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: rgb(222, 222, 222);
  background-position: center top;
  background-size: cover;
}

.staff-basic .staff-image:before {
  content: "";
  display: block;
  padding-top: 60%;
}

.staff-basic .staff-info {
  float: left;
  padding: 15px 15px 10px 15px;
  width: calc(100% - 30px);
  background: rgb(243, 243, 243);
}

.staff-expand {
  position: relative;
  padding: 0;
  margin: 0 -15px;
  left: 0;
  width: calc(300% + 90px);
  height: 0;
  box-sizing: content-box;
  overflow: hidden;
  transition: height .2s ease-in-out;
  background: rgb(255, 255, 255);
}

.staff-expand .staff-image {
  position: relative;
  margin: 40px 15px 60px 15px;
  padding: 0;
  display: inline-block;
  width: calc(33.3333% - 30px);
  background-color: rgb(222, 222, 222);
  background-position: center top;
  background-size: cover;
}

.staff-expand .staff-image:before {
  content: "";
  display: block;
  padding-top: 80%;
}

.staff-expand .staff-info {
  float: left;
  margin: 40px 15px 0 15px;
  padding: 0 15px 0 0;
  width: calc(66.6666% - 45px);
}

.staff-expand .expand-close {
  position: absolute;
  top: 30px;
  right: 15px;
  margin: 0;
  padding: 0;
  width: 26px;
  height: 26px;
  background: transparent;
  font-size: 0;
  text-indent: -9999px;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
}

.staff-expand .expand-close span {
  display: block;
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  height: 2px;
  background: none;
}

.staff-expand .expand-close span:before,
.staff-expand .expand-close span:after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgb(222, 222, 222);
  content: "";
}

.staff-expand .expand-close span:before {
  top: 0;
  transform: rotate(45deg);
}

.staff-expand .expand-close span:after {
  bottom: 0;
  transform: rotate(-45deg);
}

.staff-expand .expand-close:hover span:before,
.staff-expand .expand-close:hover span:after {
  background: rgb(51, 51, 51);
}

.staff-cell.is-collapsed .staff-basic {
  cursor: pointer;
}

.staff-cell.is-expanded .staff-expand {
  height: 300px;
}

.staff-cell.is-expanded .staff-overlay {
  display: block;
}

.staff-cell:nth-of-type(3n+2) .staff-expand {
  margin-left: calc(-100% - 45px);
}

.staff-cell:nth-of-type(3n+3) .staff-expand {
  margin-left: calc(-200% - 75px);
}

.staff-cell:nth-of-type(3n+4) {
  clear: left;
}

/**
 * ANCHOR News
 *
 */
.news {
  float: left;
  width: 100%;
}

.newsOverview {
  float: left;
  padding: 20px 0;
  margin: 0;
  width: 100%;
  border-bottom: 1px dotted rgb(99, 63, 50);

}


/**
 * ANCHOR Gallery
 *
 */
/* overview */
.gallerys {
  display: flex;
  flex-wrap: wrap;
  float: left;
  margin: 0 -15px;
  width: calc(100% + 30px);
  height: auto;
}

.gallerys .album {
  float: left;
  margin: 15px;
  width: calc(50% - 30px);
  height: auto;
  cursor: pointer;
}

.gallerys .album .album_info {
  float: left;
  width: 100%;
  height: auto;
  text-align: center;
}

/* gallery */
.gallery {
  display: flex;
  flex-wrap: wrap;
  float: left;
  margin: 0 -15px;
  width: calc(100% + 30px);
  height: auto;
}

.gallery .images {
  float: left;
  margin: 15px;
  width: calc(50% - 30px);
  height: auto;
}

.gallery .images img {
  width: 100%;
}

.gallery .images.portrait img {
  margin: 0 15%;
  width: 70%;
}


/**
 * ANCHOR Calendar
 *
 */

.events {
  float: left;
  width: 100%;
  height: auto;
}

.events h2 {
  float: left;
  margin: 0 0 15px 0;
  padding: 0 0 5px 0;
  width: 100%;
  border-bottom: 1px solid rgb(234, 238, 244);
}

.eventBlock {
  float: left;
  margin-bottom: 20px;
  width: 100%;
  height: auto;
}

.event {
  float: left;
  padding: 0;
  margin: 0 0 10px 0;
  width: 100%;
  height: auto;
}


.eventShortDate {
  float: left;
  padding: 10px 0;
  margin: 0 24px 0 0;
  width: 76px;
  background: rgb(255, 255, 255);
}

.eventShortDateMonth {
  float: left;
  padding: 0 0 5px 0;
  margin: 0;
  width: 100%;
  line-height: 1em;
  text-align: center;
  text-transform: uppercase;
}

.eventShortDateDay {
  float: left;
  padding: 0 0 5px 0;
  margin: 0;
  width: 100%;
  text-align: center;
  font-size: 1.4em;
  font-weight: 500;
  line-height: 1em;
}

.eventShortDateDayName {
  float: left;
  padding: 0;
  margin: 0;
  width: 100%;
  line-height: 1em;
  text-align: center;
  font-size: 0.7em;
}


.eventInfo {
  float: left;
  width: calc(100% - 100px);
  height: auto;
}

.eventInfo h3 {
  margin: 2px 0 4px 0;
}


/**
 * ANCHOR Shop
 *
 */
.quickBasket {
  position: fixed;
  float: right;
  top: 208px;
  right: calc((100% - 930px) / 2);
  margin: 0 0 0 0;
  padding: 0;
  width: auto;
  background-color: rgb(255, 255, 255);
  z-index: 100;
}

.quickBasket .basket {
  float: left;
  padding: 12px 15px 0 15px;
  height: 34px;
  width: 100%;
  cursor: pointer;

}

.txtBasket {
  margin-right: 10px;
  font-weight: 500;
}


/* products */
.products {
  float: left;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px 45px -15px;
  width: calc(100% + 30px);
  height: auto;
}

.products .product {
  float: left;
  margin: 15px 15px 30px 15px;
  width: calc(33.3333% - 30px);
}

.products .product .imageFrame:before {
  padding-top: 142%;
}

.products .product .productsInfo {
  float: left;
  padding: 0;
  width: 100%;
}

.products .product .flyToBasket {
  margin-top: -6px;
  float: right;
  cursor: pointer;
}





.shop {
  float: left;
  width: 100%;
  height: auto;
}

/* category */
.shop .category {
  float: left;
  margin: 0 6% 30px 0;
  width: 47%;
}

.shop .category:nth-child(2n) {
  margin-right: 0;
}

.shop .category .title {
  float: left;
  margin: 0;
  padding: 5px 0;
  width: 100%;
  text-align: center;
}

/* products */
.shop .products {
  float: left;
  margin: 0 6% 30px 0;
  width: 47%;
}

.shop .products:hover {
  background: rgb(255, 255, 255);
}

.shop .products:nth-child(2n) {
  margin-right: 0;
}

.shop .products .title {
  float: left;
  margin: 0;
  padding: 5px 0;
  width: 100%;
}

.shop .products .price {
  color: rgb(231, 120, 21);
  font-weight: 400;
}


/* Produkt Detail */
.shop .prod_image {
  float: left;
  margin: 0 6% 15px 0;
  width: 90%;
  height: auto;
}

.shop .prod_image:nth-child(n+2) {
  width: 42%;
  height: auto;
}

.shop .prod_image img {
  float: left;
  width: 100%;
  height: auto;
}


/* Warenkorb */
.shop .shopBasket .basket_name,
.shop .shopBasket .basket_name2,
.shop .shopBasket .basket_qty,
.shop .shopBasket .basket_unit,
.shop .shopBasket .basket_price,
.shop .shopBasket .basket_total,
.shop .shopBasket .basket_del,
.shop .shopBasket .basket_subname,
.shop .shopBasket .basket_subname2,
.shop .shopBasket .basket_subtotal {
  float: left;
  width: 100%;
}

.shop .shopBasket .basket_name {
  width: calc(100% - 424px);
  margin-bottom: 15px;
}

.shop .shopBasket .basket_name2 {
  width: calc(100% - 394px);
  margin-bottom: 10px;
}

.shop .shopBasket .basket_qty {
  margin-top: -4px;
  width: 84px;
  text-align: center;
}

.shop .shopBasket .bottomline .basket_qty {
  margin-top: 0;
}

.shop .shopBasket .basket_frame {
  float: left;
}

.shop .shopBasket .basket_unit {
  width: 100px;
  text-align: right;
}

.shop .shopBasket .basket_price {
  width: 100px;
  text-align: right;
}

.shop .shopBasket .basket_total {
  width: 110px;
  text-align: right;
}

.shop .shopBasket .basket_del {
  width: 30px;
  text-align: right;
}

.shop .shopBasket .basket_qty img,
.shop .shopBasket .basket_del img {
  float: left;
  width: 26px;
  height: auto;
  cursor: pointer;
}

.shop .shopBasket .basket_subname {
  width: calc(100% - 150px);
  margin-bottom: 25px;
}

.shop .shopBasket .basket_subname2 {
  width: calc(100% - 120px);
  margin-bottom: 25px;
}

.shop .shopBasket .basket_subtotal {
  width: 120px;
  text-align: right;
}

.shop .shopBasket .bottomline {
  font-weight: 500;
  border-bottom: 1px dotted rgb(0, 0, 0);
  margin-bottom: 10px;
}

.shop .shopBasket .bottomline .basket_name,
.shop .shopBasket .bottomline .basket_name2 {
  margin-bottom: 4px;
}

.shop .shopBasket .topline {
  margin-bottom: 10px;
}

.shop .shopBasket input[type=button],
.shop .shopBasket input[type=submit] {
  float: left;
  margin: 0 20px 20px 0;
  width: calc(50% - 20px);
}

.shop .shopBasket input[type=text] {
  float: left;
  padding: 1px 0 0 0;
  margin: 0;
  width: 32px;
  height: 26px;
  text-align: center;
}


/* Adresse */
.shop #addr1,
.shop #addr2 {
  float: left;
  width: 100%;
}

.shop #addr1 .block_oversize,
.shop #addr2 .block_oversize {
  margin: 0 -15px;
  width: calc(100% + 30px);
}


.shop .errorMessage {
  height: 40px;
  color: rgb(255, 0, 0);
}

.shop .shopAddress input[type=button],
.shop .shopAddress input[type=submit] {
  float: left;
  margin: 0 10px 20px 0;
  width: calc(50% - 10px);
}

.shop #zip,
.shop #zip2 {
  width: 100px;
  margin-right: 5px;
}

.shop #city,
.shop #city2 {
  margin-left: 0;
  width: calc(70% - 135px);
}

.shop .block_checkbox_50 {
  float: left;
  padding-top: 2px;
  width: 10%;
}

.shop .block_label_50 {
  float: left;
  width: 90%;
}

.shop .block_checkbox_100 {
  float: left;
  padding-top: 2px;
  width: 40px;
}

.shop .block_label_100 {
  float: left;
  width: calc(100% - 40px);
}


/* Order */
.shop .shopOrder input[type=button],
.shop .shopOrder input[type=submit] {
  float: left;
  margin: 0 0 20px 0;
  width: 47%;
}

.shop .shopOrder input[type=button] {
  margin-right: 6%;
}


/**
 * ANCHOR FancyBox
 *
 */
.fancybox-enabled {
  overflow: hidden;
}

.fancybox-enabled body {
  overflow: visible;
  height: 100%;
}

.fancybox-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99993;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Make sure that the first one is on the top */
.fancybox-container~.fancybox-container {
  z-index: 99992;
}

.fancybox-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #0f0f11;
  opacity: 0;
  transition-timing-function: cubic-bezier(0.55, 0.06, 0.68, 0.19);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fancybox-container--ready .fancybox-bg {
  opacity: 0.87;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-controls {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  z-index: 99994;
  transition: opacity .2s;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  direction: ltr;
}

.fancybox-show-controls .fancybox-controls {
  opacity: 1;
}

.fancybox-infobar {
  display: none;
}

.fancybox-show-infobar .fancybox-infobar {
  display: inline-block;
  pointer-events: all;
}

.fancybox-infobar__body {
  display: inline-block;
  width: 70px;
  line-height: 44px;
  font-size: 13px;
  font-family: var(--font-main);
  ;
  text-align: center;
  color: #ddd;
  background-color: rgba(30, 30, 30, 0.7);
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: subpixel-antialiased;
}

.fancybox-buttons {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  pointer-events: all;
}

.fancybox-show-buttons .fancybox-buttons {
  display: block;
}

.fancybox-slider-wrap {
  overflow: hidden;
  direction: ltr;
}

.fancybox-slider-wrap,
.fancybox-slider {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  z-index: 99993;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
}

.fancybox-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: auto;
  outline: none;
  white-space: normal;
  box-sizing: border-box;
  text-align: center;
  z-index: 99994;
  -webkit-overflow-scrolling: touch;
}

.fancybox-slide::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  width: 0;
}

.fancybox-slide>* {
  display: inline-block;
  position: relative;
  padding: 24px;
  margin: 44px 0 44px;
  border-width: 0;
  vertical-align: middle;
  text-align: left;
  background-color: #fff;
  overflow: auto;
  box-sizing: border-box;
}

.fancybox-slide--image {
  overflow: hidden;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-content {
  display: inline-block;
  position: relative;
  margin: 44px auto;
  padding: 0;
  border: 0;
  width: 80%;
  height: calc(100% - 88px);
  vertical-align: middle;
  line-height: normal;
  text-align: left;
  white-space: normal;
  outline: none;
  font-size: 16px;
  font-family: var(--font-main);
  ;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-overflow-scrolling: touch;
}

.fancybox-iframe {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--video .fancybox-iframe {
  background: transparent;
}

.fancybox-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  border: 0;
  z-index: 99995;
  background: transparent;
  cursor: default;
  overflow: visible;
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fancybox-image,
.fancybox-spaceball {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  max-width: none;
  max-height: none;
  background: transparent;
  background-size: 100% 100%;
}

.fancybox-controls--canzoomOut .fancybox-placeholder {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.fancybox-controls--canzoomIn .fancybox-placeholder {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.fancybox-controls--canGrab .fancybox-placeholder {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-controls--isGrabbing .fancybox-placeholder {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-tmp {
  position: absolute;
  top: -9999px;
  left: -9999px;
  visibility: hidden;
}

.fancybox-error {
  position: absolute;
  margin: 0;
  padding: 40px;
  top: 50%;
  left: 50%;
  width: 380px;
  max-width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #fff;
  cursor: default;
}

.fancybox-error p {
  margin: 0;
  padding: 0;
  color: #444;
  font: 16px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.fancybox-close-small {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  outline: none;
  background: transparent;
  z-index: 10;
  cursor: pointer;
}

.fancybox-close-small:after {
  content: '×';
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  font: 20px/30px Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: #888;
  font-weight: 300;
  text-align: center;
  border-radius: 50%;
  border-width: 0;
  background: #fff;
  transition: background .2s;
  box-sizing: border-box;
  z-index: 2;
}

.fancybox-close-small:focus:after {
  outline: 1px dotted #888;
}

.fancybox-slide--video .fancybox-close-small {
  top: -36px;
  right: -36px;
  background: transparent;
}

.fancybox-close-small:hover:after {
  color: #555;
  background: #eee;
}

/* Caption */
.fancybox-caption-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 30px 0 30px;
  z-index: 99998;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-sizing: border-box;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.6) 80%, rgba(0, 0, 0, 0.8) 100%);
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
}

.fancybox-show-caption .fancybox-caption-wrap {
  opacity: 1;
}

.fancybox-caption {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-family: var(--font-main);
  color: #fff;
  line-height: 20px;
  -webkit-text-size-adjust: none;
}

.fancybox-caption a,
.fancybox-caption button {
  pointer-events: all;
}

.fancybox-caption a {
  color: #fff;
  text-decoration: underline;
}

/* Buttons */
.fancybox-button {
  display: inline-block;
  position: relative;
  width: 44px;
  height: 44px;
  line-height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  background: transparent;
  color: #fff;
  box-sizing: border-box;
  vertical-align: top;
  outline: none;
}

.fancybox-button--disabled {
  cursor: default;
  pointer-events: none;
}

.fancybox-infobar__body,
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
}

.fancybox-button:hover {
  background: rgba(0, 0, 0, 0.8);
}

.fancybox-button::before,
.fancybox-button::after {
  content: '';
  pointer-events: none;
  position: absolute;
  border-color: #fff;
  background-color: currentColor;
  color: currentColor;
  opacity: 0.9;
  box-sizing: border-box;
  display: inline-block;
}

.fancybox-button--disabled::before,
.fancybox-button--disabled::after {
  opacity: 0.5;
}

.fancybox-button--left::after {
  left: 20px;
  top: 18px;
  width: 6px;
  height: 6px;
  background: transparent;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.fancybox-button--right::after {
  right: 20px;
  top: 18px;
  width: 6px;
  height: 6px;
  background: transparent;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.fancybox-button--left {
  border-bottom-left-radius: 5px;
}

.fancybox-button--right {
  border-bottom-right-radius: 5px;
}

.fancybox-button--close {
  float: right;
}

.fancybox-button--close::before,
.fancybox-button--close::after {
  content: '';
  display: inline-block;
  position: absolute;
  height: 2px;
  width: 16px;
  top: calc(50% - 1px);
  left: calc(50% - 8px);
}

.fancybox-button--close::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.fancybox-button--close::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* Loading spinner */
.fancybox-loading {
  border: 6px solid rgba(100, 100, 100, 0.4);
  border-top: 6px solid rgba(255, 255, 255, 0.6);
  border-radius: 100%;
  height: 50px;
  width: 50px;
  -webkit-animation: fancybox-rotate .8s infinite linear;
  animation: fancybox-rotate .8s infinite linear;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
  z-index: 99999;
}

@-webkit-keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 800px) {
  .fancybox-controls {
    text-align: left;
  }

  .fancybox-button--left,
  .fancybox-button--right,
  .fancybox-buttons button:not(.fancybox-button--close) {
    display: none !important;
  }

  .fancybox-caption {
    padding: 20px 0;
    margin: 0;
  }
}

/* Fullscreen  */
.fancybox-button--fullscreen::before {
  width: 15px;
  height: 11px;
  left: 15px;
  top: 16px;
  border: 2px solid;
  background: none;
}

/* Slideshow button */
.fancybox-button--play::before {
  top: 16px;
  left: 18px;
  width: 0;
  height: 0;
  border-top: 6px inset transparent;
  border-bottom: 6px inset transparent;
  border-left: 10px solid;
  border-radius: 1px;
  background: transparent;
}

.fancybox-button--pause::before {
  top: 16px;
  left: 18px;
  width: 7px;
  height: 11px;
  border-style: solid;
  border-width: 0 2px 0 2px;
  background: transparent;
}

/* Thumbs */
.fancybox-button--thumbs span {
  font-size: 23px;
}

.fancybox-button--thumbs::before {
  top: 20px;
  left: 21px;
  width: 3px;
  height: 3px;
  box-shadow: 0 -4px 0, -4px -4px 0, 4px -4px 0, 0 0 0 32px inset, -4px 0 0, 4px 0 0, 0 4px 0, -4px 4px 0, 4px 4px 0;
}

.fancybox-container--thumbs .fancybox-controls,
.fancybox-container--thumbs .fancybox-slider-wrap,
.fancybox-container--thumbs .fancybox-caption-wrap {
  right: 220px;
}

.fancybox-thumbs {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: 220px;
  margin: 0;
  padding: 5px 5px 0 0;
  background: #fff;
  z-index: 99993;
  word-break: normal;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}

.fancybox-thumbs>ul {
  list-style: none;
  position: absolute;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 0;
}

.fancybox-thumbs>ul>li {
  float: left;
  overflow: hidden;
  max-width: 50%;
  padding: 0;
  margin: 0;
  width: 105px;
  height: 75px;
  position: relative;
  cursor: pointer;
  outline: none;
  border: 5px solid #fff;
  border-top-width: 0;
  border-right-width: 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-sizing: border-box;
}

li.fancybox-thumbs-loading {
  background: rgba(0, 0, 0, 0.1);
}

.fancybox-thumbs>ul>li>img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  max-height: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-thumbs>ul>li:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 2px;
  border: 4px solid #4ea7f9;
  z-index: 99991;
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fancybox-thumbs>ul>li.fancybox-thumbs-active:before {
  opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 800px) {
  .fancybox-thumbs {
    display: none !important;
  }

  .fancybox-container--thumbs .fancybox-controls,
  .fancybox-container--thumbs .fancybox-slider-wrap,
  .fancybox-container--thumbs .fancybox-caption-wrap {
    right: 0;
  }
}


/**
 * ANCHOR Responsive
 *
 */
@media only screen and (max-width: 1120px) {
  #navTop {
    background: rgba(41, 33, 26, 0.6);
  }
}

@media only screen and (max-width: 1100px) {

  .bubble {
    right: 0;

  }

  .inner {
    float: left;
    margin: 0 10px;
    width: calc(100% - 20px);
  }

  .quickBasket {
    right: 25px;
  }

}

@media only screen and (max-width: 820px) {

  .navMobileIcon {
    display: block;
  }

  #navTop,
  #navigation,
  #copyright {
    display: none;
  }

  header {
    height: 150px;
    background-position: -30px top, right top;
    background-size: auto 150px, auto 150px;
  }

  #logo img {
    width: auto;
    height: 100px;
  }

  main {
    margin-top: 150px;
    padding: 40px 0;
  }

  .block.columnLeft,
  .block.columnRight {
    width: calc(100% - 30px);
  }

  .status {
    width: 100%;
  }

  .quickBasket {
    top: 152px;
  }

  .products .product {
    width: calc(50% - 30px);
  }

}

@media only screen and (max-width: 780px) {

  .appearance .title {
    width: calc(100% - 110px);
  }

  .bubble {
    display: none;
  }
}

@media only screen and (max-width: 720px) {

  .footerBlock1 {
    display: none;
  }

  .programm .block.half {
    width: calc(100% - 50px);
  }

  footer {
    height: auto;
  }

  footer:before {
    height: 60px;
    background-size: 600px auto;
  }

  footer .footerBlock2,
  footer .footerBlock3,
  footer .footerBlock4 {
    width: calc(100% - 30px);
  }

  footer .footerBlock4 {
    padding-bottom: 40px;
  }

  ul.socialmedia {
    margin: 0;
    float: left;
  }

  ul.socialmedia li {
    float: right;
    margin: 0 11px 0 0;
  }

}

@media only screen and (max-width: 620px) {

  .seatingplan .stage {
    margin-left: 50px;
    width: 200px;
  }

  .seatingplan .placeholder {
    width: 21px;
  }

  .seatingplan .rownr {
    padding-top: 5px;
    width: 14px;
    font-size: 10px;
  }

  .seatingplan .seat {
    margin: 0 0 2px 0;
    padding-top: 10px;
    height: 20px;
    font-size: 10px;
    width: 19px;
  }

  .alina {
    float: left;
    width: 100%;
    margin: 0 0 20px 0;
  }

}

@media only screen and (max-width: 580px) {

  .mobile,
  .navMobileIcon {
    display: block;
  }

  .desktop,
  #navTop,
  #navigation,
  #copyright {
    display: none;
  }

  #header-search {
    float: inherit;
    position: absolute;
    top: 5px;
    right: 50px;
  }

  #headerImg {
    margin-top: 90px;
    height: calc(40% - 90px);
  }

  .home #headerImg {
    height: calc(100% - 90px);
  }

  #content {
    width: calc(100% - 40px);
  }

  #footer {
    padding: 20px 0;
  }

  #goUp {
    margin-top: -160px;
  }

  /* Galerie */
  .gallerys .album {
    margin: 0;
    width: 100%;
  }

  .gallery .images {
    margin: 10px 0;
    width: 100%;
  }

  .gallery .images img {
    height: auto;
    max-width: 100%;
    max-height: 500px;
  }


  /* Tabelle */
  table.res,
  .res thead,
  .res tbody,
  .res th,
  .res td,
  .res tr {
    display: block;
  }

  .res thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .res tr {
    padding: 3px 0;
    border-bottom: 1px solid rgb(237, 236, 234);
  }

  .res td {
    border: none;
    padding: 1px 0;
    width: auto !important;
    position: relative;
  }

  /* Formulare */
  label {
    margin: 5px 15px 3px 15px;
    width: calc(100% - 30px) !important;
  }

  label.noCaption {
    width: calc(100% - 25px);
  }

  input,
  textarea,
  select {
    font-size: 1.1em;
    width: calc(100% - 30px);
    height: inherit;
    padding: 10px 3% !important;
  }

  input[type=submit],
  input[type=button],
  input[type=resete] {
    padding: 15px 0;
    height: auto;
    width: calc(100% - 30px);

  }

  /*
	input[type=checkbox],
	input[type=radio] {
		padding: 0;
		width:auto !important;
	}
	*/
  .labeling select,
  .labeling input[type=text],
  .labeling textarea {
    margin-right: 0;
    width: 100% !important;
  }

  .labeling input[type=submit],
  .labeling input[type=button],
  .labeling input[type=resete] {
    margin-left: 0;
    width: 100%;
  }

  .contactFormGroup {
    float: left;
    width: 100%;
  }

  .form form p {
    margin-left: 0;
  }

  .search input {
    width: calc(100% - 44px) !important;
  }

  .search input[type=submit] {
    width: 44px !important;
  }



  .block_05,
  .block_10,
  .block_15,
  .block_20,
  .block_25,
  .block_30,
  .block_33,
  .block_35,
  .block_40,
  .block_45,
  .block_50,
  .block_55,
  .block_60,
  .block_65,
  .block_66,
  .block_70,
  .block_75,
  .block_80,
  .block_85,
  .block_90,
  .block_95,
  .block_100 {
    margin: 0;
    width: 100%;
  }

  .block .block.half,
  .block.third,
  .block.quarter,
  .block.two-third {
    margin: 0 -15px;
    width: calc(100% + 30px);
  }

  .form,
  .addr {
    float: left;
    margin: 0;
    width: 100%;
  }


  /*-------------------------------------------------------------------------------------
	  Staff (Simple Layout)
	-------------------------------------------------------------------------------------*/
  .staff-grid {
    margin: 0;
    width: 100%;
  }

  .staff-grid .staff {
    margin: 15px 0;
    width: 100%;
  }


  /*-------------------------------------------------------------------------------------
	  Gallery
	-------------------------------------------------------------------------------------*/
  /* overview */
  .gallerys {
    margin: 0;
    width: 100%;
  }

  .gallerys .album {
    margin: 15px 0;
    width: 100%;
  }

  /* gallery */
  .gallery {
    margin: 0;
    width: 100%;
  }

  .gallery .images {
    margin: 15px 0;
    width: 100%;
  }

  .gallery .images.portrait img {
    margin: 0;
    width: 100%;
  }




  /*-------------------------------------------------------------------------------------
	  Shop
	-------------------------------------------------------------------------------------*/

  /* category */
  .shop .category {
    margin: 0 0 30px 0;
    width: 100%;
  }

  /* products */
  .products .product {
    width: calc(100% - 30px);
  }



  /* Warenkorb */
  .shop .shopBasket .basket_name {
    width: calc(100% - 84px);
    margin-bottom: 10px;
  }

  .shop .shopBasket .basket_qty {
    width: 84px;
    margin-bottom: 10px;
  }

  .shop .shopBasket .basket_frame {
    float: left;
    width: 100%;
  }

  .shop .shopBasket .basket_unit {
    text-align: left;
  }

  .shop .shopBasket .basket_price {
    width: calc(50% - 45px);
  }

  .shop .shopBasket .basket_total {
    width: calc(50% - 45px);
  }

  .shop .shopBasket .basket_del {
    margin-bottom: 20px;
  }

  .shop .shopBasket .basket_subname {
    width: calc(100% - 120px);
  }

  .shop .shopBasket .topline .basket_del {
    display: none;
  }

  .shop .shopBasket .bottomline .basket_name,
  .shop .shopBasket .bottomline .basket_qty {
    margin-bottom: 0;
  }

  .shop .shopBasket .bottomline .basket_qty {
    text-align: right;
  }

  .shop .shopBasket .bottomline .basket_unit {
    text-align: left;
  }

  .shop .shopBasket .bottomline .basket_total {
    width: calc(50% - 15px);
  }

  .shop .shopBasket input[type=text] {
    float: left;
    padding: 0 !important;
    margin: 0;
    width: 32px !important;
    height: 26px;
    text-align: center;
    font-size: 1.0em;
  }

  /* Adresse */
  .shop .shopAddress .block_checkbox_50,
  .shop .shopAddress .block_checkbox_100 {
    width: 10%;
  }

  .shop .shopAddress .block_label_50,
  .shop .shopAddress .block_label_100 {
    width: 90%;
  }



  /* Texte */
  blockquote {
    padding: 15px 0 15px 35px;
  }

  blockquote:before {
    left: 0px;
  }

  .column {
    column-count: 1;
    column-gap: 0;
  }


}