body
{
	overflow-x: hidden;
}

#contenu
{
	display: flex;
	flex-direction: column;
}

#infos_haut, #infos_haut_mobile
{
	display: none;
}

#infos_haut
{
	justify-content: center;
	align-items: center;
}

#centrer
{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
}

#infos_haut_mobile
{
	flex-direction: column;
	align-items: center;
}

#infos_haut_texte
{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 50px;
}

#titre_pres
{
	font-size: 60px;
	margin: 0 0 20px 0;
}

.punch_mobile
{
	font-size: 30px;
	font-weight: 600;
	margin: 20px 0;
}

#texte_pres
{
	font-size: 30px;
	margin-bottom: 20px;
}

#bouton_accueil_explorer
{
	background-color: #62D5E9;
	font-size: 30px;
	padding: 5px 60px 5px 60px;
	border-radius: 15px;
	border: 1px solid rgb(150, 150, 150);
	box-shadow: none;
	color: white;
	font-weight: 600;
}

#bouton_accueil_explorer_mobile
{
	background-color: #62D5E9;
	font-size: 25px;
	padding: 5px 20px 5px 20px;
	border-radius: 15px;
	border: 1px solid rgb(150, 150, 150);
	box-shadow: none;
	color: white;
	font-weight: 600;
}

#attention
{
	margin: 40px;
	text-align: center;
	border-radius: 40px;
	font-size: 20px;
	box-shadow: 2px 2px 5px rgb(200, 200, 200);
	padding: 10px
}



.bloc_sondages
{
	border-radius: 10px;
	margin: 30px;
}
.texte_bloc
{
	font-size: 25px;
	font-weight: 600;
	margin: 5px;
}

.conteneur_case_sondages
{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	overflow: auto;
	scrollbar-width: thin;
}

.case_sondage
{
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 10px;
	padding: 15px;
	box-shadow: 2px 2px 5px rgb(170, 170, 170);
	border-radius: 2vw;
}

#Actualités .case_sondage
{
	background-color: #FF8D72;
}

#pensez .case_sondage
{
	background-color: #62D5E9;
}

#une .case_sondage
{
	background-color: #F0EF94;
}

#récents .case_sondage
{
	background-color: #79FA9B;
}

#répondus .case_sondage
{
	background-color: #FF8D72;
}

#expirent .case_sondage
{
	background-color: #62D5E9;
}

.titre_case_sondage
{
	font-size: 20px;
	height: 50px;
	margin: 0 10px 0 10px;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	font-weight: 600;

}
.nb_reponses_case_sondage
{
	font-size: 18px;
	white-space: normal;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-top: 10px;
	margin-bottom: 15px;
}
.date_case_sondage
{
	display: flex;
	justify-content: space-between;
	width: 100%;
}
.date_creation_case_sondage
{
	font-size: 12px;
	white-space: nowrap;
	overflow: hidden;
}
.date_expiration_case_sondage
{
	font-size: 12px;
	white-space: nowrap;
	overflow: hidden;
}

.image_case_sondage
{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}
.image_case_sondage > a
{
	width: 100%;
}

.img_image_case_sondage
{
	width: 100%;
	vertical-align: bottom;
	border-radius: 0.5vw;
}


/*!!!!! CODE DES PAGES DE PLUS DE 1024 PX DE LARGE !!!!!*/
@media (min-width: 1024px)
{
	#infos_haut
	{
		display: flex;
	}
	#img_haut
	{
		width: 60vw;
	}

	.case_sondage
	{
		width: 350px;
		margin-left: 30px;
		margin-right: 30px;
	}
}

/*!!!!! CODE DES PAGES DE MOINS DE 1023 PX DE LARGE !!!!!*/
@media (max-width: 1023px)
{
	#infos_haut_mobile
	{
		display: flex;
	}

	#attention
	{
		display: none;
	}

	#img_haut
	{
		width: 80vw;
	}

	.case_sondage
	{
		width: 70vw;
		margin-left: 5vw;
		margin-right: 5vw;
	}
}