/* Container for the quiz */
#smartloom-quiz-container {
	font-family: 'Rubik';
    font-size: 20px;
    color: white;
	text-align: center;
}

/* Form inside the quiz container */
#smartloom-quiz-form {
}

/* Question area */
#smartloom-quiz-question {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* Button for navigating to the next question */
#smartloom-quiz-next {
	    font-family: 'Rubik';
	  color: #fff;
    font-size: 20px;
    line-height: 1.2;
    background-color: #FBA506;
    border-radius: 4px;
    margin: 14px;
    padding: 14px 25px;
    box-shadow: none;
    outline: 0;
    border: 0;
    cursor: pointer;
    max-width: 100%;
    text-align: center;
}

#smartloom-quiz-next:hover {
}

/* Submit button for the quiz */
#smartloom-quiz-submit {
	    font-family: 'Rubik';
	  color: #fff;
    font-size: 20px;
    line-height: 1.2;
    background-color: #FBA506;
    border-radius: 4px;
    margin: 14px;
    padding: 14px 25px;
    box-shadow: none;
    outline: 0;
    border: 0;
    cursor: pointer;
    max-width: 100%;
    text-align: center;
}

#smartloom-quiz-submit:hover {
}

/* Response container */
#smartloom-quiz-response {
	font-family: 'Rubik';
    font-size: 16px;
    color: white;
}

/* Prediction paragraph */
#smartloom-quiz-prediction {
	    font-family: 'Rubik';
    font-size: 16px;
    color: white;
}

/* Error message */
#smartloom-quiz-container .error-message {
}

#smartloom-quiz-button-group {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.smartloom-quiz-button-group-content > p {
	text-align: center;
}

.smartloom-quiz-button-group-image {
	
}