body { 
	margin:0; 
	font-family:sans-serif;
	background-color: #000;
}
* { 
	box-sizing: border-box; 
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box;
}
div { border:solid 0px orange; }

#conteneur {
	position:fixed;
	top:5%;left:5%;width:90%;height:90%;
	
}
.element {
	position:absolute;
	background-size:contain;
	background-position: center center;
	background-repeat: no-repeat;
	width:100%;height:100%; 
	opacity:0;
	cursor: pointer;
	display:flex;
	justify-content: center;
	align-items: center;
}
.element img { max-width:100%;max-height:100%; }
.element video { max-width:100%;max-height:100%;width:100%; }
#info { 
	position:fixed; 
	top:1.5rem;left:1.5rem;
	display:none;
}
#temoin { 
	position:fixed; 
	bottom:1.5rem;left:1.5rem;
	display:none;
}



.fleche {
	position:absolute; 
	top: 50%;
	margin-top: -55px;
	width: 20%;height: 110px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	z-index: 10000;
	display: none;
	cursor: pointer;
}
#fleche-gauche { 
	left: 0;
	background-image: url(imgs/fleche_gauche.jpg);
}
#fleche-droite { 
	right: 0;
	background-image: url(imgs/fleche_droite.jpg);
}






/* PAGE LOADER */
#chargement {
  font-size: 4em;
  text-align: center;
  font-family: Helvetica, sans-serif;
  font-weight:100;
  font-size:48px;
  color:#ddd;
  position: absolute;
  left: 0%;
  top: 40%;
  width: 100%;
  border: solid 0px #f00;
}
#chargement-infos {
  text-align:right;
  white-space: nowrap;
  display: block;
  border-bottom:8px solid #eee;
  width: 0%;
}
#container {
  visibility: hidden;
}