/****************** FENÊTRE POP UP VERSION STANDARD**********************/

/* le corps de la pop up*/

#co_PopupBody, .co_PopupBody {
    padding: 20px 20px 0px 20px;
    /* max-height: 500px; */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    width: calc(100% - 40px);
    height: calc(100% - 190px);
}

#co_PopupBody.NoBtn, .co_PopupBody.NoBtn {
    height: calc(100% - 120px);
}

/* bouton pour fermer la popup*/

#co_PopupBtnClose, .co_PopupBtnClose {
    position: absolute;
    top: 8px;
    right: 7px;
    background-image: url(../../Images/Commun/close_black.svg);
    background-repeat: no-repeat;
    opacity: 0.6;
    background-size: 25px;
    cursor: pointer;
    padding: 20px 20px 20px 50px;
    transition: opacity 0.3s ease;
    background-position: right top;
}

#co_PopupBtnClose:hover, .co_PopupBtnClose:hover {
    opacity: 1;
}

/*contenu grisé pop up*/

#co_PopupContainer, .co_PopupContainer {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.70);
    width: 100%;
    height: 100%;
    /* z-index: 19;  cf commun V10 et charte graphique*/
    text-align: center;
    margin-left: 0;
    margin-top: 0;
    display: none;
}

/* Groupe des boutons du popup */

#co_PopupGrpBouton, .co_PopupGrpBouton {
    padding: 20px;
    width: calc(100% - 40px);
    padding-top: 5px;
    display: inline-block;
}

/* #co_PopupGrpBouton >div{
        float:left;
        margin-right:15px;
    } */

/* l'entête de la popup*/

#co_PopupHeader, .co_PopupHeader {
    width: 100%;
    min-height: 50px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d6d6;
    border-top: 1px solid #d6d6d6;
}

#co_PopupHeaderPlus, .co_PopupHeaderPlus {
    width: 100%;
    background-color: #f7f7f7;
    height: 30px;
    color: #888888;
    line-height: 18px;
    vertical-align: middle;
    border-bottom: 1px solid #d6d6d6;
}

/* la fenêtre de la pop up*/

#co_PopupWindow, .co_PopupWindow {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    box-shadow: 0px 0px 5px #575757;
    display: inline-block;
    text-align: left;
    position: absolute;
}

#co_PopupContainer.smallWidth, #co_PopupWindow.smallWidth, .co_PopupWindow.smallWidth {
    width: 400px;
}

#co_PopupContainer.mediumWidth, #co_PopupWindow.mediumWidth, .co_PopupWindow.mediumWidth {
    width: 450px;
}

#co_PopupContainer.largeWidth, #co_PopupWindow.largeWidth, .co_PopupWindow.largeWidth {
    width: 760px;
}

#co_PopupContainer.XlargeWidth, #co_PopupWindow.XlargeWidth, .co_PopupWindow.XlargeWidth {
    width: 900px;
}

#co_PopupContainer.smallHeight, #co_PopupWindow.co_Multiple.smallHeight, .co_PopupWindow.co_Multiple.smallHeight {
    height: 280px;
}

#co_PopupContainer.mediumHeight, #co_PopupWindow.co_Multiple.mediumHeight, .co_PopupWindow.co_Multiple.mediumHeight {
    height: 540px;
}

#co_PopupContainer.largeHeight, #co_PopupWindow.co_Multiple.largeHeight, .co_PopupWindow.co_Multiple.largeHeight {
    height: 650px;
}

#co_PopupContainer.smallHeight, #co_PopupWindow.co_Single.smallHeight, .co_PopupWindow.co_Single.smallHeight {
    height: 230px;
}

#co_PopupContainer.smallHeight2, #co_PopupWindow.co_Single.smallHeight2, .co_PopupWindow.co_Single.smallHeight2 {
    height: 300px;
}

#co_PopupContainer.smallHeight3, #co_PopupWindow.co_Single.smallHeight3, .co_PopupWindow.co_Single.smallHeight3 {
    height: 350px;
}

