/* Generator */

.quoteGenerator label {
	display: block;
}
.dels_quiz_form_field {
	margin-bottom: 1em;
}
#quoteGenerator_form input[type="checkbox"] ~ input[type="checkbox"],
#quoteGenerator_form input[type="radio"] ~ input[type="radio"] {
	margin-left: 1em;
}
.quoteGenerator p {
	margin-top: 0;
}
.quoteGenerator p:last-child {
	margin-bottom: 0;
}
.quoteGenerator__section {
	height: 0;
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: opacity 0.2s;
	-o-transition: opacity 0.2s;
	transition: opacity 0.2s;
	display: none;
}
.quoteGenerator__sectionHeader {
	margin-bottom: 2em;
}
.-last .quoteGenerator__sectionHeader {
	text-align: center;
	max-width: 44em;
	margin: 0 auto 2em auto;
}
.quoteGenerator__sectionTitle {
	margin-bottom: 1em;
	color: #a7a7a7;
	font-weight: bold;
}
.quoteGenerator__section.-active {
	height: auto;
	visibility: visible;
	opacity: 1;
	display: block;
	padding: 1px;
}
.quoteGenerator__sectionFooter {
	margin-top: 2em;
}
.quoteGenerator__answerInstructions {
	margin-bottom: 2em;
	font-style: italic;
	font-size: 1.2em;
    font-weight: bold;
}
.quoteGenerator__optionLabel {
	position: relative;
	cursor: pointer;
	display: flex !important;
	align-items: center;
	padding: 0.5rem;
	background-color: #f1f1f1;
	font-weight: bold;
	font-size: 1.1em;
}
.quoteGenerator__optionLabel:hover {
	background-color: #bc72af;
	color: #fff;
}
.quoteGenerator__optionLabel + .quoteGenerator__optionLabel {
	margin-top: 0.5em;
}
.quoteGenerator__optionCheckbox {
	content: '';
	width: 2em;
	height: 2em;
	background-color: #fff;
	border: 2px solid #444;
	display: inline-block;
	margin-right: 1em;
	border-radius: 4px;
	position: relative;
}
.quoteGenerator__optionLabel:hover .quoteGenerator__optionCheckbox {
	border-color: #9b538f;
}
.quoteGenerator__optionCheckbox:after {
	content: '';
	width: 1.2em;
	height: 1.2em;
	background-color: #444;
	display: inline-block;
	border-radius: 4px;
	position: absolute;
	top: 0.3em;
	left: 0.3em;
	display: none;
}
.quoteGenerator__optionLabel:hover .quoteGenerator__optionCheckbox:after {
	//background-color: #9b538f;
}
.quoteGenerator__option:checked + .quoteGenerator__optionCheckbox:after  {
	display: block;
}
.quoteGenerator__button {
	margin-right: 0.5em;
}
.quoteGenerator__start {
	float: left;
}
.quoteGenerator__init {
	float: none;
}

/* Progress */

.quoteProgress {
	position: relative;
	padding-top: 1.25em;
	padding-bottom: 1.25em;
	margin-top: 1em;
	margin-bottom: 1em;
}
.quoteProgress__steps {
	width: 100%;
	display: flex;
}
.quoteProgress__stepItem {
	background-color: #e5e5e5;
	height: 10px;
	flex: 1 1 auto;
	transition: background-color 0.25s;
}
.quoteProgress__stepItem.-current {
	background-color: #c7c7c7;
}
.quoteProgress__stepItem.-complete {
	background-color: #bc72af;
}
.quoteProgress__stepLabel {
	font-weight: bold;
}

.quoteGenerator__toolbar {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 1em;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	padding: 0 2em;
}
.quoteGenerator__toolbar menu, .quoteGenerator__toolbar ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	list-style-position: inside;
}
.quoteGenerator__toolbar li {
	display: inline-block;
}
.quoteGenerator__toolbar li + li {
	margin-left: 0.5em;
}
.quoteGenerator__button.-plain {
	padding: 0;
	background-color: transparent;
	color: #bc72af;
}
.quoteGenerator__errorMsg,
.quoteGenerator_form-error {
	color: red;
	font-style: italic;
}
.quoteGenerator_form-error {
	margin-top: 4px;
}
.quoteGenerator__errorMsg.-active {
	margin-top: 1em;
}


/* Quote */

.quote {
	color: #bc72af;
}
.quote__loader {
	display: none;
}
.quote.-loading .quote__loader {
	display: inline-block;
}
.quote.-loading .quote__output {
	display: none;
}

/* Summary */

	.quoteGenerator__summaryItem {
		padding: 0.5em;
		background-color: #f1f1f1;
	}
	.quoteGenerator__summaryItem + .quoteGenerator__summaryItem {
		margin-top: 0.5em;
	}
	.quoteGenerator__summaryQuestion {
		margin-bottom: 0.5em;
	}
	.quoteGenerator__summaryQuestion,
	.quoteGenerator__summaryAnswers {
		position: relative;
		padding-left: 2.5em;
		min-height: 2em;
		display: flex;
		align-items: center;
		font-weight: bold;
	}
	.quoteGenerator__summaryAnswers__item + .quoteGenerator__summaryAnswers__item:before,
	.quoteGenerator__summaryCorrectAnswers__item + .quoteGenerator__summaryCorrectAnswers__item:before {
		content: ',\00a0';
	}
	.quoteGenerator__summaryCorrectAnswers {
		margin-top: 0.5em;
		display: none;
		font-style: italic;
	}
	.quoteGenerator__summaryItem.-has-incorrect .quoteGenerator__summaryCorrectAnswers {
		display: block;
	}
	.quoteGenerator__summaryQuestionLabel,
	.quoteGenerator__summaryAnswerLabel {
		width: 2em;
		height: 2em;
		text-align: center;
		line-height: 2em;
		color: #fff;
		background-color: #bc72af;
		display: inline-block;
		margin-right: 0.5em;
		font-weight: bold;
		position: absolute;
		top: 0;
		left: 0;
	}
	.quoteGenerator__summaryAnswerLabel {
		background-color: #e5e5e5;
		color: #444;
	}
	.quoteGenerator__summaryAnswerLabel.-correct {
		background-color: #15c442;
		color: #fff;
	}
	.quoteGenerator__summaryAnswerLabel.-incorrect {
		background-color: red;
		color: #fff;
	}
	.quoteGenerator__dateStamp {
		margin-top: 2em;
		color: #777;
		font-style: italic;
	}

#quiz-score {
	color: #791c62;
	font-size: 1.4em;
}
.quiz-level {
	font-size: 1.2em;
}
.quiz-score-percent {
	width: 3.5em;
	height: 3.5em;
	display: block;
	line-height: 3.5em;
	text-align: center;
	background-color: #bc72af;
	color: #fff;
	border-radius: 50%;
	margin: 0.5em auto 0 auto;
	font-weight: bold;
	font-size: 1.4em;
}
#quoteGenerator__emailUser__success {
	margin-top: 1em;
	color: #15c442;
	font-weight: bold;
}
#quoteGenerator__emailUser__error {
	margin-top: 1em;
	color: orange;
	font-weight: bold;
}



/* Submit Form */

#dels_quiz_form_field {
	display: none;
}