
:root {
	text-align: center;
}

html, body {  
	font-family: Century Gothic;
	color: #333045;
	font-size : 1em;
	text-align: center;
	padding: 0px;
	margin: 0;
}

#global {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
 
  
}


.contenu{
	flex:1 0 auto;
	margin: 0;
	padding: 0;
}



/* ***************************************************************************
************************** Comportements natif modifié ************************ 
**************************************************************************** */

input, textarea, select, button {
	/* On force les boutons et éléments du navigateur à adopter la police d'écriture commune */
	font-family: Century Gothic;
}

textarea{ 
	resize:none;
	overflow: auto;
}

input[type=submit], input[type=reset]{
    margin: 20px auto 0;
	padding: 10px 20px;
	
	color: #FFFFFF;
	font-weight: bold;
	
	border-radius: 5px;
	
	background-color: #E87A26;
	border-color: #ac3e00;

}

input[type=submit]:hover, input[type=reset]:hover {
	cursor: pointer;
}

input[type=submit]:active, input[type=reset]:active {
	/* on reproduit l'effet naturel du bouton "enfoncé" */
	background-color: #ac3e00;
}

/* Les boutons d'upload de fichier ne sont pas personnalisables, il faut donc faire passer le label pour le bouton */

.label_uploader{
    float: left;
	font-family: ;
	font-weight: bold;
    text-align: right;
    padding: 10px 5px;
	color: #FFFFFF;
	font-size: 0.8em;
	border-radius: 5px;
	display: inline-block;
	width: 110px;
	background-color: #728CC1;
	border: 1px solid #365085;
	
	/* on force la position pour pouvoir le supperposer au bouton d'origine de l'uploader */
	z-index: 1;
	position: relative;
	
}

.label_multiple_uploader{
	width: 125px;
	text-align: center;
}
#up_fichiers{
	margin-left: -104px;
	/* Le bouton d'upload est moins long sous firefox, il faut réduire la marge pour ne pas empiéter sur le nom du fichier */
	}

_:-ms-lang(x), #up_fichiers{
	margin-left: 0;
}

/*Internet explorer et Edge ont un décalage plus important que les autres navigateurs */
_:-ms-lang(x), .label_uploader {
	margin-left: 145px;
	margin-bottom: -33px;
}

_:-ms-lang(x), .label_multiple_uploader {
	margin-left: 274px;
	margin-bottom: -33px;
}


.label_uploader:hover{
	cursor: pointer;
}


input[type=file]{
	/* On déplace le bouton d'origine sous notre label personnalisé */
	margin-left: -116px;
	/* Le bouton d'upload est moins long sous firefox, il faut réduire la marge pour ne pas empiéter sur le nom du fichier */
		margin-top: 6px;
}

/* Sur Internet explorer et edge, le bouton parcourir est à droite du nom du fichier, contrairement aux autres navigateurs */
_:-ms-lang(x), input[type=file] { 
	margin-left: 0px;
}

/* Les input de type select ne réagissent pas de la même façon que les autres */
select {
	width: 170px;
	margin: 3px 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	padding: 5px;
}

option {
	overflow: hidden;
	text-overflow: ellipsis;
	padding: 5px 22px;
}

h1 {
	text-align: left;
	margin: 10px;
	margin-left: 15%;
	margin-bottom: 20px;
}

a:link {
	text-decoration: none;
	color: #429ef4;
}

a:visited {
	text-decoration: none;
	color: #429ef4;
}

input[type=checkbox]{
	width: 20px;
	height: 20px;
}

/* ***************************************************************************
************************ Fin comportements natif modifié ********************** 
**************************************************************************** */

 
 
 
/* ***************************************************************************
************************* Style Message d'information ************************ 
**************************************************************************** */

.erreur{ 
	
	width: auto;
	max-width : 70%;
    margin: 20px 20px 40px;
	padding: 20px 30px;
	display: inline-block;
	
	background-color: #fff5f5;
	color: #FF0000;
	border: 2px solid #FF0000;
	border-radius: 5px;
	text-align: center;
}

