body {
	margin: 0;
	background-color: #000;
	color: #fff;
	font-family: Monospace;
	font-size: 13px;
	line-height: 24px;
	overscroll-behavior: none;
	-webkit-user-select: none; /* Safari */
	-ms-user-select: none; /* IE 10 and IE 11 */
	user-select: none; /* Standard syntax */
}

a {
	color: #ff0;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

button {
	cursor: pointer;
	text-transform: uppercase;
}

#info {
	position: absolute;
	top: 0px;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	text-align: center;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	z-index: 1; /* TODO Solve this in HTML */
}

a, button, input, select {
	pointer-events: auto;
}

.lil-gui {
	z-index: 2 !important; /* TODO Solve this in HTML */
}

@media all and ( max-width: 640px ) {
	.lil-gui.root { 
		right: auto;
		top: auto;
		max-height: 50%;
		max-width: 80%;
		bottom: 0;
		left: 0;
	}
}
#navBar{
	position: fixed;
    bottom: 20px;
    right: 0;
    text-align: right;
	width: min-content;
	transition: all 1s;
	opacity: 0;
	top:50%;
	transform: translate(0,-50%);
}

#webContent{
	top: 50%;
    transform: translate(0px, -50%);
    position: fixed;
    width: 100%;
    z-index: 1000;
    left: 0;
    text-align: center;
	opacity: 0;
	transition: all 1s;
	pointer-events: none;
}
.showContent{
	opacity: 1;
}
#currentImgTitle{
	color: black;
    font-size: 20px;
}
.textCenter{
	text-align: center;
}
#imgControl{
	position: absolute;
    width: inherit;
    top: 50%;
}
.arrowLeft{
	width: 50px;
    position: absolute;
    left: -25px;
}
.arrowRight{
	width: 50px;
    position: absolute;
    right: -25px;
}
.opa0{
	opacity: 0;
}
#playButton{
	width: 100px;
	transform: translate(0, -50%);
	transition: all 1s;
}
#imgCarrouselCont{
	position: relative;
    width: 33vw;
    padding: 50px;
	display: inline-block;
    background: white;
	border-radius: 10px;
	z-index: 1000;
	margin: 20px;
	vertical-align: middle;
	opacity: 0;
	transition: all 1s;
	/* display: none; */
}
.imgCarrousel{
	width: 100%;
    height: auto;
}
.infoBlock{
	font-size: 18px;
    background: #f8ff7b;
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: -1px 7px 5px 0px #e9e9e9;
}
#infoCarrouselCont{
	background: white;
    color: black;
    padding: 50px;
    display: inline-block;
    max-width: 33vw;
    vertical-align: middle;
	text-align: left;
	border-radius: 10px;
	opacity: 0;
	transition: all 1s;
}
#overlay {
	position: absolute;
	font-size: 16px;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background: rgba(0,0,0,0.7);
}

	#overlay button {
		background: transparent;
		border: 0;
		border: 1px solid rgb(255, 255, 255);
		border-radius: 4px;
		color: #ffffff;
		padding: 12px 18px;
		text-transform: uppercase;
		cursor: pointer;
	}

#notSupported {
	width: 50%;
	margin: auto;
	background-color: #f00;
	margin-top: 20px;
	padding: 10px;
}

#info > * {
	max-width: 650px;
	margin-left: auto;
	margin-right: auto;
}
#videos{
	display: none;
}
#hover{
	position: fixed;
	background: #000000b5;
	color: white;
	top: 50%;
	left: 50%;
	border-radius: 24px;
	opacity: 0;
	padding: 14px;
	padding-left: 9px;
	transition: all 0.5s;
	pointer-events: none;
	transform: scale(0) translate(-50%,-50%);
}
#hoverText{
    display: inline-block;
}
#screenSplash{
	position: fixed;
    height: 100vh;
    padding-top: 20%;
    text-align: center;
    width: 100vw;
    background: #2b2626;
    left: 0;
    top: 0;
    transition: all ease 1s;
    pointer-events: none;
	z-index: 10000;
}
#imgtuto{
	width: 30%;
}
#tuto{
	transition: all 3s;
	transform: scale(0);
	opacity: 0;
	text-align: center;
}
#logoMetagora{
	transition: all 1.5s;
	width: 400px;
	transform: scale(0.001);
}
#logoTitle{
	transition:all 0.5s;
	width: 60px;
    margin-bottom: 15px;
}
#blockTuto{
	transition:all 0.5s;
}
.loading {
    animation: blinker 2s linear infinite;
    margin-top: 1px;
    font-size: 13px;
}
#btnCTA{
	font-size: 23px;
    background: #f72355;
    box-shadow: -2px 4px white;
    width: fit-content;
    display: inline-block;
    padding: 20px;
    padding-top: 15px;
    border-radius: 5px;
	transition: all 0.5s;
}


