.patient_exams_results_tabs {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex: 1 0 0;
    border-radius: 20px;
    border: 1px solid #0061A1;
    background: rgba(0, 96, 166, 0.50);
    color: var(--white);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    /* margin-top: 4px; */
    margin-bottom: 25px;
    width: 100%;
}

.patient_exams_results_tab {
    padding: 8px 8px;
    cursor: pointer;
    width: 33.33333%;
    text-align: center;
}

.patient_exams_results_tab:nth-child(1) {

    border-right: 1px solid #0061A1;
}

.patient_exams_results_tab:nth-child(3) {

    border-left: 1px solid #0061A1;
}

.patient_exams_results_tab.is-active {
    background: #0060A6;
    color: #FFF;
}

.patient_exams_results_tab:nth-child(1).is-active {
    border-radius: 20px 0 0 20px;
}

.patient_exams_results_tab:nth-child(2).is-active {
    border-radius: 0
}

.patient_exams_results_tab:nth-child(3).is-active {
    border-radius: 0 20px 20px 0;
}

.patient_exams_results_table_header {
    border: 01px solid #001126;
    background: #023E84;
}

#patient_exams_results_content_score {
    display: flex;
    width: 100%;
    gap: 40px;
}

#patient_exams_results_content_score_table {
    min-width: 496px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#patient_exams_results_content_score_graph {
    border-radius: 20px;
    background: #FFF;
    padding: 16px;
}

.table_row {
    display: flex;
    width: 100%;
}

.table_col {
    display: flex;
    flex-direction: column;
    width: 100%;


}

.table_cell_head {
    border: 0.5px solid #001126;
    background: #023E84;
    color: #FFF;
    text-align: center;
    font-family: "Open Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    height: 52px;
    width: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;

}

.table_cell {
    color: #001632;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    border-top: 1px solid #D9C28B;
    border-left: 1px solid #D9C28B;
    background: #FFF;
    height: 52px;
    width: 50%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 12px;

}

.table_col .table_cell_head,
.table_col .table_cell {
    width: 100%;
}


.w-850 {
    width: 850px;
    margin: 0 auto;
}

.quiz-button-results-container {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
}

.quiz-button-results {
    background-color: var(--white);
    border-radius: 10px;
    color: var(--blue3);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;

}

.quiz-info-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    box-shadow: none;
}

.quiz-button-results.good {
    background: #CEF9B3;
}

.quiz-button-results.selected {
    background: var(--blue);
    color: var(--white);
}

.quiz-button-results.error {
    background: #FF6B6B;
}

#patient_exams_results_content_quiz_consigne_title {
    color: #FFF;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 40px;
}

.quiz-info-button,.quiz-button-results-icon {
    display: none;
}