.container {
  max-width: 800px;
}

.evento {
	padding: 0;
	box-shadow: 0px 2px 8px rgba(0,0,0,0.2);
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.evento:hover {
  -webkit-transform: scale(1.02, 1.02);
  -moz-transform: scale(1.02, 1.02);
  -o-transform: scale(1.02, 1.02);
  -ms-transform: scale(1.02, 1.02);
  transform: scale(1.02, 1.02);
}

.evento img {
	height: 140px;
	width: 100%;
	object-fit: cover;
}

.evento .caption {
	position: relative;
}

.evento .evento-entradas-vendidas {
	position: absolute;
	top: -12px;
	right: 10px;
}

.evento-entradas-vendidas .badge {
	background-color: #4196A9;
}

.evento-fecha {
	float: left;
	text-align: center;
	margin-right: 1em;
}

.evento-fecha span {
	display: block;
}

.evento-fecha .evento-fecha-mes {
	background-color: #4196A9;
	color: #FFF;
	font-weight: 600;
	font-size: 12px;
	text-transform: uppercase;
	padding: 0px 8px;
}

.evento-fecha .evento-fecha-dia-sem {
	font-weight: 300;
	font-size: 12px;
}

.evento-fecha .evento-fecha-dia {
	font-weight: bold;
	font-size: 18px;
	margin-top: -7px;
	margin-bottom: -3px;
}

.evento h3.evento-nombre {
	margin-top: -2px;
	margin-bottom: 0px;
	font-size: 20px;
	font-weight: 600;
}

.list-group-item.active span.badge {
  background-color: #FFF;
  color: #333;
}

.jumbotron.evento-cabecera-con-imagen {
	padding: 12px 0px 12px 0px;
}

.evento-cabecera-imagen {
	height: 100%;
}