



#cont_calendar {
    padding-top: 70px;
}

.famNameLabel {
    margin: 0px;
    margin-bottom: 10px;
    color: #3e76b7;
}

.contDayLine {
    display: flex;
    background-color: #3e76b7;
    padding: 2px;
    margin-bottom: 4px;
}

.hebNameLabel {
    background-color: #3e76b7;
    color: #ffffff;
    border-bottom: none;
    border-radius: 10px 10px 0px 0px;
    padding: 2px 8px;
    display: inline-grid;
    grid-template-areas: "a b";
    align-items: center;
    cursor: pointer;
}

.hebNameLabelText {
    grid-area: a;
    margin-right: 10px;
}

.hebNameLabelText span {
    font-weight: bold;
    font-size: 0.8em;
}

.btInterrog {
    background-image: url(pics/loupe.png);
    width: 27px;
    height: 27px;
    grid-area: b;
}

.btInterrog:hover {
    background-position: 100% 0%;
}

.dayCell {
    border: solid 1px #ffffff;
    border-bottom: none;
    border-top: none;
    background-color: #90b21c;
    color: #ffffff;
    flex: auto;
    text-align: center;
    min-height: 32px;
    cursor: pointer;
}

.dayCellFirst {
    border-left: none;
}

.dayCellLast {
    border-right: none;
}

.dayCellWeekEnd {
    /*opacity: 0.7;*/
}

/*
.dayCellWeekEnd .cellJour {
    color: #3e76b7;
}
.dayCellWeekEnd .cellDate {
    color: #3e76b7;
}
.dayCellWeekEnd .cellMonth {
    color: #3e76b7;
}
*/

.dayCellWeekEnd .cellJour {
    background-color: rgba(62, 118, 183, 0.5);
}


.dayCellOccupe {
    background-image: url(pics/fullDispoOccupe.png);
    background-position: 50% 50%;
    color: #965151;
    cursor: not-allowed;
}

.dayCellDayOne {
    border-left: solid 4px #d12c85;
}

.cellJour {
    font-size: 14px;
    pointer-events: none;
}

.cellDate {
    font-size: 20px;
    pointer-events: none;
}

.cellMonth {
    font-size: 14px;
    pointer-events: none;
}

/*------------------------------*/

#calendrierUi {
    /*display: flex;*/
    position: fixed;
    top: -500px;
    align-items: center;
    left: 200px;
    background-color: rgba(255, 255, 255, 0.72);
    padding: 4px;
    border-radius: 0px 0px 32px 32px;
    z-index: 1337;
    border: solid 2px #3e76b7;
    margin-bottom: 5px;
}

.uiCont1 {
    display: flex;
    align-items: center;
    justify-content: center;
}

#calendrier {
    width: 63px;
    height: 69px;
    background-image: url(pics/calendar_full_dispo.svg);
    margin: 0px 16px;
    cursor: pointer;
}

#arrowLeft {
    background-image: url(pics/calendar_full_left.svg);
    width: 75px;
    height: 74px;
    cursor: pointer;
}

#arrowRight {
    background-image: url(pics/calendar_full_right.svg);
    width: 75px;
    height: 74px;
    cursor: pointer;
}

#retour {
    background-image: url(pics/calendar_full_retour.png);
    width: 69px;
    height: 22px;
    cursor: pointer;
}

/*-------------- month window ----------------*/

@keyframes monthWindow {
    0% {
        box-shadow: 0px 0px 10px #196a88;
    }
    10% {
        box-shadow: 0px 0px 10px #2f85a5;
    }
    20% {
        box-shadow: 0px 0px 10px #15485c;
    }
    30% {
        box-shadow: 0px 0px 10px #43a9d0;
    }
    40% {
        box-shadow: 0px 0px 10px #0e4e65;
    }
    50% {
        box-shadow: 0px 0px 10px #3b7f98;
    }
    60% {
        box-shadow: 0px 0px 10px #196a88;
    }
    70% {
        box-shadow: 0px 0px 10px #118ab7;
    }
    80% {
        box-shadow: 0px 0px 10px #32687c;
    }
    90% {
        box-shadow: 0px 0px 10px #50caf7;
    }
    100% {
        box-shadow: 0px 0px 10px #196a88;
    }
}

.monthWindow {
    position: fixed;
    top: 0px;
    left: 0px;
    background: linear-gradient(#285589, #153253);
    color: #5c5c5c;
    z-index: 10001;
    padding: 20px 40px;
    /*border-radius: 20px;*/
    border: solid 1px #a7a7a7;
    animation: monthWindow;
    animation-duration: 10s;
    animation-iteration-count: infinite;
}

.monthButton {
    font-size: 1em;
    letter-spacing: 0.1em;
    color: #333333;
    font-weight: bold;
    text-align: center;
    /*background: linear-gradient(#ffffff, #898989);*/
    background-color: rgba(240, 248, 255, 0.87);
    padding: 0.5em;
    border-radius: 0.1em;
    margin: 0.7em;
    border: solid 1px #ffffff;
    box-shadow: 0px 0px 10px #000000;
    cursor: pointer;
}

/*-----------------------*/

#ficheProd {
    /*max-width: 90%;*/
    width: 450px;
    margin: 0px auto;
    /*background-color: #ffffff;*/
    background: linear-gradient(#ffffff, #cfe2f4);
    display: none;
    padding: 10px;
    border-radius: 0px 20px 0px 20px;
    color: #3e76b7;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 10001;
}

#ficheClose {
    background-image: url(pics/full_close.png);
    width: 41px;
    height: 41px;
    float: right;
    cursor: pointer;
    /*display: none;*/
}

#ficheIntitule {
    margin: 0px;
}

#ficheNom {
    margin: 0px;
}

#fichetopText {
    
}

#fichetextPuce {
    
}

#fichedesc {
    display: none;
}

#ficheGal {
    margin: 0px auto;
    border: solid 1px #525252;
}

#ficheReserver {
    width: 50%;
    font-size: 1.5em;
    text-align: center;
    background-color: #3e76b7;
    border-radius: 10px;
    color: #ffffff;
    margin: 0px auto;
    cursor: pointer;
    padding: 4px 0px;
}

/*------------------------------------*/

@media (max-width: 640px) {
    #ficheClose {
        background-image: url(pics/full_close_small.png);
        width: 27px;
        height: 27px;
        float: right;
        cursor: pointer;
    }
    
    #ficheProd {
        /*max-width: 90%;*/
        width: 90%;
        margin: 0px auto;
        /*background-color: #ffffff;*/
        background: linear-gradient(#ffffff, #cfe2f4);
        display: none;
        padding: 10px;
        border-radius: 0px 20px 0px 20px;
        color: #3e76b7;
        position: fixed;
        top: 0px;
        left: 0px;
        z-index: 10001;
    }
    
    #ficheGal {
        width: 100%;
        margin: 0px auto;
        border: solid 1px #525252;
    }
    
    #ficheIntitule {
        margin: 0px;
        font-size: 1em;
    }

    #ficheNom {
        margin: 0px;
        font-size: 1em;
    }
    
}