.lesson {
    cursor: pointer;
    margin: 5px 8px;

    border: 1px solid #000;

    display: flex;
    flex-direction: row;

    background-color: #dae4eb;
}

.lessonNiveau {
    width: 4px;
    height: 100%;
}

.lessonTitre {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.lesson:hover {
    border: 1px dashed #0A4D81;
}

.lessonSelected {
    border: 1px dashed #0A4D81;
}


.conteneurBoxLessons {
    display: flex;
    flex-direction: row;

    margin: 15px;
}

.bandeauGaucheLesson {
    border-right: 4px solid black;

    width: 300px;

    padding-bottom: 10px;

    display: flex;
    flex-direction: column;
    overflow: scroll;
    overflow-x: hidden;
}

.conteneurDroiteLessons {
    display: flex;
    flex-direction: column;

    padding-top: 20px;
    padding-bottom: 20px;

    align-items: center;
    flex: 1;
}


.lessonContenuContainer {
    min-width: 200px;
    /* max-width: 1000px; */
    position: relative;
    border: 1px solid black;
    background: #e3e3e3;
    border-radius: 3px;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 10px;
}

.lessonContenuBoxTitre {
    font-size: 30px;
    font-weight: bold;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    text-shadow: 1px 1px 1px #e0e0e0;
    background: #6098E0;
    padding: 5px;

    padding-left: 10px;
}

.lessonContenuBoxContenuText {
    font-size: 22px;
    padding: 10px;
    text-align: justify;

    padding-left: 35px;
    padding-right: 25px;
}