#co_PopupContainer.mediumHeight, #co_PopupWindow.co_Single.mediumHeight, .co_PopupWindow.co_Single.mediumHeight {
    height: 490px;
}

#co_PopupContainer.largeHeight, #co_PopupWindow.co_Single.largeHeight, .co_PopupWindow.co_Single.largeHeight {
    height: 600px;
}

.co_PopupMoveMode{
    position: absolute!important;
    background-color: transparent!important;
}

/**************************************************************************/

.co_form_comboMultiple .co_comboCheck{
    position: relative !important;
}
/* titre de l'entete*/

.co_PopupTitle {
    padding: 15px;
    float: left;
    font-weight: 600;
    font-size: 17px;
    text-transform: uppercase;
}
.co_PopupTitle.NoSousTitre{
    float:initial;
}

/*sous titre de l'entete*/

.co_PopupSousTitle {
    font-style: italic;
    padding: 20px;
    font-size: 12px;
    color: #888888;
}

/* représente un onglet de la pop up*/

.co_PopupOnglet {
    color: #888888;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    padding-top: 10px;
    padding-bottom: 15px;
    display: inline-block;
    position: relative;
    transition: color 0.3s ease;
}

.co_PopupOnglet:hover {
    color: #2f4f6b;
    cursor: pointer;
}

.co_PopupOnglet.selected {
    border-bottom: 2px solid #2f4f6b;
    color: #2f4f6b;
    cursor: pointer;
}

.indicatorBubble {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    top: -5px;
    right: 2px;
    line-height: 18px;
    background-color: #888888;
    color: white;
    font-size: 11px;
    font-weight: normal;
}

.co_PopupOnglet:hover>.indicatorBubble {
    background-color: #2f4f6b;
}

.co_PopupOnglet.selected>.indicatorBubble {
    background-color: #2f4f6b;
}

.co_Single #co_PopupBody, .co_Single .co_PopupBody {
    height: calc(100% - 150px);
}

.co_Single #co_PopupBody.NoBtn, .co_Single .co_PopupBody.NoBtn {
    height: calc(100% - 80px);
}

/*************** FENETRE POPUP TYPE CHAMP SIMPLE *************/

.PopupSpeBody {
    padding-bottom: 30px;
}

.co_PopupTypeChamp .libelle, .co_PopupVersionning .libelle {
    color: #2f4f6b;
    padding-bottom: 10px;
    font-weight: 600;
    font-size: 13px;
    padding-top: 15px;
}

.co_PopupTypeChamp .libelle:first-child {
    padding-top: 0;
}

.co_PopupTypeChamp input[type="text"] {
    /* width: 100%; */
}

.TypeChampCtn {
    height: 100%;
}

.UnLibelleSimple {
    color: #2f4f6b;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
}
/********* FENETRE POPUP FICHIERS JOINTS *********************/

.co_PopupFichiersJoints {
    /* min-width:412px;
    max-width:412px;
    min-height:300px; */
}

.BtnFiles {
    float: right;
    height: 26px;
    width: 35px;
    line-height: 26px;
    border-radius: 5px;
    margin-right: 5px;
    background-size: 22px;
    background-position: 6px center;
    background-repeat: no-repeat;
    margin-top: 4px;
}

.BtnFiles:hover {
    font-size: 12px;
    padding: 0 35px 0 25px;
}

.BtnFilesDownload {
    background-color: #5bb75b;
    background-image: url(../../Images/Main/Download_white.svg);
}

.BtnFilesUpload {
    background-color: #428bca;
    background-image: url(../../Images/Main/Upload_white.svg);
}

.co_PopupFchAllCtn {
    height: 35px;
    width: 100%;
    position: relative;
    background-color: #f7f7f7;
    border-radius: 3px;
}

.co_PopupFchLstCtn {
    width: 100%;
    background-color: #f7f7f7;
    border-radius: 3px;
    margin: 5px 0 10px 0;
    min-height: 100px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    height: calc(100% - 50px);
}

.CursorPointer {
    cursor: pointer;
}

.FichiersJointsCtn {
    height: calc(100% - 5px);
}

