#listarEntradas ul{
	list-style: none;
}

#listarEntradas ul li{
	display: inline-block;
	padding: 10px;
}

.legenda{
	padding: 0.5px 9px;
	border: solid 1px;
	margin-right: 5px;
}

.container-fluid{
	background-position: center;
}

div.outer {
	display:table; 
	table-layout: fixed;
	width:100%;
}

div.middle {
	display:table-row;
}

div.inner {
	display:table-cell;
}

.titulo{
	font-weight: bold;
	text-transform: uppercase;
}

.inner.calendario{
	border: solid 1px black;
	padding: 10px;
	margin-left: 20px;
	background-color: #ffc107;
	text-align: center;
}

.jaAconteceu{
	background-color: #f8f9fa !important;
}

.aconteceHoje{
	background-color: #28a745 !important;
}

.proximasDatas, .vagasRestantes{
	color: red;
	font-weight:bold !important;
	animation: piscar 1s linear infinite;
}

.vagasRestantes{
	float:right;
}

@keyframes piscar{
   0%{
     color: red;
   }
   50%{
     color: pink;
   }
   100%{
     color: red;
   }
}


@media only screen and (max-width: 992px) {
	div.middle{
		display: grid;
	}
}