
:root {
	text-align: center;
}

html, body {
	font-family: Trebuchet MS;
	color: #333333;
	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: Trebuchet MS;
}

textarea{
	resize:none;
	overflow: auto;
}

p {
	margin: 0;
}

input[type=submit], input[type=reset]{
	margin: 20px auto 0;
	padding: 10px 20px;

	color: #FFFFFF;
	font-weight: bold;

	border-radius: 5px;

	background-color: #993300;
	border-color: #5d0000;

}

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: #5d0000;
}

input[type=checkbox] {
	width: 20px;
	height: 20px;
}

select[readonly] option, select[readonly] optgroup {
	pointer-events: none;
    display: none;
}

/* 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: Trebuchet MS;
	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: #7E9BBE;
	border: 1px solid #425f82;

	/* on force la position pour pouvoir le supperposer au bouton d'origine de l'uploader */
	z-index: 1;
	position: relative;

}

input[type=file]::file-selector-button {
	font-family: Trebuchet MS;
	font-weight: bold;
	text-align: right;
	padding: 10px 20px;
	color: #FFFFFF;
	border-radius: 5px;
	display: inline-block;
	background-color: #7E9BBE;
	border: 1px solid #425f82;
}

.label_multiple_uploader{
	width: 125px;
	text-align: center;
}



.label_uploader:hover{
	cursor: pointer;
}


/* 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: #2a4d85;
}

a:visited {
	text-decoration: none;
	color: #2a4d85;
}

input[type=checkbox]{
	width: 20px;
	height: 20px;
}

/* ***************************************************************************
************************ Fin comportements natif modifié **********************
**************************************************************************** */



/* ***************************************************************************
************************** animation chargement ************************
**************************************************************************** */

#flouChargement{
	position: absolute;
	width: 100%;
	height : 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index : 1000;
	background-color: rgba(255,255,255,0.7);
}

#flouChargement>svg{
	height: 100px;
}

#flouChargement>svg>g>path{
	fill: #425f82;
	animation: 1.20s linear animationTest infinite;
	transition: all 1s;
	transform-origin: center center;
}

#flouChargement>svg>g :nth-child(2){ animation-delay: -1.05s; }
#flouChargement>svg>g :nth-child(3){ animation-delay: -0.90s; }
#flouChargement>svg>g :nth-child(4){ animation-delay: -0.75s; }
#flouChargement>svg>g :nth-child(5){ animation-delay: -0.60s; }
#flouChargement>svg>g :nth-child(6){ animation-delay: -0.45s; }
#flouChargement>svg>g :nth-child(7){ animation-delay: -0.30s; }
#flouChargement>svg>g :nth-child(8){ animation-delay: -0.15s; }

@keyframes animationTest{
	0%{ transform: rotate(0); }
	100%{ transform: rotate(360deg); }
}


/* ***************************************************************************
************************** Notification ************************
**************************************************************************** */

#cadreOption{
	pointer-events: none;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	z-index : 100;
	position : absolute;
	right : 0px;
	top : 300px;
	min-width: 90vw;
	overflow : hidden;
}

#cadreOption > *{
	pointer-events: initial;
}

form:invalid [type=submit] {
  opacity: 0.5;
  pointer-events: none;
}

.popUp{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	background: white;
	padding: 10px 18px 10px 18px;
	width: fit-content;
	border: 6px solid #b0cdf0;
	border-radius: 6px;
	cursor : pointer;
	box-sizing: content-box;
}

.popUp[data-status=mini]{
	margin-bottom: 0px;
	padding: 1px;
	border-top-width: 2px;
	border-bottom-width: 2px;
	border-right-width: 0px;
	border-radius: 6px 0 0 6px;
	gap: 0px;
}

.textNotification{
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 300px;
	max-width: 90vw;
	min-height: 30px;
	padding: 5px 0 5px 10px;
	overflow: hidden;
	border-left : 2px solid #f5f5f5;
	transition: all 500ms cubic-bezier(.5,-.2,.5,1.2) 0s;
}

.popUp[data-status=mini]>.textNotification{
	width: 0px;
	min-width: 0px;
	height: 0px;
	min-height: 0px;
	padding: 0 0 0 0;
	color: inherit;
}

.popUp > div.iconeNotification{
	flex-shrink : 0;
	background-color: #7E9BBE;
	width: 30px;
	height: 30px;
	animation: 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s 1 animationNotif;
}

