@font-face {
    font-family: 'OpenSans';
    src: url('../fonts/OpenSans-Regular-webfont.eot');
    src: url('../fonts/OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/OpenSans-Regular-webfont.woff') format('woff'),
         url('../fonts/OpenSans-Regular-webfont.ttf') format('truetype'),
         url('../fonts/OpenSans-Regular-webfont.svg#open_sanssemibold') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'principale';
    src: url('../fonts/OpenSans-Bold-webfont.eot');
    src: url('../fonts/OpenSans-Bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/OpenSans-Bold-webfont.woff') format('woff'),
         url('../fonts/OpenSans-Bold-webfont.ttf') format('truetype'),
         url('../fonts/OpenSans-Bold-webfont.svg#open_sansbold') format('svg');
    font-weight: bold;
    font-style: normal;
}

@keyframes bounce {
	0%, 100%, 20%, 50%, 80% {
		-webkit-transform: translateY(0);
		-ms-transform:     translateY(0);
		transform:         translateY(0)
	}
	40% {
		-webkit-transform: translateY(-30px);
		-ms-transform:     translateY(-30px);
		transform:         translateY(-30px)
	}
	60% {
		-webkit-transform: translateY(-15px);
		-ms-transform:     translateY(-15px);
		transform:         translateY(-15px)
	}
}

body{
	font-family: OpenSans, Arial, sans-serif;
	margin: 0px;
	border: 0px;
	outline: 0px;
	text-align:center;
    background-color: #58575c;
}

a{
	text-decoration: none;
	color: inherit;
}

.titre_pop{
	background-color:rgba(49, 48, 53, 0.5);
	font-weight: bold;
	font-size: 1.2em;
	color: #ffffff;
}

.barre_haut{
	z-index: 10000;
	position:fixed;
	text-align:left;
	top:0px;
	width:100%;
	/*background-color: #313035;*/
	background-color:rgba(49, 48, 53, 0.5);
	box-sizing: border-box;
	padding: 0px;
	display:flex;
	justify-content: space-between;
	align-items:center;
	color: #ffffff;
}
.barre_gauche{
	margin-top:35px;
	z-index: 800;
	position:absolute;
	text-align:left;
	left:0px;
	width:230px;
	box-sizing: border-box;
	display:flex;
	flex-direction: column;
	justify-content: space-between;
	color: #ffffff;
	gap: 5px;
}
.barre_droite{
	margin-top:35px;
	z-index: 10000;
	position:absolute;
	text-align:center;
	right:0px;
	width:200px;
	background-color: #313035;
	box-sizing: border-box;
	display:flex;
	flex-direction: column;
	justify-content: space-between;
	color: #ffffff;
}
.barre_nom_projet{
	z-index: 9999;
	position:absolute;
	text-align:center;
	top:0px;
	width:100%;
	background-color:rgba(85, 85, 85, 0.2);
	box-sizing: border-box;
	padding: 10px;
	align-items:center;
	color: #ffffff;
	font-size:18px;
	font-weight: bold;
}

/*COULEURS*/
.couleur_fond_principale{
	background-color: #58575c !important;
	color: #ffffff;
}
.couleur_fond_secondaire{
	background-color: #313035 !important;
	color: #ffffff;
}
.couleur_fond_blanc{
	background-color: #ffffff !important;
	color: #000000;
}
.couleur_texte_principale{
	color: #ffffff;
}
.couleur_texte_secondaire{
	color: #fde862 !important;
}
.couleur_texte_tertiaire{
	color: #3bced3 !important;
}

.couleur_fond_jaune{
	background-color: #FFF640;
	color: #ffffff;
}
.couleur_fond_violet{
	background-color: #957FD5;
	color: #ffffff;
}
.couleur_fond_bleu{
	background-color: #41E1E7;
	color: #ffffff;
}
.couleur_fond_vert{
	background-color: #43ED8F;
	color: #000000;
}

/*FIN COULEURS*/

.ligne_projet{
	background-color: #ffffff;
	padding: 10px;
	border-radius:5px 5px 5px 5px;
	font-size: 20px;
}

/*ELEMENTS*/
.bouton_actif{
	border-radius:3px 3px 3px 3px;
	box-shadow: 2px 2px 2px #aaa;
	text-decoration: none;
	display: inline-block;
	cursor: pointer;
	padding:4px;
	margin: 4px 0px 4px 0px;
	border: 1px solid #7F7F7F;
}
	.bouton_actif_on{
		box-shadow: 1px 1px 1px #aaa;
		text-decoration: none;
		display: inline-block;
		padding:4px;
		font-weight: bold;
	}
		.bouton_actif:hover{
			box-shadow: 1px 1px 1px #aaa;
		}

	.bouton_actif_off{
		box-shadow: 0px 0px 0px #aaa;
		text-decoration: none;
		display: inline-block;
		padding:2px;
	}
.bouton_inactif{
	border-radius:3px 3px 3px 3px;
	box-shadow: 1px 1px 3px #aaa;
	text-decoration: none;
	display: inline-block;
	padding: 5px;
	margin: 4px 0px 4px 0px;
	border: 0px;
}
/*FIN ELEMENTS*/

