:root {
    --w_app: 1920;
    --h_app: 1200;
    --white: #fff;
    --black: #000;
    --gray: #f0f0f0;
    --blue: #023e84;
    --blue2: #0060a6;
    --blue3: #001632;
    --blue4: #0061a1;
    --yellow: #d9c28b;
    --orange: #867e6b;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
}

main {
    z-index: 1;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.button--animated:not(:disabled) {
    animation: pulse 2s infinite;
}



@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}


.wrapper_item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    padding: 0px 24px;
    background: var(--white);
    border-radius: 10px;
    width: 100%;
}

.item label {
    color: var(--black);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    cursor: pointer;
    flex: 1;
    padding-top: 8px;
    padding-bottom: 8px;
    transition: all 0.3s ease-in-out;
}

/* .item:hover {
    background: var(--gray);
} */

.checkbox-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.item_checkbox,
.item_radio {
    appearance: none;
    -webkit-appearance: none;
    width: 35px;
    height: 35px;
    border: 2px solid var(--blue2);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.item_radio {
    border-radius: 50% !important;
}

.item_checkbox:hover {
    border-color: var(--blue);
}

.item_checkbox:checked {
    background: var(--blue2);
    border-color: var(--blue2);
}

.checkbox-custom,
.checkbox-custom-error {
    position: absolute;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.checkbox-custom-error {
    opacity: 0;
}

.checkbox-custom svg {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.item_checkbox:checked+.checkbox-custom svg {
    opacity: 1;
}

.item.good .item_checkbox,
.item.error .item_checkbox {
    background: var(--white);
}

.item.good .checkbox-custom svg path,
.item.error .checkbox-custom svg path {
    fill: var(--blue2);
}

.item.error .checkbox-custom-error {
    opacity: 1;
}

.item.error .checkbox-custom {
    opacity: 0;
}

section {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

section:not(.inBackground) {
    z-index: 5;
}


button {
    display: flex;
    padding: 16px 24px;
    align-items: center;
    justify-content: center;
    gap: 24px;
    border-radius: 20px;
    background: var(--blue);
    box-shadow: 0 6px 0 0 var(--yellow);
    border: none;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    color: var(--white);
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    /* text-transform: capitalize; */
    text-align: left;
}

button:hover:not(:disabled) {
    transform: scale(1.1);
}

button .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
}

button .text {
    color: var(--white);
    font-size: 32px;
    font-style: normal;
    line-height: normal;
}

.bold {
    font-weight: bold;
}

.highlight {
    color: var(--blue);
    font-weight: 700;
}

.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.gap-10 {
    gap: 10px;
}

.w-420 {
    width: 420px;
}

.w-full {
    width: 100%;
}

.phase_consigne i {
    color: #001632;
    font-size: 20px;
    font-style: italic;
    font-weight: 400;
    line-height: normal;
}

#container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-image: url("../medias/images/background.jpg");
    background-size: cover;
    background-position: center;
}

/* .is-mobile #container{
   margin-top: -80px;
    } */

a,
a:visited {
    color: var(--black);
}

a:hover {
    text-decoration: underline;
}

#animation_hospital {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.container_phase_media {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}



.close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 47px;
    height: 50px;
    cursor: pointer;
    background-color: transparent;
    border-radius: 10px;
    box-shadow: none;
    color: #001632;
}

.close .icon {
    width: 47px !important;
    height: 50px !important;
    display: block;
}

.close .icon svg {
    max-width: inherit;
}

/* add system close popup animation fade 0 and hidden */
.popup {
    opacity: 0;
    top: 100px;
    visibility: hidden;
    /* transition: all 0.3s ease-in-out; */
}

.popup.is-active {
    opacity: 1;
    top: 0;
    visibility: visible;
}

#background_stars {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
}

/* section auth */
#auth {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
    z-index: 2000;
    display: none;
}

#auth_container {
    width: 764px;
    height: 352px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    padding: 64px 64px 80px 64px;
    justify-content: center;
    align-items: center;
    gap: 56px;
    border-radius: 20px;
    border: 1px solid var(--white);
}

/* section welcome */

#welcome {
    display: none;
}

#welcome .container_welcome {
    position: absolute;
    top: 220px;
    opacity: 0;
}

#welcome .container_welcome_text {
    color: var(--white);
    text-align: center;
    font-size: 100px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
}

#welcome .container_welcome_image {
    display: flex;
    width: 651px;
    height: 196px;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex-shrink: 0;
    background-color: var(--white);
    border-radius: 30px;
    position: relative;
    top: -30px;
}

