/* insérer ici les règles de style communes au sein de l'application */

.breadcrumb {
    /*centering*/
    display: inline-block;
    overflow: hidden;
    border-radius: 5px;
    background-color: initial !important;
    margin: initial !important;
}

.breadcrumb a {
    text-decoration: none;
    outline: none;
    display: block;
    float: left;
    font-size: 14px;
    color: white;
    padding: 0 10px 0 30px;
    background: linear-gradient(#667, #333);
    position: relative;
}

.breadcrumbInner {
    display: flex;
    flex-direction: column;
    margin: auto;
    z-index: 2;
}

.breadcrumbDesc {
    font-weight: lighter;
    font-size: 12px;
}

/*hover/active styles*/
.breadcrumb a.active, .breadcrumb a:hover {
    background: #333;
    background: linear-gradient(#333, #000);
}

.breadcrumb a.active:after, .breadcrumb a:hover:after {
    background: #333;
    background: linear-gradient(135deg, #333, #000);
}

.breadcrumb a:first-child {
    padding-left: 20px;
    border-radius: 5px 0 0 5px; /*to match with the parent's radius*/
}

.breadcrumb a:first-child:before {
    left: 14px;
}

.breadcrumb a:last-child {
    border-radius: 0 5px 5px 0; /*this was to prevent glitches on hover*/
    padding-right: 20px;
}

/*adding the arrows for the breadcrumbs using rotated pseudo elements*/
.breadcrumb a:after {
    content: '';
    position: absolute;
    top: 0;
    right: -18px;
    width: 36px;
    height: 36px;
    transform: scale(0.707) rotate(45deg);
    z-index: 1;
    box-shadow: 2px -2px 0 2px white;
    border-radius: 0 5px 0 50px;
}
/*we dont need an arrow after the last link*/
.breadcrumb a:last-child:after {
    content: none;
}

/*TerminÃ©*/
.breadcrumb a.done, .breadcrumb a.done::after {
    background: green;
    color: white;
}

/*En cours*/
.breadcrumb a.inProgress, .breadcrumb a.inProgress::after {
    background: orange;
    color: white;
}

/*Pas terminÃ©*/
.breadcrumb a.pending, .breadcrumb a.pending::after {
    background: darkgrey;
    color: white;
}

/*Pas terminÃ©*/
.breadcrumb a.aborted, .breadcrumb a.aborted::after {
    background: rgb(200, 0, 0);
    color: white;
}

/*1000px*/
@media all and (max-width: 1000px) {
    .breadcrumb {
        font-size: 12px;
    }
}
/*710px*/
@media all and (max-width: 710px) {
    .breadcrumbDesc {
        display: none;
    }
    .breadcrumb a {
        line-height: 36px;
    }
}

#colonnePrincipaleContenu {
    padding: 0px !important;
}

#containerContenu {
    padding: 0px !important;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    overflow-x: hidden;
    transition: 0.5s;
    border-right: 1px solid #5f6f81;
    background: #ffff;
}

.sidenav button {
    padding: 8px 8px 8px 8px;
    text-decoration: none;
    display: block;
    transition: 0.1s;
    list-style: none;
    text-transform: none;
    font-weight: 300;
    font-family: 'Lato', Arial, sans-serif;
    line-height: 30px;
    border-radius: initial;
    color: black;
}

.sidenav div {
 /*   padding: 16px 8px 16px 8px;*/
 padding : 5px;
    font-weight: bold;
/*    border-bottom: 1px solid #5f6f81;*/
}

.sidenav button:hover {
    background: #23272b;
    color: #ffff;
}

.sidenav a:hover {
    text-decoration: initial;
}

.btn:disabled {
    opacity: 0.35;
}

html, body {
    height: 100%;
    overflow: hidden;
}

#containerPrincipal, #containerContenu, #lignePrincipaleContenu,
#colonnePrincipaleContenu {
    height: 100%;
}


#containerPrincipal {
	max-width: 100vw;
	overflow-x: hidden;
}

.disposition {
    display: flex;
    flex-direction: column;
}

#main {
    padding-bottom: 10px;
}

input[type=text], select {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=submit] {
    width: 100%;
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #45a049;
}

flexun {
    flex: 1;
}

.scei-bloc-info, .scei-bloc-warning {
    line-height: 1.1rem !important;
    padding-top: 10px;
    padding-bottom: 10px;
}

.title {
    background: #ffff;
    padding: 15px;
    font-size: 30px;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
}

.title .user {
    font-size: 15px;
}

.flexer {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.formulaire {
    border-radius: 5px;
    background-color: #ffff;
    padding: 20px;
    border: 1px solid black;
}

.titre, .flexer {
    background: #efefef;
}

.logo {
    max-height: 64px;
	padding: .5rem;
}

.boutonOuvrirMenu {
    font-size: 30px;
    cursor: pointer
}

.bandeau-bleu {
       background-color: #08324c;
       color:white;
       }
       

