@import "variable.css";

html, body {
    padding: 0px;
    margin: 0px;
    background-color:var(--app-background-color) !important;
    overflow: hidden;
}

/**
Icone font awesome réécrit
*/
/*
.fa-align-justify {
    content:url('../images/icone/open-close-sidebar.svg');
    vertical-align: middle;
    width:25px;
}
*/
.evode-icon-tdb {
    margin-top: 4px;
}
.evode-icon-tdb i {
    width:45px;
}

.fa-evode-tache {
    content:url('../images/icone/tache.svg');
    vertical-align: middle;
    width:25px;
}
.fa-evode-processus {
    content:url('../images/icone/processus.svg');
    vertical-align: middle;
    width:25px;
}
.fa-exclamation-circle {
    content:url('../images/icone/risque.svg');
    vertical-align: middle;
    width:25px;
}
.fa-folder-o {
    content:url('../images/icone/projet.svg');
    vertical-align: middle;
    width:25px;
}
.fa-users {
    content:url('../images/icone/rh.svg');
    vertical-align: middle;
    width:25px;
}
.fa-evode-formation {
    content:url('../images/icone/formation.svg');
    vertical-align: middle;
    width:25px;
}
.fa-address-book {
    content:url('../images/icone/contact.svg');
    vertical-align: middle;
    width:25px;
}
.fa-file-text-o {
    content:url('../images/icone/document.svg');
    vertical-align: middle;
    width:25px;
}
.fa-file-code-o {
    content:url('../images/icone/formulaire.svg');
    vertical-align: middle;
    width:25px;
}
.fa-exclamation-triangle {
    content:url('../images/icone/non-conformite.svg');
    vertical-align: middle;
    width:25px;
}
.fa-building-o {
    content:url('../images/icone/materiel.svg');
    vertical-align: middle;
    width:25px;
}
.fa-book {
    content:url('../images/icone/stock.svg');
    vertical-align: middle;
    width:25px;
}
.fa-barcode {
    content:url('../images/icone/article.svg');
    vertical-align: middle;
    width:25px;
}
.fa-event{
    content:url('../images/icone/evenement.svg');
    vertical-align: middle;
    width:25px;
}
.fa-params {
    content:url('../images/icone/param.svg');
    vertical-align: middle;
    width:25px;
}
.glyphicon-flash {
    /*    border:1px solid var(--border-color-icone);
        border-radius:4px;
        padding:5px 4px 3px 4px;*/
    content:url('../images/icone/action_amelioration.svg');
    vertical-align: middle;
    width:25px;
}
.highlight:hover {
    color:blue !important;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}
/**
CSS SCROLLBAR
*/

::-webkit-scrollbar {
    width: 10px;
    height:10px;
}
::-webkit-scrollbar-track {
    background-color: var(--scrollbar-color);
    border-left: 1px solid #ccc;
}
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: var(--menu-activ-background-color);
}
::-webkit-scrollbar-thumb:hover {
    background-color: var(--reversed-primary-text-color);

}

/**
panel-alerte tableau de bord
*/

.panel-alerte {
    border-radius: 10px;
    background-color: var(--alerte-color);
    color:var(--reversed-primary-text-color);
    position:relative;
    /*height: 100%;*/
    -webkit-box-shadow: 5px 5px 5px 0px rgba(77,77,77,0.72);
    -moz-box-shadow: 5px 5px 5px 0px rgba(77,77,77,0.72);
    box-shadow: 5px 5px 5px 0px rgba(77,77,77,0.72);
}
.panel-alerte-title {
    display:flex;
    flex-direction: row;
    align-items: center;
    padding: 5px 10px 5px 10px;
    position: relative;
    font-weight: bolder;
}

.panel-alerte-body {
    max-height:100px;
    text-overflow: clip;
    overflow-y: auto;
    border-radius: 0 0 10px 10px;
}

.panel-alerte-row {
    text-overflow: clip;
    margin-left: 5px;;
    padding: 5px 10px 5px 0px;
    border-bottom: 1px solid var(--reversed-primary-text-color);
    font-size: .8rem;
    
}

.auth {
    background-image:url('../images/background-auth.svg') ;
    background-attachment: fixed;
    background-position: bottom;
    height: 100vh !important;
    width:100%;
    background-repeat:no-repeat;
    background-size: 100%;
}

.header-button {
    color:var(--primary-text-color);
    margin:0px 5px 0px 5px;
}
.header-button i {
    font-size: 2rem;
    color:var(--primary-text-color);
}

.app-flex-container {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height:calc(100vh - 20px);
}

.app-flex-item:nth-child(1) {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    border-bottom:1px solid var(--app-border-color);
    width:100%;
}
.app-flex-item:nth-child(3) {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    width:100%;
    background-color: var(--footer-background-color);
    color:var(--reversed-primary-text-color);
    z-index: 997;
}


.app-footer {
    position: absolute; 
    bottom: 0px;
    z-index: 999999;
    width: 100vw; 
    background-color: var(--footer-background-color);
    color:var(--reversed-primary-text-color);
}

.app-footer *{
    color:var(--reversed-primary-text-color) !important;
    font-weight: bold;
}


@media (max-width: 1023px){
    .app-flex-item:nth-child(1) {
        border:0px;
    }
}

.app-flex-item:nth-child(2) {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 100%;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    width:100%;

    overflow: auto;
    -ms-overflow-y: auto;
}
.app-flex-item:nth-child(3) {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    width:100%;
    z-index: 997;
}

