body {
    overflow-x: hidden;
    overflow-y: scroll;
}

/* En backoffice, la largeur des barres de scroll est personnalisée
    pour les nvaigateurs basés sur chronium

    D'autres mises en forme globales ont été centralisées dans selia.chronium-extension.css
*/
::-webkit-scrollbar {
    width: 17px;
}

/* Hn */
h6 {
    margin-top: 0;
    margin-bottom: 5px;
}
:focus,
a:hover, a:focus {
    text-decoration: none;
    outline: none;
}
.single-line-ellipsis {
    /* !! Marche uniquement pour des éléments ayant une ligne : pour de l'ellipsis multiline, utiliser la class "ellipsis" (utilise la lib "clamp.js" dans global.js) */
    /* ne pas oublier d'attribuer explicitement une propriété "height" ou "max-height" pour que l'ellipsis ce déclenche */
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
}
/*
 * Div version de l'application Web 
*/
.ui-div-VersionInfo {
    position: fixed;
    font-size: smaller;
    color: gray;
    bottom: 0;
    left: 0;
    cursor: pointer;
    padding: 1px;
    background-color: white;
    text-align: left;
    z-index: 1000;
    border-top: solid 1px #5d5d5d;
    border-right: solid 1px #5d5d5d;
}
/*
    Evite certains bugs de positionnement sous firefox
 */
.relative {
    position:relative;
}
/**************************************************************************************************
 * Surcharge de Twitter Boostrap
 * Merci d'inclure ici toutes surchages ou compléments
 **************************************************************************************************/


input, textarea {
    border: solid 1px #ccc;
}
input[type="image"] {
    border: none;
}
.input-group .form-control {
    z-index: auto;
}

.btn-default {
    /*background-color: #ccc;
    border-color: #999;*/
}
/*reduction des marges sur les classes GRID passe de 15 à 5
 reduction de la taille de police et de l'affichage des input group
*/
.container-fluid, .container {
    padding-right: 5px;
    padding-left: 5px;
}

.input-group > .form-control, .input-group > .input-group-addon, .input-group > .input-group-btn > .btn, input[type="text"] {
    box-shadow: none;
    height: 23px;
    font-size: 12px;
    border-radius: 0;
    margin-right:0; /* Nécessaire pour éviter une coupure de libellé sur les dropdowns avec des réponses courtes - effet de bord de l'application d'une taille à 12px */
    /*padding:0 12px 0 12px; JB 16/07/2015 : pose souci sur les champs dates uniques si activé*/
}
/*pour que l' input-group-addon après l'input soit à la même taille que l'éventuel input-group-addon avant le champs */
div.input-group > span.input-group-addon {
    padding: 0 5px 0 5px;
}
.form-horizontal .form-group {
    margin-right: -5px;
    margin-left: -5px;
}
/* Boostrap hack */
.alert-danger {
    /*padding: 2px;*/
}


/*nouveaux labels bootstrap avec bordures et fond vide*/

.label.label-outlined {
    border-width: 1px;
    border-style: solid;
    background-color: transparent
}

.label.label-outlined.label-default {
    border-color: #B0BEC5;
    color: #B0BEC5
}

.label.label-outlined.label-primary {
    border-color: #2196F3;
    color: #2196F3
}

.label.label-outlined.label-secondary {
    border-color: #323a45;
    color: #323a45
}

.label.label-outlined.label-info {
    border-color: #9fa8da;
    color: #5c6bc0;
}

.label.label-outlined.label-success {
    border-color: #64DD17;
    color: #64DD17
}

.label.label-outlined.label-warning {
    border-color: #ef6c00;
    color: #ef6c00;
}

.label.label-outlined.label-danger {
    border-color: #ef1c1c;
    color: #ef1c1c
}


/***************************************************************************
 *						Interface
 **************************************************************************/
/* Différence Visuel entre les différentes applis 
    * couleur Logiclic : rgb(208, 108, 140);
    * couleur Logireso : rgb(46, 146, 163);
*/
h2 {
    font-size: 20px;
}

ul, ol {
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
}
#divMasterContenu > .col-xs-2 {
    padding: 0;
    background-color: #e6e6e6;
    height: 100%;
}

.MenuGauche {
    list-style-type: none;
    width: inherit;
}
.MenuGauche span {
    font-size: 20px;
    display: block;
    top:5px;
}
.MenuGauche li {
    font-size: 12px;
    display: inline-block;
    height: 50px;
    line-height: 30px;
    background-color: #ccc;
    color: white;
    text-align: center;
    padding: 0;
    border-right: solid 1px #E6E6E6;
    transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
}
.MenuGauche li:first-child {
    padding-left: 0;
}
.MenuGauche li:last-child {
    border-right: none;
}
.MenuGauche li.actif,
.MenuGauche li:hover {
    cursor: pointer;
    /*background-color: rgb(46, 146, 163);*/
    color: white;
}
.MenuGauche li a {
    line-height: 25px;
}
.MenuGauche li:hover a {
    line-height: 30px;
}
/* Sidebar */

#side {
    position: fixed;
    top: 0;
    width: 280px;
    bottom: 0;
    left: 0;
    background: #fff;
    border-right: solid 1px #ddd;
    transition: transform 0.5s ease;
    -webkit-transition: transform 0.5s ease;
    z-index: 1000;
    height: 100vh;
}

#side.closed {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
}

#side.closed .side--toggler {
    opacity: 1;
    right: -30px;
    width: 30px;
}

.side--toggler {
    position: absolute;
    top: 0px;
    right: -20px;
    width: 20px;
    text-align: center;
    height: 100%;
    line-height: 100vh;
    background: #fff;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    opacity: 0.2;
}
.side--toggler a{
    display:block;
    color:#fff;
}

.side--toggler:hover{
    opacity:1;
}

#side.closed .side--toggler:hover{
    opacity:0.2;
}

.side--toggler a i{
    padding:0;
    transition: transform 0.5s;
    -webkit-transition: transform 0.5s;
}

#side.closed .side--toggler a i {
    transform-origin: center;
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
}


#sidebar{
    padding:5px;
    height:calc(100% - 80px);
    overflow-y:auto;
}

#sidebar a {
    color: #5d5d5d;
}
.sidebar-titre-section {
    padding-left: 5px;
}

/* content */


#content {
    margin-left: 280px;
    padding: 0.5em 0 0.5em 19px;
    transition: margin 0.5s ease, padding 0.5s ease;
    -webkit-transition: margin 0.5s ease, padding 0.5s ease;
}

#content .row {
    margin-left: auto !important;
    margin-right: auto !important;
    transition: width 0.5s ease;
    -webkit-transition: width 0.5s ease;
    max-width: 100%;
}

#side.closed ~ #content {
    margin: 0;
    padding: 0.5em 0 0.5em 30px;
}

#side.closed ~ #content .row{
    max-width:100%;
}

#content #main-header {
    position: fixed;
    width: calc(100% - 300px);
    background: #fff;
    top: 0;
    z-index: 100;
    transition: width 0.5s ease, left 0.5s ease;
    -webkit-transition: width 0.5s ease, left 0.5s ease;
    border-bottom: solid 1px #ddd;
    /*min-height: 45px;*/
    left: 300px;
    padding-left: 5px;
}

#side.closed ~ #content #main-header{
    width:calc(100% - 30px);
    left:30px;
}

@media all and (max-width: 1400px) {
    #side {
        width: 20%;
    }

    #content {
        margin-left: 20%;
    }

    #side.closed ~ #content {
        margin: 0;
        padding: 0.5em 0 0.5em 30px;
    }

    #content #main-header {
        width: calc(100% - 20% - 20px);
        left: calc(20% + 20px);
        padding-left: 5px;
    }

    /*#side .side--toggler a i {
        transform-origin: center;
        transform: rotate(-180deg);
        -webkit-transform: rotate(-180deg);
    }

    #side.closed .side--toggler a i {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }*/
}



@media all and (max-width: 1024px){
    #side {
        width: 180px;
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
    }

    #side.closed {
        transform: translateX(0);
        -webkit-transform: translateX(0);
    }

    #side.closed ~ #content, #content {
        margin: 0;
        padding: 0.5em 0 0.5em 20px;
    }

    #side.closed ~ #content #main-header, #content #main-header {
        width: calc(100% - 20px);
        left: 20px;
        padding-left: 5px;
    }

    #side .side--toggler a i {
        transform-origin: center;
        transform: rotate(-180deg);
        -webkit-transform: rotate(-180deg);
    }

    #side.closed .side--toggler a i {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }
}

/* quand une fenêtre modal s'ouvre, mettre la sidebar en arrière-plan */
body.modal-open {
    overflow-y: hidden !important;
    padding-right:17px !important; /* Pour compenser l'absence de scrollbar et éviter un décallage */
}

.modal-open #content #main-header {
    padding-right: 17px; /* Pour compenser l'absence de scrollbar et éviter un décallage */
}

.modal-open #sidebar {
    z-index: 0;
}
.w100 {
    width: 100% !important;
}
/* Liste services utilisateur */
#InfoPersonneConnecte { font-size: 11px; margin:5px 0; }
#InfoPersonneConnecte span.NomReseau { /*background-color: rgb(46, 146, 163);*/ color:white; display:block;padding:0.3em;margin-bottom:0.5em; }
#InfoPersonneConnecte a { display:block; font-size: Smaller; color: Gray;  padding-left:2px; line-height:1.5em; border-left: 5px solid transparent; }
#InfoPersonneConnecte a.type-clic:hover { border-left: 5px solid rgb(208, 108, 140); }
#InfoPersonneConnecte a.type-maia:hover { border-left: 5px solid #A975AC; }
#InfoPersonneConnecte a.type-reseau:hover { border-left: 5px solid rgb(46, 146, 163); }
#InfoPersonneConnecte a.type-sport:hover { border-left: 5px solid #FB8C00; }
#InfoPersonneConnecte a.type-coordination:hover { border-left: 5px solid #5A69AF; }

