html, body {
  min-height: 100%;
  scroll-behavior: smooth;
  width: auto !important;
  overflow-x: auto !important;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-y: auto;
  background-color:whitesmoke;
}

.AUX-content
{
	margin-top: 5px;
	margin-bottom: 45px;
}

#spinner-div {
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 2;
}

.spinner-loader {
  position: relative;
  top: 40%;
}

.AUX-buttonline {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.05); /* Dunklere Hintergrundfarbe mit 10% Deckkraft */
  padding: 0;
  margin: 0;
}

.AUX-infoicon-blink {
    animation: AUXinfoIconfadeBlink 1.5s infinite;
  }

@keyframes AUXinfoIconfadeBlink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

/* Guest Book view styles START */
.slider-wrap { position: relative; }

.slider-bubble{
  position: absolute;
  top: -1.5rem;                 /* etwas höher = luftiger */
  left: 0;
  transform: translateX(-50%);
  padding: .25rem .5rem;
  font-size: .8rem;
  line-height: 1;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  border-radius: .5rem;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
  transition: left .06s linear, transform .06s linear;
}

/* kleine Pfeilspitze */
.slider-bubble::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: transparent;
}

/* Pfeil in Primary einfärben, wenn die Bubble .bg-primary hat */
.slider-bubble.bg-primary::after{
  border-top-color: #007bff;
}
/* Guest Book view styles END */

/* Bootstrap Customization START*/
.custom-card {
  border: none; /* Kein Rahmen */
}

.AUX-card-m2{
  padding: 0.0rem;
  margin: 0px;
  padding: 1px;
}

.col-xl-4, .col-xl-8, .col-xl-12, .col-md-4, .col-md-8, .col-md-12 {
  margin: 0px;
  padding: 1px;
} 

.card{
  border-radius: 0px;
  margin: 0px;
  padding: 0px;
}

.container-fluid{
  width: calc(100% - 40px);
  padding-left: 10px;
  padding-right: 10px;
}

.btn-group-xs > .btn, .btn-xs {
  padding: .5rem .2rem;
  font-size: .875rem;
  line-height: .5;
  border-radius: .2rem;
}

.AUX-noradius-button {
  border-radius: 0; 
}

.AUX-noradius-btn-group .btn {
  border-radius: 0; /* Entferne abgerundete Ecken */
}

.nav-tabs .nav-item .nav-link {
  border-radius: 0; /* Entferne abgerundete Ecken */
}

/* Almost Fullscreen Modal START */
.AUX-almost-fullscreen {
  max-width: 97%;
  width: 97%;
  height: auto;
  margin: 2% auto;
}

.AUX-almost-fullscreen .modal-content {
  height: 90vh;
  border-radius: 6px;
}
/* Almost Fullscreen Modal END */

/* Fading Color Button START */
@keyframes colorFade {
  0% {
    background-color: #28a74600; /* Erfolgsfarbe */
  }
  50% {
    background-color: #dc3545; /* Warnungsfarbe */
    color: #fff;
  }
  100% {
    background-color: #28a74600; /* Erfolgsfarbe */
  }
}

.btn-fade {
  animation: colorFade 2s infinite; /* Ändere die Dauer nach Bedarf */
}
/* Fading Color Button END */

/* Bootstrap Customization END*/

/* Navigation Start */
.AUX-navbar-brand a:hover {
  color: white;
  text-decoration: none;
}

.AUX-navbar-brand-link {
  display: inline-block;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
  /* margin-left: 24px; */
  color: white;
}

