/* -------------------------------------------- */
/* GENERAL										*/
/* -------------------------------------------- */
@font-face {
	font-family: 'SparkyType-Billy-Bold';
	src: url('../../fonts/DalekPinpointBold.ttf');
	font-weight: normal;
	font-style: normal;
}
body {
	margin: 0;
	background-color: rgba(0, 0, 0, 0.7);
	overflow-x: hidden;
	font-family: Arial, Helvetica, sans-serif;
}
#app {
	overflow-x: hidden;
}
h1, h2, h3 {
	font-family: 'SparkyType-Billy-Bold', 'Times New Roman', Times, serif;
}
#background_app_image {
    position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
	/* filter: brightness(40%); */
}


/* -------------------------------------------- */
/* HEADER										*/
/* -------------------------------------------- */
header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	justify-content: space-between;
	margin: auto;
	background-image: url('/images/games/akropolis/marbre-1.jpg');
    background-size: 100%;
	color: #333;
	height: 80px;
	align-items: center;
	position: relative;
}
header>h1 {
	padding-left: 20px;
	margin: 0;
	font-size: 3em;
}
header a {
	font-family: 'SparkyType-Billy-Bold', 'Times New Roman', Times, serif;
	color: #000;
	text-decoration: none;
}
header a:hover {
	text-decoration: none;
	color: #333;
}
#menu a::after {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	height: 10px;
	width: 0%;
	background-image: url('/images/games/akropolis/frise-black.png');
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
	background-size: auto 100%;
	opacity: 0.5;
}
#menu {
	font-size: 1.8em;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	align-items: stretch;
	transition: 0.5s all;
	z-index: 100;
}
#menu>a {
	position: relative;
	display: flex;
	text-align: center;
	padding: 10px 30px;
	text-decoration: none;
	cursor: pointer;
	align-items: center;
}
#menu>a::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	height: 10px;
	width: 0%;
	background-image: url('/images/games/akropolis/frise-black.png');
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
	background-size: auto 100%;
	opacity: 0.5;
}
#menu>a:hover::before, #menu>a:hover::after {
	width: 100%;
	left: 0%;
}
#menu .icon-font {
	font-size: 0.9em;
	margin: 0 3px 0 10px;
}
#choix_langue {
	background-color: rgba(20, 20, 20, 0.9);
	position: absolute;
	right: 0%;
	top: 80px;
	font-size: 1em;
	padding: 0;
	display: none;
	z-index: 4;
}
#choix_langue a {
	display: block;
	padding: 10px 30px;
	cursor: pointer;
	color: #FFFFFF;
	border-top: #241521 solid 1px;
}
#choix_langue div:first-child a {
	border-top: none;
}
.drapeau_cube_langue {
	display: none;
}
#auteur {
	font-family: 'ARIALN', 'HELVETICANEUELTSTD-CN', Helvetica, Gotham, "Helvetica Neue", Arial, sans-serif;
	font-weight: bold;
	position: absolute;
	top: 10px;
	right: 20px;
}
.layer_logo {
	width: 100%;
	height: 100%;
}
.image_logo {
	position: absolute;
	top: 0%;
}
.drapeau_carre_langue {
	width: 30px;
	height: 20px;
	margin-left: 10px;
}
  #burger_menu {
	display: none;
	margin-right: 20px;
	right: 0px;
	width: 60px;
	height: 45px;
	position: relative;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	transition: .5s all;
	cursor: pointer;
  }
  #burger_menu span {
	display: block;
	position: absolute;
	height: 9px;
	width: 100%;
	background: #111;
	border-radius: 9px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	transition: .25s all;
  }
  #burger_menu span:nth-child(1) {
	top: 0px;
  }
  #burger_menu span:nth-child(2) {
	top: 18px;
  }
  #burger_menu span:nth-child(3) {
	top: 36px;
  }
  #burger_menu.open span:nth-child(1) {
	top: 18px;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
  }
  #burger_menu.open span:nth-child(2) {
	opacity: 0;
	left: -60px;
  }
  #burger_menu.open span:nth-child(3) {
	top: 18px;
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	-o-transform: rotate(-135deg);
	transform: rotate(-135deg);
  }
@media (max-width: 950px){
	#menu {
		height: auto;
		flex-direction: column;
		position: absolute;
		right: -300px;
		top: 0;
		background-image: url('/images/games/akropolis/marbre-1.jpg');
		background-size: auto 100%;
	}
	#burger_menu {
		display: block;
	}
	#choix_langue {
		right: 100%;
		top: 80%;
		width: 220px;
	}
	#choix_langue a {
		padding: 10px;
	}
}

/* ------------------------ */
/* App						*/
/* ------------------------ */

#main {
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100vw;
}


/* ------------------------ */
/* Footer					*/
/* ------------------------ */
footer 
{
	background-color: black;
	background-size: 100%;
	position: relative;
	z-index: 2;
	margin: 0 auto;
	color: white;
	width: 100%;
}
.conteneur_cols
{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	    justify-content: space-around;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.titre_col_footer
{
	font-size: 1.1em;
	margin: 12px 0;
}
footer a
{
	font-family: 'edo';
	color: white;
	font-size: 1.2em;
	text-decoration: none;
}
footer a:hover
{
	color: #d10a00;
} 
.mentionslegales {
	text-align: center;
	padding: 20px 0 5px 0;
	color: white;
}
.footer_col 
{
	margin: 20px 0;
	min-width: 209px;
}
#footer_sites, #footer_reseaux, #footer_adresse
{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
footer p, footer a {
	margin: 2px 0;
}
.reseaux_footer {
	width: 70px;
}
.reseaux_footer:hover {
	-webkit-box-shadow: 0px 0px 5px white;
	        box-shadow: 0px 0px 5px white;
}
#bouton_point_vente {
	color: white;
	background-color: #adb614;
	border: none;
	margin: 20px 0 0 0;
	padding: 20px 10px;
	font-size: 1.1em;
	cursor: pointer;
	display: block;
}
#bouton_point_vente:hover {
	background-color: #909810;
}
#auteur, #illustrateur {
	font-size: calc(1em + 0.2vw);
	font-weight: bold;
	text-align: center;
	position: relative;
}
#auteur {
	padding-top: 2vw;
}