#ctl00_LLogin {
    font-size: 12px;
}
#sidebar hr {
    border-top: 1px dashed rgb(46, 146, 163);
    margin: 8px;
}
#sidebar .liste-banettes {
    padding-left: 15px;
}
#sidebar .liste-banettes a {
    vertical-align: middle;
    line-height: 16px;
    border-radius:3px;
    padding:1px 5px;
}
#sidebar .liste-banettes a:before {
    top: 5px;
}
#logo {
    padding: 20px 0 10px 0;
    text-align: center;
}
#logo > img {
    width: 100%;
    max-width: 95px;
}
#LogoClientGauche > img {
    padding-top: 20px;
    width: 150px;
    height: auto;
}
/* WARNING!! : petit doute sur l'usage de cette pseudo-classe (:not) sur IE8 
http://caniuse.com/#search=%3Anot
*/
#sidebar .dossiercourant {
    font-size: 12px;
    margin-top: 5px;
    padding: 2px;
    background: white;
    width: 100%;
    display: block;
    color: rgb(46, 146, 163);
}
.AlignAdresse input:not([class*="autocomplete"]) {
    margin: 2px;
    height: 21px;
    line-height: 21px;
}
#ctl00_DivChgtMDP {
    padding: 10px 5px;
}
/* Menu du haut */
/* Onglets */
/*.OngletsDePage {
    float:right;
    margin-top:5px;
    width:16.66%;
}

@media all and (min-width:1500px){
    .OngletsDePage{
        width:25%;
    }
}*/

/* quand une fenêtre modal s'ouvre, mettre les onglets en arrère-plan */
/*.modal-open .OngletsDePage {
    position: relative;
    width: 100%;
    z-index: 0;
}*/
.OngletsDePage .nav-tabs {
    border:0;
}
    .OngletsDePage .nav-tabs > li {
        font-size: 12px;
        float: right;
        background-color: #ccc;
        color: white;
        padding: 3px 25px 2px 4px;
        transition: all .4s ease-in-out;
        -moz-transition: all .4s ease-in-out;
        -webkit-transition: all .4s ease-in-out;
        margin: 3px;
        height: 22px;
        width: 45%;
        max-width: 180px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

.OngletsDePage .nav-tabs > li:before {
    /*font-family: 'Glyphicons Regular'; style déplacé dans selia.glyphicon.css
content: "\E004";  style déplacé dans selia.glyphicon.css*/
    padding-right: 5px;
    position: relative;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
}
.OngletsDePage .nav-tabs > li.active,
.OngletsDePage .nav-tabs > li:hover {
    /*background-color: rgb(46, 146, 163);*/
    cursor: pointer;
}
.OngletsDePage .nav-tabs > li > div {
    z-index: 1;
    position: absolute;
    right: 5px;
    top: 3px;
    height: 14px;
    width: 14px;
    background: transparent;
    font-family: 'Glyphicons Halflings';
    font-size: 10px;
    opacity: 1;
    transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
}
.OngletsDePage .nav-tabs > li > div:before {
    content: "\e014";
    line-height: 14px;
    padding-left: 2px;
}
    .OngletsDePage .nav-tabs > li > div:hover {
        opacity: 1;
        background: #d9534f;
    }
.OngletsDePage .nav-tabs > li:hover > div:hover {
    color: white;
}
/* Contenu */
body.class-liste-patients,
body.planning {
    overflow: auto;
}


.Body {
    /*overflow-y: auto;*/
    font-family: Arial;
    font-size: 12px;
    padding: 5px;
    padding-top: 5px;
    /*top: 100px;*/
    bottom: 0;
    right: 0;
    /*position: fixed;*/
    width: 100%;
    /*padding-left: 17%;*/
}

/*.Body-top{
   margin-top:90px;
}*/

.MenuV2{
    /*overflow:hidden;*/
    padding:0;
}

#Menu1, #Menu2, #Menu3{
    border:0!important;
}

div.body-extended {
    top:155px;
}


/*body.class-liste-patients .Body {
    top: 0;
    padding-left: 0;
    position: relative;
}*/

.content {
    min-height: 500px;
    /*padding-left: 5px; */
}
/* Tooltip */
.tooltip {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 12px;
}
.tooltip.error .tooltip-inner {
    background-color: #c9302c;
    color: white;
}
.tooltip.tooltip-warning .tooltip-inner {
    background-color: #f0ad4e;
    color: white;
}
.tooltip.tooltip-warning .tooltip-arrow {
    border-top-color: #f0ad4e;
}
.tooltip.tooltip-warning.in {
    opacity: 0.95;
}
.popover.top {
    min-width: 300px;
}
.popover-content {
    padding: 5px;
    font-size: 12px;
}
.popover-content .row .col-md-4 {
    font-weight: bold;
}
.popover-content .row .col-md-8 {
    padding-left: 5px;
}
.popover-content .row {
    margin: 0;
    border-bottom: 1px solid #ddd;
}
.popover-content .row:last-child {
    border: none;
}
.popover-content p {
    margin: 0;
}
/* un élément block va juste définir une zone avec un padding de 5px */
.block {
    padding: 5px;
    padding-bottom: 0;
}
/* retraits : éléments englobants avec des retraits (taille définit en pixels) */
.retrait-5 {
    padding: 0;
    padding-left: 5px;
}
/* Panels (concerne également les accordéons) */
.panel-title {
    font-size: 12px;
    background: #ccc;
    color: white;
    padding: 2px 2px 2px 5px;
    height: 19px;
}
.panel-default {
    box-shadow: none;
    border: none;
    border-radius: 0;
    margin-bottom: 10px;
}
.panel-default > .panel-heading {
    padding: 0;
    border-radius: 0;
    border: none;
}

.panel-default > .panel-heading > h3 {
    min-width: 200px;
    display:inline-block;
    vertical-align: middle;
}
.panel-title > a {
    display: block;
}
.panel-heading a:hover,
.panel-heading a:focus {
    text-decoration: none;
}
.panel-heading a:before {
    /* glyphicon-chevron-right */
    position: relative;
    top: 1px;
    font-family: 'Glyphicons Halflings';
    content: "\e080";
    font-size: 12px;
    display: inline-block;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}
.panel-heading .no-arrow a:before {
    content: "";
    width: 12px;
}
.panel-heading a[aria-expanded=true]:before {
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.panel-body,
.panel-default > .panel-heading + .panel-collapse > .panel-body {
    padding: 5px;
    padding-bottom: 0;
}
.alert-sd, .panel-sd {
    margin-bottom:initial;
}
/*.modal-body {
    padding: 0 5px;
}*/
.modal-footer {
    padding: 5px;
}
.modal-footer .btn {
  margin-bottom: 0;
}
/* Tabs */
.nav-tabs > li > a {
    padding: 3px 5px;
    background: #e6e6e6;
}
.nav-tabs > li:last-child > a {
    margin-right: 0;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    color: #428bca;
}
.nav-tabs li.active {
    font-weight: bold;
}
.nav-tabs li:focus,
.nav-tabs li a:focus {
    outline-color: transparent;
}
.tab-content > .tab-pane {
    padding: 5px;
    padding-bottom: 0;
    border: solid 1px #ddd;
    border-top: none;
    position: relative;
}
/* Liste en lecture d'option validé ou non */
/* exemple : /Coordination/DossierDeDemande/Details */
.readonly {
    padding-left: 20px;
}

/**************
    Logiclic
***************/
.clic .MenuGauche li.actif,
.clic .MenuGauche li:hover,
/*.clic #sidebar a:not(.nohover):hover,*/
/*.clic .glyphicon-keys:hover > span,*/
.clic .OngletsDePage .nav-tabs > li.active,
.clic .OngletsDePage .nav-tabs > li:hover {
    background-color: rgb(208, 108, 140);
}
.clic .ui-dialog-titlebar {
    background: rgb(208, 108, 140);
}
.clic .modal-header {
    background-color: rgb(208, 108, 140);
}
.clic .lien-dossier.dossier-ouvert {
    background: rgb(208, 108, 140);
}
.clic #sidebar hr {
    border-top: 1px dashed rgb(208, 108, 140);
}
.clic .lien-dossier.dossier-ouvert:hover {
    background: white;
    color: rgb(208, 108, 140);
    border: solid 1px rgb(208, 108, 140);
}
.clic .lien-dossier.dossier-ouvert:hover:after {
    color: rgb(208, 108, 140);
}
.clic #sidebar {
    border-top: dashed 1px rgb(208, 108, 140);
    border-right: dashed 1px rgb(208, 108, 140);
}
.clic .OngletsDePage .nav-tabs {
    border-left: dashed 1px rgb(208, 108, 140);
    border-bottom: dashed 1px rgb(208, 108, 140);
}
.clic #InfoPersonneConnecte .NomReseau { background-color: rgb(208, 108, 140);}
/**************
    Logimaia
***************/
.maia .MenuGauche li.actif,
.maia .MenuGauche li:hover,
/*.clic #sidebar a:not(.nohover):hover,*/
/*.clic .glyphicon-keys:hover > span,*/
.maia .OngletsDePage .nav-tabs > li.active,
.maia .OngletsDePage .nav-tabs > li:hover {
    /*background-color: #A975AC;*/
}
.maia .ui-dialog-titlebar {
    /*background: #A975AC;*/
}
.maia .modal-header {
    background-color: #A975AC;
}
.maia .lien-dossier.dossier-ouvert {
    background: #A975AC;
}
.maia #sidebar hr {
    border-top: 1px dashed #A975AC;
}
.maia .lien-dossier.dossier-ouvert:hover {
    background: white;
    color: #A975AC;
    border: solid 1px #A975AC;
}
.maia .lien-dossier.dossier-ouvert:hover:after {
    color: #A975AC;
}
.maia #sidebar .a-sidebar:not(.nohover):hover {
    /*background-color: #A975AC;*/
    text-decoration: none;
}
.maia #sidebar .a-sidebar:not(.nohover):hover > span {
    /*color: #428bca;*/
}