@keyframes animationNotif{
	0%{
		width: 0px;
		height: 0px;
	}
	40%{
		width: 0px;
		height: 0px;
	}
	100%{
		width: 30px;
		height: 30px;
	}
}

.popUpOk{
	border: 6px solid #5e892b;
}

.popUpOk > div.iconeNotification{
	mask-image: url('Image/popUpValide.svg');
	-webkit-mask-image: url('Image/popUpValide.svg');
	mask-size: contain;
	-webkit-mask-size: contain;
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	background-color: #5e892b;
}

.popUpErreur{
	border: 6px solid #bd1f1c;
}

.popUpErreur > div.iconeNotification{
	mask-image: url('Image/popUpErreur.svg');
	-webkit-mask-image: url('Image/popUpErreur.svg');
	mask-size: contain;
	-webkit-mask-size: contain;
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	background-color: #bd1f1c;
}

/* ***************************************************************************
************************** Recherche ************************
**************************************************************************** */

#barreRecherche{
	width: fit-content;
	background-color : #993300;
	border : 3px outset #5d0000;
	border-right : 0px;
	border-radius : 5px 0px 0px 5px;
	transition : transform 1s ease;
}

#barreRecherche>form{
	min-height : 45px;
	display : flex;
	flex-direction: row;
	align-items : center;
}

.iconeRecherche{
	height: 35px;
	width: 35px;
	margin: 0 10px 0 0;
	border: 5px solid transparent;
	background-color: #FFFFFF;
	mask-image: url('Image/iconeRecherche.svg');
	-webkit-mask-image: url('Image/iconeRecherche.svg');
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-origin: content-box;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-origin: content-box;
	vertical-align: middle;
	float: left;
	cursor : pointer;
}

.iconeRecherche:active{
	height: 29px;
	width: 29px;
	margin: 0 10px 0 0;
	border: 8px solid transparent;
	cursor : none;
}

input#recherche{
	margin: 0 10px 0 0;
	padding: 2px 5px 2px 5px;
	width : 200px;
	height : 28px;
	cursor : help;
	border: 1px inset #cb6532;
	border-radius : 3px;
}

input#rechercheSubmit{
	margin : 0 10px 0 0;
	padding: 0px;
	width : 34px; 
	height : 34px; 
}

label[for=rechercheCheck]{
	border: 2px outset #5d0000;
	border-radius: 5px;
	margin : 0px 10px 0px 0px;
	opacity: 0.2;
	width: 30px;
	height: 30px;
	transition: opacity 0.2s;
}
label[for=rechercheCheck]>div{
	width: 30px;
	height: 30px;
	background-color: #FFFFFF;
	mask-image: url('Image/iconeMarker.svg');
	-webkit-mask-image: url('Image/iconeMarker.svg');
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-origin: content-box;
}

label[for=rechercheCheck]:active{
	background-color: #5d0000;
}

#rechercheCheck:checked + label[for=rechercheCheck]{
	opacity: 1;
}

#rechercheCheck{
	display: none;
}

/******************************************************/

/* ***************************************************************************
************************* Option des tableau de synthese *********************
**************************************************************************** */

.titreOptionTableau{
	margin-right:10%;
	margin-left:10%;
}

.iconeExport{
	height: 25px;
	width: 25px;
}

