/********************** LE CALENDRIER ********************************/
#CtnCalendrier{
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.70);
    width: 100%;
    height: 100%;
    /* z-index: 101; cf commun V10 et charte graphique*/
    text-align: center;
    margin-left: 0;
    margin-top: 0;
    display:none; 
}

.Calendar{
    width:600px;
    height:370px;
    position: absolute;
    top:50%;
    left:50%;
    background-color:white;
    box-shadow: 5px 5px 7px rgba(0,0,0,0.12), 5px 5px 7px rgba(0,0,0,0.24);
    display:inline-block;
    transform: translate(-50%,-50%);
}

.Calendar_CtnOnglets{
    height:50px;
    background-color: #f7f7f7;
    border-bottom:1px solid #d6d6d6;
    display:none;
}

.Calendar_Onglet{
    background-position:center;
    width:49%;
    background-repeat: no-repeat;
    display:inline-block;
    position:relative;
    cursor:pointer;
    height: 100%;
    background-size: 25px;
}

.Calendar_Onglet.selected{
    border-bottom:2px solid #2f4f6b;
}

/*-----------------------------------
        CALENDRIER STANDARD
-------------------------------------*/

#btnCalendarOk{
    background-image:url(../../../Images/Commun/check_white.svg);
}

#btnCalendarCancel{
    background-image:url(../../../Images/Commun/close_white.svg);
}



#BtnNextCalendar{
    transform: rotate(180deg);
}

#CtnMainCalendar{
    /* width: calc(100% - 270px); */
    width: calc(100% - 250px);
    height:calc(100% - 20px);
    background-color:white;
    float:left;
    /* padding:10px; */
    padding:10px 0 10px 0;
}

#OngletCalStd{
    background-image: url(Images/calStd.svg);
}



.CalStdBody{
    height:calc(100% - 90px);
}

.CalStd_Btn{
    background-repeat:no-repeat;
    background-position:right 4px center;
    background-size:27px;
    float:right;
}

.CalStd_Btn:hover{
    padding: 0 70px 0 27px;
    text-align:left;
}

.CalStd_Btn:first-child{
    margin-right:20px;
}

.CalStd_Btn:last-child{
    margin-right:5px;
}


.CalStd_CtnBtn{
    width:100%;
    position: absolute;
    bottom:20px;
}

.CalStdHeader{
    width:100%;
    height:50px;
    line-height:50px;
}

.CalStdHeaderBtn{
    float: left;
    background-image: url(Images/Chevron_brown.svg);
    background-size: 30px;
    background-position: left 10px center;
    background-repeat: no-repeat;
    height: 50px;
    width: 100px;
    cursor: pointer;
}


.CalStdHeaderDate{
    float: left;
    width: calc(100% - 200px);
    text-align: center;
    color: #444;
    line-height: 50px;
    font-size: 17px;
    cursor: pointer;
}

.UneLigneCalStd .UnJour.none{
    color:#BEBEBE;
}

.UneLigneCalStd .UnJour.none:hover{
    cursor: default;
    background-color: white;
    color:#BEBEBE;
    opacity: 1;
}


.UneLigneCalStd .UneAnnee, .UneLigneCalStd .UnMois{
    width:24%;
    height:100%;
    float:left;
}

.UneLigneCalStd .UneAnnee:hover, .UneLigneCalStd .UnJour:hover, .UneLigneCalStd .UnMois:hover{
    cursor:pointer;
    border-radius:100% / 150%;
    -webkit-border-radius: 100% / 150%;
    background-color:rgba(47, 79, 107,0.7);
    color:white;
}

.UneLigneCalStd .UneCellule, .UneLigneCalStd .UnJour, .UneLigneCalStd .UneSemaine {
    width:12%;
    height:100%;
    float:left;
}

.UneLigneCalStd .UneCellule.TodayDate{
    background-color:#efefef;
    box-sizing: border-box;
    background-image:url(Images/today_date.svg);
    background-size:26px;
    background-position: center;
    background-repeat: no-repeat;
    cursor:pointer;
    opacity:0.5;
    transition: all 400ms ease-out;
    /* border-top-left-radius: 10px;
    border-top-right-radius: 10px; */
}

.UneLigneCalStd .UneCellule.TodayDate:hover{
    opacity:1;
    background-color:#f7f7f7;
}

.UneLigneCalStd .UnJour.today{
    /* color:#56adf9; */
    background-color: #F6F7C8;
    color: black;
    border-radius: 100% / 150%;
}



.UneLigneCalStd .UnJour.UnJourSelect, .UneLigneCalStd .UnMois.UnMoisSelect, .UneLigneCalStd .UneAnnee.UneAnneeSelect{
    border-radius:100% / 150%;
    -webkit-border-radius: 100% / 150%;
    background-color:#2f4f6b;
    color:white;
}

.UneLigneCalStd .UnJour.UnJourSelect.today:hover{
    color:white;
    background-color:red;
}

.UneLigneCalStd .UnJour.noActive:hover{
    cursor: default;
    background-color:white;
    color:#444;
}