.FilesChk {
    width: 35px;
    margin: 9px 0 0 0;
    float: left;
}

.FilesChkAll {
    width: 35px;
    margin: 12px 0 0 0;
    float: left;
}

.FilesDelete {
    width: 40px;
    height: 100%;
    float: left;
    background-repeat: no-repeat;
    background-position: center;
    border-bottom: 1px solid #e2e2e2;
    box-sizing: border-box;
}

.FilesDisabled {
    color: #c3c3c3!important;
}

.FilesLig {
    position: relative;
    float: left;
    width: 100%;
    height: 35px;
}

.FilesName {
    float: left;
    height: 100%;
    line-height: 35px;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    box-sizing: border-box;
    border-bottom: 1px solid #e2e2e2;
    /* color:#6F6F6F; */
    color: #428bca;
    font-size: 14px;
    text-decoration: underline;
}

.FilesNameTop {
    float: left;
    height: 100%;
    line-height: 35px;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #6F6F6F;
    font-size: 13px;
}

.FilesNameNoChk {
    padding-left: 15px;
    width: calc(100% - 70px);
}

.FilesNameWithChk {
    width: calc(100% - 105px);
    padding-left: 5px;
}

.FilesSize {
    width: 70px;
    height: 100%;
    float: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    box-sizing: border-box;
    line-height: 35px;
    text-align: right;
    padding-right: 5px;
    font-style: italic;
    color: #737373;
    border-bottom: 1px solid #e2e2e2;
}

.imgDelete {
    background-image: url(../../Images/Commun_V10/delete-black.svg);
    opacity: 0.7;
}

.imgDelete:hover {
    background-image: url(../../Images/Commun_V10/delete-red.svg);
}

.MonBoutonPopup {
    background-size: 35px;
    background-position: right 8px center;
    float: right;
    margin-right: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
}

.MonBoutonPopup:first-child {
    margin-right: 0;
}

.MonBoutonPopup:hover {
    min-width: 70px;
    text-align: center;
}

/****************************FENETRE POPUP DEMANDE ************************************/

#PosDem_BtnGrpDateDeb {
    margin-top: 10px;
    margin-bottom: 10px;
}

#PosDem_BtnGrpDateFin {
    display: none;
}

#PosDem_JourHeure {
    position: relative;
}

.Champ70 {
    width: calc(30% - 50px);
}

.Champ110 {
    width: 110px;
}

.Champ230 {
    width: calc(70% - 60px);
}

.co_PopupDemandes {
    /* max-width:412px; */
}

.ExtGroup {
    padding-top: 10px;
    padding-bottom: 10px;
}

.PosDem_BtnGrp {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
    text-align: center;
}

.PosDem_BtnGrpMargin {
    margin-left: 9px;
}

.PosDem_BtnGrp>li {
    float: left;
    padding-left: 12px;
    padding-right: 12px;
    ;
    box-sizing: border-box;
    background-color: #eaeaea;
    color: #597289;
    cursor: pointer;
    list-style: none;
    border-bottom: 1px solid #969696;
    border-top: 1px solid #969696;
    border-left: 1px solid #969696;
}

.PosDem_BtnGrp>li:last-child {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border-right: 1px solid #969696;
}