.confirmation{
	width: auto;
	max-width : 70%;
    margin: 20px 20px 40px;
	padding: 20px 30px;
	display: inline-block;
	
	background-color: #f8f8ff;
	color: #333045;
	border: 2px solid #a7c193;
	border-radius: 5px;
	text-align: center;
}

.information{
	width: auto;
	max-width : 80%;
    margin: 20px auto 40px;
	padding: 20px 0px;
	display: table;
	
	background-color: #f9f9ff;
	color: #333045;
	border: 2px solid #728CC1;
	border-radius: 5px;
	text-align: center;
}

.tuile_tableau_de_bord{
	display: table-cell;
	border-right: 1px solid #728CC1;
	margin: 10px 0px;
	padding: 10px 15px;
	width: 25%;
	vertical-align: middle;
}

.information :last-child{
	border: 0px;
}

.info_cle{
	font-size: 1.2em;
	font-weight: bold;
	padding: 7px 0px;
}
.graph_donut{
	
}

.chiffre_cle {
	display: block;
	font-size: 1.2em;
	padding: 10px 0px;
	color: #333045 !important;
	border-bottom: 1px solid #728CC1;
}

/* ***************************************************************************
*********************** Fin style message d'information ********************** 
**************************************************************************** */




/* ***************************************************************************
********************************** Style Header ******************************* 
**************************************************************************** */


.header{
	width: 100%;
	height: 100px;
	padding: 0;
	
	color: #FFFFFF;
	background-color: #365085;
	margin-bottom: 20px;
}

.img_header{
	max-height: 80px;
	max-width: 300px;
	padding: 10px 20px;
	float: left;
	margin: auto;
	margin-left: 10%;
}

.profils{
	display: table;
	padding: 30px 5px 5px 5px;
	padding-top: 20px;
	float: right;
}

.info_connexion{
	display: inline-block;
	font-style: italic;
	right: 20%;
	font-size: 0.75em;
	margin-top: 5px;
}

.lien_profil_contact{
	color: #FFFFFF !important;
	font-style: italic;
	
	
	display: table-row;
	text-align: center;
	padding: 2px 5px;
	border-radius: 5px;
	border-collapse: separate;
	margin: 30px 10px 7px 10px;
	margin-right: 10px;
	color: #FFFFFF;
	box-shadow: 0px 0px 3px #365085;
}
.lien_profil_contact:hover{
	text-decoration: underline;
}


.lien_deconnexion{
	display: inline-block;
	float: right;
	padding: 7px;
	margin: 32px;
	margin-right: 10%;
	color: #FFFFFF !important;
	background-color: #728CC1;
	border: 2px solid #365085;
	border-radius: 5px;
}

.lien_deconnexion:hover{
	box-shadow: 0.5px 0.5px 6px #a4bef3;
}

.titre_contact{
	font-size: 1.3em;
	font-weight: bold;
	font-style: normal;
	
}

/* ***************************************************************************
******************************* Fin style Header ***************************** 
**************************************************************************** */


/*
******************************** Carroussel news *****************************
*/


#caroussel_news {
    position: relative;
    height: 150px;
    padding: 0px;
    margin: 0px;
	margin-top: -20px;
    list-style-type: none;
}

.image_slider {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 150px;
    opacity: 0;
    z-index: 1;

    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
}

.image_slider img, .image_courante_slider img{
	height: 150px;
	width: 100%;
}

.image_courante_slider {
    opacity: 1;
    z-index: 2;
}

.slider_navigation {
	width: 100%;
	bottom: 9px;
	height: 11px;
	display: block;
	position: absolute;
	z-index: 3;
	text-align: center;
	padding: 0;
}