.header-flex-container {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: distribute;
    justify-content: space-between;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: baseline;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

@media (max-width: 1023px){
    #headerDesktop {
        display: none;
    }
}
@media (min-width: 1024px){
    #headerMobile {
        display:none;
    }
}

.header-flex-item {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    padding:10px;
}

.header-flex-item:nth-child(1) {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    padding:10px;
}

.header-flex-item:nth-child(2) {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    padding:10px;
}

.header-flex-item:nth-child(3) {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    padding:10px;
}

.header-flex-item:nth-child(4) {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    padding:10px;
}

.header-flex-item:nth-child(5) {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    padding:10px;
}

.content-flex-container {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}


.content-flex-item:nth-child(1) {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    border-right:1px solid var(--app-border-color);
    width: 250px;
    height: 100%;
    
    position: fixed;
    overflow-y: auto !important;
}
@media (max-width: 1023px) {
    .content-flex-item:nth-child(1) {
        display:none;
    }
}
.content-flex-item:nth-child(2) {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 100%;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;

    margin-left: 250px;
    padding-bottom: 50px;
}
@media (max-width: 1023px) {
    .content-flex-item:nth-child(2) {
        margin-left: 0px;
        padding-bottom: 150px;
    }
}

.footer-flex-container {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;

}

.footer-flex-item:nth-child(1) {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
}

.footer-flex-item:nth-child(2) {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
}
@media (max-width: 1023px) {
    .footer-flex-container {
        display:none;
    }
}
.menu-mobile-flex-container {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--footer-background-color);
    position:fixed;
    bottom:0px;
    width: 100%;
    color:var(--reversed-primary-text-color);
    z-index: 1000;
}
@media (min-width: 1024px) {
    .menu-mobile-flex-container{
        display:none;
    }
}
.menu-mobile-flex-item:nth-child(1) {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    padding: 10px 10px 8px 20px;
}

.menu-mobile-flex-item:nth-child(2) {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    padding: 10px 10px 8px 10px;
}

.menu-mobile-flex-item:nth-child(3) {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    padding: 10px 20px 8px 10px;
}
.menu-mobile-flex-item i {
    font-size: 1.5rem;
}


.menu-mobile-content {
    display: none;
    position:fixed;
    top:0px;
    width:100%;
    height:calc(100vh - 41px);
    background-color: #cccccc;
    opacity: 0.5;
    -webkit-animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    overflow-y: auto;
    z-index: 1000;
}

.menu-mobile-content-flex-container {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.menu-mobile-content-flex-item:nth-child(1) {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
}
/**
Button close
*/


.close-container{
    position: absolute;
    right:20px;
    margin: auto;
    width: 20px;
    height: 20px;
    margin-top: 10px;
    cursor: pointer;
}

.leftright{
    height: 4px;
    width: 20px;
    position: absolute;
    margin-top: 10px;
    background-color: var(--reversed-primary-text-color);
    border-radius: 2px;
    transform: rotate(45deg);
    transition: all .3s ease-in;
}

.rightleft{
    height: 4px;
    width: 20px;
    position: absolute;
    margin-top: 10px;
    background-color: var(--reversed-primary-text-color);
    border-radius: 2px;
    transform: rotate(-45deg);
    transition: all .3s ease-in;
}

.close-container-label{
    margin: 30px 0 0 -10px;
    position: absolute;
}

.close-container:hover .leftright{
    transform: rotate(-45deg);
    background-color: var(--tomatored);
}
.close-container:hover .rightleft{
    transform: rotate(45deg);
    background-color: var(--tomatored);
}
.close-container:hover label{
    opacity: 1;
}


/**
Menu accordion mobile
*/
.mobile-accordion {
    background-color: var(--app-background-color);
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}
.mobile-accordion:nth-child(1) {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.mobile-accordion:last-child {
    background-color: red !important;
    border-bottom-left-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
}

.mobile-accordion-active, .mobile-accordion:hover {
    background-color: var(--menu-activ-background-color);
}

.mobile-accordion-panel {
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.mobile-accordion-panel-link {
    padding:15px 20px 5px 20px;
}

@media (max-width: 1023px) {
    #mainPage {
        margin-left:0px !important;
    }
}
@-webkit-keyframes slide-in-right-mainPage {
    0% {
        margin-left:0px;
    }
    100% {
        margin-left:250px;
    }
}
@keyframes slide-in-right-mainPage {
    0% {
        margin-left:0px;
    }
    100% {
        margin-left:250px;
    }
}
@-webkit-keyframes slide-in-left-mainPage {
    0% {
        margin-left:250px;
    }
    100% {
        margin-left:0px;
    }
}
@keyframes slide-in-left-mainPage {
    0% {
        margin-left:250px;
    }
    100% {
        margin-left:0px;
    }
}
#wrapper {
    display:flex;
    flex-flow: row nowrap;
    flex-grow: 1;
    justify-content: flex-start;
    align-items: flex-start;

    padding: 0px;
    margin: 0px;
    min-width: 100%;
    min-height: 100%;
    height: 100%;
    overflow: hidden;
    background-color:transparent;
}

/* Default, hidden. Add toggled to show*/
#sidebar-wrapper {
    order: 1;
    flex-shrink: 0;
    flex-grow: 1;
    background-color: transparent;
    padding: 0px;
    margin: 0px;
    width:100%;
    max-width: 275px;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;

    overflow-y: auto;
    overflow-x: hidden;
    min-height: 100%;
    height: 100%;
    padding-bottom: 20px;
}