.maia #InfoPersonneConnecte .NomReseau { background-color: #A975AC;}
/* Fin surcharge MAIA */

/* IE 8 -> 10 */
@media screen\0 {
    #content, .OngletsDePage {
        padding-right: 22px;
    }
}
/* IE11 */
*::-ms-backdrop, #content, .OngletsDePage {
    padding-right: 22px;
}
/***************************************************************************
 *						Début Gestion des formulaires
 **************************************************************************/
/* Jquery-ui hack */
.ui-widget {
    font-size: 12px;
}
.ui-corner-all {
    border-radius: 0;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
    border: 0;
    font-weight: normal;
}

.ui-icon {
    height: 0;
}
/* Jquery modal */
.ui-dialog-titlebar {
    border: none;
    /*background: rgb(46, 146, 163);*/
    padding: 5px 10px;
}

.ui-dialog-title {
    color: white;
    line-height: 1.42857143;
    font-family: Arial;
    font-size: 18px;
    font-weight: 500;
}
.ui-widget-content {
    border: none;
    background: white;
    outline-color: transparent;
}
.ui-dialog {
    z-index: 1050!important; /* Bootstrap fixe 1050 pour les modales (on s'aligne sur les modals Jquery-ui) */
    border: none;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
    margin:auto;
}
.ui-dialog-titlebar-close {
    top: 0;
    position: absolute;
    right: 0;
    color: white;
    background: none;
    border: none;
}
.ui-dialog-titlebar-close:focus,
.ui-dialog-titlebar-close:hover {
    color: #000;
    opacity: .5;
}
.ui-dialog-titlebar-close::after {
    font-family: Arial;
    font-size: 21px;
    content: "×";
}
.ui-dialog-buttonpane {
    border: none;
}
/* Hack Bootstrap */
/* PlaceHolder : + de détail :
    http://stackoverflow.com/questions/2610497/change-an-inputs-html5-placeholder-color-with-css/2610741#2610741
    https://github.com/mathiasbynens/jquery-placeholder
*/
.placeholder {
    color: #999;
}
/* Mozilla Firefox 4 to 18 */
.form-control:-moz-placeholder {
    color: #999;
    opacity: 1;
}
/* Mozilla Firefox 19+ */
.form-control::-moz-placeholder {
    color: #999;
    opacity: 1;
}
/* Internet Explorer 10+ */
.form-control:-ms-input-placeholder {
    color: #999;
}
.form-control::-webkit-input-placeholder {
    color: #999;
}
legend {
    background: none;
    font-size: 14px;
    border: none;
    width: auto;
    padding: .2em;
    margin: 0;
}
label {
    font-weight: normal;
}
.form-group {
    margin-bottom: 5px;
    line-height: 1;
    position: relative;
}
/* Permet de mettre un label en indice d'un champ */
.form-group .control-label {
    border: 1px solid #ccc;
    border-bottom: none;
    background-color: #eee;
    padding: 2px 5px;
    margin-bottom: 0;
    height: 23px;
    line-height: 20px;
    color: #555;
}
ul li.form-group:last-child {
    margin-bottom: 0;
}
.form-group input[type="text"],
.input-group > input.form-control {
    /*text-transform: uppercase;*/
    box-shadow: none;
    padding: 0 5px;
    font-family: Courier; /* On force l'utilisation d'une police à chasse fixe afin de contrôler la taille du champ */
    font-size: 12px; /* Le ratio hauteur/largeur est de 0.633 pour la police "Courier" => hauteur de 11px donne largeur de 6.95px */
    line-height: 21px;
}
.input-group > input.form-control[type="number"] {
    padding-right: 0;
}
.input-group.fixed-size-5 input.form-control {
    width: 51px; /* 7.15px par caractère + 2 x 5px par padding + 4 espaces de 1 pixel entre les caractères */
    letter-spacing: 1px; /* espace d'1 pixel entre les caractères */
}
.input-group.fixed-size-12 input.form-control {
    width: 110px; /* 7.08px par caractère + 2 x 5px par padding + 11 espaces de 1 pixel entre les caractères */
    letter-spacing: 1px; /* espace d'1 pixel entre les caractères */
}
.text-align-right {
    text-align: right;
}
.absolute-right {
    position: absolute;
    right: 5px;
    z-index: 10;
}
.form-control:focus {
    box-shadow: none;
}
/* textarea */
textarea {
    padding: 5px;
    width: 100%;
    max-width: 100%;
    line-height: 21px;
}
/* DropDown */
/*<-- DropDown d'ajout */

.btn.btn-default.dropdown-toggle.btn-white{
    border-radius:0;
}

.dropdown.ajout button,
.ajout.open > .dropdown-toggle.btn-default {
    background-color: #5cb85c;
    border: solid 1px #4cae4c;
    border-radius: 4px;
    color: white;
}
.dropdown.ajout:hover button {
    background-color: #449d44;
    border: solid 1px #398439;
}
.dropdown.ajout button:before {
    font-family: 'Glyphicons Halflings';
    content: "\2b";
    top: 1px;
    padding-left: 5px;
    padding-right: 5px;
}
.dropdown, .dropup,
.dropdown.form-control, .dropup.form-control {
    height: 23px;
    min-width: 50px;
    padding: 0;
    border: none;
}

    .dropdown > .btn-default, .dropup > .btn,
    .dropdown > .btn-default, .dropup > .btn {
        width: 100%;
        border-radius: 0;
        height: 23px;
        background: white;
        text-align: justify;
        overflow: hidden;
        text-overflow: ellipsis;
    }
.input-group.alert {
    padding: 0;
    margin-bottom: 0;
}
.input-group.alert .dropdown > .btn,
.input-group.alert .dropup > .btn {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}
.dropdown:hover > .btn, .dropup:hover > .btn
.dropdown > .btn:focus, .dropup > .btn:focus {
    border: solid 1px rgb(66, 139, 202);
}
.dropdown.open:hover > .btn, .dropup.open:hover > .btn {
    border: solid 1px #ccc;
}
.dropdown .btn, .dropup .btn,
.dropdown .btn span, .dropup .btn span {
    vertical-align: middle;
    min-height:20px;
}
.dropdown .btn:active, .dropup .btn:active {
    box-shadow: none;
}
.dropdown .btn .caret, .dropup .btn .caret {
    position: relative;
    float: right;
    top: 8px;
    margin-left: 5px;
    /* force le cate à être tout le temps positionné flèche vers le bas */
    border-top: 4px solid;
    border-bottom: none;
}
/*@-moz-document url-prefix() {
    .dropdown .btn .caret, .dropup .btn .caret {
        top: -13px;
    }
}*/
/* rendre une zone non active (exemple type : formulaire de recherche tant que la requête n'a pas été traité) */
.readonly, .disabled {
    position: relative;
}
.disabled:hover {
    cursor: not-allowed;
}
.readonly:before,
.disabled:before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 3;
    background-color: rgba(0, 0, 0, 0.1);
    top: 0;
    left:0;
}
.disabled[data-content]:after {
    z-index: 4;
    font-size: 12px;
    display: block;
    color: #333;
    content: attr(data-content);
    position: absolute;
    top: 50%;
    background: white;
    background-position: 50% 20px;
    margin-top: -20px;
    text-align: center;
    min-height: 30px;
    padding: 5px;
    left: 33%;
    right: 33%;
    border-radius: 5px;
}
.input-group[disabled="disabled"] .dropdown-toggle,
.dropdown[disabled="disabled"] .dropdown-toggle {
    cursor: not-allowed;
    background-color: #eee;
    color: #A1A1A1;
}
.input-group[disabled="disabled"] .dropdown-toggle:hover,
.dropdown[disabled="disabled"] .dropdown-toggle:hover {
    border-color: #ccc;
}
.dropdown-menu.old_bootstrap_dp_div.open {
    overflow: hidden;
    /*top: 0;*/ /*CA : 02.08.2019 --> Effets de bord avec la librairie bootstrap-select*/
    position: absolute;
    font-size: 12px;
    padding: 0;
    border-radius: 0;
    /* Chaque ligne fait 20px de hauteur -> cqfd : l'auto-complete affichera 322 / 20 -> 16 résultats maximum : après, il proposera un scroll */
    /* Vu que nous proposons un affichage jusqu'à 768 pixels, il sera délicat de proposer plus de résultats. */
    /* si le champ de recherche se trouve au milieu de la page (cas le plus défavorable), les résultats risquent de dépacer. */
    max-height: 322px;
    min-width: initial;
    overflow-y: auto;
    z-index: 1050; /* Car le z-index de la lib floatThead.js impose une valeur de 1001... et bootstrap fixe 1050 pour les modales */
}
.datepicker.dropdown-menu {

}
.old_bootstrap_dp_div.dropdown-menu li {
    height: 20px;
}
.old_bootstrap_dp_div.dropdown-menu {
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}
    .old_bootstrap_dp_div.dropdown-menu.top {
        box-shadow: 0 0px 12px rgba(0, 0, 0, .175);
    }
    .old_bootstrap_dp_div.dropdown-menu > li > a {
        padding: 0 5px;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 20px;
    }
        .old_bootstrap_dp_div.dropdown-menu > li > a:focus {
            outline: none;
        }
    .old_bootstrap_dp_div.dropdown-menu > li[selected="selected"] a {
        background-color: #428bca;
        color: white;
    }
        .old_bootstrap_dp_div.dropdown-menu > li[selected="selected"] a:hover {
            background-color: #357ebd;
        }
