/* the_quiz container */
#the_quiz #the_questions .question_container .question_content p.edu_info {
    font-size: 15px;
    font-weight: 300;
    margin-top: 5px;
    line-height: 18px;
    max-height: 100px;
    overflow: auto;
}
#the_quiz #the_questions .question_container .question_content p.amount_info {
    color: var(--my-light-grey);
    font-size: 12px;
}
#the_quiz #the_questions .question_container .answers_content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 10px 0 0 0;
}
#the_quiz #the_questions .question_container .answers_content .btn_elem {
    width: calc(50% - 5px);
    margin-bottom: 10px;
    display: flex;
    /* flex-wrap: wrap; */
    position: relative;
}
#the_quiz #the_questions .question_container .answers_content button.answer {
    border: 1px solid var(--my-border-grey);
    background: var(--my-light-blue);
    color: white;
    width: 100%;
    font-size: 16px;
    line-height: 18px;
    padding: 12px;
}
#the_quiz #the_questions .question_container .answers_content button.answer.active {
    border: 1px solid var(--my-light-yellow);
    color: var(--my-light-yellow);
}
#the_quiz #the_questions .question_container .answers_content button.answer.marked_correct {
    border: 1px solid var(--my-success-green);
    color: var(--my-success-green);
}
#the_quiz #the_questions .question_container .answers_content button.answer.marked_wrong {
    border: 1px solid var(--my-error-red);
    color: var(--my-error-red);
}
#the_quiz #the_questions .question_container button.submit_answer,
#the_quiz #the_questions .question_container button.next_question {
    background: var(--my-light-yellow);
    color: var(--my-dark);
    border: 1px solid var(--my-light-yellow);
    padding: 12px;
    text-transform: uppercase;
    display: block;
    font-size: 16px;
    width: 100%;
    max-width: 700px;
    margin: auto;
}