.slider_navigation .navigation_dots {
	top: -5px;
	width: 13px;
	height: 13px;
	margin: 0 6px;
	position: relative;
	border-radius: 100%;
	display: inline-block;
	background-color: rgba(255, 255, 255, 0.8);
	border: 0.5px solid rgba(50, 50, 50, 0.3);
}

.slider_navigation .navigation_dots:hover {
	cursor: pointer;
	background-color: rgba(255, 255, 255, 0.95);
}






/* ***************************************************************************
************************* Style page d'administration ************************ 
**************************************************************************** */


/*
Style page d'administration
*/

.recap_img_admin {
	width: 60%;
	border-collapse: collapse;
	margin: auto;
}

.recap_img_admin tr{
	height: 100px;
}

.recap_img_admin img{
	max-height: 70px;
	width: auto;
	padding: auto;
	border-radius: 5px;
}

.miniature_logo_admin img{
	max-height: 70px;
	width: auto;
	margin-bottom: 20px;
	border-radius: 5px;
}


.label_up_admin{
	margin-left: 15%;
	/* Le bouton d'upload est moins long sous firefox, il faut réduire la marge pour ne pas empiéter sur le nom du fichier */
		
}

#up_news {
	margin-left: -40%;
}

#up_icone, #up_logo{
	margin-left: -47%;
	/* Le bouton d'upload est moins long sous firefox, il faut réduire la marge pour ne pas empiéter sur le nom du fichier */
	}


_:-ms-lang(x), #up_news{
	margin-left: 0;
}

/*Internet explorer et Edge ont un décalage plus important que les autres navigateurs */
_:-ms-lang(x), #up_icone {
	margin-left: 0px;
}

_:-ms-lang(x), #up_logo {
	margin-left: 0px;
}

_:-ms-lang(x), .label_up_admin{
	margin-left: 56%;
}


/* ***************************************************************************
*********************** Fin style page d'administration ********************** 
**************************************************************************** */




/* ***************************************************************************
******************************** Style général ******************************* 
**************************************************************************** */

.g-recaptcha{
	width: 300px;
	height: auto;
	margin: auto;
}


.img_maintenance{
	margin: 50px auto;
	display: block;
	max-height: 400px;
	max-width: 30%;
}

/* Logo de la société affiché sur la page de connexion */
.img_accueil{
	margin: 50px auto;
	max-height: 300px;
	max-width: 600px;
	display: block;
}

/* map affichée dans la page nous contacter */
.map_societe{
	display: inline-block;
	width: 500px;
	height: 250px;
	padding: 10px;
}

.map_societe iframe{
	height: 250px;
	width: 500px;
}

/* Logo de la société affiché dans la page nous contacter (quand la map n'est pas renseignée) */
.img_contacter{
	max-height: 250px;
	max-width: 500px;
	padding: 0;
}

.coordonnees_societe{
	display: inline-block;
	width: 30%;
	margin: 0;
	padding: 10px;
	text-align: left;
}

.coordonnees_societe .sous_titre{
	text-align: left;
	padding-left:10px;
	padding-bottom:10px;
}


/* Formulaire de connexion (plus étroit qu'un formulaire classique) */
.formulaire{
	width: 40%;
	min-width: 400px;
	
    margin: 20px auto 30px;
	padding: 20px;
	border: 3px solid #728CC1; 
	border-radius: 5px;
	text-align: center;
	
}

.encadre {
	width: 80%;
	height: auto;
    margin: 20px auto 0;
	margin-bottom: 30px;
	padding: 20px 0px;
	border: 3px solid #728CC1; 
	border-radius: 5px;
	text-align: center !important;
}

.sous_titre{
	font-size:1.17em;
	font-weight:bold;
	text-align:center;
	margin: 10px auto;
}

.label{
	display: block;
	float: left;
	width: 40%;
	text-align: right;
	padding-right: 10px;
	padding-top: 10px;
}

/* champs qui ne doit pas s'étendre quand il est seul sur sa ligne (formulaire de connexion) */
.champs_court{
	text-align: left;
	padding: 5px;
	width: 150px;
	margin: 3px;
	padding-left: 10px;
}

