.pagination {
	
}
.pagination .current {
	font-weight: bold;
	padding: 5px;
}

.pagination .next {
	padding: 5px;
}

.pagination .prev {
	padding: 5px;
}

.pagination .disabled {
	opacity: .5;
}

.img-thumb {
	width: 100%;
	border-radius: 4px;
	background-size: cover;
	background-position: center center;
	margin-top: 10px;
	margin-bottom: 20px;
}

.img-thumb:after {
	content: "";
	display: block;
	padding-bottom: 100%;
}

.pagination_floating {
	width: 100%;
	text-align: center;
	padding: 10px;
	position: fixed;
	bottom: 0;
	border-top: .5px solid white;
	background-color: rgba(255,255,255,.75);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.pagination_floating p {
	font-size: 8pt;
}

.spacer {
	position: relative;
	margin-top: 200px;
	background-color: green;
}

.fancybox-caption__body {
	display: none;
}

.header {
		width: 100%;
		height: 40vh;
		overflow: hidden;
		background-color: #000;
	}
	.event-hero {
		width: 100%;
		height: 100%;
		background-size: cover;
		background-position: center center;
		background-attachment: fixed;
		overflow: hidden;
		opacity: .4;
		filter: blur(4px);
	}
	.header .event-infos {
		position: absolute;
		width: 80vw;
		left: calc(50% - 40vw);
		top: 10vh;
		text-align: center;
		color: #fff;
	}
	
.event {
	min-height: 200px;
    background-color: rgba(0,0,0,.2);
    text-align:left;
	margin-top: 10px;
	margin-bottom: 20px;
	border-radius: 4px;
	overflow: hidden;
	color: #000;
	transition: .2s;

}

a:hover .event {
	background-color: rgba(0,0,0,.3);
}

.event .img {
	display: block;
	width: 400px;
	height: 200px;
	background-size: cover;
	background-position: center center;
	float: left;
}

.event .infos {
	height: 200px;
	padding: 20px;
    display:block;
	float: left;
}

@media(max-width: 992px) {
	.event .img {
		width: 100%;
	}
	
	.event .ifnos {
		width: 100%;
	}
}

.event.right .img {
	float: right;
}

.event.right .infos {
	float: left;
}