.AUX-navbar-fixed{
  background-color:rgba(32, 32, 32, 0.5);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.AUX-toggle-sidenav-btn
{
	margin-right: 10px;
	font-size:20px;
	cursor:pointer;
	color: white
}

/* Navigation End */

/* Header Start */
.AUX-image-header {
  height: 55px;
  min-height: 55px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}
/* Header End */

/* Login Page Start */
.AUX-login-body{
	background: #d2d6de;
}

.AUX-login-container{
    margin-top: 7%;
    margin-bottom: 7%;
}
/* Login Page End */

/* Login Form Start */
.AUX-login-form{
    padding: 5%;
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 9px 26px 0 rgba(0, 0, 0, 0.19);
	max-width: 30rem;	
	background-color:whitesmoke;
}

.AUX-login-form p{
    text-align: center;
    color: #333;
}

.AUX-login-container form{
    padding: 10%;
}

.AUX-login-container-header{
	color: #333;
	font-size: 35px;
  	text-align: center;
  	margin-bottom: 35px;
}

.btnSubmit
{
    width: 50%;
    border-radius: 1rem;
    padding: 1.5%;
    border: none;
    cursor: pointer;
}

.AUX-login-form .btnSubmit{
    font-weight: 600;
    color: #fff;
    background-color: #0062cc;
}

.AUX-login-form .ForgetPwd{
    color: #0062cc;
    font-weight: 600;
    text-decoration: none;
}
/* Login Form End */

/* Message Start */
.AUX-message-body{
	background: #d2d6de;
}

.AUX-message-container{
    margin-top: 7%;
    margin-bottom: 7%;
}

.AUX-message-container-header{
	color: #333;
	font-size: 35px;
  	text-align: center;
  	margin-bottom: 35px;
}

.AUX-message{
	padding-top: 25px;
    padding-left: 25px;
	padding-right: 25px;
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 9px 26px 0 rgba(0, 0, 0, 0.19);
	max-width: 30rem;	
	background-color:whitesmoke;
	border-radius: 0;
}

.AUX-message p{
    text-align: center;
    color: #333;
}
/* Message End */

/* Drag and Drop Start */
.draggable { 
  position: absolute; 
}
/* Drag and Drop End */

/* Event Bookings Start */

#floorplan-card {
  overflow-x: auto;
  overflow-y: auto;
  position: relative;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.AUX-booking-red-border {
    border: 4px solid red;
}

.AUX-booking-status{
  font-size: 14px;
  padding-left: 6px;
  padding-top: 6px;
  padding-bottom: 6px;
  border-top:1px silver ;
  border-left:1px silver ;
  border-right:1px silver ;
  border-radius: 0px;
  color: black;
  background-color: rgba(128, 128, 128, 0.3);
}
.AUX-booking-status h6{
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0;
}

.AUX-inside-scroll{
  max-height: 1080px;
  overflow-x: hidden;
  overflow-y: auto;
}

.AUX-booking-text{
  color: white;
}

.AUX-booking-F14{
  font-size: 14px;
  line-height: normal;
}

.AUX-booking-gridlayout{
  position: relative;
}

.AUX-booking{
	padding-left: 8px;
	padding-right: 8px;
}

.AUX-booking a{
 	text-decoration: none;
}

.AUX-booking-badge{
  padding: 0.065em 0.15rem;
	margin-top: 2px;
	margin-right: 3px;
  font-size: 9px;
}

.AUX-booking-badge-lg{
  padding: 0.01rem 0.2rem;
	margin-top: 2px;
	margin-right: 0px;
  font-size: 11px;
}

.AUX-booking-blocked-bg{
  background-color:red ;
  border-radius: 3px;
  color: white;
}

.AUX-booking-blocked-border{
  border:0px solid red ;
  border-left: 8px solid gray ;
  border-radius: 0px;
  color: white;
  background-color: rgba(255, 0, 0, 0.3);
  margin-bottom: 2px;
}

.AUX-booking-blocked{
  --chair-color: red;
  --chair-brightness: 0.85;
  margin: 2px;
  padding: 0 0 0 3px;
  transition: transform .2s;
  width: 60px;
  height: 60px;
  background-color:red ;
  border: 0px solid blue;
  font-size:9px;
  color: white;
}

.AUX-booking-blocked::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: red;
  border-radius: 10%;
  z-index: 1; /* über Stühlen, unter Inhalt */
}

/* Inhalt (Text etc.) bleibt oben */
.AUX-booking-blocked > * {
  position: relative;
  z-index: 2;
}

.AUX-booking-blocked a{
  color: white;
  text-decoration: none;	
}