/* Alertes */
#ctl00_ContentPlaceHolder1_PAlertes {
    top: 360px;
    padding: 5px;
    margin: 5px 0;
}
/* Table */
.table {
    margin-bottom: 10px;
}
.table-bordered {
    width: 100%;
    border-left: solid 1px #e6e6e6;
    border-right: solid 1px #e6e6e6;
}
.table-bordered th {
    /* en gras sinon sur IE11 */
    font-weight: normal;
}
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th {
    padding:inherit;
}

/* IF BROWSER IS EDGE */
@supports (-ms-ime-align: auto) {
    th{
        width:auto;
        white-space:nowrap;
    }
}

/* Div englobante utilisé lorsqu'on épingle le head d'une table */
.floatThead-floatContainer {
    overflow: visible !important;
    width: auto !important;
    background: white;
}
/*#liste-individu thead {
    visibility: hidden;
}*/
.table-bordered {
    margin-top:5px;
}
.table-bordered > tbody {
    padding-top: 20px;
}
.table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th {
    padding-left:5px;
    background-color: #f5f5f5;
    font-weight: bold;
    color: #31708f;
}
.table-bordered > tbody > tr > td {
    padding: 2px;
    font-size: 12px;
}
.table-bordered > thead > tr > th, .table-bordered > tbody > tr > th,
.table > tbody > tr > th, .table > tfoot > tr > th, .table-bordered > thead > tr > td, .table > tbody > tr > td,
.table > tfoot > tr > td {
    line-height:21px;
    vertical-align:middle;
}
.table-bordered > tbody {
    margin-left: -1px;
}
.table-bordered > tbody > tr > td:first-child {
    vertical-align: central;
}
.table-bordered.table-without-external-border tr:first-child td {
    border-top: none;
}
.table-bordered.table-without-external-border tr:last-child td {
    border-bottom: none;
}
.table-bordered.table-without-border-bottom tr:last-child td {
    border-bottom: none;
}

.table-bordered.hasNoExternalBorder {
    border: none;
}
    .table-bordered.hasNoExternalBorder tr:first-child th {
        border-top: none;
    }
    .table-bordered.hasNoExternalBorder tr:last-child th {
        border-bottom: none;
    }
    .table-bordered.hasNoExternalBorder td:first-child, .table-bordered th:first-child {
        border-left: none;
    }
    .table-bordered.hasNoExternalBorder td:last-child, .table-bordered th:last-child {
        border-right: none;
    }
    .table-bordered.hasNoExternalBorder > thead > tr > th, .table-bordered > tfoot > tr > th {
        background-color: white !important;
    }

.form-group input:focus,
.form-group textarea:focus,
.form-group input:not([disabled]):hover,
.form-group textarea:not([disabled]):hover,
input.form-control:focus, input.form-control:hover {
    border: solid 1px rgb(66, 139, 202);
    outline: none;
    /*line-height: 21px;*/
}
/* DatePicker */
.datepicker.dropdown-menu {
    max-height: none;
    width: auto;
    border-radius: 0px;
    overflow: initial;
    z-index: 10000 !important;
}
.datepicker.dropdown-menu th,
.datepicker.dropdown-menu td {
    border-radius: 0;
    padding: 1px 5px;
}
.datepicker table tr td.today {
    background: none;
    border: solid 1px #428bca;
}
.datepicker table tr td.range.today,
.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today:hover:hover {
    background-image: none;
    border: none;
    border: solid 1px #428bca;
    background: #eee;
}
.datepicker table tr td.today:hover:hover {
    border: solid 1px #428bca;
    background: #eee;
    color: #333;
}
.datepicker table tr td.active.active {
    background: #428bca;
    color: white;
}

.datepicker table tr td.selected.active:hover.active {
    background: #3071a9;
}

.datepicker table tr td.selected {
    color: rgb(93, 93, 93);
    background: #e6e6e6;
}
.datepicker table tr td.selected:hover:hover {
    background: #9e9e9e;
}
.input-daterange .input-group-addon {
    width: auto;
    display: inline-block;
    border-radius: 0;
    padding: 0 6px;
    height: 23px;
    line-height: 23px;
    vertical-align: top;
}
.date,
.input-daterange .form-control {
    margin-left: -3px;
    display: inline-block;
    padding: 0;
    height: 23px;
    width: 85px;
    color: rgb(66, 139, 202);
    border: none;
    position: relative; /* PATCH 30102019 - TG */
}
.date {
    top: 0;
}
    .date:not(.has-no-icon):before,
    .input-daterange .form-control:not(.has-no-icon):before {
        font-family: 'Glyphicons Halflings';
        position: absolute;
        margin-top: 1px;
        margin-left: 4px;
        color: rgb(66, 139, 202);
        content: "\e109";
        z-index: 0;
        font-size: 14px;
        left: 0; /* PATCH 30102019 - TG : toujours préciser au minium la position horizontal */
    }
.input-group .date:not(.has-no-icon) > input,
.input-daterange .form-control input:last-child,
.input-daterange input,
.form-group div.input-daterange input {
    font-family: Arial;
    background: transparent;
    border-radius: 0;
    height: 23px;
    text-align: left;
    padding-left: 20px;
    width: 90px; /*Input tronqué sous firefox, avec 88px*/
    vertical-align: top;
    box-shadow: none;
}
.form-group div.input-daterange input:hover,
.form-group div.input-daterange input:focus {
    border: solid 1px rgb(66, 139, 202);
}
.date > input:focus,
.input-daterange input:focus {
    outline-color: transparent;
}
.date > input,
.input-daterange label, .input-daterange input {
    display: table-cell;
    font-size: 12px;
    z-index: 1;
    position: relative;
}
.input-group .date > input:focus,
.input-group .date > input:hover {
    border: solid 1px rgb(66, 139, 202);
}
/* Input Group */
.input-group label,
.input-group input, .input-group div.autocomplete,
.input-group select,
select {
    height: 23px;
    line-height: 22px;
    border-radius: 0;
    border: 1px solid #ccc;
}
select[disabled=disabled] {
    background: #ddd;
    color: #333;
}
/* affiche une astérisque lorsqu'un champ est obligatoire */
.input-group.required > label:after {
    content: " *";
    font-weight: bold;
    color: red;
}
select[disabled=disabled] {
    background: #ddd;
    color: #333;
}
.input-group input {
    width: 100%;
}
.input-group .input-group-right input {
    width: auto;
}
.input-group .input-group-right label {
    border: 0;
    margin: 0;
}
.input-group .input-group-right label:after {
    content: none;
}
.input-group .input-group-right {
    width: 100%;
}
/* Champs avec une option d'activation/désactivation de masque de saisie */
/*.input-group.option-masque-saisie .glyphicon {
    top: 0;
}
.input-group.option-masque-saisie .glyphicon-wrench:before {
    top: 4px;
    left: 4px;
}*/
select:focus {
    outline-color: transparent;
    border: solid 1px #66afe9;
}
.input-group label {
    line-height: 21px;
    padding: 0 5px;
}
.input-group select {
    padding: 0;
}
label.input-group-addon {
    margin: 0;
    text-align: left;
    border-left: none;
    border-right: none;
}
.label-default {
    color: #31708f;
    font-size: inherit;
    font-weight: inherit;
    background-color: #f5f5f5;    
}
/* Pour les etiquettes contenant des informations moins importantes que celles utilisant label-info */
.label-info-secondary {
    background-color: #aaa;
}
/* donner une taille fixe à un ensemble de labels */
.label-w-80 label.input-group-addon {
    min-width: 80px;
}
.label-w-100 label.input-group-addon {
    min-width: 100px;
}
.label-w-120 label.input-group-addon {
    min-width: 120px;
}
.label-w-130 label.input-group-addon {
    min-width: 130px;
}
.label-w-140 label.input-group-addon {
    min-width: 140px;
}
.label-w-150 label.input-group-addon {
    min-width: 150px;
}
.label-w-160 label.input-group-addon {
    min-width: 160px;
}
.label-w-170 label.input-group-addon {
    min-width: 170px;
}
.label-w-180 label.input-group-addon {
    min-width: 180px;
}
.label-w-190 label.input-group-addon {
    min-width: 190px;
}
.label-w-200 label.input-group-addon {
    min-width: 200px;
}
.label-w-210 label.input-group-addon {
    min-width: 210px;
}

.input-group-addon.input-group-addon-50 {
    min-width: 50px;
    max-width: 70px;
}

.input-group-addon.input-group-addon-80 {
    min-width: 80px;
    max-width: 100px;
}

.input-group-addon.input-group-addon-120 {
    min-width: 120px !important;
    max-width: 140px !important;
}

.input-group-addon.input-group-addon-150 {
    min-width: 150px;
    max-width: 170px;
}