.champs{
	text-align: left;
	padding: 5px;
	width: 35%;
	margin: 3px;
	padding-left: 10px;
	
}

/* textarea */
.champs_texte_long{
	padding: 5px;
	margin: 3px;
	padding-left: 10px;
	width: 300px;
	max-width: 700px;
	min-height: 80px;
}

.label_valeur{
	display: block;
	float: left;
	width: 30%;
	padding: 5px;
	margin: 3px;
	text-align: right;
	padding-right: 10px;
	
}

.valeur{
	text-align: left;
	padding: 5px;
	margin: 3px;
	width: 150px;
	min-height: 19px;
	padding-left: 10px;
}

.input_desactive{
	background-color: #F5F5F5;
	border: 1px solid #BBB;
}

.lien_id_oublies{
	font-size: 0.95em;
	margin: 0 30%;
}

/* cadre ne servant qu'à afficher des textes long informatifs (cookies, à propos, copyright etc) */
.informations{
	display: inline-block;
	width: 60%;
	padding: 20px 5px;
	margin: 30px;
	/* background-color: #a4bef3; */
	border: 3px solid #728CC1;
	border-radius: 5px;
}

.sous_titre{
	
}

.ligne_formulaire{
	min-height: 20px;
	width: 100%;
	padding: 10px 5px;
}


.lien_retour{
	display: block;
	text-align: left;
	margin: 20px;
	margin-left: 10%;
	font-size: 1.1em;
}


.bouton_annuler{
	font-family: Century Gothic;
    margin: 20px 250px 0 auto;
	padding: 10px 20px;
	font-size: 0.85em;
	font-weight: bold;
	
	color: #FFFFFF !important;
	border: 2px solid #700200;
	border-radius: 5px;
	
	background-color: #DDDDDD;
	border-color:  #999999 #666666 #666666 #999999;


}

.bouton_annuler:hover {
	cursor: pointer;
}

.bouton_annuler:active {
	/* on reproduit l'effet naturel du bouton "enfoncé" */
	background-color: #BBBBBB
}

.btn_formulaire_integre{
	display: inline-block;
	margin: 20px 40px;
}


.btn_raccourci_elmt{
	width: auto;
	margin: 0 10px;
	text-align: right;
	display: inline-block;
	float: right;
}

.btn_raccourci_elmt input{
	border: none;
	background-color: transparent;
	text-decoration: underline;
	font-family: Century Gothic;
	font-size: 1em;
	color: #429ef4;
}

.btn_raccourci_elmt input:active{
	background: transparent;
	border: none;
}
.cadre_formulaire_integre{
	display: inline-block; 
	width: auto; 
	max-width: 90%; 
	padding: 15px 25px;
	z-index: 10;
}


.formulaire_integre{
	position: relative;
	display: inline-block;
	margin: 30px; 
	padding: 0px;
}

.formulaire_integre input{
	padding: 0px;
	font-size: 0.9em;
} 

.formulaire_integre select{
	font-size: 0.9em;
}

.formulaire_integre span{
	text-align: left;
}

.invalide{
	border: 2px solid red;
}

.select_invalide {
	border: 1px solid red;
}

/* -------------------------------------------------------------------
  ----------------------- tableaux synthèse --------------------------
  ----------------------------------------------------------------- */

  
.lien_export{
	display: inline-block;
	width: 500px;
	text-align: right;
}	

.ligne_justifier_droite{
	text-align: right;
	margin-right: 10%;
	padding-top: 20px;
}
  

.filtrer_risques{
	display: inline-block;
	width: 100%;
	margin-bottom: 20px;
	text-align: right;
}

.filtrer_risques label{
		margin: 0 10px;
}

.filtrer_risques select{
	margin-right: 30px;
}
  
  
  