#btnCTA:hover{
	background: #df234e;
	transform: scale(1.2);
}
@keyframes blinker {
	50% {
	  opacity: 0;
	}
}

.pointer{
	width: 30px;
	height: 30px;
	vertical-align: middle;
}
.showHover{
	opacity: 1 !important;
	transform: scale(1) translate(-50%,-50%)!important;
}
#dialogCont{
	background: transparent;
	color:black;
	font-size: 20px;
	max-width: 30%;
	font-weight: 600;
	position: fixed;
	bottom: 20%;
	left: 40%;
	/* transform: translate(-50%,0); */
	border-radius: 10px;
	padding: 25px;
	transition: all 0.5s;
}
#choicesCont{
	background: transparent;
	color:black;
	font-size: 20px;
	max-width: 30%;
	font-weight: 600;
	position: fixed;
	bottom: 10%;
	left: 25%;
	transform: translate(-50%,0);
	border-radius: 10px;
	padding: 25px;
	transition: all 1s;
}
.btnQuiz{
	padding: 20px;
	background: #86ff9e;
	display: inline-block;
	margin: 10px;
	border-radius: 10px;
	margin-right: 100%;
    width: max-content;
	color: black;
    font-size: 20px;
    font-weight: 600;
}

#speech1{
    position: absolute;
    border-radius: 5px;
    width: 20px;
    height: 20px;
    background: transparent;
    z-index: 0;
    top: 0;
    transform: translate(0,-45%) rotate(45deg);
}

.speech2{
	position: absolute;
    border-radius: 5px;
    width: 20px;
    height: 20px;
    background: white;
    z-index: 0;
    bottom: 50%;
    right: 0;
    transform: translate(45%,45%) rotate(45deg);
}

#LABEL{
	position:relative
}

.labelQuiz{
	display: inline-block;
	margin: 10px;
	padding: 50px !important;
	background: white;
	color: black;
	padding: 25px;
	border-radius: 10px;
}

.labelQuizQuit{
	padding: 20px;
	background: #86ff9e;
	display: inline-block;
	margin: 10px;
	border-radius: 10px;
	display: inline-block;
	background: #000000b5;
	color: white;
	font-size: 20px;
    font-weight: 600;
}

#quitWebContent{
	opacity: 1;
	background: #ff005b;
}
#navNext{
	opacity: 0;
}
#navPrev{
	opacity: 0;
}

/* #questCont{
    position: fixed;
    bottom: 33px;
    left: 20px;
    background: #fbda33;
    padding: 20px;
    font-weight: 600;
    font-size: 15px;
    color: #593a3a;
    border-radius: 40px;
    border: solid 3px white;
	transition: all 1s;
	animation-iteration-count:2;
	z-index: 10000;
} */
/*
    position: fixed;
    bottom: 33px;
    left: 20px;
    background: #86fff7;
    padding: 20px;
    font-weight: 600;
    font-size: 20px;
    color: #593a3a;
    border-radius: 10px;
    transition: all 1s;
    animation-iteration-count: 2;
    z-index: 10000;
	
	#ffef86 transp
	#86fff7 blue
*/


	#questCont{
		position: fixed;
		bottom: 33px;
		left: 0;
		background: #2323238f;
		padding: 20px;
		font-weight: 600;
		font-size: 20px;
		color: white;
		border-right: solid 5px white;
		transition: all 1s;
		animation-iteration-count: 2;
		z-index: 10000;
		padding-left: 44px;
	}

	#dotQuest{
		position: absolute;
		top: 21px;
		left: 12px;
		border-radius: 100px;
		border: 5px solid white;
		/* animation: beat infinite alternate 1s; */
		transition: all 1s;
		text-align: center;
	}