.PosDem_BtnGrp>li:first-child {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.PosDem_BtnGrp>li:hover {
    background-color: #dcdcdc;
}

.PosDem_BtnGrp>li.active {
    background: #597289;
    color: white;
}

.PosDem_BtnGrp>li.activeDisable {
    background: #949494 !important;
    color: white!important;
    cursor: default;
}

.PosDem_BtnGrp>li.disable {
    color: #8c8c8c;
    cursor: default;
}

.PosDem_BtnGrp>li.disable:hover {
    background-color: #eaeaea;
}

.PosDem_Comment {
    width: calc(100% - 110px);
    padding-left: 2px;
    box-sizing: border-box;
}

.PosDem_Libelle {
    color: #2f4f6b;
    padding-bottom: 10px;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
}

.PosDem_Ligne {
    height: 45px;
    line-height: 39px;
}

.PosDem_Mouchard {
    float: left;
    width: 100%;
    padding-right: 2px;
    box-sizing: border-box;
}

.PosDem_RepDemLig {
    float: left;
    width: calc(100% - 105px);
    line-height: 26px;
    padding-top: 4px;
    box-sizing: border-box;
}

.PosDem_TxtHeure {
    width: calc(50% - 70px);
}

.PosDem_Valeur {
    width: 110px;
    padding-left: 2px;
    box-sizing: border-box;
    display: inline-block;
}

/****************************FENETRE POPUP SUIVI ************************************/

.co_PopupSuivis {
    position: relative;
}

.PosDem_FilSuivi {
    height: 40px;
    /* height: 30px;  */
    position: relative;
    border-left: 1px solid #d6d6d6;
    margin-left: 20px;
}

.PosDem_SuiviAllLst {
    /* position: absolute;
    top:50%;
    transform: translateY(-50%); */
}

.PosDem_SuiviLst {
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.PosDem_SuiviLst>.PosDem_UnSuivi {
    position: relative;
    box-sizing: border-box;
    padding: 7px 7px 7px 45px;
    min-height: 55px;
    /* padding: 7px 7px 7px 40px; 
    min-height: 50px; */
}

.PosDem_SuiviLevel {
    background-color: #888888;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 15px;
    border-radius: 100%;
    color: #FFF;
    text-align: center;
    float: left;
    position: absolute;
    top: 11px;
    left: 7px;
    /* width: 26px;
    height: 26px;
    line-height: 26px; 
    font-size: 13px; */
}

.PosDem_SuiviMain {
    float: left;
    width: 100%;
    height: 100%;
    font-size: 11px;
    color: #a0a0a0;
}

.PosDem_SuiviLibelle {
    display: inline-block;
    width: 100%;
    height: 50%;
    padding-left: 10px;
    font-size: 13px;
    padding-top: 3px;
    box-sizing: border-box;
    color: #6F6F6F;
}

/*************** FENETRE POPUP POINTAGE *************/

.PopupPointageCtn>.UneLigne {
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

.PopupPointageCtn>.UneLigne>.libelle {
    color: #2f4f6b;
    padding-bottom: 5px;
    font-weight: 600;
    font-size: 13px;
}

.PopupPointageCtn>.UneLigne>input[type="text"] {
    width: 100%;
}

/*************** FENETRE POPUP FILTRE ANNUAIRE *************/

.PopupFiltreAnnuCtn>.UneLigne {
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

.PopupFiltreAnnuCtn>.UneLigne>.libelle {
    color: #2f4f6b;
    padding-bottom: 5px;
    font-weight: 600;
    font-size: 13px;
}

.PopupFiltreAnnuCtn>.UneLigne>input[type="text"] {
    width: 100%;
}

/*************** FENETRE POPUP POUR LES CONTROLES (ex: génération date à date) *************/

.PopupControle>.Tableau {
    height: calc(100% - 30px);
}

.PopupControle>.UnSwitch {
    float: left;
    width: 100%;
    height: 22px;
    margin-top: 5px;
}

.PopupControle>.UnSwitch>.CtnChk {
    float: left;
    width: 55px;
}

.PopupControle>.UnSwitch>.libelle {
    float: left;
    height: 100%;
    width: calc(100% - 55px);
    line-height: 22px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}


/*************** FENETRE POPUP POUR LES CONTROLES DES ANOMALIES PLANNING *************/

.PopupCtrlAnomalie>.Tableau{
    height: calc(100% - 30px);
}

.PopupCtrlAnomalie .col3.spe0, .PopupCtrlAnomalie .col3.spe1 {
    padding-left: 22px;
}
.PopupCtrlAnomalie .col3.spe0::before, .PopupCtrlAnomalie .col3.spe1::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10px;
    height: 15px;
    width: 15px;
    transform: translateY(-55%);
    border-radius: 50%;
}

.PopupCtrlAnomalie .col3.spe0::before {
    background-color: #0079bf;
}
.PopupCtrlAnomalie .col3.spe1::before {
    background-color: #eb5a46;
}
.PopupCtrlAnomalie>.Tableau table tr>th:nth-child(2), .PopupCtrlAnomalie>.Tableau table tr>td:nth-child(2){
    width: 10%;
}
.PopupCtrlAnomalie>.Tableau table tr>th:nth-child(3), .PopupCtrlAnomalie>.Tableau table tr>td:nth-child(3){
    width: 20%;
}
.PopupCtrlAnomalie>.Tableau table tr>th:nth-child(4), .PopupCtrlAnomalie>.Tableau table tr>td:nth-child(4){
    width: 45%;
    overflow: auto;
	white-space: normal;
	text-overflow: initial;
}

/*************** FENETRE POPUP POUR LES CONTROLES DES ANOMALIES DE LA SAISIE DES TEMPS *************/

.PopupCtrlSaisieTemps>.Tableau{
    height: calc(100% - 30px);
}

.PopupCtrlSaisieTemps .col2.spe0, .PopupCtrlSaisieTemps .col2.spe1 {
    padding-left: 22px;
}
.PopupCtrlSaisieTemps .col2.spe0::before, .PopupCtrlSaisieTemps .col2.spe1::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10px;
    height: 15px;
    width: 15px;
    transform: translateY(-55%);
    border-radius: 50%;
}

.PopupCtrlSaisieTemps .col2.spe0::before {
    background-color: #0079bf;
}
.PopupCtrlSaisieTemps .col2.spe1::before {
    background-color: #eb5a46;
}
.PopupCtrlSaisieTemps>.Tableau table tr>th:nth-child(1), .PopupCtrlSaisieTemps>.Tableau table tr>td:nth-child(1){
    width: 10%;
}
.PopupCtrlSaisieTemps>.Tableau table tr>th:nth-child(2), .PopupCtrlSaisieTemps>.Tableau table tr>td:nth-child(2){
    width: 15%;
}
.PopupCtrlSaisieTemps>.Tableau table tr>th:nth-child(3), .PopupCtrlSaisieTemps>.Tableau table tr>td:nth-child(3){
    width: 60%;
    overflow: auto;
	white-space: normal;
	text-overflow: initial;
}

/*************** LABEL STATUS *************/

.labelStatus {
    display: flex;
    margin-top: 5px;
    padding: 10px;
    border-radius: 4px;
    color: #4a4a4a;
    min-height: 30px;
    text-overflow: ellipsis;
    justify-content: left;
    align-items: center;
    word-break: break-all;
}

.labelStatus::before {
    background-color: #8db6c1;
    height: 30px;
    width: 30px;
    min-width: 30px;
    margin-right: 10px;
    color: white;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.labelStatus.co_Link{
    justify-content: center;
    color: #14aaf5;
}

.labelInfo {
    background-color: #a7d8e6;
}

.labelInfo::before {
    content: "i";
}

/****************** FENETRE POPUP COMMENTAIRES *******************/

.co_PopupCommentaires .Tableau>.TableauCorps>.Ligne {
    width: 100%;
    border-bottom: 1px solid #dadada;
    box-sizing: border-box;
    padding: 0 5px 0 5px;
    height: 45px;
}

.co_PopupCommentaires .Tableau>.TableauCorps>.Ligne:hover {
    background-color: initial !important;
}

.co_PopupCommentaires .Tableau>.TableauCorps>.Ligne:hover>.btnDelete:before {
    opacity: 0.6;
}

.co_PopupCommentaires .Tableau>.TableauCorps>.Ligne:hover>.btnDelete:hover:before {
    background-image: url(../../Images/Commun_V10/delete-red.svg);
    opacity: 1;
}

.co_PopupCommentaires .Tableau>.TableauCorps>.Ligne>.UneCellule {
    height: 100%;
    box-sizing: border-box;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    vertical-align: middle;
    line-height: 45px;
    width: 100px;
}

.co_PopupCommentaires .Tableau>.TableauCorps>.Ligne>.btnDelete {
    width: 30px;
    position: relative;
}

.co_PopupCommentaires .Tableau>.TableauCorps>.Ligne>.btnDelete:before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../../Images/Commun_V10/delete-black.svg);
    cursor: pointer;
    opacity: 0;
}

.co_PopupCommentaires .Tableau>.TableauCorps>.Ligne>.UneCellule>.co_form_input {
    margin-top: 5px;
}

.co_PopupCommentaires .Tableau>.TableauEntete {
    margin-top: 20px;
    padding-bottom: 5px;
    border-bottom: 2px solid #dadada;
}

.co_PopupCommentaires .Tableau>.TableauEntete>.UneColonne {
    display: inline-block;
    width: 100px;
    font-size: 14px;
    font-weight: bold;
    color: #575757;
}

.co_PopupCommentaires .Tableau .fullColumn {
    width: calc(100% - 230px) !important;
}

.RecapPopupCommentaires {
    background-color: #e5e4e4;
    padding: 10px;
}

.RecapPopupCommentaires .RecapAffectations {
    display: inline-block;
    margin-bottom: 10px;
    width: 33%;
}

.RecapPopupCommentaires>.RecapAffectations>.LibelleAffectations {
    font-size: 12px;
}

.RecapPopupCommentaires>.RecapAffectations>.ValueAffectations {
    font-size: 15px;
    font-weight: bold;
    width: calc(100% - 5px);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/**************************** FNEETRE POPUP INFO SAISIE MASSE ********************************/

.PopupInfoSaisie {
    padding: 0 !important;
    width: 100% !important;
}

.PopupInfoSaisie .CtnEvtPopup {
    height: calc(100% - 150px);
    overflow-y: auto;
    padding: 20px 20px 0 20px;
}

.PopupInfoSaisie .CtnEvtPopup .InfoAffect {
    display: inline-block;
    width: calc(80% - 20px);
    vertical-align: middle;
}

.PopupInfoSaisie .InfoJourCtnEvt {
    border-bottom: 1px solid #dadada;
    padding: 10px 0;
}

.PopupInfoSaisie .InfoJourCtnEvt .UneAffect {
    font-size: 14px;
    margin-bottom: 5px;
    margin-left: 5px;
    font-style: italic;
    color: #575757;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.PopupInfoSaisie .InfoJourCtnEvt .UneAffect.Evt {
    margin-left: 0;
    font-style: normal;
    font-weight: bold;
}

.PopupInfoSaisie .InfoJourCtnEvt .ValeurAffect {
    display: inline-block;
    width: calc(20% - 20px);
    font-size: 20px;
    font-weight: bold;
}

.PopupInfoSaisie .RecapTotalJour {
    background-color: #e5e4e4;
    padding: 10px 20px;
    width: calc(100% - 40px);
    height: 110px;
}

.PopupInfoSaisie>.RecapTotalJour>.UnIntituleJour {
    font-size: 18px;
    font-weight: bold;
    color: #575757;
    margin-bottom: 10px;
}

.PopupInfoSaisie>.RecapTotalJour .UnBloc.Left {
    float: left;
}

.PopupInfoSaisie>.RecapTotalJour .UnBloc.Right {
    float: right;
}

.PopupInfoSaisie>.RecapTotalJour .UnBloc>.UnBloc_Nb {
    font-size: 22px;
    font-weight: bold;
}

.PopupInfoSaisie>.RecapTotalJour .UnBloc>.UnBloc_Txt {
    font-size: 12px;
}

.PopupInfoSaisie>.RecapTotalJour .UnTotal_Graph {
    border: 2px solid black;
    border-radius: 5px;
    height: 30px;
    width: 100%;
    box-sizing: border-box;
    float: left;
    margin-top: 5px;
    position: relative;
}

.PopupInfoSaisie>.RecapTotalJour .UnTotal_Graph>.TxtEcart {
    text-align: center;
    font-size: 15px;
    color: white;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    width: 100%;
    font-weight: bold;
}

.PopupInfoSaisie>.RecapTotalJour .UnTotal_Graph>.UnTotal_GraphJauge {
    height: 100%;
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}

/******************* FENETRE POPUP LISTE ******************************/
.co_PopupListe #co_LST_HeaderPlus{
    background-color: white;
    padding: 0 10px 0 10px;
}

.co_PopupListe .ListeCtn{
    width:100%;
    height:100%;
}
.co_PopupListe .ListeCtn .co_LST_Body {
    height:100%;
}
.co_PopupListe .ListeCtn .co_LST_Body.WithHeaderPlus{
    height: calc(100% - 30px);
}

/****************************  RESPONSIVE *********************************************/

@media screen and (max-width: 760px) {
    #co_PopupContainer.largeWidth, #co_PopupWindow.largeWidth, .co_PopupWindow.largeWidth {
        width: 100%!important;
    }
    #co_PopupContainer.XlargeWidth, #co_PopupWindow.XlargeWidth, .co_PopupWindow.XlargeWidth {
        width: 100%!important;
    }
    /** POPUP SUIVI **/
    .PosDem_SuiviAllLst {
        position: relative;
        top: 0;
        transform: initial;
    }
    /** POPUP DEMANDE **/
    .MonBoutonPopup:hover {
        min-width: 50px;
    }
    /*** POPUP COMMENTAIRES ***/
    .co_PopupCommentaires .Tableau>.TableauEntete {
        display: none;
    }
    .RecapPopupCommentaires .RecapAffectations {
        display: block;
        margin-bottom: 5px;
        width: 100%;
    }
    .co_PopupCommentaires .Tableau>.TableauCorps>.Ligne {
        border-bottom: initial !important;
        height: auto !important;
        position:relative;
    }
    .co_PopupCommentaires .Tableau>.TableauCorps>.Ligne>.btnDelete{
        width: 20px;
        display: block !important;
        position: absolute;
        right: 0;
        top: 65%;
        transform: translateY(-50%);
    }
    .co_PopupCommentaires .Tableau>.TableauCorps>.Ligne>.btnDelete:before{
        opacity:1;
    }
    .co_PopupCommentaires .Tableau>.TableauCorps>.Ligne>.UneCellule {
        display: none;
    }
    .co_PopupCommentaires .Tableau>.TableauCorps>.Ligne>.UneCellule:first-child {
        display: block !important;
        line-height: normal !important;
        margin-top: 10px;
    }
    .co_PopupCommentaires .Tableau .fullColumn {
        width: calc(100% - 20px) !important;
        display: block !important;
    }
}