/* Décale un élément d'un certain nombre de pixels (pratique pour les champs libres venant compléter un dropdown) */
.margin-80 {
    left: 80px;
}
.margin-100 {
    margin-left: 100px;
}
.margin-110 {
    margin-left: 110px;
}
.margin-120 {
    margin-left: 120px;
}
.margin-130 {
    margin-left: 130px;
}
.margin-140 {
    margin-left: 140px;
}
.margin-150 {
    margin-left: 150px;
}
.margin-160 {
    margin-left: 160px;
}
.margin-170 {
    margin-left: 170px;
}
.margin-180 {
    margin-left: 180px;
}
.margin-190 {
    margin-left: 190px;
}
.margin-200 {
    margin-left: 200px;
}
.margin-210 {
    margin-left: 210px;
}
.input-group-addon:first-child {
    border: 1px solid #ccc;
    border-right: none;
}
/* invalide */
.input-group .date > input.input-validation-error {
    border: solid 1px #d43f3a;
}
/* Autocomplete Widget */
.autocomplete,
.input-group > div.autocomplete {
    border: none;
    margin: 0 0 5px 0;
    width: 100%;
    background: white;
    box-shadow: none;
}
.autocomplete {
    border-radius: 0;
    padding: 0;
    position: relative;
    height: 23px;
}
.autocomplete:after {
    font-size: 12px;
    content: "\e003";
    position: absolute;
    top: 5px;
    right: 7px;
    color: rgb(66, 139, 202);
    font-family: 'Glyphicons Halflings';
}
div.ui-autocomplete-input{
    width : 100%;
}
div.autocomplete input.ui-autocomplete-input {
    border: solid 1px #ccc;
}
.input-group > div.autocomplete input:hover,
.input-group > div.autocomplete input:focus {
    border: solid 1px rgb(66, 139, 202);
}
.input-group > .autocomplete:after {
    top: 0;
}
.autocomplete input,
.autocomplete .ui-autocomplete-input,
.autocomplete .watermarked,
.autocomplete .code-obligatoire {
    font-size: 12px;
    font-family: Courrier;
    text-transform: uppercase;
    line-height: 16px;
    width: 100%;
    box-shadow: none;
    border: none;
    padding: 3px;
    border: none;
}
.autocomplete input {
    height: 23px;
    position: absolute;
}
.autocomplete input::placeholder { text-transform:none; font-family: Arial;}
.input-group .autocomplete input {
    position: relative;
}
.autocomplete .ui-autocomplete-input,
.autocomplete .watermarked,
.autocomplete .code-obligatoire {
    height: 23px;
    line-height: 23px;
}
.input-group div.autocomplete {
    top: 0;
    margin: 0;
}
.input-group div.autocomplete input {
    height: 23px;
    vertical-align: top;
}
input.ui-autocomplete-input,
.ui-autocomplete-input input,
.watermarked, .code-obligatoire {
    width: 100%;
    text-transform: uppercase;
    color: #4D4D4D;
    border: none;
    padding: 0;
    height: 21px;
}
.autocomplete input,
.input-group div.autocomplete input,
.ui-autocomplete-input:focus,
.watermarked:focus, .code-obligatoire:focus {
    outline-color: transparent;
}

/* Si on globalise cette règle, cela produit une grosse bordure dans l'extranet */
.Table-col .form-control.autocomplete .simple-autocomplete {
    border: solid 1px #ccc;
}

/* AutoComplete highlighted item */
/************ MaskedEdit Related Styles ***********************/
.MaskedEditFocus
{
	background-color: #ffffcc;
	color: #000000;
}
.MaskedEditMessage
{
	color: #ff0000;
	font-weight: bold;
}
div.autocomplete input.ui-autocomplete-input.MaskedEditError
{
	border: solid 1px #d43f3a;
}
div.autocomplete input.ui-autocomplete-input.MaskedEditError[permettre-saisie-libre="True"] {
    border: solid 1px #f0ad4e;
}
.MaskedEditFocusNegative
{
	background-color: #ffffcc;
	color: #ff0000;
}
.MaskedEditBlurNegative
{
	color: #ff0000;
}
/* loading de l'autocomplete */
.autocomplete .ui-autocomplete-loading {
    background: url('../../Images/chargementAutocomplete.gif') no-repeat right center;
    /* source : http://stackoverflow.com/questions/3197250/position-a-css-background-image-x-pixels-from-the-right */
}
input.ui-autocomplete-input {
    border: solid 1px DarkGray;
}
/*.input-group .autocomplete .ui-autocomplete-loading {
    border-right: 0 !important;
}*/
.ui-menu .ui-menu-item {
    padding: 0;
}
/* JB : J'ai ajouté li devant pour ne pas toucher les simples liens utilisés dans un autre contexte*/
.ui-widget-content li a {
    width: 100%;
    padding: 5px;
    text-decoration: none;
    display: inline-block;
    border-radius: 0;
    line-height: 13px;
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ui-widget-content.non-tronque li a {
    /* les autocomplete qui ont la class "non-tronque" n'ont pas de max-width */
    max-width: inherit;
}
.ui-widget-content a:hover, .ui-widget-content a:focus,
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus {
    margin: 0;
    border: none;
    background: rgb(66, 139, 202);
    color: white;
    font-weight: normal;
}
/* Fenêtre Modal Bootstrap : équivalent des dialogues Jquery */
.in.modal .modal-dialog {
    /* effet de flou bizarre sur IE11, annulé avec le code ci-dessous */
    transform: none;
}
.modal-header {
    background-color: rgb(46, 146, 163);
    color: white;
}
/*.modal-content {
    border-radius: 0;
}*/
.modal-backdrop {
    right: 17px !important;
    z-index: 0;
}
.modal-backdrop.in {
    right: 0 !important;
}
.modal-body.erreur {
    color: red;
}
.close {
    color: white;
    opacity: 1;
    text-shadow: none;
}
/* Boutons */

.alert-success {
    padding: 0 2em;
    margin-bottom: 1em;
}
.ui-widget-content a.btn, widget-content a.btn:focus, widget-content a.btn:hover, /* BUGFIX : forcer tant qu'on utilise des modales jquery-ui */
.btn {
    padding: 0 5px;
    font-size: 12px;
    height: 100%;
    max-height: 25px;
    vertical-align: middle;
    line-height: 21px;
}
.ui-widget-content a.btn:hover, .ui-widget-content a.btn:focus, /* BUGFIX : forcer tant qu'on utilise des modales jquery-ui */
.btn:hover, .btn:focus {
    outline: none;
}
.btn > input {
    padding: 0;
    background: none;
    border: none;
    height: 100%;
}
.btn:before, .btn:after {
    position: relative;
}
.ui-widget-content a.btn.btn-danger, /* BUGFIX : forcer tant qu'on utilise des modales jquery-ui */
.btn.btn-danger {
    color: #fff;
}
/* BUGFIX: forcer tant qu'on utilise des modales jquery-ui */
.ui-widget-content a.btn.btn-danger:hover, .ui-widget-content a.btn.btn-danger:focus {
    color: #fff;
    background-color: #c9302c;
    border: solid 1px #ac2925;
}
/*.lien-dossier {
    margin-left: 5px;
    border-radius: 0;
}*/
/* [Bouton Dossier inactif] */
/*.lien-dossier*/
.dossier-inactif {
    background: #e6e6e6;
    color: rgb(169, 168, 168);
    border: solid 1px rgb(169, 168, 168);
}
/*.lien-dossier*/
.dossier-inactif:hover {
    background: rgb(169, 168, 168);
    color: white;
}
/*.lien-dossier*/
.dossier-inactif:after {
    /*font-family: 'Glyphicons Halflings';
    content: "\e117";*/
    padding-left: 5px;
}
/* [Bouton Dossier ouvert] */
/*.lien-dossier*/
.dossier-ouvert {
    background: rgb(46, 146, 163);
    color: white;
}
/*.lien-dossier*/
.dossier-ouvert:hover {
    background: white;
    color: rgb(46, 146, 163);
    border: solid 1px rgb(46, 146, 163);
}
/*.lien-dossier*/
.dossier-ouvert:after {
    color: white;
    /*font-family: 'Glyphicons Halflings';
    content: "\e118";
    padding-left: 5px;*/
}
/*.lien-dossier*/
.dossier-ouvert:hover:after {
    color: rgb(46, 146, 163);
}
.clic /*.lien-dossier*/.dossier-ouvert {
    background: rgb(208, 108, 140);
}
.clic /*.lien-dossier*/.dossier-ouvert:hover {
    background: white;
    color: rgb(208, 108, 140);
    border: solid 1px rgb(208, 108, 140);
}
.clic /*.lien-dossier*/.dossier-ouvert:hover:after {
    color: rgb(208, 108, 140);
}
.ui-widget-content a.btn-primary, /* BUGFIX : forcer tant qu'on utilise des modales jquery-ui */
.btn-primary {
    color: #fff;
    border: solid 1px #357ebd;
}
/* [Bouton création] -> exemples : nouveau dossier/nouveau suivi/Création d'une demande */
.btn.creation {
    background-color: #5cb85c;
    border: solid 1px #4cae4c;
    color: white;
}
.btn.creation:hover, .btn.creation:focus {
    background-color: #449d44;
    border: solid 1px #398439;
}
.btn.creation:after {
    font-family: 'Glyphicons Halflings';
    content: "\2b";
    top: 1px;
    padding-left: 5px;
}
.panel-title.btn.creation:after {
        content: "";
}
/* [Bouton modification] */
.btn.modification {
    background-color: #5cb85c;
    border-color: #4cae4c;
    color: white;
}
.btn.modification:hover {
    background-color: #449d44;
    border-color: #398439;
}
.btn.modification:before {
    font-family: 'Glyphicons Halflings';
    content: "\270f";
    top: 1px;
    padding-right: 5px;
}
/* [Bouton suppression] -> exemples : supprimer ce dossier vide/supprimer cette demande */
.widget-content a.btn.suppression, /* BUGFIX : forcer tant qu'on utilise des modales jquery-ui */
.btn.suppression {
    background-color: #d9534f;
    border-color: #d43f3a;
    color: white;
}
.widget-content a.btn.suppression:focus, .widget-content a.btn.suppression:hover, /* BUGFIX : forcer tant qu'on utilise des modales jquery-ui */
.btn.suppression:hover, .btn.suppression:focus {
    background-color: #c9302c;
    border: solid 1px #ac2925;
}
.btn.suppression:before {
    font-family: 'Glyphicons Halflings';
    content: "\e014";
    top: 1px;
    padding-right: 5px;
}
/* [Bouton validation] -> exemple : valider la modification d'un dossier */
.btn.validation {
    background-color: #5cb85c;
    border-color: #4cae4c;
    color: white;
}
.btn.validation:hover {
    background-color: #449d44;
    border-color: #398439;
}
/* [Bouton annulation] -> exemple : annulation de la modification d'un dossier de demande */
.btn.annulation {
    background-color: #e6e6e6;
    border-color: rgb(169, 168, 168);
    color: rgb(169, 168, 168);
}
.btn.annulation:hover {
    background-color: rgb(169, 168, 168);
    color: white;
}
/* [Bouton de recherche] -> exemple : rechercher une liste de patients */
.btn.recherche {
    background-color: #428bca;
    border-color: #3071a9;
    color: white;
}
.btn.recherche:hover {
    background-color: #3071a9;
}
.btn.recherche:after {
    font-family: 'Glyphicons Halflings';
    content: "\e003";
    top: 1px;
    padding-left: 5px;
}
.a-sidebar {
    padding-left: 5px;
    width: inherit;
    display: block;
    line-height: 25px;
    vertical-align: middle;
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
}
/*.a-sidebar:hover, .a-sidebar:focus, .a-sidebar:active, .a-sidebar.active, .open > .dropdown-toggle.a-sidebar {*/
#sidebar .a-sidebar:not(.nohover):hover {
    /*background-color: rgb(46, 146, 163);*/
    /*color: #428bca;*/
    text-decoration: none;
}
.clic #sidebar .a-sidebar:not(.nohover):hover {
    /*color: #428bca;*/
    /*background-color: rgb(208, 108, 140);*/
    text-decoration: none;
}
#sidebar .a-sidebar:not(.nohover):hover span.glyphicon-color-blue,
#sidebar .a-sidebar:not(.nohover):hover span.glyphicon-color-orange,
#sidebar .a-sidebar:not(.nohover):hover span.glyphicon-color-red {
    /*color: #999;*/
}

