:root {
/*	rgb(227, 66, 52);*/
	--base: rgb(0, 151, 169);
}

@font-face {
	font-family: "FlandersArtSans";
	src: url("fonts/FlandersArtSans-Regular.woff");
	font-weight: normal;
}

@font-face {
	font-family: "FlandersArtSans";
	src: url("fonts/FlandersArtSans-Bold.woff");
	font-weight: bold;
}

html, body {
	margin: 0;
	padding: 0;
	width: 100%;
}

body {
	background: var(--base);
	color: #FFF ;
	font-family: "FlandersArtSans", "Helvetica Neue", Arial, sans-serif;
	display: grid;
	line-height: 1.1;
	font-size: 48px;
	/*	https://fontdrop.info/*/
	font-feature-settings: "onum";
}

/*Hide scrollbar*/
body::-webkit-scrollbar {
	display: none;
}

small {
	font-size: 36px;
}

table {
	border-collapse: collapse;
}

tr {
	border: 0 solid #FFF;
	border-bottom-width: 3px;
}

tr:last-child, thead tr {
	border: none;
}

th {
	background-color: var(--base);

	margin-left: 42px;
	margin-right: 72px;
	font-size: 64px;
	text-align: right;
	padding-top: 64px;
	padding-bottom: 24px;
}

/*	https://adrianroselli.com/2020/01/fixed-table-headers.html#CSS*/
th.sticky {
	position: sticky;
	top: 0;
	z-index: 2;
}

th.datetime {
	text-align: right;
	font-feature-settings: "onum", "tnum";
	padding-bottom: 40px; /* align baseline with location*/
}

th.datetime small {
	font-weight: normal;
}

th.location {
	vertical-align: bottom;
}

th.location img {
	margin-left: 12px;
	vertical-align: middle;
}

.blink {
	animation-name: blink;
	animation-duration: 2s;
	animation-timing-function: steps(2, jump-none);
	animation-iteration-count: infinite;
}

@keyframes blink {
	from { opacity: 1; }
	to { opacity: 0.7; }
}

td {
	vertical-align: top;
	padding-right: 24px;
	padding-top: 24px;
	padding-bottom: 24px;
}

td.duration {
	text-align: right;
	padding-right: 6px;
	width: 240px;
}

td.icon {
	padding-right: 6px;
	width: 144px;
}

td.location, th.location {
	text-align: right;
	padding-right: 120px;
}

td.icon, td.icon img {
	text-align: center; 
/*	vertical-align: middle;*/
}

/* https://stackoverflow.com/questions/643879/ */
footer {
	position: absolute;
	bottom: 12px;
	right: 12px;
	width: 100%;
	text-align: right;
	font-size: 18px;
}

#progressbar {
	position: absolute;
	bottom: 0;
	height: 3px;
	width: 100%;
	visibility: hidden;
	background: #fff;
	opacity: 0.7;
	animation-name: progressbar;
	animation-duration: 10s;
	animation-timing-function: linear;
}

@keyframes progressbar {
	0% { width: 0; }
	100% { width: 100%; }
}

@media (max-width: 480px) {
	th {
		font-size: 48px;
	}
	td.location {
		font-size: 36px;
	}
}