.ligne_tableau_clickable div.surbrillance, .surbrillance{
	display : inline-block;
	border : 2px solid #993300;
	border-radius : 5px;
	padding : 5px;
	background-color : #993300;
	color : #333333}

.ligne_tableau_clickable div.surbrillance:hover, .surbrillance:hover{
	background-color : #cb6532;
	color : #333333}

.epxortCSV , .exportCSV:link , .exportCSV:visited{
	display : flex;
	align-items: center;
	justify-content: center;
	gap: 10px;

	padding: 5px 5px 5px 10px;

	color: #333333;
	font-weight: bold;

	border-radius: 5px;
	border: 2px outset #7E9BBE;
	
	position: relative;
	background-color: #FFFFFF;
}

.exportCSV:hover{
	border: 2px outset #425f82;
	cursor: pointer;
}

.exportCSV:active{
	border: 2px inset #b0cdf0;
	background-color: #b0cdf0;
	color: #FFFFFF;
}


/* ***************************************************************************
************************* Style Message d'information ************************
**************************************************************************** */

.erreur{

	width: auto;
	max-width : 70%;
	margin: 10px 20px 20px 20px;
	padding: 20px 30px;
	display: inline-block;

	background-color: #ffffff;
	color: #bd1f1c;
	border: 2px solid #bd1f1c;
	border-radius: 5px;
	text-align: center;
}

.confirmation{
	width: auto;
	max-width : 70%;
	margin: 20px 20px 10px 20px;
	padding: 20px 30px;
	display: inline-block;

	background-color: #ffffff;
	color: #333333;
	border: 2px solid #5e892b;
	border-radius: 5px;
	text-align: center;
}

.information{
	width: auto;
	max-width : 80%;
	margin: 20px auto 40px;
	padding: 20px 0px;
	display: table;

	background-color: #ffffff;
	color: #333333;
	border: 3px solid #7E9BBE;
	border-radius: 5px;
	box-shadow: inset 0px 0px 0px 6px #b0cdf0;
	text-align: center;
}

.tuile_tableau_de_bord{
	display: table-cell;
	border-right: 1px solid #7E9BBE;
	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: #333333 !important;
	border-bottom: 1px solid #7E9BBE;
}

/* ***************************************************************************
*********************** Fin style message d'information **********************
**************************************************************************** */




/* ***************************************************************************
********************************** Style Header *******************************
**************************************************************************** */


.header{
	width: 100%;
	height: 100px;
	padding: 0;

	color: #FFFFFF;
	background-color: #425f82;
	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;

	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 #425f82;
}
.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: #7E9BBE;
	border: 1px solid #7E9BBE;
	border-radius: 5px;
}

.lien_deconnexion:hover{
	background-color:#425f82;
	border:1px solid #7E9BBE;
}

.titre_contact{
	font-size: 1.3em;
	font-weight: bold;
	font-style: normal;

}

.titre_contact svg{
	fill:#FFFFFF;
	height: 40px;
	width:auto;
}

.picto_contact{
	display:inline-block;
	float:left;
}

/* ***************************************************************************
******************************* 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;
}



/* 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;
	min-width: 40%;
	margin: 0;
	padding: 10px;
	text-align: left;
}

.coordonnees_societe .sous_titre{
	text-align: left;
	padding-left:10px;
	padding-bottom:10px;
}

.encadre_contact_cabinet{
	width: 80%;
	height: auto;
	margin: 20px auto 0;
	margin-bottom: 30px;
	padding: 20px 0px;
	background-color:#FFFFFF;
	border: 3px solid #7E9BBE;
	border-radius: 5px;
	text-align: center !important;
	display: flex;
	text-align: center;
}

.contact_cabinet_division{
	margin: auto;
}

/* mixin pour forcer l'espacement avec la map/ (flex est pris en charge mais plein de bugs) */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	.coordonnees_societe{
		margin-left: 460px;
	}
}

/* map affichée dans la page nous contacter */
.map_societe{
	display: inline-block;
	width: 500px;
	height: 250px;
	padding: 10px;
	margin-left: 50px;
}

.map_societe iframe{
	height: 250px;
	width: 500px;
}


/* Formulaire de connexion (plus étroit qu'un formulaire classique) */
.formulaire{
	width: 40%;
	min-width: 400px;

	margin: 20px auto 30px;
	padding: 20px;
	border: 3px solid #7E9BBE;
	border-radius: 5px;
	text-align: center;
	background-color: #FFFFFF;

}

.encadre {
	width: 80%;
	height: auto;
	margin: 20px auto 0;
	margin-bottom: 30px;
	padding: 20px 0px;
	border: 3px solid #7E9BBE;
	border-radius: 5px;
	text-align: center !important;
	background-color: #FFFFFF;
}

.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;
}

/* 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: #FFFFFF;
	border: 3px solid #7E9BBE;
	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: Trebuchet MS;
	margin: 20px 15% 0 auto;
	padding: 10px 20px;
	font-size: 0.80em;
	font-weight: bold;

	color: #FFFFFF !important;
	border: 2px solid #5d0000;
	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;
}

.bouton_navigation_formulaire{
	font-family: Trebuchet MS;
	margin: 20px 15% 0 auto;
	padding: 10px 20px;
	font-size: 0.80em;
	font-weight: bold;

	color: #FFFFFF !important;
	border: 2px solid #5d0000;
	border-radius: 5px;

	background-color: #993300;
	border-color:  #5d0000 #c39400  #c39400  #5d0000 ;
}

.bouton_navigation_formulaire:hover {
	cursor: pointer;
}

.bouton_navigation_formulaire:active {
	/* on reproduit l'effet naturel du bouton "enfoncé" */
	background-color: #5d0000;
}