#sidebar-wrapper.toggled {
    overflow: hidden;
    width: 0px;
    flex-grow: 0;
    visibility: hidden;
}

#sidebar-content {
    min-width: 275px;
    font-size:1.143rem; /* 16px */
}

#page-content-wrapper {
    order:2;
    flex-grow: 1;
    background-color:transparent;
    padding: 0px;
    margin: 0px;
    min-width: 320px;
    max-width: calc(100% - 275px);

    overflow-y: auto;
    overflow-x: hidden;
    min-height: 100%;
    height: 100%;

    padding-bottom: 20px;
    overflow: auto;

}

.full-width {
    width:100%;
    max-width: 100% !important;
}


#bar-content-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding:0;
    margin:0;
    align-items: center;

}

#bar-content-wrapper div {
    /*border: 1px solid red;*/
}

#bar-content-left {
    display: flex;
    flex: 0 0 auto;
    justify-content: flex-start;
    align-items: center;
    padding-right:4px;
    min-width: 400px;
}

#bar-content-middle {
    display:none;
    flex: 0 0 auto;
    justify-content: space-between;
    align-items: center;
    padding-right:4px;
    padding-left:4px;
}

#bar-content-middle div+div {
    margin-left: 10px;
}

#bar-content-right {
    display: block;
}

#bar-content-right {
    display: flex; justify-content: flex-end; align-items: center; flex: 0 1 auto;
}

#menu-toggle {
    margin-left: 4px;
    margin-right: 4px;
    width: 45px;
    font-size: 26px;
    text-align: center;
    vertical-align: middle;
}

#main {
    padding-top:0px;
    min-height:300px;
}


#logo_container {
    padding-bottom:3px;
    padding-top:4px;
    margin: 0 8px 0 8px;
    padding-right:25px;
    /*max-height: 80px;*/
    width:100%;
    overflow: hidden;
}

.spin-slow {
    -webkit-animation: fa-spin 6s infinite linear;
    animation: fa-spin 6s infinite linear;
}

.spin-fast {
    -webkit-animation: fa-spin 0.75s infinite linear;
    animation: fa-spin 0.75s infinite linear;
}

input{
    font-size:12px;
}

p, h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    padding: 0 0 5px 0;
}
h2 {
    font-size: 18px;
    /*text-transform: uppercase;*/
    padding: 0 0 5px 0;
    font-weight: 100;
    margin: 0;
}
input[objet_input=code_postal]{
    width:150px;
}
label{
    color:#414C59;
    font-weight:bold;
}

label.label_radio{
    font-weight:normal;
    cursor:pointer;
    margin-right:2rem;
}

input, select, textarea{
    color:#414C59;
}

.input_values{
    border:solid 1px #aaaaaa;
    border-radius:5px;
    background-color:#f4f4f4;
    padding:5px;
    /*margin-right:5px;
    display:inline-block;*/
}

.input_moyen {
    width:350px !important;
}
.input_petit {
    width:150px !important;
}
.telephone {
    width:350px !important;
}
.email {
    width:350px !important;
}
.web {
    max-width:350px !important;
}
.date {
    max-width:150px !important;
}
/*
.btn-default {
        padding-top:2px !important;
        padding-bottom:2px !important;
        padding-left:5px !important;
        padding-right:5px !important;
}
*/

.btn-circle {
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 6px 0;
    font-size: 12px;
    line-height: 1.428571429;
    border-radius: 15px;
}
.btn-circle.btn-lg {
    width: 50px;
    height: 50px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 25px;
}
.btn-circle.btn-xl {
    width: 70px;
    height: 70px;
    padding: 10px 16px;
    font-size: 24px;
    line-height: 1.33;
    border-radius: 35px;
}

.btn-xs-gv {
    min-width: 25px;
}

.fileUpload {
    position: relative;
    overflow: hidden;
}
.fileUpload input.upload {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
}

input[type="file"].gv-input-file {
    opacity:0;
    top: 0;
    width: 0;
    height: 0;
    padding: 0;
}


.bar {
    height: 18px;
    background: green;
}

.favori-on {
    color: yellow;
    font-weight: bold;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

/*****************************************************************************************************************/

.form-control, .input{
    font-size: 13px;
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    color: #2b2f33;
    border: 1px solid #dfe8f1;
    -webkit-box-shadow: inset 1px 1px 3px #f6f6f6;
    -moz-box-shadow: inset 1px 1px 3px #f6f6f6;
    box-shadow: inset 1px 1px 3px #f6f6f6;
}

.panel {
    border-width: var(--panel-border-width);
    border-style: solid;
    border-radius: 4px;
    background-color: #fff;
    /*box-shadow: 1px 1px 1px rgba(0,0,0,.05);*/
    /*color:#414C59;*/
    /*box-shadow: 0px 0px 8px #7E848D;*/
    border-color: var(--panel-border-color);

    margin-bottom: 20px;
    /*box-shadow: 1px 1px 5px 0 #7c7c7c;*/
    padding: 0;

}

/* full height or nearly*/
.panel.fill {
    height: calc(100% - 15px);
    min-height: calc(100% - 15px);
    /*margin-bottom: 15px;*/
}

.row.flex {
    display:flex;
    flex-flow: row wrap;
    margin-bottom: 5px;
}

.step-container {
    margin-top:1em;
    padding: 0 10px 0 10px;
}

/*****************************************************************************************************************/

/*
/* Navbar */
.navbar_top {
    height: 45px; /*Radouane*/
    width:100%;
    background-color: white;
    position:fixed;
    z-index:1000;
    padding-top:0px;
    padding-left:0px;
    padding-bottom:0px;
    padding-right:0px;
    padding:0px;
}
#navbar_left {
    /*background-color:#000;*/
    z-index:1000;
    padding:0px;
    height:45px; /*Radouane*/
}
#navbar_right {
    /*background-color:#fff;*/
    z-index:1000;
    padding-top:0px;
    padding-left:0px;
    padding-bottom:0px;
    padding-right:0px;
    height:45px; /*Radouane*/
    border-bottom:1px solid #CCC !important;

}
.btn-group .bootstrap-select .show-tick .input-group-btn .form-control {
    height: 18pt;
}
#bloc_bouton {
    /*margin-top:-16pt;*/
    padding-top:5px;
    padding-bottom:5px;
}
@media print {
    #bloc_bouton {
        display: none !important;
    }
    #sidebar-wrapper {
        width:0px;
        display: none !important;
    }
    #wrapper{
        margin-left:0px;
    }
}
.sautdepageavant {
    page-break-before: always;
}