/*#sidebar .a-sidebar:not(.hoverable-element):hover span {
    color: #999;
}*/

#sidebar .a-sidebar.hoverable-element:hover span{
    color:white;
}


/* Divers */
.service-label > span {
    padding-right: 5px;
    vertical-align: middle;
    line-height: 25px;
    height: 25px;
}
/* Messages */
.message {
    margin-bottom: 5px;
}
.alert-condensed {
    padding: 5px 7px;
    margin-bottom: inherit;
    margin-top: 5px;
}
.message .alert {
    width: 100%;
    /*color: white;
    border: 0;
    border-radius: 0;
    padding: .5em;*/
    opacity: 1;
    /*height: 30px;*/
    display: block !important;
    visibility: visible !important;
    margin: 0;
    transition: all 1s ease-out;
}
.message .alert.hidden {
    overflow: hidden;
    opacity: 0;
    padding: 0;
    height: 0;
    transition: all 1s ease-out;
}
/* Message Succès */
.message .alert-success {
    background-color: #4cae4c;
}
/* Message Erreurs dans un formulaire */
/*.message .alert-danger {
    overflow: auto;
    background-color: #c9302c;
}*/
/* Message Erreur serveur (HTTP 500) intercepté sous forme d'Exception */
.message .alert-danger.exception {
    background-color: white;
    border: solid 1px #c9302c;
    height: auto;
    color: black;
}
/*
 * Lors d'une erreur sur un champ de formulaire
 */
.ui-form-erreur, .input-validation-error,
.form-group > div > input.input-validation-error {
    border: solid 1px #d43f3a !important;
}

.input-daterange .form-control input:last-child.input-validation-error {
    border: solid 1px #d43f3a;
}

.ui-form-erreur:after {
    content: url('../../Images/fleche_erreur_32.png');
    margin-left: 5px;
}
/*
 * Lorsque le champ est valide
 */
.ui-form-valide {
    border-color: #8AFF8A;
    background-color: #E8FFE8;
}
/*
 * Champs Heure
 */
.ui-form-heure {
    width: 40px;
}
/*
 * Pour les champs obligatoires
 */
.ui-form-obligatoire {
}
/*
 * Ajout de l'asterisque pour les champs obligatoire
 */
.ui-label-obligatoire:after, .validation-summary-errors {
    content: " * ";
    color: Red;
}

.field-validation-error {
    display: block;
    color: Red;
    text-align: right;
    padding-right: 30px;
}
/*
 * Pour les champs Nombre
 */
.ui-form-nombre {
    width: 50px;
}
/***************************************************************************
 *						Fin Gestion des formulaires
 **************************************************************************/
/***************************************************************************
 *						Début Gestion des Informations Génériques
 **************************************************************************/
div.ui-div-IGInfo {
    position: relative;
    display: inline-block;
    margin-bottom: 5px;
    vertical-align: top;
    text-align: left;
}

    div.ui-div-IGInfo div.ui-div-IGChampSaisie {
        display: inline-block;
        height: 100%;
        position: relative;
    }

        div.ui-div-IGInfo div.ui-div-IGChampSaisie div.ui-div-IGLabel {
            padding: 0px 10px 0px 0px;
            display: inline-block;
            height: 100%;
            text-align: left;
        }

        div.ui-div-IGInfo div.ui-div-IGChampSaisie div.ui-div-IGValeur {
            display: inline-block;
            height: 100%;
            padding-right: 10px;
        }

            div.ui-div-IGInfo div.ui-div-IGChampSaisie div.ui-div-IGValeur select {
                width: 90%;
                height: 20px;
            }

            div.ui-div-IGInfo div.ui-div-IGChampSaisie div.ui-div-IGValeur input[type=text] {
                width: 100px;
                height: 20px;
            }

    div.ui-div-IGInfo div.ui-div-IGCommentaire {
        display: inline-block;
        height: 100%;
        position: relative;
        text-align: left;
    }

        div.ui-div-IGInfo div.ui-div-IGCommentaire div.ui-div-IGLabelComment {
            padding: 0px 10px 0px 0px;
            display: inline-block;
            height: 100%;
        }

        div.ui-div-IGInfo div.ui-div-IGCommentaire div.ui-div-IGValeurComment {
            display: inline-block;
            height: 100%;
        }

    div.ui-div-IGInfo div.ui-div-IGBoutons {
        position: absolute;
        display: none;
        margin-left: 35px;
        cursor: pointer;
        bottom: -16px;
    }

    div.ui-div-IGInfo div.ui-div-IGSurvole {
        position: absolute;
        display: none;
        bottom: -16px;
        left: 0px;
        cursor: pointer;
        z-index: 30;
        clear: both;
    }

.ui-pIG-multiligne {
    width: 90%;
}

div .ui-tabIG-col-defaut {
    width: 100%;
}

div .ui-tabIG-col-gauche {
    float: left;
    width: 30%;
}

div .ui-tabIG-col-droite {
    margin-left: 30%;
    width: 70%;
}
/***************************************************************************
 *						Fin Gestion des Informations Génériques
 **************************************************************************/
/*!
 * StyleSheet for JQuery Spliter Plugin
 * Copyright (C) 2010 Jakub Jankiewicz <http://jcubic.pl>
 *
 * Same license as plugin
 */
.spliter_panel {
    position: relative;
}
.spliter_panel .vspliter {
    background-color: gray;
    cursor: col-resize;
    z-index: 900;
    width: 4px;
}
.spliter_panel .hspliter {
    background-color: #5F5F5F;
    cursor: row-resize;
    z-index: 800;
    height: 4px;
}
.spliter_panel .vspliter, .spliter_panel .left_panel, .spliter_panel .right_panel,
.spliter_panel .hspliter, .spliter_panel .top_panel, .spliter_panel .bottom_panel {
    position: absolute;
    overflow: auto;
}
.spliter_panel .vspliter, .spliter_panel .left_panel, .spliter_panel .right_panel {
    height: 100%;
}
.spliter_panel .hspliter, .spliter_panel .top_panel, .spliter_panel .bottom_panel {
    width: 100%;
}
.spliter_panel .top_panel, .spliter_panel .left_panel, .spliter_panel .vspliter {
    top: 0;
}
.spliter_panel .top_panel, .spliter_panel .bottom_panel, .spliter_panel .left_panel, .spliter_panel .hspliter {
    left: 0;
}
.spliter_panel .bottom_panel {
    bottom: 0;
}
.spliter_panel .right_panel {
    right: 0;
}
/*********************************************************************************************
Debut de la gestion de conteneurs
	(zones de contenus)
*********************************************************************************************/
.ui-content-box {
    border: solid 1px #CDCDCD;
    margin: 2px 2px 10px 2px;
    padding-bottom: 45px;
    overflow-y:auto;
}
.ui-content-box div {
    padding: 0 5px 0 5px;
    margin-top: 0;
}
.ui-content-box h3 {
    border-bottom: solid 1px #CDCDCD;
    border-bottom: none;
    background-color: #E6EEEE;
    margin: 0;
    padding: 5px;
    font-size: 12px;
}
.ui-content {
    margin: 5px 3px 3px 3px;
    font-size: 12px;
}
/*********************************************************************************************
Fin de la gestion de conteneurs
*********************************************************************************************/
/*********************************************************************************************
Debut des helpers de positionnement
*********************************************************************************************/
.ui-helper-center {
    text-align: center;
}
.ui-helper-left {
    float: left;
}
.ui-helper-right {
    float: right;
}
fieldset {
    text-align: left;
    margin: 0;
    margin-bottom: 5px;
    padding: 5px;
    border: 1px solid rgb(204, 224, 242);
}
fieldset legend 
{
    margin-bottom: -5px;
	color: #197BB7;
	font-weight: lighter;
}
/*********************************************************************************************
Fin des helpers de positionnement
*********************************************************************************************/