.groupe_formulaires{
	margin: 0.6% 10%;
	text-align: left;
}

.btn_formulaire_integre{
	display: inline-block;
	margin: 10px 40px;
	min-width: 200px;
	max-width: 400px;
}

.btn_form {
	width: 100%;
}

.btn_raccourci_elmt{
	width: auto;
	margin: 0 15px;
	text-align: right;
	display: inline-block;
	float: right;
	margin-top: 30px;
}

.btn_raccourci_elmt a{
	border: none;
	font-weight: bold;
	background-color: transparent;
	text-decoration: underline;
	font-family: Trebuchet MS;
	font-size: 1em;
	color: #2a4d85;
	
}

.btn_raccourci_docs{
	width: auto;
	margin: 0 15px;
	text-align: right;
	display: inline-block;
	float: right;
	margin-top: -20px;

}
.btn_raccourci_docs a{
	border: none;
	font-weight: bold;
	background-color: transparent;
	text-decoration: underline;
	font-family: Trebuchet MS;
	font-size: 1em;
	color: #2a4d85;
}

.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 input[type="submit"], .formulaire_integre input[type="button"], .formulaire_integre button{
	cursor:pointer;
}

.formulaire_integre select{
	font-size: 0.9em;
}

.formulaire_integre span{
	text-align: left;
}

.invalide{
	border: 2px solid red;
}

.select_invalide {
	border: 1px solid red;
}

/* -------------------------------------------------------------------
  ----------------------- onglet --------------------------
  ----------------------------------------------------------------- */

.ongletTete{
	display: flex;
	flex-wrap: wrap;
	border-bottom: 10px solid #7E9BBE;
}

.ongletBouton{
	padding: 14px 16px 14px 16px ;
	background-color: #425f82;
	color : #FFFFFF;
	border: none;
	border-radius : 5px 5px 0 0;
	outline: none;
	cursor: pointer;
}

.ongletBouton.active{
	background-color: #7E9BBE;
}

.ongletBouton:hover{
	background-color: #062346;
	color : #FFFFFF;
}

.ongletCorps{
	display: none;
	padding: 6px 12px;
	border: 1px solid #7E9BBE;
	border-top: none;
	border-radius : 0 0 5px 5px;
}

/* -------- onglet synthese --------- */

.ongletTete.synthese{
	margin: 0 10% 0 10%;
	padding: 0 20% 0 0;
}

.ongletTete.synthese .ongletBouton{
	font-weight: bold;
	font-size: 1.4em;
}

.ongletCorps.synthese{
	display: none;
	width : 80%;
	margin: auto;
	border: none;
	padding: 0;
}

/* -------------------------------------------------------------------
  ----------------------- 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-top: -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;
	background-color: #FFFFFF;
	border: 1px solid #7E9BBE;
	border-collapse:collapse;
}

.ongletCorps > .tableau_recap{
	width: 100%;
}

.ligne_paiement:nth-of-type(2n-1){
	background-color: #f5f5f5;
}


.entete_tableau{
	display: table-row;
	font-weight: bold;
	background-color: #7E9BBE;
	color: #FFFFFF;
}

.entete_tableau_documents{
	display: table-row;
	font-weight: bold;
	background-color: #7E9BBE;
	color: #FFFFFF;
}

.entete_tableau div{
	display: table-cell;
	vertical-align:middle;
	padding: 2px 4px 2px 2px;
	border: 1px solid #7E9BBE;
}

.entete_tableau_documents div{
	display: table-cell;
	vertical-align:middle;
	padding: 10px 10px 10px 5px;
	border: 1px solid #7E9BBE;
}

.ligne_tableau_clickable{
	display: table-row;
	height: 100%;
	width: 100%;
	color: #333333!important;
	margin:0;
}

.ligne_tableau_clickable:nth-child(even) {
	background-color: #f5f5f5;
}

.ligne_tableau_clickable:nth-child(odd) {
	background-color: #FFFFFF;
}



.ligne_tableau_clickable_en_surbrillance{
	display: table-row;
	height: 100%;
	width: 100%;
	color: #333333!important;
	margin:0;

	background-color: #ffe0e0;
}

.ligne_tableau_clickable div, .ligne_tableau_clickable_en_surbrillance div{
	display: table-cell;
  vertical-align:middle;
	padding: 10px 30px;
}

.ligne_tableau_clickable:hover, .ligne_tableau_clickable_en_surbrillance:hover{
	background-color: #b0cdf0;
	color: #FFFFFF!important;
}

 .ligne_tableau_clickable_en_surbrillance:hover{
	 background-color: #ff6666;
	 color: #FFFFFF!important;
 }

.bouttonTriTableau{
	display: block;
	padding: 0px;
	font-weight: normal;
}

.bouttonTriTableau:hover{
	cursor: pointer;
}

.bouttonTriTableau:active{
	color: #993300;
}

.sectionTitreTableau{
	width: 100%;
	padding: 0px;
}


/* -------------------------------------------------------------------
  --------------------- fin tableaux synthèse ------------------------
  ----------------------------------------------------------------- */


