#bandeau_options
{
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 100%;
	background-color: #EDEDED;
}

.element_bandeau_options
{
	padding: 3px;
	text-align: center;
	margin-top: 8px;
	margin-bottom: 8px;
	background-color: #FAFAFA;
}

.bleute
{
	color: grey;
}

#contenu_compte
{
	display: flex;
	flex-direction: column;
	align-items: center;
}

.espace
{
	margin-bottom: 20px;
}

#msg_erreur
{
	font-size: 20px;
	margin-top: 10px;
	padding: 10px;
	border-radius: 5px;
	background: rgb(255, 170, 170);
}

#img_erreur
{
	height: 20px;
	vertical-align: baseline;
}

#msg_succes
{
	font-size: 20px;
	text-align: center;
	margin-top: 10px;
	padding: 10px;
	border-radius: 5px;
	background: rgb(170, 255, 170);
}

#all
{
	display: flex;
	align-items: center;
}

#message_compte
{
	text-align: center;
}

#paquet_image
{
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	cursor: pointer;
}
.image:last-child
{
	position: absolute;
	top: 0;
	left: 0;
}


#operations
{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-around;
	width: 100%;
	margin-top: 20px;
}

#separation
{
	height: 1px;
	width: 80%;
	background-color: black;
}

#inventaire_globale
{
	display: flex;
	flex-direction: column;
	width: 100%
}

#inventaire_mot
{
	align-self: center;
	font-size: 50px;
	font-weight: 400;
}

#corps_inventaire
{
	display: flex;
	flex-direction: column;
	width: 100%
}

#theirecoins
{
	display: flex;
	flex-direction: row;
	justify-content: left;
}

#theirecoins_mot
{
	font-size: 40px;
}

.element_operations
{
	padding: 5px;
}


#input_pseudo, #input_mail, #input_naissance, #input_sexe, #input_mdp, #input_mdp_confirmer, #input_mdp_old
{
	vertical-align: middle;
	height: 25px;
}

#input_mdp, #input_mdp_confirmer
{
	margin-top: 10px;
}

#grp_age
{
	display: flex;
	justify-content: space-between;
}

#grp_mdp
{
	display: flex;
	flex-direction: column;
}

#centrer_submit
{
	display: flex;
	justify-content: center;
	width: 100%;
}

#submit
{
	padding: 5px;
	font-size: 30px;
}

#attente_envoi
{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100vw;
	height: 100vh;
	display: none;
	align-items: center;
	justify-content: center;
	
}
#img_attente_envoi
{
	height: 20vh;
	border-radius: 5px;
}
#assombrissement
{
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 0;
	background-color: rgba(30, 30, 30, 0.5);
}

#popup_badge
{
	display:none;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0px;
	left: 0px;
	background-color: rgba(10,10,10,0.5);
}

#conteneur_croix
{
	display:flex;
	flex-direction: column;
	align-items: center;
	background-color: rgb(250,250,250);
	padding: 0.5em 0 1.5em 0;
	border-radius: 1.5rem;
	width: 80%;
	height: 80%;
}

#croix
{
	display:flex;
	flex-direction: row;
	justify-content: right;
	width: 100%;
	padding-right: 1em;

}

#croix img
{
	width: 1em;
	vertical-align: baseline;
	cursor: pointer;

}

#conteneur_infos
{
	display:flex;
	flex-direction: row;
	align-items: center;
	height: calc(100% - 1em);
	width: 100%;
}

#partie_gauche
{
	display:flex;
	flex-direction: column;
	justify-content: flex-start;
	border-right: 1px solid black;
	width: 34%;
	height: 100%;
}

#partie_centre
{
	display:flex;
	flex-direction: column;
	justify-content: flex-start;
	flex-grow: 1;
	height: 100%;
}

#partie_droite
{
	display:flex;
	flex-direction: column;
	justify-content: flex-start;
	border-left: 1px solid black;
	width: 34%;
	height: 100%;
}

.titre_parties
{

}

.conteneur_verticalite
{
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.contenu_partie
{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
	overflow-y: scroll;
}

.contenu_partie_centre
{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	flex-grow: 1;
}

.image_contenu
{
	width: 40%;
	margin: 2%;
	cursor: pointer;
}

#rendu_bagde
{
	width: 20vw;
	margin: 2%;
	position: relative;
}
.image_contenu_centre
{
	width: 20vw;
}
#badge_avatar.image_contenu_centre
{
	position: absolute;
	top: 0;
	left: 0;
}







/*!!!!! CODE DES PAGES DE PLUS DE 1024 PX DE LARGE !!!!!*/
@media (min-width: 1024px)
{
	.element_bandeau_options
	{
		font-size: 20px;
	}

	#all
	{
		flex-direction: row;
		font-size: 25px;
		margin-right: 25px;
		margin-left: 25px;
		margin-top: 50px;
	}

	#message_compte
	{
		font-size: 50px;
	}

	#paquet_image
	{
		margin-right: 50px;
	}

	.image
	{
		height: 250px;
	}

	.element_operations
	{
		font-size: 20px;
	}

	#input_pseudo, #input_mail, #input_naissance, #input_sexe, #input_mdp, #input_mdp_confirmer, #input_mdp_old
	{
		font-size: 20px;
	}

	#input_pseudo, #input_mail, #input_mdp, #input_mdp_confirmer, #input_mdp_old
	{
		width: 25vw;
	}

	#grp_age
	{
		width: 60vw;
	}

	#submit
	{
		font-size: 30px;
	}
}



/*!!!!! CODE DES PAGES DE MOINS DE 1023 PX DE LARGE !!!!!*/
@media (max-width: 1023px)
{
	#bandeau_options
	{
		flex-direction: column;

	}

	.element_bandeau_options
	{
		font-size: 18px;
	}

	#all
	{
		flex-direction: column;
		margin-right: 5px;
		margin-left: 5px;
		margin-top: 10px;
	}

	#message_compte
	{
		font-size: 30px;
	}

	.image
	{
		height: 150px;
	}

	.element_operations
	{
		font-size: 18px;
	}

	#input_pseudo, #input_mail, #input_naissance, #input_sexe, #input_mdp, #input_mdp_confirmer, #input_mdp_old
	{
		font-size: 15px;
	}

	#input_pseudo, #input_mail
	{
		width: 50vw;
	}

	#input_mdp, #input_mdp_confirmer, #input_mdp_old
	{
		width: 90vw;
	}

	#grp_age
	{
		width: 95vw;
	}

	#submit
	{
		font-size: 20px;
	}
}