body, html {
	font-family: 'Jura', sans-serif;
	margin: 20px 0;
	font-size: 1em;
	background: url("img/bg.jpg") top center;
	background-size: auto;
}

h1 {
	font-size: 3em;
	color: white;
    padding-bottom: 50px;
}

h3 {
	font-size: 1.5em;
}

.wrapper {
	padding: 0 30px;
}

section.entity {
	margin: 30px 0 0 0;
	padding: 50px 30px;
	background: white;
}

#list_planning {
	padding: 0;
	list-style: none;
}

.select-entity {
	text-align: center;
	cursor: pointer;
}
.select-entity .img-wrapper {
	padding: 30px 0;
	background-color: white;
	outline-bottom: 1px solid #aaa;
	outline : 1px solid #aaa;

}
.select-entity.selected .img-wrapper {
	outline : 2px solid red;
}

.arrow-down {
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-top: 20px solid #aaa;
	margin: auto;
}
.select-entity.selected .arrow-down {
	border-top: 20px solid red;
}

.entity {
	display: none;
}
.entity.selected {
	display: flex;
}

.planning iframe {
	width: 100%;
	min-height: 500px;
}

article.info {
	margin-bottom: 10px;
}

/*Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {

}

/*Small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {

}

/*Medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
	.arrow-down {
		display: none;
	}

	li.select-entity {
		margin-bottom: 20px;
	}
	li.select-entity:last-child {
		margin-bottom: 0px;
	}
}

/*Large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {

}