#quest{
	/* max-width: 0; */
    max-width: 500px;
    overflow: hidden;
    word-wrap: break-word;
    max-height: 20px;
    transition: all 1s;
}

.checkQuestIdle{
	font-size: 20px;
	color: transparent;
    margin-left: 2px;
    margin-top: 2px;
	transition: all 1s;
}
.checkQuestSuccess{
	font-size: 90px;
    color: white;
    margin-left: 8px;
    margin-top: 2px;
}
/* #dotQuest{
	position: absolute;
    top: 0px;
    left: 0px;
    border-radius: 100px;
    border: 5px solid white;
	animation: beat infinite alternate 1s;
	transition: all 1s;
	text-align: center;
} */
.dotQuestIdle{
    width: 10px;
    height: 10px;
	background: #FF544A;
}
.dotQuestSuccess{
    width: 50px;
    height: 50px;
	background: #46d746 !important;
	left: 95% !important;
}
.titleQuest{
	position: absolute;
	top: -41px;
	left: 12px;
	font-size: 32px;
	color: white;
}
#choices{
	transition: all 0.5s !important;
	transform: scale(0);
}

.hideChoices{
	transform: scale(0) translate(-20%,-100%) !important;
}
.showChoices{
	transform: scale(1) !important;
}
.selected{
	border:5px solid white
}

#joy1Div{
	position: fixed;
    z-index: 10000;
    bottom: 50px;
    right: 50px;
    height: 110px;
    width: 110px;
}

.fullscreenBtn{
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 1000000;
	font-size: 30px;
}

@media (max-width:961px) and (max-height:720px) and (orientation: portrait) { 
	#quest{
		font-size: 10px;
	}
	#dialogCont{
		background: transparent;
		color: black;
		font-size: 15px;
		max-width: 30%;
		font-weight: 600;
		position: fixed;
		bottom: 10%;
		left: 40%;
		/* transform: translate(-50%,0); */
		border-radius: 10px;
		padding: 15px;
		transition: all 0.5s;
	}
	.labelQuiz{
		padding: 20px!important;
		font-size: 18px;
		font-size: 15px;
		line-height: 1;
		margin-left: 0;
	}
	.btnQuiz{
		padding: 5px 15px;
		font-size: 15px;
		margin: 2px;
		margin-right: 100%;
	}

	.labelQuizQuit{
		font-size: 15px;
		padding: 5px 15px;
		margin-left: 0;
	}

	#choicesCont{
		padding:0;
		bottom: 5%;
	}
	#imgtuto{
		display: none;
	}
	/* tablet, landscape iPad, lo-res laptops ands desktops */
	.infoBlock{
		font-size: 12px;
		max-height: 300px;
		overflow: scroll;
	}

	#infoCarrouselCont{
		max-width: 100%;
		padding: 15px;
	}
	#imgCarrouselCont{
		margin: 0;
		margin-bottom: 20px;
		margin-top: 20px;
		width: 90%;
		padding: 0;
	}
	#imgControl{
		position: absolute;
    	width: 100%;
    	top: 50%;
	}
	.arrowLeft{
		width: 50px;
		position: absolute;
		left: 0;
		background: white;
		padding: 10px;
		border-radius: 100%;
		box-sizing: border-box;
	}
	.arrowRight{
		width: 50px;
		position: absolute;
		right: 0;
		background: white;
		padding: 10px;
		border-radius: 100%;
		box-sizing: border-box;
	}
	h1{
		font-size: 20px;
	}
	#webContent{
		overflow: scroll;
		height: 100%;
		top:65%;
	}
	#navBar{
		z-index: 1000;
	}
	#logoMetagora{
		width: 50%;
	}
	#questCont{
		bottom: 85%;
	}
}

@keyframes beat {
	from { transform: scale(0.5); }
	to   { transform: scale(1); }
}

@keyframes success {
	from { 
		background: #2323238f;
		color:white;
		padding-left: 44px;

	}
	to {
		padding-left: 20px;
		left: 50px;
		background: #00a74c;
		color:white;
		transform: translate(0, -50vh) scale(1.1);	
	}
}

