#tv * {
	box-sizing: border-box;
}

#tv .font-time {
	font-size: 100%;
}

#tv .tv-padding {
	padding: 20px;
}

#tv .tz-message {
	font-weight: bold;
	text-transform: uppercase;
	text-align: right;
	margin-bottom: 20px;
	font-size: 90%;
}

#tv .multi-column-flex-container {
	display: flex;
	flex-direction: column;
}

#tv .multi-column-flex-container>* {
	margin: 5px 0;
}

#tv .column-flex-container {
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(16, 62, 102, 1);
}

#tv .heading-row-flex-container {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 100%;
	font-weight: bold;
}

#tv .heading-row-flex-container>*:first-child {
	flex-basis: 20%;
	padding: 20px;
	text-transform: capitalize;
	background-color: #fff;
	color: rgb(0, 53, 95);
	border-right: 20px solid rgb(0, 53, 95);
	text-align: center;
}

#tv .heading-row-flex-container>*:nth-child(n+2) {
	font-size: 90%;
	flex-basis: 10%;
}

#tv .row-flex-container {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 100%;
	margin: 5px 0;
}

#tv .row-flex-container>*:first-child {
	flex-basis: 20%;
	padding: 20px;
	font-weight: bold;
}

#tv .times-flex-container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-content: center;
	width: 100%;
}

#tv .font-time {
	font-size: 90%;
}

#tv .tv-time-flex-container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	background-color: #0088ed;
	padding: 20px;
	white-space: nowrap;
	overflow-x: auto;
}

#tv .tv-time-flex-container>* {
	margin: 2px 0;
	display: inline-block;
}

#tv .tv-time-flex-container>*:first-child {
	margin-top: 0;
}

#tv .tv-time-flex-container>*:last-child {
	margin-bottom: 0;
}

@media (max-width:1200px) {
	#tv .tv-padding {
		padding: 10px;
	}

	#tv .heading-row-flex-container>*:first-child {
		padding: 10px;
		border-right: 10px solid rgb(0, 53, 95);
	}

	#tv .tv-time-flex-container {
		padding: 10px;
	}
}

@media (max-width:767px) {
	#tv .tz-message {
		text-align: center;
		margin-bottom: 10px;
		font-size: 125%;
	}

	#tv .font-time {
		font-size: 125%;
	}

	#tv .heading-row-flex-container {
		flex-direction: column;
	}

	#tv .heading-row-flex-container>*:first-child {
		flex-basis: 100%;
		width: 100%;
		border-right: none;
		border-left: none;
		border-top: none;
		font-size: 150%;
	}

	#tv .heading-row-flex-container>*:nth-child(n+2) {
		display: none;
	}

	#tv .row-flex-container {
		flex-direction: column;
		justify-content: center;
	}

	#tv .row-flex-container>*:first-child {
		flex-basis: 100%;
		text-align: center;
		padding: 10px;
		font-size: 125%;
	}

	#tv .tv-time-flex-container {
		background-color: #0088ed;
		margin: 0 !important;
		width: 100% !important;
	}

	#tv .tv-time-flex-container>* {
		margin: 2px 0;
	}
}