#button_start_container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    top: 820px;
}


/* section phase 1 */
#phase_1 {

    display: none;

}

#phase_1 .container_phase_media {
    opacity: 0;
}

#phase_1 .phase_1_perso {
    display: flex;
    width: 808px;
    padding: 64px 64px 80px 64px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 56px;
    border-radius: 20px;
    border: 1px solid var(--white);
    background: rgba(255, 255, 255, 0.75);
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
    opacity: 0;
    z-index: 2;
    margin-right: 720px;
}

#phase_1 .phase_1_perso_presentation {
    color: #001632;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* section phase 1 game */
#phase_1_game {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    display: none;
}

#phase_1_game .phase_1_game_container {
    width: 1742px;
    height: 848px;
    flex-shrink: 0;
    border-radius: 20px;
    background: var(--blue3);
    display: flex;
    flex-direction: row;
    margin-top: 20px;
}

#phase_1_game .phase_1_game_container_menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* justify-content: space-between; */
    width: 260px;
    height: 848px;
    padding-top: 40px;

}

#phase_1_game .patient_menu_list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 205px;
    max-height: 635px;
    padding: 0px 0 0px 24px;
    border-radius: 0 20px 20px 20px;
    background: rgba(0, 96, 166, 0.5);
    overflow: hidden;
    position: relative;
}

#phase_1_game .patient_menu_list button {
    background-color: transparent !important;
    box-shadow: none !important;
    padding-left: 0;
    padding-right: 0;
}

#phase_1_game .patient_menu_list button .text {
    color: #867e6b;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#phase_1_game #button_menu_patient_file {
    position: relative;
    background-color: var(--yellow);
    box-shadow: 0 6px 0 0 var(--orange);
    left: -15px;
    width: 222px !important;
    height: 52px !important;
    border-radius: 10px;
    padding: 0;
    margin-bottom: 40px;
}

#phase_1_game #button_menu_patient_file .icon {
    width: 30px;
    height: 36px;
}

#phase_1_game #button_menu_patient_file .text {
    color: #001632;
    font-size: 26px;
}

#phase_1_game #button_menu_back {
    background-color: transparent;
    box-shadow: none;
    gap: 12px;


}

#phase_1_game #button_menu_back .text {
    font-weight: normal;
}

#phase_1_game .phase_1_game_container_content {
    display: flex;
}

#phase_1_game #patient_profile {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    justify-content: center;
    padding-top: 90px;
    padding-left: 0px;
    padding-right: 44px;
    position: relative;
}



#phase_1_game #tabs_patient {
    margin-bottom: 30px;
}

#phase_1_game .patient_tab_list li {
    border-bottom: 1px solid var(--white);
}

#phase_1_game .patient_tab_list button {
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
    line-height: 10px;
    border-bottom: 11px solid transparent;
    padding-bottom: 25px;
    font-size: 30px;
    font-weight: 400;
}

#phase_1_game .patient_tab_list button.is-active {
    font-size: 50px;
    font-weight: bolder;
    border-bottom: 11px solid var(--yellow);
}

#phase_1_game #button_tab_patient_exam {
    margin-left: 100px;
}

#phase_1_game .patient_tab_list {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

#phase_1_game #patient_props_with_photo {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    width: 366px;
    min-width: 366px;
    height: 698px;
    padding: 24px;
    gap: 24px;
    opacity: 1;
    border-radius: 30px;
    border: 1px solid #ffffff80;
    background: linear-gradient(205.02deg, #0060a6 -0.55%, #001632 93.55%);
}

#phase_1_game .profil_patient_info {
    color: var(--yellow);
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 16px;
    text-align: right;
}

#phase_1_game .profil_patient_info .bold {
    color: var(--white);
    font-size: 28px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

.patient_icon {
    position: absolute;
    right: 20px;
    top: 10px;
    z-index: 10
}

#phase_1_game .phase_1_game_container_content_patient_profil {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

#phase_1_game #button_interview,
#phase_1_game #button_exam_results {
    margin-top: 20px;
}

#phase_1_game.begin .phase_1_game_container {
    background-color: #f9f6eebf;
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
}

#phase_1_game.begin .patient_menu_list {
    background: #d9c28b80;
}

#phase_1_game.begin #button_menu_back .text {
    color: #001632;
}

#phase_1_game.begin #button_menu_back .icon path {
    stroke: #001632;
}

#phase_1_game.begin #button_menu_patient_file {
    background: var(--blue);
    box-shadow: 0 4px 0 0 var(--yellow);
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

}