.pasdesautdepage {
    page-break-inside:avoid;
}
.date {
    width:200px !important;
}
.close {
    margin-bottom:0px !important;
    margin-top:0px !important;
}
.label_text{
    color:#2F83CC;
    font-size:9pt;
}
.box {
    border-color:#2F83CC !important;
}

.box-header {
    background-color:#F5F5F5 !important;
    border-color:#2F83CC !important;
}
.spyme {background-color:#FFFFCC;}

#main {
    margin-top:12px;
    padding-left:10px;
    padding-top:0px;
    padding-right:10px;
    padding-bottom:0px;
    min-height:300px;
}
.close {
    float: right;
    font-size: 27px;
    font-weight: bold;
    line-height: 1;
    color: #EF4135;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=100);
    opacity: 1;
    margin-right:5px;
    margin-top:5px;

}

/* Mise en forme OTP */
:where([autocomplete=one-time-code]) {
    --otp-digits: 6;
    --otp-ls: 2ch;
    --otp-gap: 1.25;

    /* private consts */
    --_otp-bgsz: calc(var(--otp-ls) + 1ch);
    --_otp-digit: 0;
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    color: #2b2f33;
    border: 1px solid #dfe8f1;
    -webkit-box-shadow: inset 1px 1px 3px #f6f6f6;
    -moz-box-shadow: inset 1px 1px 3px #f6f6f6;
    box-shadow: inset 1px 1px 3px #f6f6f6;
    all: unset;
    background:
            linear-gradient(90deg,
            var(--otp-bg, #666666) calc(var(--otp-gap) * var(--otp-ls)),
            transparent 0),
            linear-gradient(90deg,
            var(--otp-bg, #aaaaaa) calc(var(--otp-gap) * var(--otp-ls)),
            transparent 0
            );
    background-position: calc(var(--_otp-digit) * var(--_otp-bgsz)) 0, 0 0;
    background-repeat: no-repeat, repeat-x;
    background-size: var(--_otp-bgsz) 100%;
    caret-color: var(--otp-cc, #888888);
    caret-shape: block;
    clip-path: inset(0% calc(var(--otp-ls) / 2) 0% 0%);
    font-family: ui-monospace, monospace;
    font-size: 13px;
    inline-size: calc(var(--otp-digits) * var(--_otp-bgsz));
    letter-spacing: var(--otp-ls);
    padding-block: var(--otp-pb, 1ch);
    padding-inline-start: calc(((var(--otp-ls) - 1ch) / 2) * var(--otp-gap));
}

/* For pop-up OTP */
label.otp {
    display: block;
    font-family: ui-sans-serif, system-ui, sans-serif;
    font-weight: 500;
    margin-block-end: 1ch;
}


.ui-autocomplete {
    max-height: 400px;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
    z-index:200000;
}

.ui-autocomplete-loading{
    background:url('../images/loading.gif') no-repeat right center;
}

.hide_menu {
    display: inline-block;
    height: 45px; /*Radouane*/
    width: 45px; /*Radouane*/
    line-height: 45px; /*Radouane*/
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    padding-top:3px;
    /*background-color: white;*/
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
}
.hide_menu > i {
    /*margin-top: 13px;*/ /*Radouane*/
    font-size: 20px;
}
.hide_menu:hover {
    color: white;
}

/*==========  Mobile First Method  ==========*/
.hide-on-mobile { display: none;}

th.hide-on-mobile, td.hide-on-mobile {display: none}

.btn-responsive {
    font-size:9px;
    padding:2px 4px;
}

.cqs-multiselect label {
    overflow:hidden;
    text-overflow: ellipsis;
}


/* ----- SOUS TABLEAU LISTING ----- */
.ss-table td, .ss-table tr, .ss-table th, .ss-table {
    border: none !important;
}

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {
    .hide-on-mobile { display: none;}
    th.hide-on-mobile, td.hide-on-mobile {display: none}
    .btn-responsive {
        font-size:9px;
        padding:2px 4px;
    }
    #main {
        margin-top:12px;
        padding-left:2px;
        padding-top:0px;
        padding-right:2px;
        padding-bottom:0px;
    }
}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 600px) {
    .hide-on-mobile { display: none;}
    th.hide-on-mobile, td.hide-on-mobile {display: none}
    .btn-responsive {
        font-size:11px;
        padding:4px 6px;
    }
    .listing td {
        font-size: 11px;
        padding: 5px;
    }
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
    .hide-on-mobile { display: block;}
    th.hide-on-mobile, td.hide-on-mobile {display: none}
    .btn-responsive {
        font-size:12px;
        padding:6px 12px;
    }
    .listing td {
        font-size: 12px;
        padding: 5px;
    }
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
    .hide-on-mobile { display: block;}
    th.hide-on-mobile, td.hide-on-mobile {display: none}
    .btn-responsive {
        font-size:12px;
        padding:6px 12px;
    }
    .listing td {
        font-size: 12px;
        padding: 5px;
    }
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
    .hide-on-mobile { display: block;}
    th.hide-on-mobile, td.hide-on-mobile {display: table-cell}
    .btn-responsive {
        font-size:12px;
        padding:6px 12px;
    }
    .listing td {
        font-size: 12px;
        padding: 5px;
    }
}



/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {

}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {

}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {

}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

}





