body, html{
	margin: 0;
	padding: 0;
	font-family: Arial;
	
}


/* page */
#page{
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #47ceff;
	display: flex;
	justify-content: space-around;
	align-items: center;
	height: 100%;
	width: 100%;
	flex-direction: column;
}

/* page-block */
.block{
	background: #fff;
	min-width: 400px;
	max-width: 90%;
	width: calc(90% - 20px);
	border-radius: 5px;
	box-shadow: 0px 2px 10px -6px rgba(0,0,0,0.3);
	padding: 20px;
}

.block > h1{
	margin: 0;
}

/* answers */

#answers{
	margin: 20px 0;	
}

#answers > .answer{
	background: #eaeaea;
	border-bottom: 1px solid #c8c8c8;
	border-radius: 5px;
	padding: 10px;
	margin:	20px 0;
	position: relative;
}

#answers .answer[data-selected="true"]:before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: -5px;
	left: -5px;
	border: 5px solid #47ceff;
	border-radius: 10px;
	opacity: 0.7;
}

#answers > .answer > h2{
/* 	height: 28px; */
	min-height: 28px;
}

#answers > .answer[data-highlight="correct"]{
	background: #41d73f;
}

#answers > .answer[data-highlight="correct"] .bar{
	background: #44ac43;
}



/* bar */
.bar{
	background: #ccc;
	height: 30px;
	border-radius: 3px;
	position: relative;
	overflow: hidden;
	
}

.bar > .bar_pointer{
	background: #0085b5;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	
	transition: width 300ms ease;
	
	width: 0%;
	border-radius: 3px;
}

.bar > .bar_pointer > span{
	color: #fff;
	font-weight: bold;
	float: right;
	line-height: 30px;
	font-size: 18px;
	padding: 0 10px;
}


/* groups */

#block_groups{
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}

#block_groups > .item{
	text-align: center;
}

#block_groups > .item > h1{
	font-size: 25px;
	margin: 0;
}

#block_groups > .item > p{
	font-size: 28px;
	margin: 3px 0 -10px 0;
	padding: 0;
}

/** block tiles **/

.block .tiles{
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: center;
	height: 100%;
}

.block .tiles > .tile{
	min-width: calc(20% - 40px);
	margin: 2%;
	background: #eaeaea;
	height: 200px;
	border-radius: 5px;
	padding: 0 20px;
}

.block .tiles > .tile > h1{
	text-align: center;
	font-size: 35px;
}

.block .tiles > .tile > p{
	text-align: center;
	font-size: 35px;
}