#phase_1_game.begin #button_menu_patient_file .icon svg path {
    stroke: var(--white);
}

#phase_1_game.begin #button_menu_patient_file .text {
    color: var(--white);
}

#phase_1_game.begin .patient_menu_list {
    background: rgba(217, 194, 139, 0.5);
}

#phase_1_game.begin .patient_menu_list button.is-active .text {
    color: #001632;
    font-weight: 700;
}

#phase_1_game.begin .patient_menu_list button .text {
    color: #867e6b;
}

.container_buttons_interview {
    gap: 26px;
    margin-left: 270px;
}

#popup_phase_1_game_patient_interview_confirm {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
    width: 808px;
    padding: 64px 64px 80px 64px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 56px;
    border-radius: 20px;
    border: 1px solid var(--white);
    background: var(--white);
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
}

#popup_phase_1_game_patient_interview_confirm p {
    color: #001632;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.patient_menu_list button {
    position: relative;
    z-index: 10;
}

.patient_menu_list button.is-active .text {
    color: #001632;
    font-weight: 700;
}

.patient_menu_list li {
    height: 127px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.patient_menu_list .zone {
    content: "";
    width: 205px;
    height: 127px;
    border-radius: 0 20px 20px 0;
    background: var(--white);
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    transition: top 0.4s ease, height 0.4s ease;
}

.phase_consigne {
    color: #001632;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 24px;
    margin-bottom: 24px;
}

.profil_patient_video {
    background-color: #0061a1;
    width: 318px;
    height: 340px;
    border-radius: 20px;
    overflow: hidden;

}

button[disabled] {
    pointer-events: none;
}

.button[disabled] {
    background: #C3C4C6;
    box-shadow: none;
}

.button[disabled] .text {
    color: #767571;
}

.button[disabled] .icon path {
    fill: #767571;
}

.phase_title {
    color: #001632;
    font-size: 50px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    border-bottom: 11px solid var(--yellow);
    padding-left: 4px;
    padding-right: 4px;
    width: fit-content;
}

#patient_synthesis,
#patient_prescription,
#patient_hypothesis,
#patient_examination,
#patient_interview,
#keep_in_mind,
#patient_diagnosis_hypothesis,
#patient_additional_questions,
#patient_management,
#patient_exams_results {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 1408px;
    padding-top: 26px;
    padding-bottom: 26px;
}


#patient_synthesis,
#patient_prescription,
#patient_diagnosis_hypothesis,
#patient_additional_questions,
#patient_management,
#patient_examination,
#patient_hypothesis,
#patient_interview,
#keep_in_mind {
    justify-content: flex-start;
}

#patient_exams_results {
    padding-top: 0;
}

#patient_additional_questions {
    width: 1743px;
    padding-left: 56px;
    padding-right: 56px;
}


#keep_in_mind .keep_in_mind_note {
    color: var(--blue3);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    position: absolute;
    bottom: 30px;
    right: 34px;
}

#keep_in_mind .consigne {
    color: var(--blue3);
    font-size: 20px;
    font-style: normal;
    line-height: normal;
    margin-top: 34px;
}

#keep_in_mind strong {
    font-size: 24px;
}

h3 {
    color: #001632;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 24px;
    margin-bottom: 24px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
    margin-right: 208px;
    margin-bottom: 25px;
}

.grid_item {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    border-radius: 20px;
    background: #fff;
    color: #001632;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 613px;
}

.grid_item h4 {
    color: var(--yellow);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}


.grid_item_li {
    list-style: disc;

}

#game_reorder {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-left: 370px;
    align-items: center;
    margin-bottom: 77px;
}



.container_buttons_interview {
    position: absolute;
    bottom: 40px;
}

#patient_exams_results_buttons {
    left: 50%;
    transform: translateX(-50%);
    margin-top: 20px;
    gap: 20px;
    justify-content: center;
    width: 100%;

}

.container_buttons {
    position: absolute;
    bottom: 40px;
    left: 50%;
    gap: 20px;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;

}

#indicator {
    width: 20px;
    height: 450px;
    border-radius: 30px;
    background: linear-gradient(180deg, #0061a1 0%, #00243b 100%);
    position: relative;
}

#indicator .indicator_label_top,
#indicator .indicator_label_bottom {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    right: 25px;
}

#indicator .indicator_label_top {
    top: 0;
    color: #0061a1;
}

#indicator .indicator_label_bottom {
    bottom: 0;
    color: #000;
}

.game_reorder_answer {
    display: flex;
    padding: 8px 24px;
    justify-content: center;
    align-items: center;
    gap: 14px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 0 0 var(--yellow);
    width: fit-content;
    color: #001632;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    cursor: grab;

}

