@keyframes quiz-module__fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.quiz-module__questionWrapper {
	background: #eb6f93;
	padding: 2.3rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.quiz-module__quizHeader {
	gap: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.quiz-module__quizHeader h2 {
	margin: 0;
}

.quiz-module__inactiveSvg {
	transition: 0.3s;
	opacity: 0.3;
}

.quiz-module__activeSvg {
	transition: 0.3s;
	opacity: 1;
}

.quiz-module__questionWrapper svg {
	transition: 0.2s;
}

.quiz-module__questionWrapper h3 {
	margin: 1rem 0 1rem 0;
}

.quiz-module__questionWrapper span {
	display: none;
}

.quiz-module__stepper {
	justify-content: center;
	display: flex;
	flex-direction: row;
	gap: 10px;
	margin: 3rem auto;
	align-items: flex-end;
}

.quiz-module__stepper p {
	margin: 0;
	font-size: 18px;
	color: #FDDCE6;
}

.quiz-module__inactiveLine {
	opacity: 0.3;
}

.quiz-module__questionAnswers {
	display: flex;
	flex-direction: row;
	gap: 1rem;
	animation: quiz-module__fadeInAnimation ease 3s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}

.quiz-module__questionAnswers div {
	width: 100%;
	padding: 7px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.quiz-module__questionAnswers div h4 {
	color: #f53d73;
	margin: 0;
}

.quiz-module__questionAnswers div p {
	margin: 0;
}

.quiz-module__questionAnswers div label {
	display: flex;
	gap: 25px;
	cursor: pointer;
	align-items: center;
}

.quiz-module__active {
	background-color: #FBBBCF !important;
	padding: 10px !important;
	border: 2px solid #f53d73;
}

.quiz-module__questionAnswers div label input[type="radio"] {
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
	margin: 0;
	font: inherit;
	color: #F53D73;
	width: 21px !important;
	height: 21px;
	border: 1px solid #F53D73;
	border-radius: 50%;
	transform: translateY(-0.075em);
	display: grid;
	place-content: center;
}

.quiz-module__questionAnswers div label input[type="radio"]::before {
	content: "✓";
	text-align: center;
	width: 21px !important;
	height: 21px;
	font-size: 14px;
	border-radius: 50%;
	transform: scale(0);
	transition: 120ms transform ease-in-out;
	box-shadow: inset 1em 1em #F53D73;
	color: #FBBBCF;
}

.quiz-module__questionAnswers div label input[type="radio"]:checked::before {
	transform: scale(1);
}

.quiz-module__quizButton {
	background: #F53D73;
	color: #FDE7EE;
	padding: 0.5rem 1rem;
	width: min(15rem, 100%);
	border-radius: 2.5rem;
	cursor: pointer;
	font-size: 1rem;
	font-style: normal;
	font-weight: 500;
	transition: all 0.3s ease;
	margin: 40px auto;
	outline: none;
	border: none;
}

.quiz-module__quizButton:disabled {
	background: #f53d73;
	color: #FDE7EE;
	opacity: 0.5;
	cursor: not-allowed;
}

@media screen and (min-width: 768px) {
	.quiz-module__quizButton:hover {
		background: #f53d73;
		color: white;
	}

}

.quiz-module__mobile-text {
	display: none;
	opacity: 0;
}

.quiz-module__resultWrapper {
	background: #eb6f93;
	padding: 1rem 2.3rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	text-align: center;
	justify-content: center;
	min-height: 50vh;
}

.quiz-module__resultWrapper h3 {
	margin: 2rem 0 0 0;
}

.quiz-module__ctaResults {
	display: flex;
	gap: 2rem;
	justify-content: center;
}

.quiz-module__secondaryQuizButton,
.quiz-module__primaryQuizButton {
	background: transparent;
	color: #fddce6;
	padding: 0.5rem 1rem;
	width: min(15rem, 100%);
	border-radius: 2.5rem;
	border: 1px solid #fddce6;
	cursor: pointer;
	font-size: 1rem;
	font-style: normal;
	font-weight: 500;
	transition: all 0.3s ease;
}

.quiz-module__primaryQuizButton {

	background: #f53d73;
	color: white;
	border: 2px solid #f53d73;
}

.quiz-module__primaryQuizButton:hover {
	background: #c42755;
	color: white;
	border-color: #c42755;
}

.quiz-module__secondaryQuizButton:hover {
	background: #fddce6;
	color: #f53d73;
	border-color: #fddce6;
}

.quiz-module__fade {
	opacity: 0;
	transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.quiz-module__fade-in {
	opacity: 1;
	transform: translateY(0);
}

.quiz-module__fade-out {
	opacity: 0;
	transform: translateY(40px);
	pointer-events: none;
}

@media (max-width: 768px) {


	.quiz-module__questionAnswers {
		flex-direction: column;
	}

	.quiz-module__questionAnswers div>div {
		padding: 0px;
	}

	.quiz-module__questionAnswers div {
		padding: 10px;
	}

	.quiz-module__stepper {
		margin: 25px auto;
	}

	.quiz-module__stepper svg {
		width: 50px !important;
	}

	.quiz-module__quizHeader {
		padding: 0 1rem;
	}

	.quiz-module__questionWrapper {
		padding: 0.5rem;
		padding-top: 70px;
		gap: 0rem;
		min-height: 100vh;
	}

	.quiz-module__questionWrapper h3 {
		margin: 0;
	}

	.quiz-module__questionWrapper span {
		display: block;
	}

	.quiz-module__resultWrapper {
		top: 0px;
		position: relative;
		height: 100vh;
	}
}