.page-repertoire {
	margin-top: 8vh;
	width: calc(100% - 80px);
	height: calc(100% - 8vh - 100px);
	position: relative;
	padding: 40px;
	padding-top: 60px;
	background-color: white;
}

.page-repertoire .content-middle { 
	width: calc(100%); 
	height: 100%;
	padding: 0; 
	margin: 0;
	background-color: white;
}

.page-repertoire #title { 
	padding: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
 	margin-bottom: 20px;
}

.page-repertoire #event-count { text-align: left; }

.page-repertoire #title h1 { flex: 1; border-bottom: 1px solid #CCC; text-transform: uppercase; text-align: left; width: 100%; }

.page-repertoire #title #boutons {
	flex: 1;
	text-align: center;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
}

.page-repertoire #title #boutons .bouton {
	color: #088B49;
	font-size: 1.1rem;
	border: 2px solid #088B49;
	border-radius: 5px;
	padding: 5px 10px 5px 10px;
	margin: 10px;
	width: calc(100% - 20px - 4px - 10px);
	text-transform: uppercase;
	cursor: pointer;
}

.page-repertoire #title #boutons .bouton:hover {
	background-color: #088B49;
	color: white;
}

.page-repertoire #title #boutons .bouton.selected {
	background-color: #088B49;
	color: white;
}

.page-repertoire .box,
.page-repertoire .box:hover {	
	border: none;
	box-shadow: none;
	padding: 20px 0 20px 0;
	margin: 0;
}

.page-repertoire .box .title {
	background-color: #555;
	color: white;
	text-align: center;
	padding: 5px;
	font-size: 1.4rem;
	margin-bottom: 5px;
}

.page-repertoire .season {
	display: block;
	text-align: center;
}

.page-repertoire .season .song p {
	text-align: center;
}

.page-repertoire .season .song li { list-style: none; padding: 5px; font-size: 1.2rem; }

@media only screen and (max-width : 1024px) {

	.page-repertoire {
		width: calc(100% - 40px);
		padding: 20px;
		padding-top: 40px;
	}

	.page-repertoire .box .title {
		padding: 3px;
		font-size: 1.2rem;
		margin-bottom: 5px;
	}

	.page-repertoire #title #boutons .bouton {
		font-size: 0.8rem;
	}
}

@media only screen and (max-width : 500px) {
	.page-repertoire {
		width: calc(100% - 20px);
		padding: 10px;
		margin: 0;
		margin-top: 33px;
		display: block;
		min-height: calc(100vh - 70px);
	}

	.page-repertoire .song {
		flex-direction: column;
		border-bottom: 0;
	}
	
	.page-repertoire .song .date { display: none; }
	.page-repertoire .song .date p { display: inline; width: auto; font-size: 1.5rem; border: unset; }
	.page-repertoire .song .date p:first-child { padding: 0; }
	.page-repertoire .song .date p:nth-child(2) { padding: 0; font-size: 1.5rem; margin-bottom: 0; }
	.page-repertoire .song .date p:last-child { background-color: transparent; padding: 0; color: #088B49; }


	.page-repertoire .song .description { padding: 0; margin: 0; width: 100%; }
	.page-repertoire .song .description h2 { position: relative; width: 100%; border-bottom: 1px solid;}
	.page-repertoire .song .description h1 { font-size: 1.4rem; }

	.page-repertoire .song .description h2 { padding-bottom: 3px; margin: 10px 0 5px 0; }
	.page-repertoire .song .description h2 .date-mobile { 
		padding: 0; 
		margin: 0; 
		width: auto; 
		color: #088B49; 
		font-size: 1.4rem;
		position: absolute;
		right: 0;
		top: 0;
	}

	.page-repertoire .song .description p { font-size: 1.1rem; line-height: 1.1rem; }
	.page-repertoire .song .description ul { font-size: 1.1rem; line-height: 1.1rem; padding-left: 15px; }
	.page-repertoire #title #boutons { margin-top: 10px; }
	.page-repertoire #title #boutons .bouton { font-size: 1.0rem; }
	.page-repertoire .song .flyer img { width: 50%; padding: 10px; }

}