/*********************************************************************************************
Debut de la gestion des checkbox list
*********************************************************************************************/
.ui-checkbox-list {
    display: block;
}
.ui-checkbox-list {
    position: relative;
    overflow: auto;
}
.ui-checkbox-list div {
    /* width:est fixée par le javascript pour les éléments de class .ui-checkbox-list;*/
    padding-left: 5px;
    padding-right: 5px;
    white-space: nowrap;
    cursor: pointer;
}
.ui-checkbox-list label {
    padding-left: 5px;
    font-size: 12px;
    cursor: pointer;
}
.ui-checkbox-list input {
    cursor: pointer;
}
/*********************************************************************************************
Fin de la gestion des checkbox list
*********************************************************************************************/
/*********************************************************************************************
Debut de la gestion de la divErreurAcces
*********************************************************************************************/
.ui-div-erreurAcces {
    position: absolute;
    z-index: 999;
    text-align: center;
    top: 50%;
    left: 200px;
    right: 200px;
    border: solid 1px red;
    padding: 10px;
    background-color: #FEADAD;
    box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.35);
}

.ui-span-erreurAcces {
    color: Red;
    font-size: medium;
    font-weight: bold;
}
/*********************************************************************************************
Fin de la gestion de la divErreurAcces
*********************************************************************************************/
.ui-menu-item-margin {
    margin-left: 30px;
}

.hide {
    display: none;
}

/* ListePatient.aspx */
.Body.class-liste-patients {
    top: 0;
}
/* Suivis.aspx */
/***********
    Début de la gestion des éléments qui apparaissent au survol
    Cela permet d'avoir une grande zone de détection de survol de souris (.visible-only-hover-detect)
    Pour afficher certains éléments plus petits, situés dans cette zone (.visible-onlyhober-element)
*/
.visible-onlyhover-detect {
    min-width: 40px;
    min-height: 51px;
}

.visible-onlyhover-element {
    cursor: pointer;
}
.visible-onlyhover-detect .visible-onlyhover-element {
    display: inline;
    visibility: hidden;
}
.visible-onlyhover-detect:hover .visible-onlyhover-element {
    display: inline;
    visibility: initial;
}
.divZoneOptions-parent {
    height: 250px;
    border: solid 1px DarkGray;
    position: absolute;
    left: 0;
    top: 15px;
    overflow-y: scroll;
    background-color: whitesmoke;
    z-index:100;
}
.divZoneOptions {
    padding: 2px 2px 2px 2px;
    margin: 5px;
    border: 1px solid #0073ea;
}
.divZoneOptions h1 {
    color: #0073ea;
    font-size: 13px;
}
/***********
    Fin de la gestion des éléments qui apparaissent au survol
*/
/*****
    Design de petits tableaux 
*/
table.smalltbl {
    border-collapse: collapse;
    width: 100%;
    max-width: 700px;
    min-width: 200px;
    font-size: 12px;
}
table.smalltbl, table.smalltbl th, table.smalltbl td {
    border: 1px solid gray;
}
table.smalltbl th, table.smalltbl td {
    height: 20px;
    padding: 2px;
    vertical-align: middle;
}
table.smalltbl thead tr th, table.smalltbl thead tr td {
    font-size: 12px;
    font-weight: bold;
}

.ui-dialog-buttonset {
    padding: 5px;
    height: 35px;
}
/*****
    Fin Design de petits tableaux 
*/
.message-resolution {
    position:fixed;
    z-index:99999;
    width:98%;
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 12px;
    height: 60px;
    text-align: center;
}
/* Responsive */


@media (min-height: 850px) {
    /* Si l'on est dans une résolution supérieur à 850pixels de hauteurs, l'espace est suffisant pour afficher 20 résultats */
    /* height = 400 x 2 + 23 + 4 = 827 (+ 13 pixels de marges) */
    .dropdown-menu, ul.ui-autocomplete {
        /* Chaque ligne fait 20px de hauteur -> cqfd : l'auto-complete affichera 402 / 20 -> 20 résultats maximum : après, il proposera un scroll */
        /*max-height: 402px; cette restriction de hauteur pose souci sur les listes déroulantes PBoostrapDropDownList*/
    }
}
@media (max-width: 900px) {
    #side.col-xs-2 {
        width: 150px;
    }
    #content.col-xs-10 {
        width: 100%;
        padding-left: 150px;
    }
}

@media (min-width: 992px) {
    .MenuGauche li {
        font-size: 14px;
    }
    #side {
        font-size: 14px;
    }
}

.zone-ajax {
    position: relative;
}
.zone-ajax:before {
    display: none;
}
/* Classe pour indiquer qu'une zone est en cours de chargement */
.loading-zone {
    position: relative;
    background-color: #f0f0f0; /* Couleur de fond légère pour l'effet de chargement */
    opacity: 0.7; /* Opacité de base */
    animation: pulse 1.5s infinite ease-in-out;
}

/* Animation de pulsation */
@keyframes pulse {
    0% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.5; /* Légère augmentation de l'opacité */
    }

    100% {
        opacity: 0.3;
    }
}

.zone-ajax.chargement {
    /*border: dashed 1px rgb(208, 108, 140);
    background-color: rgb(249, 247, 247);
    height: 100px;*/
}
/*.zone-ajax.chargement:before {
    content: "";
    background-color: rgba(255, 255, 255, .8);
    z-index: 100;
    position: absolute;
    display: block;
    top: 0;
    height: 100%;
    width: 100%;
}
.zone-ajax.chargement:after {
    font-size: 12px;
    display: block;
    color: #333;
    content: attr(data-content);
    position: absolute;
    top: 35px;
    left: 20%;
    right: 20%;
    background-image: url(../../Images/chargement.gif);
    background-color: rgb(249, 247, 247);
    background-position: 50% 20px;
    background-repeat: no-repeat;
    margin-top: -25px;
    text-align: center;
    height: 45px;
    padding: 5px;
    z-index: 100;
    border: dashed 1px rgb(208, 108, 140);
    border-radius: 5px;
}*/
#panel-validation-page.fixed{
    /*On rend transparent l'élément lorsque l'on suppose que le scrolling peut faire apparaitre des éléments sous-jacents
    Cf : l'usage dans /Js/Sticky.js utilisé pour faire un menu "collant"
    */
    opacity: 1;
    z-index: 100 !important;/* Ne pas dépasser 100 car le waiting panel global est à 101 !*/
}


.navbar-condensed {
    min-height:28px;
    margin-bottom:0;
}
.navbar-condensed > li > a {
    padding-top:4px;
    padding-bottom:4px;
}
.navbar-condensed .navbar-header {
    padding-top:7px;
    padding-right:4px;    
}

/* zone de multiselection */
    .select2-results {
        font-size:11px;
    }
    .select2-results__option[aria-selected=true] {
        display:none;
    }
/* fin de la zone de multiselection */

/* bandeau rouge d'information en pied de page */
footer.bandeauInformation {
    height: 25px;
    padding-left: 20%;
    background-color: orangered;
    color: white;
    position: fixed;
    bottom: 0;
    right: 0;
    width:100%
}
/* fin du bandeau rouge d'information en pied de page*/



/*  --- Surcharge CSS (soft) ---   */

/*Bouton*/

.btn-white {
    background-color: white;
}

/*fin Bouton*/


/*style global*/
.logi-bordered {
    border: 1px solid #ccc;
    /*width: 100%;*/
    /*margin-top: 5px;
    margin-bottom: 5px;*/
}

.logi-bordered-bottom {
    border-bottom: 1px solid #ccc;
    width:100%;
}

.logi-padding-5 {
    padding:5px !important;
}

.logi-element {
    padding:3px;
    margin:2px;
}

.logi-bordered-top {
    border-top: 1px solid #ccc;
    width: 100%;
}

.logi-padding-top-5 {
    padding-top: 5px;
}

.badge-warning {
    color: white;
    background-color: orange;
}
.badge-danger {
    color: white;
    background-color: red;
}

.no-padding {
    padding: 0px!important;
}

.padding-left-10 {
    padding-left: 10px;
}


.margin-right-5 {
    margin-right: 5px;
}

.bcg-white {
    background-color: white;
}

div.logi-content
{
    margin:10px 5px 10px 5px;
}



.logi-content > label{
        color: #5d5d5d;
        line-height: 1.2em;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        font-size: 14px;
        margin-bottom:15px;
}
div.logi-line-padding
{
    padding:2px;
}

.highlight {
    padding: 2px 5px 2px 5px;
    background-color: #f7f7f9;
    border: 1px solid #e1e1e8;
    border-radius: 4px;
    font-size: 0.99em;
    display: inline-block;
}

.highlight-previ {
    background-color: #d9edf7;
}
tr.highlight-previ td {
    border-color: #fff !important;
}

.label {
    font-size: 0.96em;
    font-weight: inherit;
}

.text-warning {
    color: #f7a414;
}


.bg-primary-light {
    background-color: #84AED3;
    color: white;
}

/* Ajout de nouvelles couleurs de bouton */
/*.btn-purple {
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
}

.btn-purple {
    background-image: -webkit-linear-gradient(top, #428bca 0%, #2d6ca2 100%);
    background-image: -o-linear-gradient(top, #428bca 0%, #2d6ca2 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#428bca), to(#2d6ca2));
    background-image: linear-gradient(to bottom, #428bca 0%, #2d6ca2 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff2d6ca2', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
    background-repeat: repeat-x;
    border-color: #2b669a;
}

.btn-purple:hover,
.btn-purple:focus {
    background-color: #2d6ca2;
    background-position: 0 -15px;
}

.btn-purple:active,
.btn-purple.active {
    background-color: #2d6ca2;
    border-color: #2b669a;
}

.btn-purple:disabled,
.btn-purple[disabled] {
    background-color: #2d6ca2;
    background-image: none;
}*/