/* -------------------------------------------------------------------
  --------------------- Tableaux de documents ------------------------
  ----------------------------------------------------------------- */

.liste_documents{
	display:table;
	width: auto;
	margin: 30px auto;
	border: 1px solid #7E9BBE;
	border-collapse:collapse;
}


.liste_documents div{
	height: 25px;
}
.ligne_document{
	display: table-row;
	height: 100%;
	width: 100%;
	color: #333333;
	margin:0;
	background-color: #FFFFFF;

}

.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 #993300; */
	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%;
	text-align:right;

}

.valeur_detail{
	display: inline-block;
	text-align: left;
	min-height:19px;
	font-weight:bold;
	width: 60%;
	margin-right: 7px;
	background-color:#f3f3f3;
	padding: 5px 3px;
}

.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 #7E9BBE;
	border-radius: 5px;
	text-decoration: none;
}

.profil_assure_clickable{
	display: inline-block;
	max-width: 350px;
	width: 25%;
	margin: 30px 3%;
	border: 1px solid #7E9BBE;
	border-radius: 5px;
	text-decoration: none;
	transition: 0.2s;
}

.profil_assure_clickable:hover{
	box-shadow: 1px 1px 1px #7E9BBE;
	/* box-shadow: 0px 0px 1px 2px #FFF, 0px 0px 2px 4px #7E9BBE; */
	background-color: #f8f8ff;
	// border: 2px solid #7E9BBE;
}

.profil_assure_clickable a{
	color: #333333;
}

.header_profil_assure {
	padding: 10px 0px;
	width:100%;
	font-weight: bold;
	background-color: #7E9BBE;
	color: #FFFFFF;
	border-radius: 5px 5px 0 0;
}

/* -------------------------------------------------------------------
  -------------------- fin cadre profil assure -----------------------
  ----------------------------------------------------------------- */



/* -------------------------------------------------------------------
  ------------------ sections pliantes synthèse ----------------------
  ----------------------------------------------------------------- */

.titreTableauFleche{
	transition: all 0.25s ease-in-out;
	opacity: 0;
}

.titreTableau {
	font-size: 1.8em;
	font-weight: bold;
	text-align: left;
	width: fit-content;
	cursor: pointer;
	display: block;
	margin-left:10%;
}

.titreTableau:hover .titreTableauFleche{
	color: #333333;
	opacity: 1;
}


.deplier_section {
  display: none;
}
.sectionSynthese .synthese:hover {
  cursor: default;
  margin-bottom: 30px;
}
.sectionSynthese .synthese {
  transition: all 0.25s ease-in-out;
  opacity: 1;
  display: block;
  margin-bottom: 30px;
}

.sectionSynthese{
	margin-bottom: 30px;
}


/* -------------------------------------------------------------------
  ---------------- fin sections pliantes synthèse --------------------
  ----------------------------------------------------------------- */




/* -------------------------------------------------------------------
  ------------------------ questionnaires ----------------------------
  ----------------------------------------------------------------- */

.bloc_questionnaires{
	display: table;
	width: auto;
	margin: 30px auto;
	border: 1px solid #7E9BBE;
	border-collapse: collapse;
}