.AUX-booking-blocked:hover {
  transform: scale(1.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  z-index: 1;
}

.AUX-booking-free-bg{
  background-color:silver ;
  border-radius: 3px;
  color: black;
}

.AUX-booking-free-border{
  border:0px solid silver ;
  border-left: 8px solid silver ;
  border-radius: 0px;
  color: black;
  background-color: rgba(128, 128, 128, 0.3);
  margin-bottom: 2px;
}

.AUX-booking-free{
  --chair-color: silver;
  margin: 2px;
  padding: 0 0 0 3px;
  transition: transform .2s;
  width: 60px;
  height: 60px;
  background-color:silver ;
  border: 0px solid blue;
  font-size:9px;
  color: black;
}

.AUX-booking-free::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: silver;
  border-radius: 10%;
  z-index: 1; /* über Stühlen, unter Inhalt */
}

/* Inhalt (Text etc.) bleibt oben */
.AUX-booking-free > * {
  position: relative;
  z-index: 2;
}

.AUX-booking-free a{
  color: black;
  text-decoration: none;	
}

.AUX-booking-free:hover {
  transform: scale(1.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  z-index: 1;
}

.AUX-booking-booked-bg{
  background-color:forestgreen;
  border-radius: 3px;
  color: white;
}

.AUX-booking-booked-border{
  border:0px solid forestgreen;
  border-left: 8px solid forestgreen;
  border-radius: 0px;
  color: black;
  background-color: rgba(34, 139, 34, 0.3);
  margin-bottom: 2px;
}

.AUX-booking-booked{
  --chair-color: forestgreen;
  margin: 2px;
  padding: 0 0 0 3px;
  transition: transform .2s;
  width: 60px;
  height: 60px;
  background-color:forestgreen;
  border: 0px solid blue;
  font-size:9px;
  color: white;
}

.AUX-booking-booked::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: forestgreen;
  border-radius: 10%;
  z-index: 1; /* über Stühlen, unter Inhalt */
}

/* Inhalt (Text etc.) bleibt oben */
.AUX-booking-booked > * {
  position: relative;
  z-index: 2;
}

.AUX-booking-booked a{
  color: white;
  text-decoration: none;	
}

.AUX-booking-booked:hover {
  transform: scale(1.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  z-index: 1;
}

.AUX-booking-late-bg{
  background-color:darkorange ;
  border-radius: 3px;
  color: white;
}

.AUX-booking-late-border{
  border:0px solid darkorange ;
  border-left: 8px solid darkorange ;
  border-radius: 0px;
  color: black;
  background-color: rgba(255, 140, 0, 0.3);
  margin-bottom: 2px;
}

.AUX-booking-late{
  --chair-color: darkorange;
  margin: 2px;
  padding: 0 0 0 3px;
  transition: transform .2s;
  width: 60px;
  height: 60px;
  background-color:darkorange ;
  border: 0px solid blue;
  font-size:9px;
  color: white;
}

.AUX-booking-late::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: darkorange;
  border-radius: 10%;
  z-index: 1; /* über Stühlen, unter Inhalt */
}

/* Inhalt (Text etc.) bleibt oben */
.AUX-booking-late > * {
  position: relative;
  z-index: 2;
}

.AUX-booking-late a{
  color: white;
  text-decoration: none;	
}

.AUX-booking-late:hover {
  transform: scale(1.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  z-index: 1;
}

.AUX-booking-taken-bg{
  background-color: rgb(11, 91, 211);
  border-radius: 3px;
  color: white;
}

.AUX-booking-taken-border{
  border:0px solid rgb(11, 91, 211);
  border-left: 8px solid rgb(11, 91, 211);
  border-radius: 0px;
  color: black;
  background-color: rgba(11, 91, 211, 0.3);
  margin-bottom: 2px;
}

.AUX-booking-taken{
  --chair-color: rgb(11, 91, 211);
  margin: 2px;
  padding: 0 0 0 3px;
  transition: transform .2s;
  width: 60px;
  height: 60px;
  background-color: rgb(11, 91, 211);
  border: 0px solid blue;
  font-size:9px;
  color: white;
}

.AUX-booking-taken::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color:  rgb(11, 91, 211);
  border-radius: 10%;
  z-index: 1; /* über Stühlen, unter Inhalt */
}

