/**************
GENERAL 
**************/
*{
	user-select: none;
	-khtml-user-select : none;
	-webkit-user-select : none;
	-moz-user-select : -moz-none;
	-ms-user-select : none;
}

body{
}

#jeu-06 #liens a{
	color:#cc5a1c;
}

.page-jeu #main{
	padding:0;
}


/**************
AIDE 
**************/

#aide{
	


}

#liens{
		
}

#outils{
	position :absolute;
	bottom:20px;
	z-index:2000;
	width: 270px;
	text-align: right;
	right: 0px;
	  
}

#outils .nav-link{
	color:white;
	background-color:#cc5a1c;
	border-radius: 100%;
	padding: 0.3em 0.5em 0.08em;
	font-size: 3em;
	margin-right:0.4em;
	/*box-shadow : 10px 10px 10px rgba(0,0,0,0.4);*/
}
/**************
ENTETE 
**************/

#infos{
	z-index: 1000000000;
}

/**************
PRESENTATION 
**************/

#presentation{
	
}

#visuel{
	display:flex;
	align-items: center;
	flex-wrap:wrap !important;
	width:50%;


}
#visuel a:not(.challenge){
	width:48%;
	margin-bottom:30px;
	margin-right:10px;
	font-family: EthernalBold;
	text-decoration: none;
	color:white;
	font-size:26px;
	text-align:center;
	color:white;
	line-height: 1em;
}

a.titrelong{
	margin-top:26px;
}

#visuel img{
	
	width:100%;
	/*box-shadow: 5px 5px 5px rgba(0,0,0,0.3);*/
	border-radius:10px;
	border:5px solid white;
	margin-bottom:10px;
}

.pbouton{
	text-align:center !important;
	margin:auto;
}
.visuel_et_textes{
	flex-wrap: wrap;
}



/************
JEU
*************/

#lejeu{
	
	width:100vw;
	height:100vh;
	display:flex;
	overflow:hidden;
}
#carte{
	width:100%;
	height:100%;
	text-align:center;
	transition: transform 1s;
}

#fond_carte{
	position: absolute;
	z-index:50;
	top:0;
	left:0;
	
}


#Calque_1{
	height: 100%;
	width: 100%;
}

#spots{
	display:block;
	z-index:100;
	width:100%;
	height:100%;
	position: absolute;
}
.spot{
	background-color:red;
	position:absolute;
	color:white;
	width:150px;
	height:150px;
	display:flex;
	flex-direction: column;
	align-content: center;
	justify-content:center; 
	border-radius: 100%;
	font-size:10px;
	line-height: 10px;
	overflow:hidden;
	text-align:center;
	opacity:0 !important;
}

.spot i{
	font-size:16px;
	margin-bottom:5px;
}


.spot a{
	color:white;
}


/**************
FENETRE
**************/

#fenetre_message{
	display:flex;
	width:100%;
	height:100vh;
	align-items: center;
	justify-content: center;
	background-color:rgba(0,0,0,0.4);
	position:fixed;
	z-index:10000000000;
	padding:100px;
	transform: scale(1.2);
	opacity: 0;
	transition: opacity 0.4s, transform 0.3s;
}


#fenetre_message img{
	width:450px;
	
}

#fenetre_message.montre{
	transform: scale(1);
	opacity:1;
	
}


#fenetre_message .contenu{
	-webkit-box-shadow: 0px 0px 160px 20px rgba(0,0,0,0.6);
	-moz-box-shadow: 0px 0px 160px 20px rgba(0,0,0,0.6);
	box-shadow: 0px 0px 160px 20px rgba(0,0,0,0.6);
	background-color: white;
	padding:50px;
	border-radius: 50px;
	display:flex;
	flex-direction: column;
	text-align:center;
	align-items: center;
	width:60%;
}

#fenetre_message .contenu h2{
	color:#aab100;
	font-family:DIN Bold;
	font-size:50px;
}
#fenetre_message .contenu h4{
	width:85%;
	margin:auto;
	margin-bottom:2em;
}
