#division-generale .contenu-fixe {
    display: flex;
}
#division-generale .contenu-fixe div#colgauche,
#division-generale .contenu-fixe div#coldroite {
    margin :0;
    float: none;
    max-width: unset;
}
#division-generale .contenu-fixe div#colgauche {
/**  limiter largeur de la colonne au largeur 
*    du premier item du menu principale
**/
    margin-right: 6px;
    max-width: 245px;
    min-width: 210px;
}
/*
#division-generale .contenu-fixe div#coldroite  h2 {
    font-size: 1.4em;
}
*/
.contenu-principale .breadcrumb {
    background-color: transparent;
    padding: .5em 0 0;
}

.col-gauche-titre {
    background-color: #33cc33;
    color: #ffffff;
    margin: 0;
    font-size: 1.2em;
    font-weight: bold;
    padding: 0.2em 0.4em;
}

.contenu-principale .table tr > td:last-of-type {
    white-space: nowrap;
}
/*---- Boutons développer/réduire -------*/
.btn-section{
display: flex;
      justify-content: space-between;
    align-items: center;
    text-align: left;
    background: #f2f1f1;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: none;
    outline: none;
    width: 100%;
}

.btn-section .btn-plus  {
    font-size: 20px;
    font-weight: bolder;
    color: #095797;
    padding-right: 45px;
}
  

/*---- switch développer/réduire -------*/
.afficher-contenu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 10px;
}
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin-left: 20px;
    user-select: none;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #c5cad2;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}
/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }


.developper_reduire {
    margin: 15px 0px;
    text-align: right;
}

.bouton_dev-reduire {
    padding: 6px;
    border-right: 2px solid #CCC;
    border-bottom: 2px solid #CCC;
    border-radius: 5px;
}

/*---- Fin Boutons développer/réduire -------*/

@media only screen and (max-width: 550px) {
    #division-generale .contenu-fixe {
        flex-direction: column;
        padding: 0;
    }
    #division-generale .contenu-fixe div#colgauche {
        max-width: 100%;
        margin :0;
    }
    .contenu-principale .table td, .contenu-principale .table th {
        padding: .3rem;
    }

}

