/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

/*
  * if bootstrap is linked in css styles, set auto size so allow in printer dialog of web browser to choose landscape orientation 
  */
@page {
	size: auto !important;
}

body {
	background-image: none;
	font-size: 9pt;
	font-family: 'Fira Sans';
}

.timetable-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20pt 20pt 24pt;
	font-family: 'Prompt';
	font-size: 36pt;
	font-weight: bold;
	text-transform: uppercase;
}

.timetable-header .logo {
	width: 75px;
}

.timetable-headline-range {
	color: rgb(247, 146, 16);
}


.timetable-footer {
	display: flex;
	justify-content: space-between;
	padding: 0 20pt 20pt 24pt;
	font-style: italic;
	color: gray;
}
.lohrothek-program-week a {
	text-decoration: none;
}

.lohrothek-program-week h4 {
	font-weight: normal;
	font-size: 1.2rem;
	text-align: center;
}

.timetable {
	width: 100%;
	display: grid;
	margin: 2pt;
	grid-template-columns: 1.75rem repeat(7, 1fr) 1.75rem;

}

.grid-item {
	display: grid;
	margin: 2px;
	padding: 1pt;
	border-radius: 3px;
}

.day {
	margin-bottom: 6pt;
}

.day>h4 {
	background-color: rgba(0, 0, 0, 0.1);
	font-weight: bold;
	line-height: 1.8rem;
	font-size: 10pt;
	
}

.day>h4 a {
	color: rgba(0, 0, 0, 0.75);
}

.broadcast .starttime {
	display: none;
}

.hour {
	/*margin-top: -0.5rem;*/
	background-color: rgba(0, 0, 0, 0.1);
	text-align: center;
}

.time, .day {
	display: grid;
	text-align: center;
}

.broadcast {
	text-align: left;
	place-content: top;
	overflow: hidden;
	padding-left: 4pt;
}

.broadcast-small {
	font-size: 6pt;
	padding-top: 0;
}

.broadcast-small * {
	line-height: 6pt;
	align-items: center;
}

.broadcast div a {
	color: rgba(0, 0, 0, 0.75);
}

.broadcast-gapfill {
	/* border: 1pt solid rgba(247, 146, 16, 0.25); */
	background-color: rgba(247, 146, 16, 0.1);
}

.broadcast-no-gapfill {
	/* border: 1pt solid rgba(247, 146, 16, 0.25); */
	background-color: rgba(247, 146, 16, 0.2);
}

.broadcast-small * {
	font-size: 6pt !important;
}

.broadcast-small div a {
	font-size: 0.5rem;
}

.only-small-view {
	display: none;
}