.program {
	display: flex;
	gap: 60px;
	flex-direction: column;
}

/* program sekce */
.program-sekce {
	border-left-width: 14px;
	border-left-style: solid;
	/*border-bottom-width: 14px;
	border-bottom-style: solid;*/
}
.program-sekce-title {
	padding: 10px;
	color: white;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: bold;
}

/* program datum */
.program-datum-out {
	display: flex;
	gap: 40px;
	flex-direction: column;
}
.program-datum {
	border-right-width: 8px;
	border-right-style: solid;
	border-bottom-width: 8px;
	border-bottom-style: solid;
}
.program-datum-title-out {
	display: flex;
	justify-content: flex-end;
}
.program-datum-title {
	padding: 10px 10px 10px 18px;
	color: white;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: bold;
	white-space: nowrap;
	display: flex;
	align-items: center;
}

/* program misto */
.program-misto-out {
	display: flex;
	gap: 20px;
	flex-direction: column;
}
.program-misto {
	border-left-width: 8px;
	border-left-style: solid;
}
.program-misto-title {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.program-misto-title-in {
	padding: 10px;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: bold;
	display: flex;
	align-items: center;
}

/* program blok */
.program-blok-out {
	display: flex;
	gap: 0;
	flex-direction: column;
	margin-bottom: 5px;
}
.program-blok {
	border: 2px solid #7C7C7C;
	margin: 5px 5px 0 5px;
}
.program-blok-row {
	background-color: #F5F5F5;
	border-bottom: 1px solid #e5e5e5;
	padding: 10px;
	display: flex;
	gap: 10px;
}
.program-blok-row--head {
	background-color: #E7E7E7;
	border-color: #aaa;
}
.program-blok-row--head .program-blok-row-h,
.program-blok-row--head .program-blok-row-time {
	font-weight: bold;
	font-size: 110%;	
}
.program-blok-row--border {
	border: 2px solid #999;
	background: white;
	margin: 2px;
}
.program-blok-row--margin {
	margin: 2px;
}
.program-blok-row-time {
	display: flex;
	width: 100px;
	gap: 5px;
	justify-content: center;
	flex: 0 0 auto;
}
.program-blok-row-time-hour {
	width: 40px;
}
.program-blok-row-desc {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.program-blok-row-h {
	font-weight: bold;
}


