/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
 *                                              *
 *                  GLOBAL                      *
 *                                              *
 *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
@import url(font.css);
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
:root
{
    --bleu: #27BCE5;
    --jaune: #FFC869;
    --jaune75: #ffc869bf;
    --rose: #ED78A5;
    --lavande: #8993D4;
    --fond: #FFFDF9;
    --noir: #000;
    --noir50: #00000080;
    --blanc: #fff;
    --gris: #cacaca;
    --rouge: #D8000C;
    --rouge2: #FFBABA;
    --shadow: 0px 0px 3px 0px rgba(0,0,0,0.25);
}
*
{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    max-width: 100vw;
}
body
{
    font-family: Inter;
    font-weight: 500;
    font-size: 0.9em;
    margin-top: calc(5em + 5px);
    min-height: calc(100vh - 80px);
}
h1, h2, h3
{
    font-family: Chewy;
    margin: 0;
    padding: 0;
}
h1
{
  font-weight: lighter;
  font-size: 3em;
  line-height: 1em;
}
a
{
    color: var(--bleu);
}
.button
{
    background-color: var(--jaune);
    border: none;
    border-radius: 5px;
    color: var(--blanc);
    box-shadow: var(--shadow);
    padding: 0.8em 2.5em;
    font-size: 1em;
    font-weight: 600;
}
.boutonPrimaire:hover
{
    background-color: var(--lavande);
}
.input
{
    background-color: var(--blanc);
    border: none;
    border-radius: 5px;
    box-shadow: var(--shadow) inset;
    padding: 1em 0.5em;
    font-family: Inter;
}
.input::placeholder
{
    color: var(--gris);
}
.link
{
    color: var(--jaune);
}
.link:hover
{
    color: var(--lavande);
}
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
 *                                              *
 *                 ACCUEIL                      *
 *                                              *
 *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
