/* Verkeersinfo sjabloon */
@keyframes moveDep {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-80vh); }
}

#vertrekwijzer #footer {
	background: none;
}

#vertrekwijzer #header {
	top: 0;
	left:0;
	width: 100%;
	height: 15vh;
	padding: 0;
	background: #fff;
	box-shadow: 0px 0px 1vw black;
	z-index: 9998;
}
#vertrekwijzer #header h1 {
	position: absolute;
	top: 0;
	left: 2%;
	width: 43%;
	text-align: left;
	color: #000;
	font-size: 360%;
	line-height: 120%;
	text-shadow: none;
	padding-left: 7vw;
	margin: 2% 0;
	background-image: url(images/9292.png);
	background-repeat: no-repeat;
	background-size: auto 100%;
}
#vertrekwijzer h1.time {
	position: absolute;
	top: 0;
	right: 2%;
	width: 50%;
	text-align: right;
	color: #000;
	font-size: 360%;
	line-height: 120%;
	text-shadow: none;
	padding: 0;
	margin: 2% 0;
	z-index: 9999;
	opacity: 0;
	/* animation */
	animation: fadeIn;
	animation-duration: 1s;
	animation-delay: 1s;
   	animation-fill-mode: forwards;
}


#departures {
	position: absolute;
	top: 18%;
	left: 12.5%;
	width: 75%;
	z-index: 99;
	/*
	animation: moveDep;
	animation-duration: 1s;
	animation-delay: 7s;
	animation-fill-mode: forwards;
	animation-timing-function: linear;	
	animation-iteration-count: 3;
	*/
}

#departures li {
	width: 100%;
	list-style: none;
	opacity: 0;
	/* animation */
	animation: fadeIn;
	animation-duration: 1s;
   	animation-fill-mode: forwards;
}
#departures li:nth-child(n+11) {
	display: none;
}

.departure table {
	width: 100%;
	margin: 0;
}
table.Busstation, table.Bushalte, table.Treinstation {
	margin: 1% 0 0;
}	
.departure td {
	height: auto;
	padding: 2%;
	background: #fff;
	color: #000;
	border-bottom: 1px solid #000;
	vertical-align: top;
}
.departure td:nth-child(1) {
	width: 8%;	
}
.departure td:nth-child(2) {
	width: 12%;
}
.departure td:nth-child(3) {
	width: 35%;	
}
.departure td:nth-child(5) {
	width: 15%;
}
.departure td:nth-child(4), .departure td:nth-child(6) {
	width: 10%;
}
.departure td.Busstation, td.Bushalte, td.Treinstation {
	background: #000;
	color: #fff;
	font-weight: bold;
}