.tableau_recap{
	display:table;
	width: 80%;
	min-width: 950px;
	margin: auto;
	border: 1px solid #728CC1;
	border-collapse:collapse;
}


.entete_tableau{
	display: table-row;
	font-weight: bold;
	background-color: #728CC1;
	color: #FFFFFF;
}

.entete_tableau div{
	display: table-cell;
    vertical-align:middle;
	padding: 10px;
	border: 1px solid #728CC1;
}

.ligne_tableau_clickable{ 
	display: table-row; 
	height: 100%; 
	width: 100%;
	color: #333045!important;
	margin:0;
}

.ligne_tableau_clickable:nth-child(even) {
	background-color: #f5f5f5;
}

.ligne_tableau_clickable_en_surbrillance{
	display: table-row; 
	height: 100%; 
	width: 100%;
	color: #333045!important;
	margin:0;
	
	background-color: #ffe0e0;
}

.ligne_tableau_clickable div, .ligne_tableau_clickable_en_surbrillance div{
	display: table-cell;
  vertical-align:middle;
	padding: 10px;
	border: 1px solid #728CC1;
}

.ligne_tableau_clickable:hover, .ligne_tableau_clickable_en_surbrillance:hover{
	background-color: #a4bef3;
	color: #FFFFFF!important;
}

// .ligne_tableau_clickable_en_surbrillance:hover{
	// background-color: #ff6666;
	// color: #FFFFFF!important;
// }




/* -------------------------------------------------------------------
  --------------------- fin tableaux synthèse ------------------------
  ----------------------------------------------------------------- */

  
/* -------------------------------------------------------------------
  --------------------- Tableaux de documents ------------------------
  ----------------------------------------------------------------- */
  
.liste_documents{
	display:table;
	width: auto;
	margin: 30px auto;
	border: 1px solid #728CC1;
	border-collapse:collapse;
}
  
  
.liste_documents div{
	height: 25px;
}
.ligne_document{
	display: table-row; 
	height: 100%; 
	width: 100%;
	color: #333045;
	margin:0;
	
}
  
.ligne_document div{
	display: table-cell;
	vertical-align:middle;
	padding: 10px 40px;
	
}

  
/* -------------------------------------------------------------------
  ------------------- Fin tableaux de documents ----------------------
  ----------------------------------------------------------------- */
  
  
/* -------------------------------------------------------------------
  ------------------- mise en page pages détail ----------------------
  ----------------------------------------------------------------- */

.tableau_detail{
	display: table;
	width: 95%;
	margin: 0 2.5%;
	text-align: left;
}

.ligne_detail{
	display: table-row;
	height: 40px;
	width: 100%;
}

.titre_section{
	display: table-row;
	font-size: 1.3em;
	font-weight: bold;
	height: 40px;
}

.case_detail{
	/* min-height: 20px; */
	/* min-width: 225px; */
	/* width: 25%; */
	/* display: table-cell; */
	display: inline-block;
	padding: 5px 0;
	/* border: 4px solid transparent; */
	/* border-left: 3px solid #E87A26; */
	vertical-align: middle;
}

.case_vide{
	/* min-height: 20px; */
	/* min-width: 225px; */
	/* width: 25%; */
	/* display: table-cell; */
	display: inline-block;
	padding: 5px 10px;
	/* border: 4px solid transparent; */
	/* border-left: 3px solid transparent; */
	vertical-align: middle;
}

.label_detail{
	display: inline-block;
	margin-right : 7px;
	width: 30%;
	
}

.valeur_detail{
	display: inline-block;
	text-align: left;
	font-weight:bold;
	width: 60%;
	margin-right: 7px;
}

.rtf{
	// color: initial;
	// font: initial;
	// font-size: initial;
}

/* -------------------------------------------------------------------
  ----------------- fin mise en page pages détail --------------------
  ----------------------------------------------------------------- */

/* -------------------------------------------------------------------
  ---------------------- cadre profil assure -------------------------
  ----------------------------------------------------------------- */

