/* ........... BASE ........... */
html { height: 100%; /* Voor verticaal alignen */ }
body { 
	background: #fbfbfb;
	padding:0; margin:0;
	height: 100%; /* Voor verticaal alignen */
	/*background-image: url('graphics/wereld.jpg');*/
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.fltrt { float: right; margin-left: 8px; }
.fltlft { float: left; margin-right: 8px; }
.clear { clear:both; }

#container { 
	position:relative;
	width:100%; height: 100%;
	margin:0 auto;
	overflow: hidden;
}
#container.scrollable { 
	overflow: auto;
}

#data {
	display:none;
}

/* ........... HEADER ........... */


#container .game {
	height: 100%;
}

/* ........... Response ........... */
#container .game .responseVisual {
	position: absolute;
	z-index: 1;
	top: 0; left: 0;
	display: none;
	width: 30px; height: 30px;
	border: 4px solid #FF0024;
	border-radius: 50%;
	background: rgba(255, 0, 0, 0.32);
    box-shadow: 0px 1px 5px #414141;
}
#container .game .responseVisual.correct {
	background: rgba(126, 213, 2, 0.33);
	border: 4px solid #7ed502;
}


/* ........... MAP ........... */
#container .game .map {
	height: 100%;
	margin: 0 235px 0 0;
	text-align: center;
	overflow: auto;
}
#container .game .map .holder {
	position:relative;
	display: inline-block;
	border: 5px solid #FFFFFF;
	box-shadow: 0px 1px 5px #414141;
	margin: 5px;
	transform-origin: top center;
}
#container .game .map .holder img {
	float: left;
}
#container .game .map .holder .markers {
	position: absolute;
	z-index: 2;
	display: block;
	top: 0; left: 0;
	width: 100%; height: 100%;
}

/* ........... MINIMAP ........... */
#container .minimap {
	position: absolute;
	z-index: 1;
	bottom: 4px; right: 0;
	width: 235px;
}

#container .minimap .holder {
	margin: 5px 0px 5px 5px;
	padding: 3px;
	top: 0; right: 0;
	background: #ffffff;
	border: 1px solid #e2e2e2;
	box-shadow: 0px 1px 5px #414141;
}
#container .minimap .holder img {
	max-width: 100%;
	width: auto;
	height: auto;
}


/* ........... QUESTIONS ........... */
#container .questions {
	position: absolute;
	z-index: 2;
	top: 0; right: 0;
	width: 235px;
}

#container .questions .holder {
	margin: 5px 0px 5px 5px;
	top: 0; right: 0;
	background: #ffffff;
	border: 1px solid #e2e2e2;
	box-shadow: 0px 1px 5px #414141;
}

#container .questions .holder header {
	display: block;
	/* border-bottom: 4px solid #008b92; */
    	border-bottom: 4px solid #005c8d;
	padding: 7px 10px;
	font-size: 16px;
	/* color: #008b92; */
        color: #005c8d;
}

#container .questions .holder .progress {
	position: relative;
	display: block;
}
#container .questions .holder .progress span.current {
	display: block;
	font-size: 72px;
	font-weight: bold;
	/* color: #008b92; */
        color: #005c8d;
	text-align:center;
	padding: 44px 0;
}
#container .questions .holder .progress span.total  {
	position: absolute;
	right: 5px; bottom: 0;
	font-size: 11px;
	font-weight: normal;
	/* color: #008b92; */
        color: #005c8d;
}

#container .questions .holder .display {
	//background: #cce8e9;
    	background: #bcd7ee;
	margin: 3px;
	padding: 10px;
}
#container .questions .holder .display div.description {
	//color: #008b92;
        color: #005c8d;
	font-weight: bold;
}
#container .questions .holder .display div.question {
	box-sizing: border-box;
	display: block;
	margin: 10px 0;
}
#container .questions .holder .display div.question h1 {
	font-size: 24px;
	font-weight: normal;
	color: #000000;
}
#container .questions .holder .display div.question input {
	box-sizing: border-box;
	width: 100%;
	padding: 4px 8px;
}
#container .questions .holder .display div.question a {
	display: block;
	padding: 6px 7px;
	margin: 0 0 10px 0;
	/* background: #018c8f; */
        background: #005c8d;
	font-size: 13px;
	font-weight: bold;
	color: #ffffff;
	text-decoration: none;
	border: 1px solid #ffffff;
	box-shadow: 0px 1px 3px #414141;
	text-shadow: #000000 0px 1px 2px;
	border-radius: 4px;
}
#container .questions .holder .display div.question a:hover {
	/* background: #006b6d;
        background: #bcd7ee; */
                    	background: #0081c6;
}

/* ........... Feedback ........... */
#container .questions .feedback {
	position: absolute;
	z-index: 1;
	top: 60px; left: 87px;
	display: none;
	width: 66px; height: 66px;
}
#container .questions .feedback.correct {
	background-image: url('graphics/icons/feedback-correct.png');
}
#container .questions .feedback.fault {
	background-image: url('graphics/icons/feedback-fault.png');
}


/* BUTTON */

.btn {
	display: inline-block;
	padding: 6px 7px;
	//background: #018c8f;
    background: #005c8d;
	font-size: 13px;
	font-weight: bold;
	color: #ffffff;
	text-decoration: none;
	border: 1px solid #ffffff;
	box-shadow: 0px 1px 3px #414141;
	text-shadow: #000000 0px 1px 2px;
	border-radius: 4px;
}
.btn:hover,
.btn.active {
    /*background: #006b6d;
        	//background: #bcd7ee; */
                                    	background: #0081c6;

}

/* LEGEND */

.legend {
	position: fixed;
	z-index: 10;
	right: 260px;
	bottom: 0;
    text-align: right;
}
.legend .btn {
	margin: 0 20px 20px 0;
	opacity: 0.75;
}
.legend .marker {
    position: relative;
    display: block;
    text-align: right;
    margin: 20px;
    width: auto; height: auto;
}
.legend .marker span {
	display: block;
	padding: 4px 36px 0 0;
}
.legend .marker div {
	left: auto !important;
	right: 0 !important;
	top: 0 !important;
}

/* ========================================================================================== */
/* Game */
/* ========================================================================================== */
