/* @import "../assets/fonts/poppins.css"; */

:root{
	--correct-color: rgb(59, 205, 132);
	--incorrect-color: rgb(255, 88, 103);
}

html, body, button{
	font-family: Poppins !important;
}

.quiz-background{
	background-color: #f5f5f5;
}

.answer-container{
	box-shadow: 2px 1px 4px rgba(0, 0, 0, 0.25);
}
.disabled {
	filter: grayscale(100%);
    opacity: 0.5;
}
.answer-correct{
	border: 2px solid var(--correct-color) !important;
	position: relative;
}
.answer-correct:before{
	content:'';
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzgiIGhlaWdodD0iNzgiIHZpZXdCb3g9IjAgMCA3OCA3OCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTY1IDE5LjVMMjkuMjUgNTUuMjVMMTMgMzkiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iOC4xMjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K") no-repeat center center/70%, var(--correct-color);
 	position: absolute;
	top: 0;
	left: 0;
	transform: translate(-50%,-50%);
	width: 23px;
	height: 23px;
	border-radius: 50%;
}
.answer-incorrect{
	border: 2px solid var(--incorrect-color) !important;
	position: relative;
}
.answer-incorrect:before{
	content:'';
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzgiIGhlaWdodD0iNzgiIHZpZXdCb3g9IjAgMCA3OCA3OCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTU4LjUgMTkuNUwxOS41IDU4LjUiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iOC4xMjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNMTkuNSAxOS41TDU4LjUgNTguNSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSI4LjEyNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=") no-repeat center center/70%, var(--incorrect-color);
 	position: absolute;
	top: 0;
	left: 0;
	transform: translate(-50%,-50%);
	width: 23px;
	height: 23px;
	border-radius: 50%;
}

.correct-text-container{
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
	background-color: #f4f4f4;
	font-size: 1rem;
	margin-bottom: 15px;
}
.correct-text-container .title{
	font-weight: 700;
	font-size: 24px;
	margin: 0;
}
.correct-text-container p{
	font-weight: 500;
	font-size: 18px;
	line-height: 30px;
	color: rgb(59, 67, 88);
	margin: 0;
	padding: 0;
	text-align: center;
}
.correct-text-container .title.correct{
	color: var(--correct-color);
}
.correct-text-container .title.incorrect{
	color: var(--incorrect-color);
}
.completed{
	@apply animate-bounce;
}

.quiz-end-results-container{
	padding: 10px;
}

.please-answer-question{
	border: 2px solid var(--incorrect-color);
	border-radius: 10px;
	padding: 10px;
	position: relative;
}
.please-answer-question:after{
	content:'please answer this question';
	position: absolute;
	top: 10px;
	left: 10px;
	background-color: var(--incorrect-color);
	color: white;
	padding: 10px;
	border-radius: 20px;
	font-weight: bold;
	font-size: 12px;
}

.down-arrows{
	animation: point-down 0.6s infinite steps(2);
}

.answer-index{
	font-size: 22px;
    color: #8670FB;
    margin-right: 16px;
    margin-left: 13px;
    font-weight: 700;
}

@keyframes point-down{
	100% {
		transform:translateY(10px);
	}
}