<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
 box-sizing: border-box; 
 }

textarea {
   font-family: 'Poppins', sans-serif;
   font-size: inherit;
}

td, th,p,div,li, input, textarea
{
	font-family: 'Poppins', sans-serif;
	font-size: 16pt;
	font-weight: normal;
}

.headline
{
	/* 
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18pt;
	color: #666;
	text-decoration: none;
	 */
	font-weight: bold;
    margin: 10px;
}

.stornoheadline
{
	font-family: 'Poppins', sans-serif;
	font-size: 16pt;
	font-weight: bold;
	color: #666;
	text-decoration: none;
	margin: 5%;
}

/* Meldungsfenster in Fenstermitte */
#meldung {
	font-size: 24pt;
	opacity: 0.8;
	background-color: #E0E0E0;	
	position: absolute;
	z-index: 100;
	left: 0;
	width: 100%;
	top:0;
	height: 100%;
	padding: 100px;
	display:none;
	}


a { text-decoration: none; }
a:link, a:visited { color: #333; }
a:hover, a:active { color: #999; }

TABLE { border-collapse: collapse; }
fieldset { border: 0; padding: 0; }

body
{
	color: #333;
	background-color: #fff;
	margin: 0;
}

#inputcontrolscontainer {margin: 10px; line-height: 26px; }

.inputBox
{
	width: 100%;
	height: 36px;
	font-size: 12pt;
	line-height: 16px;
	border: 1px solid #dfdfdf;
	background-color: #fff;
    padding: 12px 16px;
    margin: 6px 0;
    box-sizing: border-box;
}
#tbNotiz { height: 80px; }

.standardselect { font-size: 16pt; }


#progress_bar_table { width:100%; } /* z.B. {width:100%;} */
.progress_bar { background-color: #dfdfdf; } /* Hintergrundfarbe der Fortschrittsanzeige */
.progress_bar td, th { padding: 5px; font-size: 18px; width: 20%; }
.progress_bar_2nd_row td { vertical-align: text-top; }

.resource_list  { list-style: none; margin: 0;  padding: 0; margin-top: 12px; }
.resource_list li { width:100%; border: 0; margin: 0 0 8px 0; padding: 12px; text-align:left; cursor: pointer; color: #616160; font-size: 16px; }
.resource_list_item { background-color: #dfdfdf; }
.resource_list_selecteditem { background-color: #addaff; font-weight: bold; }
.resource_list img { max-width: 100%; }

#singleresourceheader { }

.termintable { background-color: #fff; width:100%; }
/* .termintable th { height:15px; border: 1px solid #ddd;  font-weight: bold; text-align:center;} /* Standardfarbe, die meisten Zellen, können nicht gebucht werden */
.termintable td { width:40px; height:40px; border: 1px solid #cccccb; text-align:center;} /* Standardfarbe, die meisten Zellen, können nicht gebucht werden */
.termintable th { height:15px; line-height: 30px; border: 0;  background-color: #addaff; color: #616160; font-weight: bold; text-align:center;} /* Standardfarbe, die meisten Zellen, können nicht gebucht werden */
.termintable a { font-weight: bold; color: #fff;}
.th1 { background-color: #e4e2d8; } /* Termintabelle Header erste Zeile */
.th2 { background-color: #e4e2d8; } /* Termintabelle Header zweite Zeile */
.sc { background-color: #dfdfdf; } /* sc = StandardCell = Grundfarbe der Termintabelle linke Spalte */
.hc { background-color: #bfbeb6; } /* hc = FullHourCell = Farbe für "volle Stunden" (z.B. 08:00) in der linken Spalte */
.oc { background-color: #999; } /* oc = OccupiedCell = Zellen, die von Besuchern gebucht wurden */
.ec{ background-color: #dfdfdf; } /* ec = EmptyCell = freie Zellen */
.selecteditem{ background-color: #addaff; font-weight: 400; color: #616160; font-size: 18px; padding: 14px;} /* ausgewählter Menüpunkt */
.availableday { background-color: #addaff; cursor: pointer;} /* verfügbarer Tag mit freien Terminen */
.availabletime { background-color: #fbd8b6; font-weight: 400; padding: 8px; cursor: pointer; font-size: 20px;} /* verfügbare Uhrzeiten am ausgewählten Tag */
#selectedday { outline: 0px solid #fbd8b6; font-weight: bold; background-color: #fbd8b6;} /* ausgewählter Tag im Kalender */
.footer { color:#FFF; font-size: 1px; line-height: 14px; margin: 10px;}

.inputcontrols td {
  font-size: 16px;
    color: #616160;
}

/* Radio Buttons Style */

input[type="radio"] {
  display: none;
}

input[type="radio"] + label:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  vertical-align: middle;
  border: 1px solid #616160;
  border-radius: 50%;
}

input[type="radio"]:checked + label:before {
  background-color: #616160;
}

/* HOVER */
.availabletime:hover { font-weight: bold;}
.availableday:hover { font-weight: bold; background-color:#fbd8b6;}

/* MEDIA QUERIES */
@media (max-width: 767px) {
  .selecteditem {
    font-size: 16px;
    padding: 16px;
  }
}

@media (max-width: 767px) {
  .progress_bar td, .progress_bar th {
    font-size: 16px;
      width:5%;
  }
}

@media (max-width: 767px) {
  .progress_bar_2nd_row td, .progress_bar_2nd_row th {
    font-size: 16px;
      padding: 2%;
  }
}

@media (max-width: 767px) {
  .headline {
margin: 5px;
    }
}

@media (max-width: 767px) {
  .availabletime {
      word-wrap: break-word;
      display: grid;
      text-align: center;
  }
}

.inputBox::placeholder {
  color: transparent;
}

.progress_bar_2nd_row td {
padding-top: 1em;
}

.termintable {
  margin-top: 0px;
}

#inputcontrolscontainer {
  padding-top: 0px;
}

.link {
  display: inline-block;
  padding: 10px;
  margin: 10px;
  background-color: #dfdfdf;
}

span.headline ~ p {
  padding: 0 10px;
}

table.termintable ~ span, table.termintable ~ p {
    padding: 0 10px;
    display: block;
}</pre></body></html>