#full_screen{
	display: block;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.8);
	text-align:center;

	
	-webkit-animation-name: fadeIn;
	-webkit-animation-duration: 0.2s;
	animation-name: fadeIn;
	animation-duration: 0.2s;
	
	z-index:1000;
}

#msg_box {
	position: relative;
	display:inline-block;
	background-color:var(--gris_clair);
	top: 5%;
	width: 90%;
	max-width:500px;
	height:auto;
	padding:20px 10px 10px 10px;
	
	
	text-align:center;
	color:#222;
	font-size:2em;
	
	-webkit-animation-name: fadeIn;
	-webkit-animation-duration: 0.2s;
	animation-name: fadeIn;
	animation-duration: 0.2s;
	border:3px solid #fff;
	border-radius:8px 8px 8px 8px;
}

#top_bar{
	display:flex;
	justify-content:space-between;
	margin:-20px -10px;
	height:50px;
	background-color:var(--bleu);
	color:#fff;
	text-shadow: 1px 1px 1px #000;
	outline: none;
	border-radius:8px 8px 0 0;
}

#top_bar span.left{ 
	margin:auto 10px;
	font-size:24px;
}

#top_bar span.right{
	margin:auto 10px;
	font-size:30px;
	font-weight:bold;
	cursor:pointer;
}

#msg_box h1 {
	margin:30px 0 0 0;
	font-size:1.3rem;
}

#msg_box img {
	width:100px;
	height:auto;
	margin:6px 0;
}

#msg_box p,
#msg_box li {
	margin:4px 0 0 0;
	font-size: 1.2rem;
	text-align:center;
}

#msg_text {
	width:98%;
	height:auto;/*190px;*/
	margin:0;
	padding:5px;
	font-family: delius, verdana, tahoma, arial, sans-serif;
    font-size:0.5em;
	font-weight:bold;
	text-align:left;
	/*overflow-y: scroll;*/
	background-color:#fff;
	border:2px inset #000;
	border-radius:6px;
	
}

#msg_bts {
	margin:6px 0 0 0;
}

#msg_bts button {
	width:90%;
	height:50px;
	margin:6px;
	color:#fff;
	text-align: center;
    font-size: 0.7em;
	cursor: pointer;
	border-radius: 8px 8px 8px 8px;
	outline: none;
	border:none;
}

#msg_bts button {
	background-color:var(--gris_moyen);
}

#msg_bts button:hover,
#msg_bts button:focus {
	background-color:var(--bleu);
}
/* GESTION ANIMATIONS */

@-webkit-keyframes fadeIn {
	from {opacity: 0} 
	to {opacity: 1}
}

@keyframes fadeIn {
	from {opacity: 0} 
	to {opacity: 1}
}

@-webkit-keyframes fadeOut {
  from {opacity: 1} 
  to {opacity: 0}
}

@keyframes fadeOut {
  from {opacity: 1} 
  to {opacity: 0}
}



/*******************************************************************************************************/
/* RESPONSIVITE */
/*******************************************************************************************************/

@media all and (max-width: 1023px)
{

	#msg_box {
		width: 90%;
		max-width:360px;
	}
	
	#msg_box h1 {
		font-size:0.6em;
	}
	
}