#loader {
	position: absolute;
	top: 25%;
	left: 50%;
	width: 300px;
	height: 300px;
	margin-top: -150px;
	margin-left: -150px;
	display: none;
	z-index: 10;
}

#loader-complete {
	width: 150px;
	height: 150px;
}

#error {
	color: red;
	font-weight: bold;
	display: none;
	text-align: center;
}

.show {
	display: block !important;
}

.break-line {
	display: inline-block;
}
/* Quiz General */
#quiz-q1, 
#quiz-q2 {
	background: #f1f1f1;
	border-radius: 10px;
	padding: 5px;
	margin-bottom: 10px;
}

.quiz {
	text-align: center;
}

/* Quiz */

.question {
	margin-top: 5px;
	font-weight: bold;
}

#quiz h4 {
	font-size: 24px;
}

.quiz-heading p {
	font-size: 16px;
	
	margin: 0;
}

.answer .btn {
	height: 50px;
	width: 200px;
	font-size: 24px;
}

.answer {
	padding: 7.5px 0;
	margin: auto;
	padding: 10px 0;
}

.answer > * {
	display: inline;
}

#answers-1 {
	text-align: left;
	font-size: 20px;
}

#answers-1 label {
	padding-left: 10px;
}

#answers-2 {
	position: relative;
}

@media screen and (max-width: 700px) {
	#quiz h4 {
		font-size: 22px;
	}
}

#quiz input[type="radio"] {
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -o-transform: scale(1.5);
  transform: scale(1.5);
  -webkit-transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  -o-transform-origin: left;
}

@media screen and (max-width: 700px) {
	#quiz .answers {
		font-size: 14px;
	}
}

.container img {
  max-height: 100%;
  max-width: 100%;
}

/* Quiz Complete */
.quiz-complete .title {
	font-weight: bold;
}

.quiz-complete .headline {
	margin-top: 0;
	font-size: 1.5em;
}

.quiz-complete .subheadline {
	color: blue;
	font-size: 1.25em;
	margin-bottom: 0;
}

.quiz-complete .siren-gif {
	display: block;
	width: 100%;
	max-width: 500px;
}

.quiz-complete .add-to-cart {
	height: 60px;
	width: 200px;
	font-size: 24px;
	line-height: 40px;
	margin: 20px 0;
}

/* Nav */
nav {
	height: 40px;
	width: 980px;
	background: #246888;
	font-size: 16px;
	font-family: 'Open Sans', sans-serif;
	font-weight: bold;
	position: relative;
	border-bottom: 1px solid #283744;
}
nav ul {
	padding: 0;
	margin: 0 auto;
	width: 90%;
	height: 40px;
}
nav li {
	display: inline;
	float: left;
}
nav a {
	color: #fff;
	display: inline-block;
	width: 130px;
	text-align: center;
	text-decoration: none;
	line-height: 40px;
	text-shadow: 1px 1px 0px #283744;
}
nav li a {
	border-right: 1px solid #576979;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}
nav li:last-child a {
	border-right: 0;
}
nav a:hover, nav a:active {
	background-color: #8c99a4;
}
nav a#pull {
	display: none;
}


@media screen and (max-width: 1200px) {
nav {
	width: 980px;
}
}


@media screen and (max-width: 900px) {
nav {
	width: 850px;
}
}

@media screen and (max-width: 700px) {
nav {
	width: 100%;
}
}


/*Styles for screen 600px and lower*/
@media screen and (max-width: 600px) {
	nav { 
  		height: auto;
  	}
  	nav ul {
  		width: 100%;
  		display: block;
  		height: auto;
  	}
  	nav li {
  		width: 50%;
  		float: left;
  		position: relative;
  	}
  	nav li a {
		border-bottom: 1px solid #576979;
		border-right: 1px solid #576979;
	}
  	nav a {
	  	text-align: left;
	  	width: 100%;
	  	text-indent: 25px;
  	}
}

/*Styles for screen 515px and lower*/
@media only screen and (max-width : 480px) {
	nav {
		border-bottom: 0;
	}
	nav ul {
		display: none;
		height: auto;
	}
	nav a#pull {
		display: block;
		background-color: #246888;
		width: 100%;
		position: relative;
	}
	nav a#pull:after {
		content:"";
		background: url('../../images/nav-icon.png') no-repeat;
		width: 30px;
		height: 30px;
		display: inline-block;
		position: absolute;
		right: 15px;
		top: 10px;
	}
}

/*Smartphone*/
@media only screen and (max-width : 320px) {
	nav li {
		display: block;
		float: none;
		width: 100%;
	}
	nav li a {
		border-bottom: 1px solid #576979;
	}
}