@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rozha+One&display=swap');
.quiz-container img {
	width: 100%;
	margin: 30px 0;
}
.quiz-container {
	max-width: 800px;
	margin: 0 auto;
	background-color: rgba(220,64,126,.12);
	color: #dc407e;
	font-family: "Poppins", sans-serif;
	margin-top: 70px;
	position: relative;
	border-bottom: 10px #dc407e solid;
}
.quiz-container .quiz-container-block {
	display: inline-block;
	width: 100%;
	padding: 80px 80px 45px;
	box-sizing: border-box;
}
.quiz-container .logo {
	position: absolute;
	left: 20px;
	top: -90px;
	width: 200px;
}

@media (max-width: 990px) {
	.quiz-container .quiz-container-block {
		padding: 70px 25px 30px;
	}

	.quiz-container .logo {
		width: 130px;
	}
}

.quiz-container .question {
	display: none;
	margin-bottom: 20px;
}
.quiz-container .question.active {
	display: block;
}
.quiz-container h1 {
	font-family: "Rozha One", serif;
	font-size: 42px;
	line-height: 55px;
	margin: 0;
	font-weight: normal;
}

@media (max-width: 990px) {
	.quiz-container h1 {
		font-size: 32px;
		line-height: 45px;
	}
}

#quizForm {
	display: inline-block;
	width: 100%;
}

.quiz-container .result {
	display: none;
}
.quiz-container .error-message {
	color: red;
	font-weight: bold;
	margin: 0 0 30px;
}
.quiz-container .reset-btn {
	margin: 30px 0;
	display: none;
}
.quiz-container label {
	display: block;
	cursor: pointer;
	margin-bottom: 30px;
	font-size: 15px;
	line-height: 25px;
}
.quiz-container p {
	font-size: 22px;
	font-weight: bold;
	margin: 0 0 30px;
	color: #403a4e;
}
.quiz-container button {
	float: right;
	background: #dc407e url("data:image/svg+xml,%0A%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.543 7.38867L9.23047 12.7012C9.03125 12.9004 8.76562 13 8.5 13C8.20117 13 7.93555 12.9004 7.73633 12.7012C7.30469 12.3027 7.30469 11.6055 7.73633 11.207L11.2227 7.6875H1.0625C0.464844 7.6875 0 7.22266 0 6.625C0 6.06055 0.464844 5.5625 1.0625 5.5625H11.2227L7.73633 2.07617C7.30469 1.67773 7.30469 0.980469 7.73633 0.582031C8.13477 0.150391 8.83203 0.150391 9.23047 0.582031L14.543 5.89453C14.9746 6.29297 14.9746 6.99023 14.543 7.38867Z' fill='white'/%3E%3C/svg%3E%0A") no-repeat right 25px center;
	color: #fff;
	font-size: 17px;
	font-weight: bold;
	border-radius: 40px;
	padding: 10px 57px 10px 37px;
	border: 0;
	cursor: pointer;
}
.quiz-container .result-message {
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 30px;
}
.quiz-container .score-message {
	font-family: "Rozha One", serif;
	font-size: 42px;
	line-height: 55px;
	margin: 0 0 30px;
	font-weight: normal;
}
.quiz-container .additional-info {
	font-size: 15px;
	line-height: 25px;
	margin: 0 0 30px;
}
.quiz-container .custom-radio {
	position: relative;
	padding-left: 35px;
	cursor: pointer;
	display: block;
	line-height: 25px;
	user-select: none;
}
.quiz-container .custom-radio input[type="radio"] {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}
.quiz-container .checkmark {
	position: absolute;
	top: 3px;
	left: 0;
	height: 20px;
	width: 20px;
	background-color: #fff;
	border-radius: 50%;
}
.quiz-container .custom-radio:hover input ~ .checkmark {
	background-color: #ccc;
}
.quiz-container .custom-radio input:checked ~ .checkmark {
	background-color: #dc407e;
}
.quiz-container .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
.quiz-container .custom-radio input:checked ~ .checkmark:after {
	display: block;
}
.quiz-container .custom-radio .checkmark:after {
	top: 6px;
	left: 6px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}
