.answer_container {
    display: flex;
    width: 142px;
    justify-content: space-between;
}

.exercise_number_and_equation_container {
    display: flex;
    flex-direction: row;
}

.equation_and_answers_container {
    display: grid;
    grid-template-columns: repeat(5, auto);
    gap: 2.5px;
    align-items: center;
}


.question_number {
    width: 20px;
    text-align: right;
    line-height: 1rem;
    margin-right: 5px;
}

.question_row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.question_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.equation {
    margin-top: -0.5rem;
    margin-bottom: 5px;
}

.answer_line {
    border-bottom: #0a0a0a 1px dotted;
    width: 60px;
    line-height: 1rem;
    margin-top: 1rem;
    margin-left: 8px;
}

.number {
    width: 40px;
    text-align: center;
}

.number_correct {
    width: 60px;
    text-align: center;
    color: #00B419 !important;
    font-weight: bold !important;
    margin-left: 8px;
}

.sign {
    width: 10px;
    text-align: center;
}

.answer_line_small {
    border-bottom: #0a0a0a 1px dotted;
    width: 45px;
    line-height: 1rem;
    margin-top: 1rem;
    margin-left: 10px;
}

.number_small {
    width: 25px;
    text-align: center;
}

.number_correct_small {
    width: 45px;
    text-align: center;
    color: #00B419 !important;
    font-weight: bold !important;
    margin-left: 10px;
}

.text_size {
    font-weight: 300;
    font-size: 1.4rem;
    margin-top: -0.3rem;
    line-height: 1rem;
}