.content-area {
	overflow: hidden;
}

.quiz {
	min-height: 400px;

	border-radius: 12px;
	background-color: #F6F7F5;
    box-sizing: border-box;
    padding: 40px 30px;
    margin-top: 30px;
    margin-bottom: 10px;

    position: relative;
}

.quiz--wrong {
	background-color: #FFEBEA;
}

.quiz--right{
	background-color: #7aff0070;
}

.answers {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	text-align: center;
	margin-bottom: 22px;
}

.answer {
	min-width: 160px;
	min-height: 52px;
	margin: 10px;
	background: #E3E5E9;
	border: 1px solid #A9A9A9;
	box-sizing: border-box;
	cursor: pointer;
	
	padding: 13px 0;
	font-style: normal;
	font-weight: 300;
	font-size: 20px;
	line-height: 23px;

	position: relative;
}

.answer:after {
	display: block;
	height: 7px;
	width: 100%;
	background-color: #fff;
	content: "";

	position: absolute;
	bottom: 0;
	left: 0;
}

.answered.answer:after, .answer:hover {
	border: 1px solid #00A3FF;
}

.answered.answer:after {
	background-color: #00A3FF;
}

.quiz_button, .check_button {
	float: right;
	min-width: 169px;
	background-color: #48C80C;
	text-align: center;
	cursor: pointer;
	border: none;

	padding: 11px 10px;

	font-style: normal;
	font-weight: normal;
	font-size: 22px;
	line-height: 26px;
	color: #FFFFFF;

	transition: background .1s linear;
}

.quiz_button:disabled, .check_button:disabled {
	background-color: #aaa;
	cursor: auto;
}

.clicked:hover, .quiz_button:focus {
	background-color: #3BA609;
}

.answer.right {
	background-color: #a9ffa9;
}

.answer.wrong {
	background-color: #f55;
}

.cursor-off{
	cursor: auto;
}

.instruction {
	padding: 16px 0;
	font-family: Roboto;
	font-style: normal;
	font-weight: 500;
	font-size: 24px;
	line-height: 28px;
	text-align: center;
}

.qtext {
	margin: 20px 45px 5px;
	padding: 14px 0;

	font-style: normal;
	font-weight: normal;
	font-size: 20px;
	line-height: 23px;
	/* identical to box height */

	color: #3BA609;
}

.qtext--choice {
	margin: 20px 45px;
	background: #FFFFFF;
	text-align: center;
}

.send_answer {
	margin: 5px 45px 20px;
	overflow: hidden;
}

.answer_field {
	width: 100%;
	padding-left: 16px;
	font-style: normal;
	font-weight: normal;
	font-size: 20px;
	line-height: 23px;
	/* identical to box height */


	color: #333333;
	line-height: 44px;
	margin-bottom: 40px;
	box-sizing: border-box;
}

.answer_field:focus {
	border: 1px solid #00A3FF;
	outline: 1px solid #00A3FF;
}

.result {
	text-align: center;
	font-size: 2em;
}

.grade_message {
	text-align: center;
	font-size: 24px;
}

.count_question {
	text-align: center;
	font-style: normal;
	font-weight: normal;
	font-size: 18px;
	line-height: 21px;

	color: #3BA609;

	margin-bottom: 15px;
}

.quiz__progress {
	width: 90%;
	height: 12px;
	margin: 0 auto;
	border-radius: 8px;
	background-color: #e5e5e5;
	position: relative;
}

.quiz__progress--grow {
	width: 0;
	height: 12px;
	border-radius: 8px;
	background-color: #3BA609;
	position: absolute;
	z-index: 1000;
}

.quiz__output {
	width: 100%;
	min-height: 24px;

	position: absolute;
	left: 50%;
	bottom: 10px;
	transform: translateX(-50%);
}

.output__buttons {
	display: flex;
	justify-content: space-between;
	margin: 0 30px;
}


.not__agree, .comments__btn {
	display: none;
}

.btn_link, .not__agreelink {
	display: flex;
	align-items: center;
	font-style: normal;
	font-weight: 300;
	font-size: 18px;
	line-height: 21px;
}

.green--buttons .not__agreelink, .green--buttons .btn_link{
	color: #3BA609;
}

.red--buttons .not__agreelink, .red--buttons .btn_link {
	color: #ff2f00;
}

.svg__icon {
	max-height: 22px;
	width: 36px;
}

.green--buttons .svg__icon {
	fill: #3BA609;
}

.red--buttons .svg__icon {
	fill: #ff2f00;
}

.green--text {
	color: #3BA609;
	float: left;
    margin-bottom: 20px;
}

.result-pic {
    width: 104px;
    margin: 0 auto;
    margin-top: 50px;
}

/*Media
===============*/

@media (max-width: 560px) {
	.answer {
	    min-width: 90%;
	}

	.qtext--choice {
	    margin: 20px 0;
	}

	.qtext {
	    margin: 20px 16px 5px;
	}

	.send_answer {
	    margin: 5px 16px 20px;
	}

	.quiz_button, .check_button {
	    float: none;
	    min-width: 100%;
	}
}