/* ======================== General CSS */

body, html {
	margin: 0px;
	padding: 0px;
	font-family: Helvetica, Arial;
	font-size: 12px;
	color: black;
	
	-webkit-touch-callout: none;                /* prevent callout to copy image, etc when tap to hold */
    -webkit-text-size-adjust: none;             /* prevent webkit from resizing text to fit */
    -webkit-user-select: none;                  /* prevent copy paste, to allow, change 'none' to 'text' */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.quiz_slide {
	width: 952px;
	height: 664px;
	display: block;
	overflow: hidden;
	position: relative;
	display: none;
}

.touch_button {
	width: 200px;
	background-color: #623853;
	padding: 20px 30px;
	border-radius: 5px;
	color: white;
	font-size: 26px;
	text-align: center;
	cursor: pointer;
}

.quiz_logo {
	position: absolute;	
	bottom: 272px;
	right: 224px;
	width: 504px;
	z-index: 100;
	
	-webkit-backface-visibility: hidden;
	-webkit-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
}
.quiz_logo.corner {
	bottom: 20px;
	right: 20px;
	width: 180px;
}

/* ======================== Start Slide & Welcome Screen */

.quiz_slide.start {
	display: block;
}

.quiz_slide.start .footer_left {
	position: absolute;
	left: 0px;
	bottom: 0px;
}
.quiz_slide.start .footer_right {
	position: absolute;
	right: 0px;
	bottom: 0px;
}
.quiz_slide.start .footer_left, .quiz_slide.start .footer_right {
	-webkit-backface-visibility: hidden;
	-webkit-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
}
.quiz_slide.start .footer_left.hide, .quiz_slide.start .footer_right.hide {
	bottom: -200px;
}
.quiz_slide.start .begin {
	width: 350px;
	margin: 440px auto 0px;
}

/* ======================== Questions */

.quiz_slide .gray {
	background-color: #ededed;
	bottom: 0px;
	position: absolute;
	width: 100%;
	top: 200px;
}
.quiz_slide .gray .answers {
	margin: 50px 112px;
}
.quiz_slide .gray .answers .choice {
	display: block;
	float: left;
	clear: left;
	font-size: 26px;
	font-weight: bold;
	margin-bottom: 20px;
	position: relative;
	margin-left: 50px;
	cursor: pointer;
	z-index: 10;
}
.quiz_slide .gray .answers .choice span {
	width: 25px;
	display: inline-block;
	height: 25px;
	border: 3px #b2b2b2 solid;
	border-radius: 25px;
	position: absolute;
	left: -50px;
	top: -2px;
	
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 70% 70%;
}
.quiz_slide .gray .answers .choice.correct span {
	border-color: #7ab929;
	background-color: #7ab929;
	background-image: url('../quiz_images/correct.png');
}
.quiz_slide .gray .answers .choice.incorrect span {
	border-color: #a32425;
	background-color: #a32425;
	background-image: url('../quiz_images/incorrect.png');
}
.quiz_slide .gray .actions, .quiz_slide .gray .info {
	clear: both;
	float: left;
	margin-top: 40px;
	margin-left: 112px;
}
.quiz_slide .gray .info {
	font-size: 18px;
	color: #b2b2b2;
}
.question_placement {
	margin: 30px;
}
.question_placement .counter {
	width: 50px;
	height: 50px;
	line-height: 50px;
	border-radius: 50px;
	background-color: #633753;
	color: white;
	font-size: 25px;
	text-align: center;
	float: left;
	position: absolute;
}
.question_placement .text {
	font-size: 26px;
	margin-left: 80px;
	margin-right: 50px;
}

.question_placement .text .fact strong { color: #ee7219; }
.question_placement .text .fact { margin-bottom: 20px; }
.question_placement .text .question strong { color: #7ab929; }
.quiz_slide .next_question { background-color: #7ab929; }

.quiz_slide .question_image {
	width: 340px;
	position: absolute;
	top: 30px;
	right: 60px;
}

/* ======================== Final Slide */

.quiz_slide.finish .you_scored {
	text-align: center;
	font-size: 70px;
	padding-top: 60px;
}
.quiz_slide.finish .gray {
	text-align: center;
}
.quiz_slide.finish .gray .scores {
	padding-top: 60px;
	font-size: 60px;
}
.quiz_slide.finish .gray .scores span {
	color: #7ab929;
}
.quiz_slide.finish .touch_button {
	margin: 30px auto;
}