/*CARTE*/
.carte{
	box-shadow: 1px 1px 3px #555;
	font-size: 16px;
	padding: 0px 0px 0px 0px;
	text-align:left;
}
.carte .carte_titre {
	padding: 2px 2px 2px 4px;
	/*background-color:#142150;*/
    /*background-color: #8C8C8C;*/
	color: #ffffff;
	font-size: 1.1em;
	margin-bottom: 2px;
}
.carte .carte_soustitre {
	padding: 2px;
	color: #e0513c;
	font: italic bold 14px;
}
.carte .carte_texte {
	padding:4px;
}
.carte .carte_bouton {
	cursor:pointer;
	border: none;
	/*background-color: #6a89cc;*/
	padding: 4px;
	box-shadow: 1px 1px 2px #555;
	margin-top:2px;
	font-weight:bold;
	text-align:center;
    width:100%;
    display: inline-block;
    box-sizing: border-box;
}
.carte .carte_bouton:hover {
	box-shadow: 0px 0px 0px #fff;
}
.carte .carte_bouton:disabled {
	box-shadow: 0px 0px 0px #fff;
	background: #acacac;
}
/*FIN CARTE */

/*TABLEAUX*/
.tableau_div{
	display: table;
	border-spacing: 4px 4px;
	border-collapse:separate;
	margin: auto;
}
	.tableau_div .ligne_titres{
	display: table-row;
	background-color:#e0513c;
	padding: 0px 2px 0px 2px;
	color: #ffffff;
	font: normal normal 1em;
	white-space: nowrap;
	}
	.tableau_div .ligne_titres .cellule{
	display: table-cell;
	background-color:#e0513c;
	padding: 2px;
	color: #ffffff;
	font: normal normal 1em;
	white-space: nowrap;
	}
	.tableau_div .ligne{
	display: table-row;
	color: #000000;
	}
	.tableau_div .cellule{
	display: table-cell;
	padding: 2px;
	vertical-align: middle;
	box-shadow: 1px 1px 1px #aaa;
	/*background: #E0E0E0;*/
	text-decoration:none;
	text-align: left;
    white-space: nowrap;
	}
	.tableau_div .cellule_neutre{
	display: table-cell;
	text-align: left;
    white-space: nowrap;
	}
	.tableau_div .ligne:nth-child(even) {background: #f6f6f6}
	.tableau_div .ligne:nth-child(odd) {background: #e8e8e8}
	.tableau_div .ligne:hover {background: #cac8c8}
    
.tableau_html{
	text-align: left;
	box-shadow: 1px 1px 1px 0px #656565;
	margin-top:2px;
	margin-bottom: 2px;
}
	.tableau_html th{
	background-color:#313035;
	padding: 0px 2px 0px 2px;
	color: #ffffff;
    font-weight: normal;
	}
	.tableau_html thead{
	background-color:#313035;
	padding: 0px 2px 0px 2px;
	color: #ffffff;
    font-weight: normal;
	}
    .tableau_html td{
	white-space: nowrap;
	}
	.tableau_html tr:nth-child(even) {background: #f6f6f6}
	.tableau_html tr:nth-child(odd) {background: #e8e8e8}
	.tableau_html tr:hover {background: #cac8c8}
	
	.tableau_html tfoot tr{
	background-color:#142150 !important;
	padding: 0px 2px 0px 2px;
	color: #ffffff;
	}

.grid{
	display: grid;
}
	.grid > span{
		padding: 4px;
		border-bottom: 2px solid grey;
		min-height:20px;
		text-align:left;
	}
/*FIN TABLEAUX*/
.logo_client{
	border-radius: 4px;
	height:100%;
}
	.logo_client img{
		max-width: 100%;
		max-height: 100%;
	}

.tag{
	font-size:0.8em;
	border-radius:3px 3px 3px 3px;
	box-shadow: 1px 1px 3px #aaa;
	text-decoration: none;
	display: inline-block;
	padding: 2px;
	margin: 0px 0px 0px 2px;
	border: 0px;
}


.couleur_validation_ , .couleur_validation_5, .coul_fond_validation_ , .coul_fond_validation_5 {
    background-color: #9E9E9E;
}
.couleur_validation_1, .coul_fond_validation_1 {
    background-color: #43A047;
}
.couleur_validation_9, .coul_fond_validation_9 {
    background-color: #E53935;
}

.coul_validation_ , .coul_validation_5, .coul_txt_validation_ , .coul_txt_validation_5 {
    color: #9E9E9E;
}
.coul_validation_1, .coul_txt_validation_1 {
    color: #43A047;
}
.coul_validation_9, .coul_txt_validation_9 {
    color: #E53935;
}

.liste_fichiers_ligne{
	width:100%;
		position: relative;
		overflow: hidden;
}

	.liste_fichiers_ligne:nth-of-type(odd) {
		background-color: #f1f1f1;
	}
			
	.liste_fichiers_ligne:nth-of-type(even) {
		background-color: #f8f8f8;
	}
		.liste_fichiers_ligne .date_fichier{
			font-size:0.7em;
			position:absolute;
			right:0px;
			top:0px;
			font-style: italic;
			background-color: inherit;
			height:100%;
		}

.edit_comment{
	float: right;
	cursor: pointer;
}

.puce_note{
	position:absolute;
	z-index:100;transform: none;
	transition: transform 200ms ease-in;
}