@charset "UTF-8";
/* CSS Document */

/* ---------------------------------
   --- DESKTOP REGELN (Standard) --- 
   --------------------------------- */
.kalender-container {
	display: flex;
	flex-direction: column;
	margin: 24px 0px;
	gap: 25px;
    width: 100%;
}

.kalender-reihe {
	display: flex;
	justify-content: center;
	width: 100%;
	gap: 15px;
}

.kalender {
	flex: 1 1 0;
	min-width: 0;
    box-sizing: border-box;
}

/* ---------------------------------
   --- BESTEHENDE KALENDER REGELN (Formatierung) --- 
   --------------------------------- */
.tage {
	display: grid;
	grid-template-columns: repeat(7,1fr);
	gap: 1px;
	padding: 1px 10px;
	font-family: 'Open Sans', sans-serif;
}

.tage div {
	text-align: center;
	padding: 10px;
	border: 1px solid #E6E6E6;
	background-color: #ffffff;
	font-weight: bold;
	border-radius: 5px;
}

.tage div:nth-child(7n) {
	color: #e74c3c; /* Sonntage */
	font-weight: bold;
}

.entleerung {
	background: #6B4542;
background: -webkit-linear-gradient(127deg,rgba(107, 69, 66, 1) 0%, rgba(44, 8, 12, 1) 100%);
background: -moz-linear-gradient(127deg,rgba(107, 69, 66, 1) 0%, rgba(44, 8, 12, 1) 100%);
background: linear-gradient(127deg,rgba(107, 69, 66, 1) 0%, rgba(44, 8, 12, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(
  startColorstr="#6B4542",
  endColorstr="#2C080C",
  GradientType=0
);
	font-weight: 700;
	color: #FFFFFF;
	box-shadow: 1px 3px 20px 2px rgba(26,16,17,0.40);
	border: 0 !important;
	z-index: 100;
}

.feiertag {
	color: #e74c3c; /* Feiertage */
	font-weight: bold;
}

.monat{
	background: #ACAA94;
	color: #FFFFFF;
	font-weight: 600;
	text-transform: uppercase;
	text-align: center;
	margin: 1px 10px;
	padding: 5px;
	font-family: 'Roboto Slab', serif;
	letter-spacing: 0.1em;
	border-radius: 5px;
}




/* ---------------------------------
   --- MOBILE REGELN (unter 768px) --- 
   --------------------------------- */
@media only screen and (max-width: 768px) {
	
/* BREAKOUT FIX */
#biotonnen {
	width: 100vw !important; 
	max-width: none !important;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	padding: 24px 12px 24px 12px !important; 
	box-shadow: none; 
}

#content, .intro {
	width: 100% !important;
	max-width: none !important;
	float: none !important; 
}

/* STAPELN ERZWINGEN */
.kalender-reihe {
	display: flex !important; 
	flex-direction: column !important; 
	gap: 0;
	margin-bottom: 25px; 
	justify-content: unset !important;
}

/* Jeder Kalender volle Breite */
.kalender {
	width: 100% !important;
	margin-bottom: 25px; 
	flex: none !important; 
	max-width: none !important;
}
	
}