#game_reorder_right {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-left: 40px;
}

.patient_prescription_tabs {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    border: 1px solid #fff;
    color: var(--yellow);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 40px;
    width: 100%;
}

.patient_prescription_tab {
    padding: 8px 16px;
    cursor: pointer;
    width: 33.3333%;
    text-align: center;
}

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

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

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

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

#patient_prescription_content_quiz_consigne_title {
    color: #0061A1;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-top: 40px;
}

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





.card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 24px;
    color: var(--blue3);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: relative;
}

.card h2 {
    font-weight: 600;
    font-style: SemiBold;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 10px;
}



/* DEBUG */

body.phase_1_game #auth {
    display: none;
}

#patient_prescription_content,
#patient_exams_results_content {
    width: 100%;

}

#patient_interview_content,
#patient_diagnosis_hypothesis_content,
#patient_additional_questions_content,
#patient_management_content,
#patient_prescription_content_quiz {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;

}

#patient_interview_content_correct {
    display: flex;
    gap: 24px;
    display: none;
    margin-top: 20px;
    margin-bottom: 26px;
}

#patient_interview_content_correct_list,
#patient_interview_content_correct_list_context {
    display: flex;
    width: 613px;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex-shrink: 0;
    border-radius: 20px;
    background: rgba(206, 249, 179, 0.50);
}

#patient_interview_content_correct_list_context {

    background: rgba(255, 255, 255, 0.50);
}

#patient_interview_content_correct_list ul,
#patient_interview_content_correct_list_context ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

#patient_interview_content_correct_list ul li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
}

#patient_interview_content_correct_list ul .answer_content,
#patient_interview_content_correct_list_context ul li {
    display: flex;
    padding: 8px 24px;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    background: var(--white);
    color: var(--black);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    flex: 1
}

#patient_interview_content_correct_list ul li button.info {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    max-height: 40px;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 0;
    background: transparent !important
}

.video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;

}

#patient_synthesis_content {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 100px;
}

#patient_synthesis_content p {
    color: var(--blue3);

}

#patient_synthesis_content ul,
#patient_examination_content ul {
    margin-left: 30px;
}

#zoom {
    position: absolute;
    z-index: 4000;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
    opacity: 0;
    display: none;

}

#zoom_content {
    position: relative;
    width: 1841px;
    height: 1100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.80);
    padding: 64px 0 80px 0;
    border-radius: 20px;
    border: 1px solid #FFF;

}

.zoom {
    background: transparent;
    box-shadow: none;
    width: 45px;
    height: 45px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

#confirm_quit_patient_file {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    top: 0;
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    opacity: 0;

}

#confirm_quit_patient_file_content {
    display: flex;
    width: 808px;
    height: 360px;
    padding: 64px 64px 80px 64px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 56px;
    border-radius: 20px;
    border: 1px solid var(--white);
    background: var(--white);
    color: var(--blue3);
    font-size: 30px;
    font-style: normal;
}


.icon_play {
    display: none;

}

#play_pause_video,
#exit_interview,
#patient_examination_from_full_interview,
#patient_hypothesis_from_full_interview,
#patient_management_from_full_interview {
    position: absolute;
    z-index: 99999;
}

#patient_examination_from_full_interview,
#patient_hypothesis_from_full_interview,
#patient_management_from_full_interview {
    left: 50%;
    bottom: 100px;
    display: none
}

#patient_examination_from_full_interview,
#patient_management_from_full_interview,
#patient_hypothesis_from_full_interview {
    margin-left: -240px;

}

#play_pause_video {
    left: 80px;
    bottom: 185px;
    border-radius: 100%;
    width: 72px;
    height: 72px;
}

#exit_interview {
    left: 80px;
    bottom: 85px;
    border-radius: 100%;
    width: 72px;
    height: 72px;
}

.icon_play,
.icon_exit {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
}

.icon_play svg,
.icon_exit svg {
    width: 100%;
    height: auto
}

.good {
    background: #CEF9B3;
}

.error {
    background: #FFB7B7;
}

.order_check {
    width: 35px;
    height: 35px;
    display: none;

}

.error .order_error {
    display: flex;
}

.good .order_good {
    display: flex;
}

.isCorrection .order_check {
    display: none;
}

.button_item_feedback {
    background-color: transparent;
    box-shadow: none;
    height: 51px;
    width: 51px;
    margin-left: 10px;
    visibility: hidden;
    opacity: 0;

}