.profil_assure{
	display: inline-block;
	width: 25%;
	margin: 30px 3%;
	border: 1px solid #728CC1;
	border-radius: 5px;
	text-decoration: none;
}

.profil_assure_clickable{
	display: inline-block;
	max-width: 350px;
	width: 25%;
	margin: 30px 3%;
	border: 1px solid #728CC1;
	border-radius: 5px;
	text-decoration: none;
	transition: 0.2s;
}

.profil_assure_clickable:hover{
	box-shadow: 1px 1px 1px #728CC1;
	/* box-shadow: 0px 0px 1px 2px #FFF, 0px 0px 2px 4px #728CC1; */
	background-color: #f8f8ff;
	// border: 2px solid #728CC1;
}

.profil_assure_clickable a{
	color: #333045;
}

.header_profil_assure {
	padding: 10px 0px;
	width:100%;
	font-weight: bold;
	background-color: #728CC1;
	color: #FFFFFF;
	border-radius: 5px 5px 0 0;
}

/* -------------------------------------------------------------------
  -------------------- fin cadre profil assure -----------------------
  ----------------------------------------------------------------- */

  
  
/* -------------------------------------------------------------------
  ------------------ sections pliantes synthèse ----------------------
  ----------------------------------------------------------------- */


.sectionSynthese label {
	font-size: 1.8em;
	font-weight: bold;
	text-align: left;
	margin-left: 10%;
	max-width: 335px;
	
  cursor: pointer;
  display: block;
}


.deplier_section {
  display: none;
}
.sectionSynthese .synthese {
  transition: all 0.25s ease-in-out;
  margin-bottom: 30px;
  opacity: 1;
}
.sectionSynthese .synthese:hover {
  cursor: default;
}
.deplier_section:checked + .synthese {
  cursor: pointer;
  overflow: hidden;
  opacity: 0;
  transition: all 0.25s ease-in-out;
  height:0;
  margin-bottom:30px;
}


/* -------------------------------------------------------------------
  ---------------- fin sections pliantes synthèse --------------------
  ----------------------------------------------------------------- */
  

/* -------------------------------------------------------------------
  ------------------ listes déroulantes synthèse ----------------------
  ----------------------------------------------------------------- */
  
  
  .filtrerSyntheseSansTableau{
	display: inline-block;
	position: relative;
	text-align: right;
	margin-right: 10%;
	float: right;
	margin-bottom: 30px;
	height: auto;
	width: 210px;
	margin-top: -57px;
}
  
.filtrerSynthese, .trierSynthese, .filtrer_assure{
	display: inline-block;
	position: relative;
	text-align: right;
	margin-right: 10%;
	float: right;
	margin-bottom: 32px;
	margin-top: -30px;
	height: auto;
	width: 210px;
	
}

.trierSynthese{
	margin-right:50px;
	text-align: left;
}

.filtrer_assure{
	display: block;
	float: none;
	margin: 30px auto 20px;
	width: 400px;
}