.questionnaire{
	display: table-row;
	background-color: #FFFFFF;
	width: 100%;
	margin: 0;
}

.questionnaire div {
	display: table-cell;
	vertical-align: middle;
	padding: 10px 40px;
	height: 25px;
}

/* -------------------------------------------------------------------
  ---------------------- fin questionnaires --------------------------
  ----------------------------------------------------------------- */




/* -------------------------------------------------------------------
  ------------------ listes déroulantes synthèse ----------------------
  ----------------------------------------------------------------- */


.filtrerSyntheseSansTableau{
	display: inline-block;
	position: relative;
	text-align: right;
	margin-right: 2%;
	float: right;
	margin-bottom: 30px;
	margin-top: -57px;
	height: auto;
	width: 210px;
	padding: 3px;
}

.filtrerSynthese, .trierSynthese, .filtrer_assure{
	display: inline-block;
	position: relative;
	text-align: right;
	height: auto;
	width: 210px;
}

.optionSynthese{
	display: flex;
	justify-content : flex-end;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap-reverse;
	padding: 0 0 20px 0;
	height: 40px;
	margin-top: -60px;
	margin-left: auto;
}

.ongletCorps > .optionSynthese{
	width: 25%;
}

.trierSynthese{
	margin-right:50px;
	text-align: left;
}

.filtrer_assure{
	display: block;
	float: none;
	margin: 70px auto 30px;
	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: 5px 10px 5px 10px;
	border: 2px solid #b0cdf0;
	border-radius: 5px;
	white-space: nowrap;
	text-overflow: ellipsis;
	background-color: #FFFFFF;
}

.trierSynthese label{
	text-align:left;
	padding-left: 10px;
	background-color:#333333;
}


.filtrerSynthese label:hover, .filtrerSyntheseSansTableau label:hover, .trierSynthese label:hover, .filtrer_assure label:hover{
	border: 2px solid #425f82;
}

.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 #425f82;
}
.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: #333333;
}


.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: #b0cdf0;

}

.choix:hover input[type=submit]{
	color: #FFFFFF!important;
}



/* -------------------------------------------------------------------
  ----------------fin listes déroulantes synthèse ---------------------
  ------------------------------------------------------------------ */



/* -------------------------------------------------------------------
  ------------------------ Page paiement -----------------------------
  ------------------------------------------------------------------ */



.bloc_entite{
	margin: 50px 25%;
}
.entite_paiement{
	width: 100%;
	background-color: #F9F9FF;
}

.titre_entite{
	font-weight: bold;
	font-size: 1.3em;
	padding: 10px;
}

.titre_assure{
	height: 30px;
	vertical-align: middle;
	background-color: #7E9BBE;
	color: #FFFFFF;
	padding: 10px;
	padding-left: 25px;
	font-weight: bold;

}

.entete_colonnes_tableau_paiement{
	background-color: #FFFFFF;
	height: 30px;
}


.liste_a_payer{
	display:table;
	min-width: 550px;
}


.ligne_paiement{
}

.valeur_paiement{
	vertical-align: middle;
	padding: 5px 10px;
}

.desactive {
	background:#FDFDFD;
	opacity: 0.6;

}



.ligne_montant_total{
	text-align: right;
	margin-right: 30%;
	font-size: 1.5em;
	font-weight: bold;

}

/* -------------------------------------------------------------------
  ----------------------- Fin page paiement ---------------------------
  ------------------------------------------------------------------ */

  /* -------------------------------------------------------------------
  ------------------------- Pages documents ----------------------------
  ------------------------------------------------------------------ */


.div_typologies{
	width:80%;
	margin-left:10%;

}

.div_typologies a {
	font-size:1.2em;
	display:inline-block;
	background-color : #FFFFFF;
	color : #7E9BBE;
	min-width : 200px;
	padding:10px;
	height: 200px;
	border : 1px solid #7E9BBE;
	margin : 20px;
	/* background-image: url("Image/picto_contrat.svg"); */
	background-size:100px 100px;
	background-repeat:no-repeat;
	background-position:bottom 20px right 40%;
	vertical-align:top;
	border-radius: 5px;
}

.div_typologies a:hover {
	background-color:#CCCCCC;
}

.div_typologies svg{
	padding-top:20px;
	fill: #425f82;
	width:100px;
	height:auto;
	padding-bottom:20px;
}