@media screen and (max-height: 650px) {
    #co_PopupWindow.largeHeight, .co_PopupWindow.largeHeight {
        height: 100%!important;
    }
}

@media screen and (max-height: 540px) {
    #co_PopupWindow.mediumHeight, .co_PopupWindow.mediumHeight {
        height: 100%!important;
    }
}

@media screen and (max-width: 460px) {
    #co_PopupBody, .co_PopupBody {
        padding: 10px 10px 0 10px;
        width: calc(100% - 20px);
        height: calc(100% - 160px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    #co_PopupGrpBouton, .co_PopupGrpBouton {
        padding: 5px 10px;
        width: calc(100% - 20px);
    }
    #co_PopupGrpBouton>.MonBoutonPopup {
        width: 45px;
        height: 45px;
        line-height: 40px;
        border-radius: 50%;
        background-size: 32px;
        background-position: center;
    }
    #co_PopupWindow, .co_PopupWindow {
        width: 100% !important;
        height: 100% !important;
    }
    /** POPUP DEMANDES **/
    #PosDem_BtnGrpDateDeb {
        margin-left: 100px;
    }
    .co_form_date.PosDem_TxtHeure {
        font-size: 10px;
    }
    .MonBoutonPopup:hover {
        min-width: 45px;
    }
    .PosDem_buttonHeure {
        background-position: right;
        background-size: 12px;
        margin-left: -36px;
    }
    .PosDem_BtnGrp>li {
        padding-left: 8px;
        padding-right: 8px;
    }
}