/* Bouton */
.btn_petit {
    font-size:13px;
    padding-top:5px !important;
    padding-bottom:5px !important;
    font-weight: bold !important;
}

.btn_glyph {
    margin-right: 10px;
}

/* Boutons spéciaux */
button:focus {
    outline: 2px solid #66AFE9;;
    outline-radius: 2px;
}

button {
    font-size: 12px;
}

/* Sauvegarder */
.btn_ajout {
    border-radius: 3px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid transparent;
    /*padding: 10px 16px;*/
    padding: 8px 12px;
    line-height: 1.3333333;
    border-radius: 6px;
    color: white;
    border-color: #ddd;
    background-color: #00a65a;
    min-width:120px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.btn_save {
    border-radius: 3px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid transparent;
    /*padding: 10px 16px;*/
    padding: 8px 12px;
    line-height: 1.3333333;
    border-radius: 6px;
    color: white;
    border-color: #ddd;
    background-color: #00a65a;
    min-width:120px;
}

.btn_save:hover {
    background-color: #008d4c;
}

.btn_cancel {
    border-radius: 3px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid transparent;
    /*padding: 10px 16px;*/
    padding: 8px 12px;
    line-height: 1.3333333;
    border-radius: 6px;
    color: black;
    border-color: #ddd;
    background-color: #f0e68c;
    min-width:120px;
}

.btn_cancel:hover {
    background-color: #ccc;
}

.btn_disabled {
    border-radius: 3px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid transparent;
    /*padding: 10px 16px;*/
    padding: 8px 12px;
    line-height: 1.3333333;
    border-radius: 6px;
    color: white;
    border-color: #ddd;
    background-color: lightgray;
    min-width:120px;
    cursor: not-allowed;
    pointer-events: none;
}


/* Supprimer */
.btn_delete {
    border-radius: 3px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid transparent;
    /*padding: 10px 16px;*/
    padding: 8px 12px;
    line-height: 1.3333333;
    border-radius: 6px;
    color: white;
    border-color: #ddd;
    background-color: #dd4b39;
    min-width:120px !important;
}

.btn_delete:hover {
    background-color: #d73925;
}

/* Retour */
.btn_return {
    border-radius: 3px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid transparent;
    /*padding: 10px 16px;*/
    padding: 8px 12px;
    line-height: 1.3333333;
    border-radius: 6px;
    color: white;
    border-color: #ddd;
    background-color: #3c8dbc;
    min-width:120px !important;
}

.btn_return:hover {
    background-color: #367fa9;
}

/* Info */
.btn_info {
    border-radius: 3px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid transparent;
    /*padding: 10px 16px;*/
    padding: 8px 12px;
    line-height: 1.3333333;
    border-radius: 6px;
    color: white;
    border-color: #ddd;
    background-color: #00c0ef;
    min-width:120px !important;
}

.btn_info:hover {
    background-color: #00acd6;
}

/* Annulé */
.btn_default {
    border-radius: 3px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid transparent;
    /*padding: 10px 16px;*/
    padding: 8px 12px;
    line-height: 1.3333333;
    border-radius: 6px;
    color: black;
    border-color: #ddd;
    background-color: #f4f4f4;
    min-width:120px !important;
}

.btn_default:hover {
    background-color: #dddddd;
}

/* Attention */
.btn_attention {
    border-radius: 3px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid transparent;
    /*padding: 10px 16px;*/
    padding: 8px 12px;
    line-height: 1.3333333;
    border-radius: 6px;
    color: white;
    border-color: #ddd;
    background-color: #f39c12;
    min-width:120px !important;
}

.btn_attention:hover {
    background-color: #e08e0b;
}

/* Attention */
.btn_attention_light {
    border-radius: 3px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid transparent;
    /*padding: 10px 16px;*/
    padding: 8px 12px;
    line-height: 1.3333333;
    border-radius: 6px;
    color: white;
    border-color: #ddd;
    background-color: #caa05d;
    min-width:120px !important;
}

.btn_light:hover {
    background-color: #e08e0b;
}

/* Boutons icônes spéciaux */

/* Sauvegarder */
.icon {
    border-radius: 3px;
    position: relative;
    padding: 7px 10px 7px 10px;
    min-width: 50px;
    height: 40px;
    text-align: center;
    color: #666;
    border: 1px solid #ddd;
    background-color: #f4f4f4;
    font-size: 20px;
}

.icon-small {
    padding: 3px !important;
}

.icon:hover {
    background: #f4f4f4;
    color: #444;
    border-color: #aaa;
    cursor: pointer;
}

.icon:active,
.icon:focus {
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.icon > .fa {
    width: 20px;
    height: 20px;
}

button > .fa {
    margin-right: 0px;
}

/* Box */

.field {
    position: relative;
    border-radius: 3px;
    background: #ffffff;
    border-top: 3px solid #00447b;
    margin-bottom: 20px;
    width: 100%;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

/* Modal */

.mod {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
    background: rgba(0, 0, 0, 0.3);
}

.mod-content {
    position: relative;
    width: auto;
    margin: 10px;
    border-radius: 0;
    -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125) !important;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125) !important;
    border: 0;

    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}

.mod-header {
    border-bottom-color: #f4f4f4;
    min-height: 16.42857143px;
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.mod-header .close {
    margin-top: -2px;
}

.mod-title {
    margin: 0;
    line-height: 1.42857143;
}

.mod-body {
    position: relative;
    padding: 15px;
    overflow: auto;
    height: 650px;
}

.mod-footer {
    border-top-color: #f4f4f4;
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}

@media (min-width: 768px) {
    .mod-content {
        width: 70%;
        margin: 30px auto;

        -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125) !important;
        box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125) !important;
    }
}