.button_item_feedback svg {
    min-width: 40px;
    min-height: 40px;
    width: 40px;
    height: 40px;

}

#background_game {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    z-index: 3;
}

#consultation_image_1 {
    display: block;
}

#consultation_image_2,
#consultation_image_3,
#consultation_image_4 {
    display: none;
}

#synthesis-content_consultation_2_step_1,
#synthesis-content_consultation_3_step_1 {

    flex-direction: column;
}

#synthesis-content_consultation_2_step_2,
#synthesis-content_consultation_3_step_2 {
    display: none;
    flex-direction: column;
}

#card_patient_lifestyle {
    width: 573px;
}

#card_patient_medicla {
    width: 453px;
}

/* Styles pour le tableau match */
.match_table_container {
    width: 100%;
    margin: 20px 0;
    background: var(--white);
    border-radius: 8px;

}

.match_table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
}

.match_table_header {
    display: flex;
    background: var(--blue3);
    color: var(--white);
    font-weight: bold;
    border-radius: 8px 8px 0 0;
    width: 100%;

}

.match_table_body {
    display: flex;
    flex-direction: column;
}

.match_table_row {
    display: flex;
    border-bottom: 1px solid #e0e0e0;

}

.match_table_row:last-child {
    border-bottom: none;
}

.match_table_cell {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    min-height: 60px;
    word-wrap: break-word;
    box-sizing: border-box;
    width: 33.3333%;

}

.match_table_cell.checkbox_cell label {
    display: none;
}

.match_table_cell.checkbox_cell .item {
    justify-content: center;
}

.header_cell {
    font-size: 16px;
    font-weight: 600;
    background: var(--blue);
    color: var(--white);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
}

.header_cell:last-child {
    border-right: none;
}

.feature_cell {
    justify-content: flex-start;
    text-align: left;
    padding-left: 20px;
    border-right: 1px solid #e0e0e0;
    background: var(--gray);
    /* width: 33.3333%; */
}

.checkbox_cell {
    flex: 1;
    border-right: 1px solid #e0e0e0;
}

.match_table_body .item.good {
    background-color: transparent;
}

.match_table_body .item.error {
    background-color: transparent;
}

.checkbox_cell .item.error .item_checkbox {
    background-color: #FFB7B7;
    border: 1px solid #FFB7B7;
}

.checkbox_cell .item.good .item_checkbox {
    background: #CEF9B3;
    border: 1px solid #CEF9B3;
}

.checkbox_cell .item.good .item_checkbox .checkbox-custom svg path {
    fill: #023E84;
}

/* .checkbox_cell .item.error .item_checkbox {
    background: transparent;
} */

.checkbox_cell .item.error .item_checkbox .checkbox-custom svg path {
    fill: transparent;
}

.checkbox_cell:last-child {
    border-right: none;
}

.feature_text {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    margin-right: 10px;
    color: #001632;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
}

.item_info svg {
    width: 24px;
    height: 24px;

}

#keep_in_mind_visuel {
    position: relative;
    bottom: 35px;
    pointer-events: none;
}

#popup_confirm_exit_video {
    position: absolute;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 22, 50, 0.50);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: none;
}


#popup_confirm_exit_video_content {
    display: flex;
    width: 808px;
    padding: 64px 64px 80px 64px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    border-radius: 20px;
    border: 1px solid #FFF;
    background: #FFF;
    color: #001632;
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#popup_confirm_exit_video_close,
#popup_confirm_exit_video_confirm {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 55px;
}

#popup_help {
    position: absolute;
    display: none;
    z-index: 9999;
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

#popup_help_container {
    display: flex;
    flex-direction: column;
    width: 808px;
    height: 319px;
    opacity: 1;
    border-radius: 20px;
    border-width: 1px;
    padding-top: 64px;
    padding-right: 64px;
    padding-bottom: 80px;
    padding-left: 64px;
    gap: 56px;
    background: #FFFFFF;
    border: 1px solid #FFFFFF;
    font-family: "Open Sans";
    font-weight: 400;
    font-style: Regular;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0%;
}

#popup_help_container .popup_help_container_txt {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

#popup_help_container button {
    max-width: 168px;
    align-self: center;
}

#zone_menu button[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

#button_restart_additional_questions {
    display: none;
}

#panel_info {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1470px;
    height: 67px;
    opacity: 1;
    border-radius: 0 0 30px 30px;
    background: #FFFFFF;
    z-index: 9999;
    text-align: center;
    padding: 20px;
}

#panel_info p {
    color: #000;
    font-family: "Open Sans";
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 100%;

}