@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* @keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
} */

.quiz-visible {
    display: block;
    animation: fadeIn 0.5s ease-in-out; /* Adjust duration and timing function as needed */
}

.quiz-not-visible {
    display: none;
}



.quiz {
    margin: 20px 0px;
    padding: 20px 31px;
    background: white;
    direction: rtl;
}

.quiz-question input[type="radio"] {
width: 30px;
height: 30px;
}
.quiz-question label {
font-size: 20px;
}
.quiz-question .item {
margin-bottom: 17px;
display: flex;
align-items: center;
}
.quiz-question label {
margin-right: 12px;
font-size: 20px;
}
.quizzes-control button {
font-weight: bold;
border-radius: 10px;
width: 142px;
margin-left: 12px;
padding: 8px 20px;
color: white;
border: none;
background: #5e45b2;

}
.quiz-question span {
display: block;
margin: 25px 0px;
font-weight: bold;
font-size: 22px;
}
.quizzes-control {
margin-bottom: 22px;
margin-top: 32px;
}

@media(max-width: 767px) {
    .quizzes-control button {
        margin-bottom: 15px;
    }
}

#quiz_answer_block span {
    font-weight: bold;
    font-size: 25px;
}

.quiz h2 {
    font-weight: bold;
    color: #4b6736;
}

.quiz {
    color: #5e45b2;
    border-radius: 20px;
    background: #e4dcff;
}