/* Inhalt (Text etc.) bleibt oben */
.AUX-booking-taken > * {
  position: relative;
  z-index: 2;
}

.AUX-booking-taken a{
  color: white;
  text-decoration: none;	
}

.AUX-booking-taken:hover {
  transform: scale(1.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  z-index: 1;
}

.AUX-chairTL,
.AUX-chairTC,
.AUX-chairTR,
.AUX-chairLT,
.AUX-chairLC,
.AUX-chairLB,
.AUX-chairRT,
.AUX-chairRC,
.AUX-chairRB,
.AUX-chairBL,
.AUX-chairBC,
.AUX-chairBR {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--chair-color);
  filter: brightness(var(--chair-brightness, 1.1));
  z-index: 0;
}

/* Positionierung */
/* Obere Reihe */
.AUX-chairTL { left: 5px;   top: -6px; }
.AUX-chairTC { left: 24px;  top: -6px; }
.AUX-chairTR { right: 5px;  top: -6px; }

/* Untere Reihe */
.AUX-chairBL { left: 5px;   bottom: -6px; }
.AUX-chairBC { left: 24px;  bottom: -6px; }
.AUX-chairBR { right: 5px;  bottom: -6px; }

/* Linke Seite */
.AUX-chairLT { left: -6px;  top: 5px; }
.AUX-chairLC { left: -6px;  top: 24px; }   /* CENTER links */
.AUX-chairLB { left: -6px;  bottom: 5px; }

/* Rechte Seite */
.AUX-chairRT { right: -6px; top: 5px; }
.AUX-chairRC { right: -6px; top: 24px; }   /* CENTER rechts */
.AUX-chairRB { right: -6px; bottom: 5px; }

.AUX-wrap{
  display: inline-block;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: normal;
  line-break: strict;
  hyphens: none;
  -webkit-hyphens: none;
  -moz-hyphens: none;
}

.AUX-nowrap{
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.AUX-booking-bottom{
  position: absolute;
  bottom: 0;
  left: 3px;
}
/* Event Bookings End */

/* Booking Details Start */
.AUX-booking-details-booked
{
	padding: 6px 15px;
	margin-bottom: 15px;
	background-color: forestgreen;
	color: white;
}
.AUX-booking-details-taken
{
	padding: 6px 15px;
	margin-bottom: 15px;
	background-color: darkorange;
	color: white;
}

.form-group.flex-row {
  display: flex; 
  flex-wrap: wrap;
  align-items: center;
}

.form-group.flex-row label {
  flex: 1;
}

.form-group.flex-row input {
  flex: 5;
}

.form-group.flex-row select {
  flex: 5;
}

@media (max-width: 576px) {
  .form-group.flex-row label,
  .form-group.flex-row input {
    flex: 100%;
  }
}

/* Booking Details End */

/* Waiting List Start */
.AUX-btn-50
{
	width: 47%;
	margin-left: 1%;
	margin-right: 1%;
	margin-top: 10px;
}

.AUX-btn-33
{
	width: 30%;
	margin-left: 1%;
	margin-right: 1%;
	margin-top: 10px;
}

/* The customcheck */
.customcheck {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.customcheck input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 5px;
}

/* On mouse-over, add a grey background color */
.customcheck:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.customcheck input:checked ~ .checkmark {
    background-color: #02cf32;
    border-radius: 5px;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.customcheck input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.customcheck .checkmark:after {
    left: 9px;
    top: 6px;
    width: 7px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.accordion .fa{
	margin-right: 0.5rem;
}

.AUX-accordion-card-header{
	padding: 0px;
}
.AUX-accordion-button:hover{
	text-decoration: none;	
}

/* Waiting List End */

/* Footer Start */
.AUX-footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
}

.AUX-footer a{
  color: white;
}

.AUX-footer a:hover {
  color: white;
}
/* Footer End */