.label-purple {
    background-color: #9575cd;
    color: white;
}
.btn.label-purple:hover,.btn.label-purple:focus { background-color: #8a6cbf; color: white !important; }

.label-purple[href]:hover,
.label-purple[href]:focus {
    background-color: #673ab7;
}

.glyphicon-education:before {
    content: "\e233";
}


/*fin style global*/

/*panneau toggle*/

.tree-toggle {
    min-height: 39px;
    cursor: pointer;
}


ul.nav-menu-list-style .nav-header .menu-collapsible-icon {
    position: absolute;
    right: 3px;
    top: 8px!important;
    font-size: 9px;
}

div.nav-footer {
    margin: 0px;
    min-height: 15px;
    padding:5px;
}

div.nav-body {
    padding: 5px;
}


ul.nav-menu-list-style {
    margin: 0;
}

ul.nav-menu-list-style .nav-header {
        border-top: 1px solid #FFFFFF;
        border-bottom: 1px solid #e8e8e8;
        display: block;
        margin: 0;
        line-height: 42px;
        padding: 0px 8px 0px 8px;
        font-weight: 600;
}

        ul.nav-menu-list-style .nav-header .padding-left-15 {
            padding: 0px 8px 0px 15px;
        }

    ul.nav-menu-list-style > li {
        position: relative;
    }

        ul.nav-menu-list-style > li > a {
            /*border-top: 1px solid #FFFFFF;
            border-bottom: 1px solid #e8e8e8;*/
            padding: 0 10px;
        }

        ul.nav-menu-list-style > li:first-child a {
        }
ul.tree
{
    padding: 10px 0px 0px 0px;
    background-color: #fff;
}

ul.nav-menu-list-style {
    list-style: none;
    padding: 0px;
    margin: 0px 0px 10px 0px;
}


/*
    Les class .couleur-solution & .couleur-solution-light  sont définies dans VariablesCommunes.cs

    Le style est ensuite chargé depuis la vue _AfficheLesZoneslogiciellesPartial.cshtml


*/

.logi-nav-bordered-light {
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
}

.btn-success-light {
    background-color: #81c784;
    color: white;
}

/*fin panneau toggle*/

/* LAYOUT ATTENTE */
#divMasterContenu { position:relative; }
#layout-attente-princ { position: fixed; top: 0; left: 0; width: 100%; height: 100%;display:none;z-index: 9999;  }
#layout-attente-princ .div-bg-attente { position: absolute; top: 0; left: 0; width: 100%; height: 100%;opacity:0.2;z-index:10;background-color: black;}
#layout-attente-princ div.alert { text-align: center; position: absolute; z-index: 20; left: 10%; right: 10%; }


/* Surcharge des zones de multi-sélections*/

ul.select2-selection__rendered {
    display: block !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin: 2px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding: 0 3px;
}

.select2-container--default .select2-selection--multiple {
    border-radius: 0px;
}

.select2-container .select2-selection--multiple {
    min-height: inherit;
}

input.select2-search__field {
    height: 21px;
    line-height: 10px;
}

.select2-container .select2-search--inline .select2-search__field {
    margin-top: 0px;
}

.select2-selection__rendered {
    line-height: 1.3;
}

.select2-container--default .select2-selection--multiple {
    min-width: 80px;
}
select2 select2-container select2-container--default select2-container--below{
    width:100%;
}


/* CSS des helpers PDangerCheckBoxButtonFor */

label.checkbox-button-danger {
    padding: 0px;
}


label.checkbox-button-danger input[type="checkbox"] + input[type="hidden"] + i.span-btn-checkbox {
    font-size: 12px;
    height: 100%;
    width: 25px;
    line-height: 21px;
    background-color: #ccc;
    border-color: #adadad;
}

label.checkbox-button-danger input[type="checkbox"]:checked + input[type="hidden"] + i.span-btn-checkbox {
    background-color: #c9302c;
    border-color: #ac2925;
    color: #fff;
}

/* CSS des helpers PDangerCheckBoxButtonFor */

.checkbox-button-danger .glyphicon {
    top: 0; /*OP#1965*/
}

label.checkbox-button-success {
    padding: 0px;
}


label.checkbox-button-success input[type="checkbox"] + input[type="hidden"] + i.span-btn-checkbox {
    font-size: 12px;
    height: 100%;
    width: 25px;
    line-height: 21px;
    background-color: #ccc;
    border-color: #adadad;
}

label.checkbox-button-success input[type="checkbox"]:checked + input[type="hidden"] + i.span-btn-checkbox {
    background-color: #5cb85c;
    border-color: #4cae4c;
    color: #fff;
}

.btn-danger-disabled {
    background-color: #d9534f;
    border-color: #d43f3a;
    box-shadow: none;
    opacity: .65;
    color: #fff;
}

/* LOADER */
.lds-ripple {
    display: inline-block;
    position: relative;
    width: 96px;
    height: 96px;
    background:transparent!important;
}

.loader-ripple {
    display: inline-block;
    line-height: 24px;
    color: #777;
    font-size: 12px;
    font-family: sans-serif;
    text-transform: uppercase;
    background: transparent !important;
}

.lds-ripple div {
    position: absolute;
    border: 3px solid;
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 2s cubic-bezier(0, 0.2, 0.8, 1) infinite, plat-rainbow 2s linear infinite;
}

    .lds-ripple div:nth-child(2) {
        animation-delay: -0.5s;
    }

@keyframes lds-ripple {
    0% {
        top: 44px;
        left: 44px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: -1px;
        left: -1px;
        width: 90px;
        height: 90px;
        opacity: 0;
    }
}

.loader-ellipsis {
    display: inline-block;
    line-height: 24px;
    color: #777;
    font-size: 12px;
    font-family: sans-serif;
    text-transform: uppercase;
    background: transparent !important;
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 40px;
}

.lds-ellipsis div {
    position: absolute;
    top: 27px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: transparent;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 6px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 6px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 26px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 45px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(19px, 0);
    }
}


#global-loader {
    position: fixed;
    text-align: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    line-height: 100vh;
    background: rgba(255,255,255,0.9);
    z-index:9999;
    /*display:none;*/
}

/*.modal-open #global-loader{
    position:absolute;
    line-height:initial;
}*/

/*.btn.btn-disabled::before{
    content:"";
    display:block;
    position:absolute;
    top:-1px;
    right:-1px;
    left:-1px;
    bottom:-1px;
    background:transparent;
    pointer-events:none;
}*/
.btn.btn-disabled{
    position:relative;
    opacity:0.7;
    cursor:not-allowed;
    pointer-events:none;
}

/* -------- NEW PROGRESSIVE UX STYLES by Théo ----------- */
.main-title-page {
    border-radius: 3px;
    font-size: 18px;
    padding: 0.2em 0.8em;
    color: #777;
    border-left: solid 4px;
    border-bottom:0;
    margin-bottom:1em;
}

/* -------- Classes utiles by Théo ------------*/

/* Permet de retirer les marges des checkbox générées par les Helpers */
.checkbox-child-no-margin .checkbox {
    margin: 0 auto;
}

.inline-radio-child .radio {
    /*padding: 0;
    margin: 0;*/
    display: inline-block !important;
}

.input-group-child-no-padding .input-group {
    padding: 0;
}

/* Reprend le style d'une textbox mais n'en est pas une (pour bloquer une saisie par exemple) */
.fake-textbox {
    background: #fff;
    display: inline-block;
    padding: 2px 5px;
    height: 23px;
    min-width: 50px;
    border: solid 1px #aaa;
    border-left: 0;
    vertical-align: top;
    cursor: not-allowed;
}

/* Permet de forcer la taille du label des mutliselect en Auto  */
.label-multi-select-child-auto-width .label-multi-select{
    width:1%!important;
    max-width:unset!important;
}

.input-group.is-moving .input-group-btn{
    display:none;
}

.input-group-addon.isHovered {
    background: #ffd54f;
}

/* EVALUATIONS */

.rubrique-formulaire-evaluation .radio label{
    border: 0!important;
}

/* */

.hasScrollableContent {
    position: relative;
}
.hasScrollableContent::after{
    content:"";
    position:absolute;
    bottom: 0;
    width:100%;
    height:10px;
    background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

/* TG : Refonte design thèmes stat 04/11/2019 */
#ctl00_ContentPlaceHolder1_RBLRubriqueStat .btn-primary{
    border-radius:0;
    box-shadow: none;
    margin:0 4px 4px 0;
}
#ctl00_ContentPlaceHolder1_RBLRubriqueStat .btn-primary.active{
    background: #fff;
    color: #0288d1;
}

/* Adresse */

/*
    Indicateur visuel permettant d'indiquer qu'une rue est codifiée
*/
.AdresseForm-Rue.Rue {
    width: auto;
}.AdresseForm-Rue.Rue .Rue-codified {
    display: inline-block;
    margin-left: -5px;
}
.AdresseForm-Rue.Rue input[type=text]{
    text-transform: uppercase;
}
.input-group-btn.Rue-codified{
    width:auto;
}

/* Quick patch Dossier sans suivis réccent */
.accesDossier:hover{
    cursor: pointer;
    opacity: 0.75;
}

/* EntretienView */
.EntretienView.dossierArchived{
    cursor: not-allowed;
}
.EntretienView.dossierArchived .nav-body{
    pointer-events: none;
    opacity:0.7;
}