/* CHAMPS FORMULAIRE */

.input_group_icon {
    position: relative;
    display: table;
    border-collapse: separate;
    display: inline-table;
    vertical-align: middle;
}


.input_icon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 4px;

    border-radius: 0px;
    border-color: #d2d6de;
    background-color: #fff;
    display: table-cell;
    width: 1%;
    white-space: nowrap;
    vertical-align: middle;
    border-right: 0px;
}

.input {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;

    border-radius: 0px !important;
    box-shadow: none;
    border-color: #d2d6de;

    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0;

    display: table-cell;
}


.input:focus {
    border-color: #3c8dbc !important;
    box-shadow: none;
}

.input::-moz-placeholder {
    color: #bbb;
    opacity: 1;
}

.input:-ms-input-placeholder {
    color: #bbb;
}

.input::-webkit-input-placeholder {
    color: #bbb;
}

.input:not(select) {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.input[disabled] {
    cursor: not-allowed;
    background-color: #eee;
    opacity: 1;
}

.input_label {

}


/* Champs avec bouton intégrer à droite */

.input_right_icon {
    position: relative;
    display: table;
    border-collapse: separate;
    display: inline-table;
    vertical-align: middle;
}

.button_right_icon {
    width: auto;
    display: table-cell;
    width: 1%;
    white-space: nowrap;
    vertical-align: middle;

    position: relative;
    font-size: 0;

    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.btn_right {
    border-left: 0px;

    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border-width: 1px;

    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid transparent;

    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;

    padding: 6px 12px;
    font-size: 14px;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    color: white;
    background-color: #00a65a;
    border-color: #008d4c;
}

.btn_right:hover {
    background-color: #008d4c;
}

.button_menu_raccourci {
    display: inline-block;
    height: 45px;
    width: 45px;
    text-align: center;
    vertical-align: middle;
    line-height: 45px;
    cursor: pointer;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    font-weight:bold;
    font-size:26px;
}

.button_exit {
    text-align: center;
    vertical-align: middle;
    width: 45px;
    cursor: pointer;
    border-left: 1px solid #ccc;
    font-size: 26px;
}


.button_print {
    display: inline-block;
    height: 45px; /*Radouane*/
    width: 45px; /*Radouane*/
    text-align: center;
    vertical-align: middle;
    line-height: 45px; /*Radouane*/
    cursor: pointer;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    font-family: 'FontAwesome';
    font-weight:bold;
}

.button_print:before {
    color: white;
    font-size: 20px;
    margin-top: 12px;
    content:"\f02f";
}

.button_agenda {
    display: inline-block;
    height: 45px; /*Radouane*/
    width: 45px; /*Radouane*/
    text-align: center;
    vertical-align: middle;
    line-height: 45px; /*Radouane*/
    cursor: pointer;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    font-family: 'FontAwesome';
    font-weight:bold;
}

.button_agenda:before {
    color: white;
    font-size: 20px;
    margin-top: 12px;
    content:"\f073";
}

.button_projet {
    display: inline-block;
    height: 45px; /*Radouane*/
    width: 45px; /*Radouane*/
    text-align: center;
    vertical-align: middle;
    line-height: 45px; /*Radouane*/
    cursor: pointer;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    font-family: 'FontAwesome';
    font-weight:bold;
}

.button_projet:before {
    color: white;
    font-size: 20px;
    margin-top: 12px;
    content:"\f02d";
}

.button_faq:hover  {
    background-color:#646464;
}


.button_actualite {
    display: inline-block;
    height: 45px;
    width: 45px;
    text-align: center;
    line-height: 45px;
    vertical-align: middle;
    cursor: pointer;
    background-color: white;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    font-family: 'Glyphicons Halflings';
    font-weight:bold;

}

.button_actualite:before {
    color: black;
    font-size: 20px;
    margin-top: 12px;
    content:"\e135";
}

.button_actualite:hover {
    background-color: #f7f7f7;
}


.button_upload{
    display:inline-block;
    -moz-border-radius-topleft : 5px;
    -moz-border-radius-topright : 5px;
    -moz-border-radius-bottomleft : 5px;
    -moz-border-radius-bottomright : 5px;

    -webkit-border-top-left-radius: 5px;/*le bord haut gauche*/
    -webkit-border-top-right-radius: 5px; /*le bord haut droit*/
    -webkit-border-bottom-right-radius: 5px;/*le bord bas droit*/
    -webkit-border-bottom-left-radius: 5px;/*le bord bas gauche*/

    padding-bottom:15px;
    padding-left:15px;
    padding-right:15px;

    cursor:pointer;
    /*font-family:Arial,sans-serif;*/
    font-size:14px;
    color:#646464;
    border:solid 2px #cfcfcf !important;
    height:51px !important;
    line-height:51px;
    vertical-align:middle;

    text-align:left !important;
    background:#00447B !important;
    color:white;
}

/* Onglet */

.onglet_titre {
    margin-left: 15px;
    margin-bottom: 20px;
}

.onglet {
    border-bottom: 3px solid #14579b;
}

.onglet > li {
    float: left;
}

.onglet > li > a {
    margin-right: 5px;
    border-radius: 4px 4px 0 0;
    background-color: #14579b;
    border: 1px solid #14579b;
    color: white
}

.onglet > li > a:hover,
.onglet > li > a:hover,
.onglet > li > a:focus {
    background-color: #0f4076;
}

.onglet > li.onglet_on > a,
.onglet > li.onglet_on > a:hover,
.onglet > li.onglet_on > a:focus {
    background-color: #0f4076;
    cursor: default;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
}

/* Content */

.content_page {
    padding-left: 15px;
    padding-right: 15px;
}

/*
 * Component: Info Box
 * -------------------
 */
.info-box {
    display: block;
    min-height: 90px;
    background: #fff;
    width: 100%;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    margin-bottom: 15px;
}
.info-box small {
    font-size: 14px;
}
.info-box .progress {
    background: rgba(0, 0, 0, 0.2);
    margin: 5px -10px 5px -10px;
    height: 2px;
}
.info-box .progress,
.info-box .progress .progress-bar {
    border-radius: 0;
}
.info-box .progress .progress-bar {
    background: #fff;
}
.info-box-icon {
    border-top-left-radius: 2px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 2px;
    display: block;
    float: left;
    height: 90px;
    width: 90px;
    text-align: center;
    font-size: 45px;
    line-height: 90px;
    background: rgba(0, 0, 0, 0.2);
}
.info-box-content {
    padding: 5px 10px;
    margin-left: 90px;
}
.info-box-number {
    display: block;
    font-weight: bold;
    font-size: 18px;
}
.progress-description,
.info-box-text {
    display: block;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.info-box-text {
    text-transform: uppercase;
}
.info-box-more {
    display: block;
}
.progress-description {
    margin: 0;
}



.gv-debug {
    border: 2px solid red;
}

.gv-hidden {
    display: none;
}

.zoomable-img:hover {
    -ms-transform: scale(5); /* IE 9 */
    -ms-transform-origin: 0% 0%; /* IE 9 */
    -webkit-transform: scale(5); /* Chrome, Safari, Opera */
    -webkit-transform-origin: 0% 0%; /* Chrome, Safari, Opera */
    transform:scale(5);
    transform-origin: 0% 0%;
    z-index: 1000;
}

.zoomablaaae-img:hover {
    -webkit-transform:scale(1.25); /* Safari and Chrome */
    -moz-transform:scale(1.25); /* Firefox */
    -ms-transform:scale(1.25); /* IE 9 */
    -o-transform:scale(1.25); /* Opera */
    transform:scale(1.25);
}

/* Smaller heading */
.panel-heading {
    /*padding: 15px 15px 0 15px;*/
    color: #ad325a;
}

h2 {
    color: var(--h2-heading-color) !important;
}

.panel-body {
    padding: 15px 10px 10px 15px;
}

.gv-panel-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.gv-panel-header-left{
    display: flex;
    justify-content: flex-start;
}

.gv-panel-header-right {
    display: flex;
    justify-content: flex-end;
}

.gv-container-table-user {
    margin-bottom: 5px;
}

.gv-container-table-user span {
    margin-right: 4px;
}

.gv-container-v-xs {
    max-height: 5em;
}
.gv-container-v-sm {
    max-height: 10em;
}
.gv-container-v-md {
    max-height: 20em;
}

.gv-container-v-lg {
    max-height: 100em;
}

.warning-tf {
    color: red !important;
}

table.full-width {
    width: 100%;
}



table.full-width td {
    padding-bottom: 4px
}
table.full-width td.shrink {
    min-width:20px;
}

table.full-width td.align-right {
    text-align: right;
}

table.full-width tr:nth-child(even) {
    background-color: #f9f9f9;
}


table td.align-right {
    text-align: right;
}

.sort-indicator {
    font-size: 1.0em;
    margin:0 0.5em 0 0.5em;
}


.scrollable {
    overflow-y:auto;
    overflow-x: hidden;

}

.activate-realise {
    font-size: 1.2em;
    color: green;
}

.deactivate-realise {
    font-size: 1.2em;
    margin-left: 4px;
    color: darkgray;
}

.wait-realise {
    font-size: 1.2em;
    margin-left: 4px;
}

.btngreen {
    background-color: green; color: white;
}
.btngray {
    background-color: gray; color: lightgray;
}

/* onglet badge */
.onglet-badge {
    border-radius: 20px;
    padding: 1px 12px 2px 10px;
    margin-left: 4px;
    text-align: center;
}

.onglet-badge-warning {
    padding: 1px 12px 1px 12px;
}

.synthese-header {
    /*text-decoration: underline;*/
    font-weight: bold;
}

.shrink-td {
    width:1%;
    white-space:nowrap;
    padding: 0 1em 0 1em;
}

#top-header-row {
    padding: 5px;
    background-color: var(--header-background-color);
}

#top-header-row a {
    font-weight: bold;
    color: black;
    text-decoration: none;
    cursor: default;
}

#top-header-row a:hover {
    font-weight: bold;
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.visible-animated {
    opacity: 1;
    height: auto;
    transition: all 0.5s linear;
    z-index: 0;
}
.invisible-animated {
    opacity: 0;
    height: 0;
    transition: all 0s;
    z-index: -1;
}

.poste-container {
    margin-bottom: 20px;
}

.mission-container {
    width: 100%;
}

.poste-mission-container {
    margin: 15px 15px 0px 15px;
    padding: 0 8px 0 8px;
    border: 1px solid lightgray;
}

.mission-bloc-body-container {
    margin: 15px 15px 0px 15px;
}

.bloc-container {
    margin-bottom: 15px;
}

.bloc-header-container {
    font-weight: bold;
    border-bottom: 1px solid lightgray;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: stretch;
}

.bloc-header-container-left {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
}

.bloc-header-container-right {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
}

.poste-mission-header {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

.poste-mission-body-container {
    transform-origin:0 0;
    transform: scaleY(0);
    transition:transform 0.25s ease;

    overflow: hidden;
    height:0;
}

.poste-mission-body-show {
    transform: scaleY(1);
    height:auto;

}

/*
GV: Surcharge Bootstrap 3 et centre l'affichage automatiquement
en flexbox
*/
.modal-dialog {
    display: flex;
    width: 100%;
    min-width:320px;
    justify-content: center;

}

.ui-menu-item {
    white-space: nowrap;
}


@media print {
    *,
    *:before,
    *:after {
        /*!color: #000 !important;*/
        text-shadow: none !important;
        /*!background: transparent !important;*/
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
    }
    a,
    a:visited {
        text-decoration: underline;
    }
    a[href]:after {
        /*!content: " (" attr(href) ")";*/
    }
    abbr[title]:after {
        /*!content: " (" attr(title) ")";*/
    }
    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        /*!content: "";*/
    }

    .hide-on-print {
        height: 0;
        width:0;
        opacity: 0;
    }
}

.flip-in-hor-top {
    -webkit-animation: flip-in-hor-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: flip-in-hor-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
/* ----------------------------------------------
 * Generated by Animista on 2020-6-10 9:45:16
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info.
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation flip-in-hor-top
 * ----------------------------------------
 */
@-webkit-keyframes flip-in-hor-top {
    0% {
        -webkit-transform: rotateX(-80deg);
        transform: rotateX(-80deg);
        opacity: 0;
    }
    100% {
        -webkit-transform: rotateX(0);
        transform: rotateX(0);
        opacity: 1;
    }
}
@keyframes flip-in-hor-top {
    0% {
        -webkit-transform: rotateX(-80deg);
        transform: rotateX(-80deg);
        opacity: 0;
    }
    100% {
        -webkit-transform: rotateX(0);
        transform: rotateX(0);
        opacity: 1;
    }
}

.mytooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.mytooltip .mytooltiptext {
    visibility: hidden;
    width: 300px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    top: 150%;
    left: 50%;
    margin-left: -150px;
}

.mytooltip .mytooltiptext::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent black transparent;
}

.mytooltip:hover .mytooltiptext {
    visibility: visible;
}

.printable-nc {
    width:100%;
    border-collapse: collapse;
    border:1px solid #ad325a;
}

.printable-nc th {
    border:1px solid #ad325a;
    font-weight: bold;
    padding: 0.5rem;
    color: #ad325a;
    white-space: nowrap;
}

.printable-nc td {
    border:1px solid #ad325a;    padding: 0.5rem;
}

@media print {
    .redstar {
        visibility: hidden;
    }
}


.tooltip.top {
    margin-top: -10px;
}

.tooltip.right {
    margin-left: 10px;
}

.tooltip.bottom {
    margin-top: 10px;
}

.tooltip.left {
    margin-left: -10px;
}

.panel-alerte-row .close-button {
    margin-left: 5px;
    position: relative;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 24px;
    height: 24px;
    outline: none; /* To remove the default focus outline */
  }
  
  .panel-alerte-row .close-icon {
    font-size: 16px; /* Adjust the font size as needed */
  }
  
  .panel-alerte-row .close-button:hover .close-icon,
  .panel-alerte-row .close-button:focus .close-icon {
    color: black; /* Change the color on hover and focus */
  }

.display-button{
    position: relative;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 24px;
    height: 24px;
    outline: none; /* To remove the default focus outline */
}
.display-button:active{
    outline: none;
}
.display-button:focus{
    outline: none;
}
  
.display-alerte{
    display: flex;
    width:20px;
    position:absolute;
    top:5px;
    right:15px;
}

.notification-body{
    background-color: var(--alerte-a-venir-color);
    max-height: 100px;
}

.notification-title{
    border-top:2px solid var(--reversed-primary-text-color);
    border-bottom:2px solid var(--reversed-primary-text-color);
    background-color: var(--alerte-a-venir-color);
}
.rotate {
    transition: transform 0.3s ease; /* Transition pour une rotation fluide */
}
.rotate.down {
    transform: rotate(0deg);
}
.rotate.up {
    transform: rotate(180deg);
}

.option-overflow-ellipsis{
    max-width:100%;
}
.option-overflow-ellipsis option{
    max-width:150px !important;
    text-overflow: ellipsis;
}