.info_document{
	font-size:1em;
	display:inline-block;
	background-color : #DDDDDD;
	color : #555555;
	width : 200px;
	padding:10px;
	height: 200px;
	border : 1px solid #555555;
	margin : 20px;
	/* background-image: url("Image/picto_contrat.svg"); */
	background-size:100px 100px;
	background-repeat:no-repeat;
	background-position:bottom 20px right 40%;
	vertical-align:top;
	border-radius: 5px;

}

.info_document svg{
	padding-top:20px;
	fill: #666666;
	width:100px;
	height:auto;
	padding-bottom:20px;

}


.tableau_recap svg{
	width:40px;
	height: auto;
	fill: #425f82;
}

.volet_fichier{
	float:right;
	position:sticky;
	top:380px;
	height:300px;
	right:0px;
}

.cadre_fichier{
	display:inline-block;
	height:300px;
	position:absolute;
	right:0px;
}

.lien_fichier{
	font-size:1.1em;
	display:inline-block;
	background-color : #FFFFFF;
	color : #7E9BBE;
	min-width : 100px;
	padding:5px;
	min-height: 100px;
	border : 1px solid #7E9BBE;
	margin : 5px;
	margin-right:0px;
	/* background-image: url("Image/picto_contrat.svg"); */
	background-size:100px 100px;
	background-repeat:no-repeat;
	background-position:bottom 20px right 40%;
	vertical-align:top;
	border-radius: 5px;
}

.lien_fichier:hover{
	background-color:#CCCCCC;
}

.lien_fichier svg{
	fill: #425f82;
	width:70px;
	height:auto;
}

.archive_fichiers{
	background-color: #7E9BBE !important;
	color: #FFFFFF !important;
	border-color:#425f82 !important;
	border: 1px solid #425f82;
	font-size:1em;
	position:relative;
	left:30%;
}


.archive_fichiers:hover{
	background-color:#425f82 !important;
}

.listing_fichiers svg{
	fill: #FFFFFF;
	width:40px;
	height:auto;
}

/* -------------------------------------------------------------------
  ---------------------- Fin pages documents -------------------------
  ------------------------------------------------------------------ */



/* ***************************************************************************
****************************** Fin style général *****************************
**************************************************************************** */



/* ***************************************************************************
********************************* Style footer *******************************
**************************************************************************** */

.pied_page{
	padding: 20px 0px;
	margin-top: 20px;
	background-color: #425f82;
	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;
}

/* ***************************************************************************
************************* page telechargement de fichier *********************
**************************************************************************** */
.titreZip{
	width: fit-content;
	margin: auto;
	padding: 10px 30px 10px 30px;
	display: flex;
	align-items: center;
	background-color: #f5f5f5;
	border-radius: 5px;
}

.liste_fichier_zip {
	display: flex;
	flex-direction: column;
	border-top: 1px solid #333333;
	border-bottom: 1px solid #333333;
	margin: 10px auto 10px auto;
	padding: 10px 15px;
}

.liste_fichier_zip > a{
	display: flex;
	align-items: center;
	border-radius: 5px;
	padding: 10px 20px 10px 20px;
}

.liste_fichier_zip > a:nth-child(even){
	background-color: #f5f5f5;
}

.liste_fichier_zip > a:hover, .titreZip:hover, .titreZip:hover + .liste_fichier_zip > a{
	background-color: #7E9BBE;
	color: white;
}

.iconeZip{
	height: 50px;
	width: 50px;
	margin: 0 10px 0 0;
	background-color: #425f82;
	mask-image: url('Image/iconeZip.svg');
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-origin: content-box;
	-webkit-mask-image: url('Image/iconeZip.svg');
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-origin: content-box;
	vertical-align: middle;
	float: left;
}

.iconeFile{
	height: 25px;
	width: 25px;
	mask-image: url('Image/iconeFichier.svg');
	-webkit-mask-image: url('Image/iconeFichier.svg');
}

.liste_fichier_zip > a:hover > .iconeZip, .titreZip:hover > .iconeZip, .titreZip:hover + .liste_fichier_zip > a > .iconeZip{
	background-color: white;
}

input.archiveContinue{
	padding: 10px 40px 10px 40px;
	margin: 15px auto 15px auto;
}



/* ***************************************************************************
******************************* Fin style footer *****************************
**************************************************************************** */