#logoAccueil
{
    display: block;
    margin: 0 auto;
    width: 70%;
    max-width: 350px;
}
#textAccueil
{
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: -1em;
    width: 80%;
    color: var(--noir);
    text-align: center;
}
#fondAccueil
{
    background-image: url(../img/indexBG.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    height: 100vh;
    width: 100vw;
    position: absolute;
    top: 0;
}
#btnAccueil
{
    display: block;
    margin: 2em auto 0 auto;
}
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
 *                                              *
 *               HEADER SIMPLE                  *
 *                                              *
 *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
#headerSmpl
{
    background: var(--blanc);
    height: 5em;
    width: 100%;
    box-shadow: var(--shadow);
    position: fixed;
    top:0;
    z-index : 10;
}
#headerSmpl img
{
    height: 100%;
}
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
 *                                              *
 *                 CONNEXION                    *
 *                                              *
 *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
#connexion
{
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    gap: 2em;
}
.inputsConnexion
{
    width: 80%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    gap: 0.5em;
}
.inputsConnexion .input, .inputsConnexion .wrapper, .inputsConnexion .searchInput
{
    min-width: 100%;
    max-width: 100%;
}
.searchInput.active .autocom-box 
{
    opacity: 1;
}
.autocom-box li 
{
    list-style: none;
    padding: 8px 12px;
    display: none;
    width: 100%;
    cursor: default;
    border-radius: 3px;
    border: solid 1px var(--gris);
}
.searchInput.active .autocom-box li
{
    display: block;
}
#connexion .erreur
{
    width: 80%;
    padding: 0.8em;
    border-radius: 5px;
    border: solid 1px var(--rouge);
    color: var(--blanc);
    background-color: var(--rouge2);
    margin-top: -1.5em;
}
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
 *                                              *
 *                  HEADER                      *
 *                                              *
 *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
#header
{
    background: var(--blanc);
    height: 5em;
    width: 100%;
    box-shadow: var(--shadow);
    position: fixed;
    top:0;
    z-index : 10;
}
#header img
{
    height: 100%;
}
#header #message
{
    width: 40px;
    height: 30px;
    position: absolute;
    top: calc(50% - 15px);
    right: 80px;
    cursor: pointer;
}
#header #message #notificationMsg
{
    color: var(--blanc);
    background-color: var(--rouge);
    border-radius: 0.6em;
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
    padding: 0 0.1em;
    min-width: 1.2em;
    height: 1.2em;
    text-align: center;
}
#header #burger
{
    width: 40px;
    height: 30px;
    flex-flow: column nowrap;
    justify-content: space-between;
    position: absolute;
    top: calc(50% - 15px);
    right: 20px;
    cursor: pointer;
    display: flex;
}
.burger_barre
{
    height: 6px;
    width: 100%;
    background-color: var(--bleu);
    border-radius: 5px;
    transition: all 1s;
}
#header ul
{
    background-color: var(--blanc);
    width: 100vw;
    height: calc(100vh + 5px - 5em);
    position: fixed;
    top: calc(5em - 5px);
    left: 100vw;
    list-style-type: none;
    text-align: left;
    transition: all .5s;
    font-family: Inter;
    font-weight: 600;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-content: baseline;
    align-content: baseline;
    gap: 2em;
    padding-bottom: 10vh;
}
#header ul li
{
    font-size: 1.8em;
    margin-left: 10vw;
}
#header ul a
{
    color: var(--noir);
}
#footerHeader
{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    width: 80vw;
    position: absolute;
    bottom: 10vh;
    left: 10vw;
    font-weight: normal;
    font-size: 1.2em;
}
#header #check
{
    display: none;
}
#header #check:checked ~ ul
{
    left: 0;
}
#header ul a.active
{
    color: var(--bleu);
    transition: .5s;
}
.contentBody
{
    display: flex;
    flex-flow: column nowrap;
    gap: 2em;
    padding: 0 4vw;
    padding-bottom: 1em;
}
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
 *                                              *
 *                     TDB                      *
 *                                              *
 *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
.bloc
{
    z-index: 0;
}
/*-*-*-*-*-*-*-*-*-*-* ACTU *-*-*-*-*-*-*-*-*-*-*/
#actu
{
    position: relative;
    padding-bottom: 3em;
}
#actu #head
{
    position: relative;
    height: 20vh;
    width: 100vw;
    margin-left: -4vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#actu #head #bandeau
{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    background-color: var(--jaune75);
    color: var(--blanc);
    font-family: Chewy;
    font-size: 1.8em;
    padding: 0.1em 0.4em;
}
#actu #corp
{
    width: 100%; 
    max-height: 10vh; 
    overflow:hidden;
    font-size: 0.8em;
    -webkit-box-orient: vertical;
    display: block;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    margin: 0.5em 0 0.8em 0;
}
#actu .button, #derNotes .button
{
    position: absolute;
    bottom: 0;
    right: 0;
}
/*-*-*-*-*-*-*-*-*-*-* MODAL *-*-*-*-*-*-*-*-*-*-*/
.modalTDB
{
    display: none;
    flex-flow: column nowrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    position: fixed;
    z-index: 11;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--noir50);
}
.modalContent
{
    background-color: var(--fond);
    padding: 20px;
    border: 1px solid var(--gris);
    width: 80%;
    max-height: 80%;
    overflow-y: scroll;
    border-radius: 15px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    gap: 1em;
}
.modalHeader 
{
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-content: center;
    align-items: center;
}
.modalHeader h2
{
    font-family: Chewy;
}
.modalHeader img
{
    height: 100%;
    cursor: pointer;
}
.modalContent .input
{
    width: 100%;
}
.modalText
{
    width: 100%;
    text-align: left;
    font-family: 'Inter';
    font-size: 14px;
}
.modalDate
{
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    color: var(--gris);
    width: 100%;
    text-align: right;
}
/*-*-*-*-*-*-*-*-*-*-* NOTIF *-*-*-*-*-*-*-*-*-*-*/
.scroll-container 
{
    max-height: 100px;
    overflow-y: scroll;
    scroll-behavior: smooth;
    margin: 0 auto;
}
.notif 
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 50px;
    cursor: pointer;
    border-bottom: 1px solid var(--rose);
    background-color: var(--fond);
}
.notifButton 
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    background-color: var(--fond);
    border: none;
    cursor: pointer;
}
li.notifs 
{
    padding-left: 18px;
}
li.notifs::before 
{
    content: "•";
    padding-right: 13px;
    color: var(--rose);
}
li.lu::before 
{
    color: var(--blanc);
}
.dateNotif 
{
    display: flex;
    align-items: center;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    color: var(--gris);
    margin-right: 10px;
}
.supprNotif 
{
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-right: 5px;
}
/*-*-*-*-*-*-*-*-*-*-* TO-DO *-*-*-*-*-*-*-*-*-*-*/
.item 
{
    display: flex;
    position: relative;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    gap: 1em;
    width: 100%;
    border-bottom: 1px solid var(--rose);
    min-height: 50px;
    margin: 0;
}
.containerTask
{
    padding-left: 30px;
    margin-top: 14px;
    margin-bottom: 14px;
    cursor: pointer;
    font-family: 'Inter';
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.containerTask input 
{
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmarkTask 
{
    position: absolute;
    top: 12px;
    left: 5px;
    height: 20px;
    width: 20px;
    background-color: var(--blanc);
    border-radius: 5px;
    border: 2px solid var(--rose);
}
.checkmarkTask:after 
{
    content: "";
    position: absolute;
    display: none;
}
.containerTask input:checked~.checkmarkTask:after 
{
    display: block;
}
.containerTask .checkmarkTask:after 
{
    left: 8px;
    top: -7px;
    width: 6px;
    height: 17px;
    border: solid var(--rose);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
#todo .item
{
    justify-content: space-between;
}
#todoButton
{
    margin: 0.8em 0 0 50%;
    transform: translate(-50%,0);
}
.supprToDo 
{
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-right: 5px;
    margin-top: 12px;
}
.errorToDo
{
    margin-top: 5px;
    color: #D8000C;
    background-color: #FFBABA;
}
/*-*-*-*-*-*-*-*-*-*-* DER. NOTES *-*-*-*-*-*-*-*-*-*-*/
#derNotes .item
{
    justify-content: space-between;
}
#notesButton
{
    margin-top: 0.8em;
    width: 100%;
    display: flex;
    justify-content: end;
}
#notesButton .button
{
    position: initial;
}
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
 *                                              *
 *                 FICHE ÉLÈVE                  *
 *                                              *
 *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
/*-*-*-*-*-*-*-*-*-*-* PROFIL *-*-*-*-*-*-*-*-*-*-*/
#profilPP
{
    position: absolute;
    top: calc(20vh + 5em);
    transform: translate(0, -50%);
    height: 25vw;
    width: 25vw;
    border: solid 3px var(--jaune);
    border-radius: 100%;
    box-shadow: var(--shadow);
    background-image: url(../img/pp.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
#profilBG
{
    width: 100vh;
    margin: -5px 0 0 -4vw;
    height: 20vh;
    background-image: url(../img/classroom-wallpaper.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-bottom: solid 3px var(--jaune);
    box-shadow: var(--shadow);
    margin-bottom: 13vw;
}
#profilTitle
{
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    gap: 0.2em;
}
#profilTitle h2
{
    font-family: Roboto, Inter;
    font-weight: 500;
}
#profilContactUrg
{
    margin-top: 1em;
    width: 100%;
    background-color: var(--rose);
    border-radius: 15px;
    color: var(--blanc);
    padding: 0.8em 0.5em;
}
#profilContactUrg h3
{
    font-family: Roboto, Inter;
    font-weight: 500;
}
#profilContactUrg p
{
    font-weight: 200;
}
/*-*-*-*-*-*-*-*-*-*-* DOCUMENTS *-*-*-*-*-*-*-*-*-*-*/
.profilDocItem 
{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    gap: 1em;
}
.uploadButton
{
    background-image: url(../img/upload.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    padding: 0;
    height: 25px;
    width: 25px;
    margin-right: 10px;
}
/*-*-*-*-*-*-*-*-*-*-* ENTREPRISE *-*-*-*-*-*-*-*-*-*-*/
#profilEntreprise h3
{
    font-family: Roboto, Inter;
    font-weight: 800;
}
/*-*-*-*-*-*-*-*-*-*-* OBSERVATION *-*-*-*-*-*-*-*-*-*-*/
#profilObservation .item p
{
    font-size: 0.8em;
    margin-left: 10px;
}
.dateObservation
{
    position: absolute;
    right: 10px;
    bottom: 0;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    color: var(--gris);
}
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
 *                                              *
 *                    NOTES                     *
 *                                              *
 *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
#notes h1
{
    margin-bottom: 0.2em;
}
.notePeriode 
{
    font-size: 2em;
    color: var(--rose);
    border-bottom: 3px solid var(--rose);
 }
.notePeriode::after
{
    float: right;
    content: '+';
}
.moins::after
{
    content: '-';
}
.matiereSection
{
    padding: 0.5em;
    background-color: var(--fond);
    box-shadow: var(--shadow) inset;
}
.noteMatiere
{
    font-weight: bold;
    margin-left: 10px;
}
.noteMatiereSection
{
    margin-left: 20px;
}
.noteResume
{
    color: var(--bleu);
    display: block;
    width: 100%;
    text-align: justify;
}
.noteSpec
{
    display: inline-block;
    width: 30%;
    text-align: center;
}
.noteMatiereMoy
{
    display: inline-block;
}
.noteMatiereNote
{
    float: right;
    margin-right: 10px;
}
.noteMatiereLibelle
{
    float: left;
}
.noteMatierePoint
{
    flex: auto;
    border-bottom: 2px dotted var(--noir);
    margin-bottom: 3px;
}
.noteMatiereMoyParent
{
    display: flex;
}
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
 *                                              *
 *                 PLANNING                     *
 *                                              *
 *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
#planning
{
    width: 100vw;
    margin: -5px 0 0 -4vw;
    min-height: calc(100vh - 5em);
}
#planningEntete
{
    background-color: var(--jaune);
    width: 100%;
    height: 4em;
    position: relative;
    z-index: 4;
}
#planningEnteteHaut
{
    height: 66.66%;
    display: flex;
    flex-flow: row nowrap;
}
#planningEnteteHautMois
{
    display: flex;
    width: 50%;
    font-family: Inter;
    font-size: 1.2em;
    font-weight: 600;
    align-items: center;
    margin-left: 2%;
}
#planningEnteteHautChoix
{
    display: flex;
    width: 50%;
    align-items: center;
    justify-content: right;
    margin-right: 2%;
}
#planningEnteteBas
{
    display:flex;
    flex-flow:row nowrap;
    padding-left: 3em;
    width:100%;
    height:33.33%;
}
.planningEnteteBasJour
{
    width: 100%;
    text-align: center;
}
#planningJourCorps
{
    width: 100vw;
    height: calc(100% - 4em);
}
#planningJourCorpsHaut
{
    display:flex;
    flex-flow:row nowrap;
    align-content: center;
    align-items: center;
    width:100%;
    height:2em;
    position: relative;
    z-index: 3;
}
#planningJourCorpsSemaine
{
    width:3.5em;
    height: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    background-color: var(--gris);
}

#planningJourCorpsBas
{
    display:flex;
    flex-flow:row;
    width:100%;
    height:calc(100% - 1.5em);/* calcul la taille du corps du planning sans la partie haute */
}
.planningJourCorpsGauche
{
    padding-top: 5px; /* évite que la zone d'heure soit collé au jour */
    width:3em;
    height: 100%;
    text-align: center;
    overflow: hidden;
    padding-bottom: 0.75em; /* Compense le décallage effectué dans le padding top de la partie droite */
}
.planningJourCorpsDroite
{
    position:relative;
    margin-top: calc(5px + 0.75em); /* évite que la zone  de planning soit collé au jour + permet d'aligner les bordures avec l'heure */
    background-color: var(--fond);
    width: calc(100% - 3em);
    height: 100%;
    overflow: scroll;
}
.planningHeure
{
    margin-bottom:75px;
    line-height: 26px;
}
.planningCours0030
{
    height:50px;
    border: solid 1px var(--jaune);
    border-bottom: dashed 1px var(--jaune);
}
.planningCours3060
{
    height:51px;
    border: solid 1px var(--jaune);
    border-top: dashed 1px var(--jaune);
}
.planningCours
{
    position:absolute;
    width: 98%;
    height: 101px;
    background-color: var(--bleu);
    left: 0;
    z-index: auto;
    margin-left: 1%;
    border-radius: 5px;
    padding: 10px 8px;
    color: var(--blanc);
}
.planningJourNombre
{
    width:15.833%;
    text-align:center;
}
.planningJourActif
{
    background-color: var(--jaune);
    border-radius: 50%;
    width:8.833%;
    margin-left: 3.5%;
    margin-right: 3.5%;
}
.planningJourAujourdhui
{
    color: var(--jaune);
}
.planningJourChoisi
{
    position: relative;
    color: var(--blanc);
}
.planningJourChoisi::before
{
    display: block;
    position: absolute;
    content: "";
    height: 2em;
    width: 2em;
    background-color: var(--jaune);
    border-radius: 1em;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
#planningJourCorpsLendemain
{
    display:flex;
    flex-flow:row;
    width:100%;
    position:fixed;
    left:100%;
    top:calc(7px + 10em);
    background-color: var(--fond);
}
#planningJourCorpsVeille
{
    display:flex;
    flex-flow:row;
    width:100%;
    position:fixed;
    left:-100%;
    top:calc(7px + 10em);
    background-color: var(--fond);
}
#planningEnteteBasMois
{
    padding-left: 5%;
    display:flex;
    flex-flow:row nowrap;
    width:100%;
    height:33.33%;
}
#dateCache
{
    display: none;
}
#planningMoisCorps
{
    height: calc(100vh - 9em);
    margin-bottom: -1em;
    width: 100%;
}
.planningMoisCorpsSemaine
{
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    height: calc(100% / 6);
    text-align: center;
}
.planningCorpsSemaineBordure
{
    border-bottom: solid 2px var(--jaune);
}
.planningMoisCorpsGauche
{
    width: 5%;
    height: 100%;
    background-color: var(--gris);
}
.planningMoisCorpsGaucheActuel
{
    background-color: var(--jaune);
}
.planningMoisCorpsDroite
{
    display: flex;
    flex-flow: row nowrap;
    height: 100%;
    width: 95%;
    background-color: var(--blanc);
}
.planningMoisCorpsJour
{
    width: calc(100% / 6);
    height:100%;
}
.planningMoisCorpsJourActuel
{
    color: var(--jaune);
}
.planningMoisCorpsCours
{
    height: 80%;
}
.planningMoisCorpsHaut
{
    height: 20%;
}
.planningMoisCorpsJourMauvaisMois
{
    background-color: var(--gris);
}
#planningMoisCorpsActuel
{
    height: 100%;
}
#planningMoisCorpsVeille
{
    height: calc(100vh - 9em);
    width: 100%;
    position:fixed;
    left:-100%;
    top: 9em;
}
#planningMoisCorpsLendemain
{
    height: calc(100vh - 9em);
    width: 100%;
    position:fixed;
    left:100%;
    top:9em;
}
.planningMoisCorpsMatiere
{
    background-color:var(--jaune);
    border-radius:5px;
    margin:auto;
    width:95%;
    height:30%;
    margin-left:2.25%
}
.planningMoisCorpsMatiereMarge
{
    margin-bottom:3%;
}
#planningChoixVue
{
    position:absolute;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    width: 100vw;
    left: 0;
    top : 100%;
    background-color: var(--fond);
    color: var(--jaune);
    box-shadow: var(--shadow)
}
#planningChoixVue div
{
    width: 90%;
    height: 3em;
    font-size: 1.2em;
    display: flex;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    border-bottom: solid 1px var(--gris);
}
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
 *                                              *
 *                    COURS                     *
 *                                              *
 *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
#coursSearchbar
{
    width: 100%;
}
#gridMatiere
{
    margin: 0.5em 0;
    display: flex;
    gap:8vw;
    flex-flow: row wrap;
    justify-content: space-between;
}
.formMatiere
{
    width: 42vw;
    height: 42vw;
}
.formMatiere button
{
    width: 100%;
    height: 100%;
    border: solid 3px var(--lavande);
    border-radius: 15px;
    background-color: var(--fond);
    font-weight: bold;
    font-size: 6vw;
}
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
 *                                              *
 *                   MATIÈRES                   *
 *                                              *
 *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
#docs .item
{
    align-items: flex-start;
    padding-top: 1em;
}
#docs .absRet_section
{
    margin-top: 1.5em;
    margin-left: -10em;
    padding-bottom: 0.5em;
}
.coursInfo
{
    background-color: var(--lavande);
    border-radius: 15px;
    padding: 0.5em;
    color: var(--blanc);
}
#absRet .item
{
    flex-flow: column;
    gap: 0;
    padding: 0.5em 0;
}
.absRet_periode
{
    width: 100%;
    padding-left: 30px;
    margin-top: 14px;
    margin-bottom: 14px;
    cursor: pointer;
    font-family: 'Inter';
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    gap: 0.5em;
    align-content: center;
    align-items: center;
}
#absRet .input
{
    width: 100%;
}
#absRet input[type="file"]
{
    margin-top: 1em;
}
#absRet .button
{
    margin-top: 1em;
    padding: 0.5em 1em;
}
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
 *                                              *
 *                    CHAT                      *
 *                                              *
 *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
#barreRechercheUtilisateur
{
    width: 100%;
    margin-bottom: 1em;
}
.btChat
{
    width: 100%;
    border: none;
    border-bottom: solid 1px var(--bleu);
    background-color: var(--fond);
    text-align: left;
    position: relative;
    min-height: 3em;
    padding: 1em 3em 1em 0.5em;
}
.nameChat
{
    font-weight: bold;
}
.msgChat
{
    width: 100%; 
    overflow:hidden;
    font-size: 1em;
    -webkit-box-orient: vertical;
    display: block;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    margin: 0.5em 0 0 0;
}
.newMsg
{
    height: 1em;
    width: 1em;
    background-color: var(--bleu);
    border-radius: 100%;
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translate(0, -50%);
}
/*-*-*-*-*-*-*-*-* Moche -*-*-*-*-*-*-*-*-*-*/
/* Chat Area CSS Start */
.chat-area
{
  height: calc(100vh - 7em);
}
.chat-area header{
  display: flex;
  align-items: center;
  padding: 18px 30px;
}
.chat-area header img{
  height: 45px;
  width: 45px;
  margin: 0 15px;
}
.chat-area header .details span{
  font-size: 17px;
  font-weight: bolder;
  color: var(--lavande);
}
.chat-box{
  z-index: 1;
  position: relative;
  min-height: 65vh;
  max-height: 65vh;
  overflow-y: auto;
  border-radius: 15px;
  padding: 10px 30px 20px 10px;
  background: #f7f7f7;
  box-shadow: inset 0 32px 32px -32px rgb(0 0 0 / 5%),
              inset 0 -32px 32px -32px rgb(0 0 0 / 5%);
}
.chat-box .text{
  position: absolute;
  top: 45%;
  left: 50%;
  width: calc(100% - 50px);
  text-align: center;
  transform: translate(-50%, -50%);
}
.chat-box .chat{
  margin: 15px 0;
}
.chat-box .chat p{
  word-wrap: break-word;
  padding: 8px 16px;
  box-shadow: 0 0 32px rgb(0 0 0 / 8%),
              0rem 16px 16px -16px rgb(0 0 0 / 10%);
}
.chat-box .outgoing{
  display: flex;
}
.chat-box .outgoing .details{
  margin-left: auto;
  max-width: calc(100% - 130px);
}
.outgoing .details p{
  background: var(--jaune);
  color: #fff;
  border-radius: 18px 18px 0 18px;
}
.chat-box .incoming{
  display: flex;
  align-items: flex-end;
}
.chat-box .incoming img{
  height: 35px;
  width: 35px;
}
.chat-box .incoming .details{
  margin-right: auto;
  margin-left: 10px;
  max-width: calc(100% - 130px);
}
.incoming .details p{
  background: #fff;
  color: var(--rose);
  border-radius: 18px 18px 18px 0;
}
.typing-area{
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
}
.typing-area textarea{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  height: 45px;
  width: calc(100% - 55px);
  font-size: 16px;
  padding: 0 13px;
  border: 1px solid var(--bleu);
  outline: none;
  border-radius: 5px 0 0 5px;
  resize: none;
}
.typing-area button{
  color: #fff;
  width: 55px;
  border: none;
  outline: none;
  background: var(--bleu);
  font-size: 19px;
  cursor: pointer;
  opacity: 0.7;
  pointer-events: none;
  border-radius: 0 5px 5px 0;
  transition: all 0.3s ease;
  position: relative;
}
.typing-area button img{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
  }
.typing-area button.active{
  opacity: 1;
  pointer-events: auto;
}
