

.harmonogram {
	display: flex;
	justify-content: space-evenly;
}

.harmonogram-kategorie {
		flex-basis: auto;
		flex-grow: 1;
		margin-left: 2%;
		margin-right: 2%;
}

.timetable {
	border: 1px solid black;
	display: flex;
	flex-direction: column;
}

.timetable-discipline {
	border: 2px solid black;
	position: relative;
}

.timetable-discipline:nth-child(even) {
	background: #ccc;
	position: relative;
}

.timetable-discipline:nth-child(odd) {
	background: #eee;
	position: relative;
}

.timetable-text {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	text-align: center;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
  	font-size: 1.3rem;
  	flex-direction: column;
}

@media screen and (max-width: 1081px) {
	.timetable-text {
		font-size: small;
	}
}

.timetable-discipline:nth-child(even) .timetable-complete {
	background: #00cc69;
}

.timetable-discipline:nth-child(odd) .timetable-complete {
	background: #33ff9c;
}


.competitor-highlight {
	color: red;
	display: block;
}