.filtrerSynthese label, .filtrerSyntheseSansTableau label, .trierSynthese label, .filtrer_assure label{
	font-size: 1.1em;
	text-decoration: none;
	font-weight: normal;
    cursor: pointer;
    display: block;
    overflow: hidden;
	height: 25px;
	text-align:left;
	padding-left: 10px;
	padding-top: 3px;
	padding-right: 10px;
	margin-left:-10px;
	box-shadow: 0.25px 0.25px 3px #728CC1;
	border: 1px solid transparent;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.trierSynthese label{
	text-align:left;
	padding-left: 10px;
}



.filtrerSynthese label:hover, .filtrerSyntheseSansTableau label:hover, .trierSynthese label:hover, .filtrer_assure label:hover{
	border: 1px solid #728CC1;
	box-shadow: 0px 0px 0px 0px;
}

.filtrerSynthese input[type="checkbox"], .filtrerSyntheseSansTableau input[type="checkbox"], .trierSynthese input[type="checkbox"], .filtrer_assure input[type="checkbox"]{
  display: none;
}

.filtres{
	height: auto;
	width: 100%;
	padding-left: 6px;
	padding-right: 2px;
	background-color: #FFFFFF;
	border: 2px solid #365085;
}
.filtrerSynthese input[type="submit"], .filtrerSyntheseSansTableau input[type="submit"], .trierSynthese input[type="submit"], .filtrer_assure input[type="submit"]{
	height: auto;
	font-size: 1.1em;
	width: 100%;
	background-color: transparent;
	padding: 3px 0px;
	margin-left: 5px;
	padding-left: 5px;
	text-align:left;
	padding-right:10px;
	margin: 0;
	border: none;
	font-weight: normal;
	color: #333045;
}


.filtrerSynthese .filtres, .filtrerSyntheseSansTableau .filtres, .trierSynthese .filtres, .filtrer_assure .filtres{
	cursor: pointer;
	opacity: 0;
	height:0;
	display:none;
	position:absolute;
	right:0;
	margin-bottom:30px;
	z-index: 10;
}

.filtrerSynthese input:checked + .filtres, .filtrerSyntheseSansTableau input:checked + .filtres, .trierSynthese input:checked + .filtres, .filtrer_assure input:checked + .filtres{
    opacity: 1;
	display:inline-block;
	position:absolute;
	height: auto;
}


.choix{
	padding-right: 10px;
	margin-left:-8px;
	width: 100%;
}

.choix:hover{
	background-color: #a4bef3;
	
}

.choix:hover input[type=submit]{
	color: #FFFFFF!important;
}

  
  
/* -------------------------------------------------------------------
  ----------------fin listes déroulantes synthèse ---------------------
  ------------------------------------------------------------------ */



/* -------------------------------------------------------------------
  ------------------------ Page paiement -----------------------------
  ------------------------------------------------------------------ */

  
  
.bloc_entite{
	margin: 50px 25%;
	border: 1px solid #728CC1;
}
.entite_paiement{
	width: 100%;
	background-color: #F9F9FF;
}

.titre_entite{
	height: 15px;
	vertical-align: middle;
	background-color: #728CC1;
	color: #FFFFFF;
    padding: 10px;
	font-weight: bold;
	
}

.entete_colonnes_tableau_paiement{
	background-color: #FFFFFF;
	height: 30px;
}

.ligne_paiement{
}

.valeur_paiement{
	vertical-align: middle;
	padding: 5px 10px;
}

.desactive {
	background:#FDFDFD;
	opacity: 0.6;

}



.ligne_montant_total{
	text-align: right;
	margin-right: 25.5%;
	font-size: 1.5em;
	font-weight: bold;
	
}

/* -------------------------------------------------------------------
  ----------------------- Fin page paiement ---------------------------
  ------------------------------------------------------------------ */

/* ***************************************************************************
****************************** Fin style général ***************************** 
**************************************************************************** */



/* ***************************************************************************
********************************* Style footer ******************************* 
**************************************************************************** */

.pied_page{
	padding: 20px 0px;
	margin-top: 20px;
	background-color: #365085;
	color: #FFFFFF;
	font-size:0.85em;
	
}
/* mixin pour faire coller le footer en bas de page sur IE (flex est pris en charge mais plein de bugs) */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	.contenu{
		min-height: calc(91.2vh - 100px);
	}
}

.pied_page span{
	color: #FFFFFF;
	text-decoration: none;
	padding: 0px 15px;
}

.liens_pied_page a:hover{
	text-decoration:underline;
}

.liens_pied_page a{
	color: #FFFFFF;
	text-decoration: none;
	padding: 0px 15px;
	border-right: 1px solid #FFFFFF;
}

.liens_pied_page :last-child{
	border: 0px;
}



/* ***************************************************************************
******************************* Fin style footer ***************************** 
**************************************************************************** */