.UneLigneCalStd{
    width:100%;
    height:37px;
    text-align:center;
    line-height:37px;
    /* margin-left: 5px; */
}

.UneLigneCalStd.Header{
    color:#BEBEBE;
}

.UneLigneCalStd.Jour{
    color:#444;
}

.UneLigneCalStd.Mois, .UneLigneCalStd.Annee{
    height:60px;
    line-height:60px;
}

.UneLigneCalStd.Mois:first-child, .UneLigneCalStd.Annee:first-child{
    padding-top:20px;
}

.UneLigneCalStd .UneSemaine{
    color: #BEBEBE;
    background-color:#f7f7f7;
    box-sizing: border-box;
}

.UneLigneCalStd .UneSemaine.active{
    cursor:pointer;
    color:#56adf9;
}

.UneLigneCalStd .UneSemaine:last-of-type{
    /* border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;     */
}


/*-----------------------------------
        ROUE DES DATES
-------------------------------------*/
#BtnFlecheJourUp, #BtnFlecheMoisUp, #BtnFlecheAnneeUp{
    transform:rotate(90deg);
    /* transform:rotate(0deg); */
 } 

#CtnDateList{
    width:100%;
    height: calc(100% - 50px);
}

#CtnDatePicker{
    height:calc(100% - 20px);
    background-color:#2f4f6b;
    width: 230px;
    float:left;
    padding:10px;
}

#DateSelected{
    font-weight:bold;
    width:100%;
    color:white;
    font-size:20px;
    line-height:50px;
    height:50px;
}
 
#OngletRoue{
    background-image: url(Images/spinner.svg);
}

#SemaineSelected{
    display:none;
}



.ctn_Visible{
    height: 200px;
    overflow: hidden;
 }

.RoueDateCtn{
    height:calc(100% - 20px);
    padding-top:20px;
    margin-left:5px
}

.RoueDate_Fleche{
    width:70px;
    height:25px;
    background-image:url(Images/Chevron_white.svg);
    /* background-image:url(Images/sort_column_arrow_white.svg); */
    background-position:center;
    background-repeat: no-repeat;
    background-size:25px;
    transform: rotate(270deg);
    /* transform:rotate(180deg); */
    cursor:pointer;
    opacity:0;
    transition: opacity 400ms ease-out;
}

.RoueDate_Fleche.selected{
    opacity:0.5;
}

.RoueDate_Lst{
    width:70px;
   float:left;
}

.RoueDate_Lst.openMois{
    margin-left:20px;
}

.RoueDate_UneLst{
    list-style:none;
    padding:0;
    margin:0;
    transition:all 700ms cubic-bezier(0,0.82,0,1);
    /* transition: all 200ms ease-out; */
 }

 .RoueDate_UneLst li{
    justify-content:center;
    line-height:40px;
    width:70px;
    height:40px;
    color:white;
    cursor:pointer;   
    border-top: 0; 
}

.RoueDate_UneLst .selected{
    font-size:20px !important;
   opacity:1 !important;
}

 @media screen and (max-width: 600px) {

    #CtnDateList{
        height:250px;
        display:inline-block;
        background-color:white;
    }

    #CtnDatePicker{
        width: 100%;
        float:none;
        padding:0;
        height:340px;
        background-color:white;
    }
    
    #CtnMainCalendar{
        /* width: calc(100% - 20px); */
        width:100%;
        float:none;
        height:320px;
    }

    #DateSelected{
      color:#444;
      line-height:34px;
      height:34px;
    }
        

	#LeCalendrier{
		width:100% !important;
        height:auto;
    }

    #SemaineSelected{
        display:inline-block;
        font-weight:bold;
        color:#444;
        font-size:14px;
    }



    .Calendar .cacheResponsive{
        display:none;
    }

    .Calendar_CtnOnglets{
        display:block;
    }


    .CalStd_CtnBtn{
        bottom: 5px;
    }

    .CalStdHeaderBtn{
        width:50px;
    }

    
    .CalStdHeaderDate{
        width: calc(100% - 100px);
        font-size:15px;
    }
    
    .RoueDateCtn{
        height:auto;
        padding-top:0;
        margin-left:0;
    }

    .RoueDate_Fleche{
        background-image: url(Images/Chevron_brown.svg);
        /* background-image: url(Images/sort_column_arrow.svg); */
        opacity:0.5 !important;
    }

    .RoueDate_Lst{
        float:none;
        display:inline-block;
        width:65px;
    }

    .RoueDate_UneLst li{
        color:#444;
    }

    .UneLigneCalStd{
        height:33px;
    }

    .UneLigneCalStd .UnJourSelect,.UnMoisSelect, .UneLigneCalStd .UneAnneeSelect, .UneLigneCalStd .UnJour:hover, .UneLigneCalStd .UneAnnee:hover, .UneLigneCalStd .UnMois:hover{
        border-radius:100% / 150%;
        -webkit-border-radius: 100% / 150%;

    }

}




 