/*
Description: feuille de style de l'application
*/

/*--------------------------------------------------------------
CONTENU:
----------------------------------------------------------------
x. Normalisation
x. Typographie
x. Formulaires
x. Tableaux
x. Listes
x. Liens
x. Images et videos
x. Layout: html & body
x. Layout: Icones
x. Layout: Header
x. Layout: Menu de navigation
x. Layout: Content
x. Layout: Footer
x. Animations
x. Media queries
x. Dark mode
-------------------------------------------------------------*/

/*--------------------------------------------------------------
x. Normalisation
Styles basés sur la version v5.0.0 de Normalize de Github @link https://github.com/necolas/normalize.css
--------------------------------------------------------------*/



/*--------------------------------------------------------------
x. Typographie
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #333;
	font-family: "Libre Franklin", "Helvetica Neue", helvetica, arial, sans-serif;
	font-size: 16px; /*15px;*/
	font-size: 1rem; /*0.9375rem;*/
	font-weight: 400;
	line-height: 1.5; /*1.66;*/
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	line-height: 1.4;
	margin: 0 0 0.75em;
	padding: 1.5em 0 0;
}

h2:not(.Abonnement h2, .banniere, .TitreSection) {
	padding: 0.5em 0 0;
}

h1:first-child,
h2:first-child:not(.TitreSection),
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
	padding-top: 0;
}

h2 + h3
{
	padding-top: 0;
}

h1 {
	font-size: 24px;
	font-size: 1.5rem;
	font-weight: 300;
}

h2 {
	color: #666;
	font-size: 20px;
	font-size: 1.25rem;
	font-weight: 300;
}

h3 {
	color: #333;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 300;
}

h4 {
	color: #333;
	font-size: 16px;
	font-size: 1rem;
	font-weight: 800;
}

h5 {
	color: #767676;
	font-size: 13px;
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

h6 {
	color: #333;
	font-size: 15px;
	font-size: 0.9375rem;
	font-weight: 800;
}

p {
	margin: 0 0 1.5em;
	padding: 0;
}

dfn,
cite,
em,
i {
	font-style: italic;
	color: #808080;
}

blockquote {
	color: #666;
	font-size: 18px;
	font-size: 1.125rem;
	font-style: italic;
	line-height: 1.7;
	margin: 0;
	overflow: hidden;
	padding: 0;
}

blockquote cite {
	display: block;
	font-style: normal;
	font-weight: 600;
	margin-top: 0.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #eee;
	text-decoration: none;
}

big {
	font-size: 125%;
}

blockquote {
	quotes: "" "";
}

q {
	quotes: "“" "”" "‘" "’";
}

blockquote:before,
blockquote:after {
	content: "";
}

:focus {
	outline: none;
}


/*--------------------------------------------------------------
x. Formulaires
--------------------------------------------------------------*/
form {
	text-align: left;
}

label {
	color: #333;
	font-weight: 800;
	/*margin-bottom: 0.5em;*/
}

fieldset {
	background-color: #88888808;
	border: 1px solid lightgrey;
	border-radius: 8px;
	margin-bottom: 1em;
}

#ConnexionForm fieldset
/*,.ModalContent fieldset*/ {
	background: linear-gradient(to bottom, #eee, lightgrey);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
/*input[type="color"],*/
textarea {
	color: #666;
	background: #fff;
	background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
	border: 1px solid #bbb;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	padding: 0.7em;
	/*display: block;*/
	width: 100%;
}

/*Formats spéciaux pour affichage en table ou en forme réduite*/
.form-table input, .form-table textarea, .form-table select
{
	width: 100%;
}

.form-table input[type="radio"], .form-table input[type="checkbox"]
{
	width: auto;
}

input[type="number"], .quantite
{
	min-width: 80px;
	max-width: 100px;
	text-align: right;
}

#ItemPosteForm input[type="number"]
{
	text-align: left;
}

/*Pour cacher les boutons d'incrémentation*/
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	/* display: none; <- Crashes Chrome on hover */
	-webkit-appearance: none;
	margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
input[type=number] {
	-moz-appearance:textfield; /* Firefox */
}

.form-table select[name="Unite"]
{
	width: 4em;
}

.form-short label:not(span .Filtre, .FiltreRecherche label)
{
	display: inline-block;
	min-width: 110px;
}

.form-short input, .form-short textarea, .form-short select
{
	display: inline-block;
	width: auto;
}

.LigneDessous
{
	border-bottom: 1px solid #eee;
	margin-bottom: 10px;
	padding-bottom: 5px;
}

/* **************** */


input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #222;
	border-color: #333;
}

select {
	border: 1px solid #bbb;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	height: 3em;
	padding: 0.3em;
	max-width: 100%;
}

input[type="radio"],
input[type="checkbox"] {
	margin-right: 0.5em;
}

input[type="radio"] + label,
input[type="checkbox"] + label {
	font-weight: 400;
}

button,
input[type="button"],
input[type="submit"] {
	background-color: #2f7ec1;
	border: 0;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 0.2em;
	padding: 1em 2em;
	text-shadow: none;
	-webkit-transition: background 0.2s;
	transition: background 0.2s;
}

/* Bouton à la suite d'un input */
/*input + button,
input + input[type="button"],
input + input[type="submit"] {
	padding: 0.75em 2em;
}*/

button:hover,
button:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
	background: #1d6fb5;
}

/* Placeholder text color -- selectors need to be separate to work. */
::-webkit-input-placeholder {
	font-style: italic;
	color: #808080;
	font-family: "Libre Franklin", "Helvetica Neue", helvetica, arial, sans-serif;
}

:-moz-placeholder {
	font-style: italic;
	color: #808080;
	font-family: "Libre Franklin", "Helvetica Neue", helvetica, arial, sans-serif;
}

::-moz-placeholder {
	font-style: italic;
	color: #808080;
	font-family: "Libre Franklin", "Helvetica Neue", helvetica, arial, sans-serif;
	opacity: 1;
	/* Since FF19 lowers the opacity of the placeholder by default */
}

:-ms-input-placeholder {
	font-style: italic;
	color: #808080;
	font-family: "Libre Franklin", "Helvetica Neue", helvetica, arial, sans-serif;
}

::placeholder {
	font-style: italic;
	color: #808080;
}

.radio-avec-img {
	max-width: 600px;
}

.radio-avec-img p:first-child {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: space-between;
}

#SiteWebForm h2 {
	font-weight: bold;
}

.btnSymbol {
	margin: 5px 10px;
	padding: 10px;
}

#symbolsContainer {
	margin: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.symbol {
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    border: 1px solid #ddd;
    display: inline-block;
}

/*Affichage modernisé pour les input type radio*/
.Modern {
	display: flex;
	flex-wrap: wrap;
}
.Modern input[type="radio"] {
	display: none;
}
.Modern label {
	cursor: pointer;
	padding: 0 5px;
}
.Modern input[type="radio"] + label + input[type="radio"] + label::before {
	content: "|";
	margin-right: 5px;
}
.Modern input[type="radio"]:checked + label {
	color: #7bbdf5; /*rgb(255, 99, 132)*/
	font-weight: bold;
}
.Modern input[type="radio"]:checked + label::before {
	color: initial;
	font-weight: initial;
}
.Modern label:hover {
	color: #7bbdf5;
}
.Modern label:hover::before {
	color: initial;
}

/* Affichage du tableau de bord */
.FlexBoard {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.FlexBoardElt {
	min-width: 40%;
	/*border: 2px solid lightgrey;*/
	padding: 10px 10px 20px 10px;
}


/*--------------------------------------------------------------
x. Tableaux
--------------------------------------------------------------*/

table {
	border-collapse: collapse;
	margin: 0 0 1.5em;
	width: 100%;
}

thead th {
	border-bottom: 2px solid #bbb;
	padding-bottom: 0.5em;
}

th {
	padding: 0.4em;
	text-align: left;
}

tr {
	border-bottom: 1px solid #eee;
}

td {
	padding: 0.4em;
}

th:first-child,
td:first-child {
	padding-left: 0;
}

td .rowspan {
	padding-left: 0.4em;
}

th:last-child,
td:last-child {
	padding-right: 0;
}

.Head td:first-child,
.TablePostesMO .Head td:nth-of-type(2) {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.Head td:last-child {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

.Tableau2Dim .Head
{
	vertical-align: top;
	border-bottom: none;
	background-color: #eee;
}

.Tableau2Dim tfoot .Head em
{
	color: #333;
}

.Tableau2Dim .Head .action,
#Situation .Tableau2Dim th:first-of-type,
#Situation .Tableau2Dim tbody tr td:first-of-type
{
	padding: 0 5px;
}

.Tableau2Dim .Head .action .small-bouton-icone
{
	margin: 0;
}

.Tableau2Dim .action
{
	vertical-align: middle;
}

.TablePostesMO .Head .action
{
	display: none;
}

/*Pour ne pas impacter la largeur en modal*/
/*.Contenu .Tableau2Dim .Head td:nth-of-type(2),*/
/*#LivraisonForm .Tableau2Dim .Head td:nth-of-type(1) 
{
	word-break: break-word;
}*/
/*Pour annuler le css précédent dans contrat et facture*/
/*#FicheContrat .Contenu .Tableau2Dim .Head td:nth-of-type(2),
#FicheFacture .Contenu .Tableau2Dim .Head td:nth-of-type(2)
{
	word-break: normal;
}*/

#FicheFacture .TableItems th:nth-of-type(2),
#FicheFacture .TableItemsSitu th:nth-of-type(1),
#FicheContrat #TablePostes .TableItems th:nth-of-type(2)
{
	width: 45%;
}

.TablePostesMO .TableItems th:nth-child(2), .TableItemsLivraison th:nth-child(1)
{
	width: 60%; /*400px*/
}

/*Largeur champs situ fait / qté */
.TablePostesMO .TableItems th:nth-child(3), .TableItemsLivraison th:nth-child(2)
{
	min-width: 60px;
}

.TableTotal th:first-child
{
	width: 78%;
}

.Tableau2Dim .SubTotal,
.Tableau2Dim .Total
{
	border-bottom: none;
	font-weight: bold;
}

.Tableau2Dim label + span
{
	display: block;
}

.TableItemsBC tbody td:last-of-type
{
	width: 140px;
}

.TableItemsBC tbody td:nth-child(2)
{
	min-width: 90px;
}

.Composant
{
	color: #808080;
}

.Situ .SituCheck, .SituP .SituCheck {
	display: none;
}

.SituQte {
	display: none;
}

.Situ .SituQte
{
	display: block;
}

.SituPourcent {
	display: none;
}

.SituPourcent::after {
	content: " %";
}

.SituP .SituPourcent {
	display: block;
}

.selectionne:not(.Head):not(.GroupeArticles)
{
	background-color: #a3cef2 ; /*lightblue #a3cef2 #2fc172*/
}

.nobesoin .besoin, .nobesoin#TablePostesBC tbody tr:not(.selectionne) /*E#F = E[id="F"] */
{
	display: none;
}

.nomo .mo
{
	display: none;
}

.TableMO tr
{
	color: #808080;
}

.TableMO td, #TableLivraisons td
{
	width: 150px;
}

.TableMO .action, #TableLivraisons .action, #FicheFacture #TablePostes .action
{
	width: 40px;
}

.TableMO .Comment, #TableLivraisons .Comment
{
	width: 400px;
}

#TableSynthese thead th:first-of-type
{
	width: 190px;
}

#TableAFSalaires tbody tr td:first-of-type
{
	max-width: 200px;
}

#TableAFFourniture tbody tr td:first-of-type
{
	max-width: 300px;
}

#TablePrime
{
	margin-bottom: 0;
}

/*Pour cacher les champs span de la 1ère colonne des tableaux / listes*/
.action span:not(.small-bouton-icone)
{
	display: none;
}

.nowrap
{
	white-space: nowrap;
}

.table-number
{
	text-align: right;
}

.monnaie
{
	white-space: nowrap;
}

.total:not(.collapsed .total)
{
	font-weight: bold
}

.bgtotal {
	background-color: lightgrey;
}


/*--------------------------------------------------------------
x. Listes
--------------------------------------------------------------*/
ul,
ol {
	margin: 0 0 1.5em 1.5em;
	padding: 0;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

/*--------------------------------------------------------------
x. Liens
--------------------------------------------------------------*/

a {
	color: #222; /* #2f7ec1 */
	text-decoration: underline;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	color: grey; /*#000*/
	outline: 0;
}

.clickable:hover
{
	cursor: pointer;
	color: grey;
}

/*--------------------------------------------------------------
x. Images et videos
--------------------------------------------------------------*/

img,
video {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}


/*--------------------------------------------------------------
x. Layout: html & body
--------------------------------------------------------------*/

/* Définition du box-sizing pour inclure les bordures et la marge dans le width*/

html
{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

*,
*:before,
*:after
{
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}

body
{
	background-color: white;
	word-wrap: break-word;
}


/*--------------------------------------------------------------
x. Layout: Icones
--------------------------------------------------------------*/

.small-bouton-icone
{
	display: inline-block;
	background-color: #2f7ec1;
	margin: 0 10px 2px 0;

	width: 2em;
	min-width: 2em;
	height: 2em;
	border-radius: 1em;

	padding-top: 0.05em;
	/*font-size: 1.2em;*/
	color: white;
	text-align: center;
	vertical-align: middle;
}

.small-bouton-icone:hover
{
	cursor: pointer;
	-webkit-animation: Selection 0.5s ease forwards; /* Safari, Opera, Chrome */
	animation: Selection 0.5s ease forwards; /* Tous les autres navigateurs */
}

.bouton-info /*Modifie la classe small-bouton-icon*/
{
	background-color: grey;

	width: 1.5em;
	min-width: 1.5em;
	height: 1.5em;
	border-radius: 0.75em;

	padding-top: 0.05em;
	font-size: 1em;
	line-height: 1.25em;
}

.bouton-close
{
	/*Modifie la classe small-bouton-icon*/
	display: block;
	float: right; 
	background-color: grey;
	margin: 10px;
	border-radius: 0.5em;
}

.compteur
{
	/*Modifie la classe small-bouton-icon*/
	display: block;
	float: right; 
	background-color: grey;
}

.compteur span
{
	font-size: 0.75em;
}

.grey
{
	background-color: grey;
}

.icon
{
	max-height: 60%;
	max-width: 60%;
}

.small-bouton-icone .icon
{
	vertical-align: middle; /* Réglage d'alignement vertical dans les petits icones */
}

.bouton-close .icon
{
	vertical-align: middle; /* Réglage d'alignement vertical dans les petits icones */
}

.icon-paiement-securise
{
	height: 1.5em;
	width: 1.5em;
	margin-right: 2px;
	vertical-align: middle;
}

.icon-inline
{
	display: inline-block;
	font-size: 20px;
	color: grey;
	margin: 0 5px 0 0;
	vertical-align: top;
}

.icon-inline .icon
{
	max-height: 1em;
	max-width: 1em;
}

.IconeAttente
{
	display: inline-block;
	height: 2em;
	color: #2f7ec1;
	-webkit-animation: Rotation 2s linear infinite; /* Safari, Opera, Chrome */
	animation: Rotation 2s linear infinite; /* Tous les autres navigateurs */
}

/*--------------------------------------------------------------
x. Layout: Header
--------------------------------------------------------------*/

.site-header
{
	z-index: 2;
	position: fixed;
	top: 0;
	
	width: 100%;
	background-color: inherit; /*white*/
	border-bottom: 1px solid #eee;
	box-shadow: 6px 6px 6px grey;
	
	padding: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}


#page-logo
{
	width: 150px;
	max-height: 40px;
	text-align: center;
}

#page-logo object { /*Espace Client */
	max-width: 150px;
	max-height: 40px;
}

#page-title
{
	padding-left: 10px;
	height: 50px;
	/*width: 70%;*/
	flex: 1;
}

#page-title h1
{
	line-height: 50px;
	vertical-align: middle;
}

.page-title-icone
{
	display: inline-block;
	background-color: grey;
	margin-left: 20px;
	margin-right: 20px;

	width: 50px;
	min-width: 50px;
	height: 50px;
	border-radius: 25px;

	font-size: 1.2em;
	color: white;
	text-align: center;
	line-height: 55px;
	vertical-align: middle;
}

.navig
{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.bouton-icone
{
	background-color: #2f7ec1;
	margin-right: 20px;

	width: 50px;
	min-width: 50px;
	height: 50px;
	border-radius: 25px;

	font-size: 2em;
	color: white;
	text-align: center;
	line-height: 55px;
	vertical-align: middle;
}

.bouton-icone:hover
{
	cursor: pointer;
	-webkit-animation: Selection 0.5s ease forwards; /* Safari, Opera, Chrome */
	animation: Selection 0.5s ease forwards; /* Tous les autres navigateurs */
}


/*--------------------------------------------------------------
x. Layout: Menu de navigation
--------------------------------------------------------------*/

#menu-background
{
	z-index: 1; /*Pour laisser les boutons de navigation accessibles*/
}

.menu
{
	display: none;
	background-color: white;
	border-radius: 20px;
	box-shadow: 6px 6px 6px grey;

	position: absolute;
	top: 15%;
	right: 10%;
	/*width: 80%;*/

	padding: 10px 40px; /*10px 0 10px 0*/
	justify-content: space-around;
	align-items: top;
}

.menu-moncompte
{
	display: none;
	background-color: white;
	border-radius: 20px;
	box-shadow: 6px 6px 6px grey;

	position: absolute;
	top: 15%;
	right: 10%;
	min-width: 300px;
	
	padding: 10px 10px 10px 10px;
	align-items: center;
}

.menu-close
{
	position: absolute;
	top: 15%;
	right: 10%;
	margin: 2px;
	border-radius: 15px; /*Pour s'adapter au contour du menu*/
}

.menu-group
{
	min-width: 150px;
	min-height: 50px;
	margin-right: 35px;
	white-space: nowrap;
}

.menu-group-title
{
	font-style: italic;
	font-weight: bold;
	color: grey;
}

.menu-group .small-bouton-icone {
	font-size: 1.2em;
}

.nom-utilisateur
{
	font-style: normal;
	font-weight: normal;
}

.menu-group ul
{
	list-style: none;
	margin: 0;
}

.menu-group a
{
	vertical-align: middle;
	text-decoration: none;
	-webkit-transition: color 0.2s;
	transition: color 0.2s;
}


/*--------------------------------------------------------------
x. Layout: Content
--------------------------------------------------------------*/

.content
{
	/*width: 90%;
	margin: auto;
	margin-top: 40px;
	margin-bottom: 20px;*/
	margin: 45px 20px 20px 20px;
	padding-top: 2em;
	padding-bottom: 1.5em;
	min-height: 400px;
	overflow-x: auto;
}

.overflow-x
{
	overflow-x: auto;
}

.small-screen-only
{
	/* L'icône n'est pas affiché dans la section content, car déjà affiché dans le header*/
	display: none;
}

h2 .small-bouton-icone
{
	font-size: 20px;
}

.logo
{
	max-width: 200px;
	max-height: 200px;
}

#AideContextuelle
{
	display: none;
	position: absolute;
	z-index: 3;
	max-width: 50%;
	padding: 5px;
	border: solid 1px;
	border-radius: 5px;
	background-color: lightgrey;
	text-align: left;
	box-shadow: 5px 5px 5px grey;
}

.alerte
{
	color: #ff6600;
	font-weight: bold;
}

.highlight {
	background-color: #F86754; /*#7bbdf5;*/
	padding: 5px;
	border-radius: 8px;
	color: white;
}

.info
{
	color: #3366ff;
	font-weight: bold;
	text-decoration: none;
}

.info a
{
	color: #3366ff;
}

.light
{
	color: #808080;
}

.remise
{
	color: grey;
	font-style: italic;
}

.devise
{
	text-align: right;
	white-space: nowrap;
}

.devise::after
{
	content: " \20AC";
}

.montant
{
	text-align: right;
}

.indicateur, .statut
{
	white-space: nowrap;
	border-radius: 0.5em;
}

.statut
{
	margin-left: 10px;
	padding: 0 5px;
}

/*Couleurs statut*/
.bgcWait, .bgcOk, .bgcCheck, .bgcDone, .bgcInactive {
	border-radius: 10px;
	text-align: center;
}

.bgcWait {
	background-color: #ffff00eb; /*#ffff00d4*/
}

.bgcOk {
	background-color: lightgreen;
}

.bgcCheck {
	background-color: lightblue;
}

.bgcDone {
	background-color: #23bcee; /*#11b5eb*/
}

.bgcInactive {
	background-color: lightgrey;
}

/*Statut paiement*/
.facturepayee, .factureenattente, .paiement {
	display: block;
	border-radius: 10px;
	width: 100px;
	font-weight: bold;
	text-align: center;
}

.facturepayee {
	background-color: lightblue;
	color: blue;
}

.factureenattente  {
	background-color: lightyellow;
	color: orange;
}

.paiement, .credit, #TableComptabilite tbody tr:not(.selectionne) td:nth-child(7) {
	background-color: lightgreen;
	color: green;
}

.debit, #TableComptabilite tbody tr:not(.selectionne) td:nth-child(6):not(.selectionne) {
	background-color: rgb(255, 99, 132);
	color: white;
}

/*Titre avec champs de détail ou d'action en float right*/
.TitleBox
{
	padding: 1.5em 0 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* Affichage de fichier dans une balise object */
.pdf
{
	width: 100%;
	min-width: 300px;
	height: 100%;
	min-height: 500px;
}

/* Fenêtres modales, bloquant la saisie dans le body  */
.ModalBackground
{
	display: none;
	position: fixed;
	z-index: 3;
	left: 0;
	top: 0;
	
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.7); /* Black w/ opacity */

	/*Remplacé par margin: auto dans Modal Content*/
	/*flex-direction: column;
	justify-content: center;
	align-items: center;*/

	-webkit-animation: fadeIn 1s ease; /* Safari, Opera, Chrome */    
	animation: fadeIn 1s ease; /* Tous les autres navigateurs */
}

#Consentement
{
	flex-direction: column;
}

.NoAnimation
{
	animation: none;
}

.ModalContent
{
	background-color: white;
	width: 80%;
	max-width: 200px;
	padding: 20px;
	border: 1px solid #888;
	border-radius: 20px;
	text-align: center;
	margin: auto;
}

.S
{
	max-width: 400px;
}

.M
{
	max-width: 900px;
}

.L
{
	max-width: none;
}

.Saisie
{
	width: 90%;
}

.Left
{
	text-align: left;
}

.Center
{
	text-align: center;
}

.ModalContent h2
{
	clear: none; /*Pour pouvoir afficher un icône de fermeture*/
}

/*.ModalContent .small-bouton-icone
{
	font-size: 20px;
}*/

.ModalContent .bouton-close
{
	font-size: 15px;
	margin: 0;
}

.ModalWarning /*Ajuste ModalContent pour l'affichage de message de warning*/
{
	max-width: 450px;
}

.ModalTerms /*Ajuste ModalContent pour l'affichage de message de terms*/
{
	display: none;
	max-width: 400px;
	margin: 5px;
	padding: 10px;
}

.ModalPage /*Page affichée dans une fenêtre modale*/
{
	background-color: white;
	padding: 20px;
	border: 1px solid #888;
	border-radius: 20px;
	margin: auto;

	width: 95%;
	height: 95%;
	overflow: auto; /* Enable scroll if needed */   
}

/*  */
.ModalAssociation {
	position: fixed;
	bottom: 70px;
	left: 0;
	right: 0;
	width: 100%;
	max-width: none;
}

/* Classes pour afficher les différentes parties des formulaires en mode flex */

.flexform
{
	display: flex;
	flex-wrap: nowrap;
	/*justify-content: space-between;*/
}

.formelement
{
	width: 400px;
	margin-right: 2%;
}

.formelement.FullWidth
{
	width: 98%;
}

.formboutons
{
	text-align: center;
}

/* Sections façon FlexElt mais avec contenu et titre séparés*/
.TitreGroupeSection
{
	margin-bottom: 0.5em;
	color: grey;
	font-weight: bold;
	font-style: italic;
	font-size: 1.25em;
}

.LigneDessus
{
	margin-top: 2.5em;
	border-top: 2px solid;
	padding-top: 1em;
}

.EspaceDessous
{
	margin-bottom: 40px;
}

.TitreSection
{
	/*border-radius: 10px;
	box-shadow: 5px 5px 5px grey;
	background: linear-gradient(to bottom, #eee, lightgrey);*/
	background-color: #88888808;
	border: 1px solid lightgrey;
	border-radius: 10px;
	margin: 10px 10px 0 0;
	padding: 10px;
}

.Section h3
{
	padding-top: 0.5em;
}

.Section .Contenu
{
	display: none;
}

.Section table:last-of-type
{
	margin-bottom: 2.25em;
}

.Section:hover
{
	cursor: pointer;
}


/* Eléments à afficher sous forme de boîtes avec boutons pour développer / réduire */

.FlexBox
{
	display: flex;
	flex-wrap: wrap;
}

.FlexElt:not(.nostyle)
{
	/*box-shadow: 5px 5px 5px grey;*/
	/*background-color: #eee; /*#eee CCCFD0*/
	/*background: linear-gradient(to bottom, #eee, lightgrey);*/
	/*border: 3px solid lightgrey;*/
	background-color: #88888808;
	border: 1px solid lightgrey;
	border-radius: 10px;
	width: 100%;
	margin: 5px;
	padding: 5px;
}

.FlexElt:not(.nostyle) .Contenu
{
	padding: 0 5px;
	max-height: none;
	overflow: auto;
}

.FlexElt h2
{
	cursor: default;
}

.FullWidth
{
	width: 100%;
}

.FlexElt h3 .small-bouton-icone:not(#bouton-affichage)
{
	font-size: 20px;
}

.FlexElt .bouton-close
{
	font-size: 15px;
	margin: 0;
}

.FlexElt:not(.show) .bouton-close
{
	transform: rotate(180deg);
}

.FlexElt:not(.show) .bouton-close:hover
{
	-webkit-animation: none;
	animation: none;
	-webkit-transition: 0.5s ease;
	transition: 0.5s ease;
	transform: rotate(180deg) scale(1.1);
}

.FlexElt:not(.show) .Contenu
{
	display: none;
}

#Coordonnees .flexform:not(.ModalBackground .flexform) div:first-child {
	margin-right: 50px;
	min-width: 30%;
}


/* Partie actions pour les fiches */
#GroupActions {
	display: none;
	margin-top: 1.5em; /* .fiche */
	font-size: 1.1em;
	flex-direction: column;
	align-items: flex-start;
}

/*#GroupActions .small-bouton-icone {
	font-size: 1.2em;
}*/

#GroupActions>span {
	display: inline-block;
	margin-bottom: 5px;
}

#GroupActions>span:hover {
	cursor: pointer;
}

#DecisionDevis span:first-of-type {
	margin-right: 10px;
}


/*Bannière pour modal et filtres de recherche */

.banniere {
	/*background-color: #eee;*/
	border-radius: 20px;
	padding: 0.5em;
	margin: 0em 0 1.5em 0;
}

.ModalContent .banniere {
	margin-bottom: 1em;
}

.SelectFormContent .banniere,
#RechercheArticle,
#RechercheComposant,
#RechercheContact,
#FiltreGVE,
#SelectLieuModal .banniere {
	/*background: linear-gradient(to bottom, #eee, lightgrey);*/
	background: linear-gradient(to bottom, #7bbdf5, #2f7ec1);
}

.SelectFormContent .banniere p,
#RechercheArticle p,
#RechercheComposant p,
#RechercheContact p,
#SelectLieuModal .banniere p  {
	color: white !important;
}

.SelectFormContent .banniere label em,
#RechercheArticle label em,
#RechercheComposant label em,
#FiltreGVE label em,
#SelectLieuModal .banniere label em {
	color: white;
}

.ModalContent .banniere:not(#RechercheArticle, #RechercheComposant, #RechercheContact, #SelectLieuModal, #FiltreGVE) {
	background-color: rgb(47, 126, 193); /* 96 176 244 */
	color : white !important;
}

.ModalContent .banniere .icon-inline {
	color : white;
	vertical-align: baseline;
}

.banniere p
{
	margin-bottom: 0;
}

.Filtre
{
	display: inline-block;
}

.FiltreRecherche
{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.FiltreRecherche input:not([type="radio"], [type="checkbox"]), .FiltreRecherche select
{
	width: 200px;
	margin-right: 10px;
	/*display: block;*/
}

/*Retour en haut de page */

.RetourHautDePage
{
	display: none;
	position: fixed;
	bottom: 3%;
	left: 10px;
	width: 100%;
	z-index: 3;
	text-align: center;
	-webkit-animation: fadeIn 2s ease; /* Safari, Opera, Chrome */
	animation: fadeIn 2s ease; /* Tous les autres navigateurs */
}

.RetourHautDePage .small-bouton-icone
{
	background-color: grey;
}

.z1
{
	z-index: 1;
}

/*Formulaire de recherche / sélection affiché directement dans la page*/

.fiche
{
	margin-top: 1.5em;
}

.SelectFormBackground
{
	display: none;
	margin-top: 5px;
}

.SelectFormContent
{
	width: 100%;
	padding: 5px;
}

/*Planning*/

#APlanifier {
	display: flex;
	margin-bottom: 25px;
}

#APlanifier .CalendarHours p:first-child {
	font-weight: bold;
}

.CalendarToPlan {
	display: flex;
	overflow-x: auto;
	padding-right: 10px;
	padding-bottom: 10px;
}

.CalendarToPlan .CalendarTask {
	margin-left: 10px;
	padding: 5px;
}

#Calendrier {
	white-space: nowrap;
	display: flex;
	overflow-x: auto;
	overflow-y: hidden;
}

.CalendarHours {
	padding: 5px;
	background-color: #88888808;
	border: 1px solid lightgrey;
	border-radius: 8px;
	margin-bottom: 1em;
}

.CalendarDay {
	font-weight: bold;
	height: 50px;
}

.CalendarHour {
	height: 50px;
	border-top :  1px solid #eee;
	border-bottom :  1px solid #eee;
}

.CalendrierPlanning {
	display: flex;
	overflow-x: auto;
	overflow-y: hidden;
}

.CalendarGroup {
	margin-left : 10px;
	padding: 5px;
	background-color: #88888808;
	border: 1px solid lightgrey;
	border-radius: 8px;
	margin-bottom: 1em;
}

.CalendarGroup p:first-child {
	font-weight: bold;
}

.CalendarTask {
	background-color: lightgrey; /* #eee */
	position: relative;
	border : 1px solid #eee; /* #bbb */
	border-radius: 5px;
	box-shadow: 6px 6px 6px grey;
	min-width: 150px;
	overflow: hidden auto; /*x y*/
	width: 230px;
}

.Livraison {
	background-color: #64319485;
}
.Prestation {
	background-color: #1d6fb596;
}
.Evt {
	background-color: #259b73b0;
}

.CalendarTask span:not(.small-bouton-icone) {
	display: block;
	white-space: normal;
}

.CalendarTask span:first-child {
	font-weight: bold;
}

.CalendarGroup .small-bouton-icone {
	padding-top: 0.1em;
	font-size: 0.8em;
}

/* Facturation */

#Synthese {
	display: flex;
	flex-wrap:wrap;
	max-width: 900px;
	justify-content: space-between;
}

/* Comptabilité */

.Tresorerie #TableTresorerie thead tr th:nth-child(4),
.Tresorerie #TableTresorerie tbody tr td:nth-child(4),
.Tresorerie #TableTM tbody tr td:first-child input:last-child {
	display: none;
}

#PieceT {
	display: flex;
	align-items: center;
	margin-top: 10px;
}

.affichageTMC #PieceT span:nth-of-type(3) {
	margin-left: 5px;
}

.affichageTMMvt table thead tr,
.affichageTMMvt table tbody tr td:nth-child(3),
.affichageTMMvt table tbody tr td:nth-child(4) {
	display: none;
}

.affichageTMC #ChoixTypeT,
.affichageTMC table thead tr th:nth-child(2),
.affichageTMC table tbody tr td:nth-child(2) {
	display: none;
}

.affichageTMC table thead tr th:first-child {
	min-width: 150px;
}

.affichageTMC {
	max-width: 900px; /* class M */
}

.affichageTMC .flexform .formelement {
	width: 100%;
	max-width: none;
}

#RevisionModal .ModalContent {
	margin-top: 0;
}

#RevisionModal .flexform div {
	width: 100%;
}

#RevisionForm h3 {
	font-weight: bold;
}

/* Analyse Financière */

#AFForm table tbody tr td:nth-child(2) {
	white-space: nowrap;
}

#Graphiques {
	display: none;
	flex-wrap: wrap;
}

canvas { /*#Graphiques canvas*/
	margin-bottom: 1em;
}

.ImgModele {
	display: block;
	margin: auto;
}

/* Couleurs des titres */
h2:not(.TitreSection, .banniere, .fiche h2, .FlexElt h2, #TitrePage),
.fiche h2 span:first-child,
.FlexElt .ModalWarning h2 {
	color: #7bbdf5;
	font-weight : 600;
}

.Abonnement h2 {
	color: #2f7ec1 !important;
}

/* Affichage des messages d'information liés à un bouton */
p input[type="button"] + span,
div.ModalWarning button + span,
.Abonnement button + span {
	display: block;
}

/*--------------------------------------------------------------
x. Layout: Footer
--------------------------------------------------------------*/

.site-footer
{
	border-top: 1px solid #eee;
	padding-bottom: 1.5em;
	padding-top: 2em;
}

.site-info
{
	text-align: center;
	font-size: 14px;
	font-size: 0.875rem;
	margin-bottom: 1em;
}

/*--------------------------------------------------------------
x. Animations
--------------------------------------------------------------*/

/* Animation de chargement de l'application */
#intro {
	background-color: white;
	position: fixed;
	z-index: 100;
	left: 0;
	top: 0;        
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	/*-webkit-animation: fadeOut 1s ease; /* Safari, Opera, Chrome */    
	/*animation: fadeOut 1s ease; /* Tous les autres navigateurs */
	transition: opacity 0.5s ease-in-out;
	display: flex;
}

#intro .image-container {
	width: 80%;
	max-width: 500px;
	margin: auto;
	overflow: hidden;
	display: flex;
	flex-direction: column;
    align-items: center;
	transform: scale(0.9); /* Pour la réduction initiale de 10% */
	opacity: 0;
	transition: opacity 1.5s ease-in-out, transform 1s ease-in-out;
}

#intro .image-container img {
	width: 100%;
	height: auto;
	margin: auto;
}

/* Selection: pour faire grossir l'élément séléctionné */

@-webkit-keyframes Selection { /* Safari, Opera, Chrome */
	To { transform: scale(1.1);}
}

@keyframes Selection { /* Tous les autres navigateurs */
	To { transform: scale(1.1);}
}


/* Fade in */

@-webkit-keyframes fadeIn { /* Safari, Opera, Chrome */
	from { opacity: 0; }
	  to { opacity: 1; }
}

@keyframes fadeIn { /* Tous les autres navigateurs */
	from { opacity: 0; }
	  to { opacity: 1; }
}


/* Rotation clignotante */
@-webkit-keyframes Rotation { /* Safari, Opera, Chrome */
  0% {
	opacity: 0.5;
	-webkit-transform: rotate(0deg);
			transform: rotate(0deg); }
  50% {
	opacity: 1;
	-webkit-transform: rotate(180deg);
			transform: rotate(180deg); }
  100% {
	opacity: 0.5;
	-webkit-transform: rotate(360deg);
			transform: rotate(360deg); }
}

@keyframes Rotation { /* Tous les autres navigateurs */
  0% {
	opacity: 0.5;
	-webkit-transform: rotate(0deg);
			transform: rotate(0deg); }
  50% {
	opacity: 1;
	-webkit-transform: rotate(180deg);
			transform: rotate(180deg); }
  100% {
	opacity: 0.5;
	-webkit-transform: rotate(360deg);
			transform: rotate(360deg); }
}


/*--------------------------------------------------------------
x. Media queries
--------------------------------------------------------------*/

/*Réduction de la taille des icônes et affichage vertical des menus pour les écrans de moyenne taille (type tablette)*/
@media all and (max-width: 960px)
{	
	/* Layout Header ------------------------ */
	
	#page-title
	{
		height: 40px;
	}

	#page-title h1
	{
		line-height: 3px;
		text-align: center;
		margin-right: 5px;
	}

	.site-header
	{
		/*position: absolute;*/
		flex-wrap: wrap;
	}

	#logo
	{
		width: 40%;
		max-width: 140px;
		/*max-height: 40px;
		text-align: center;*/
	}

	.page-title-icone
	{
		margin-left: 16px;
		margin-right: 16px;
		width: 40px;
		min-width: 40px;
		height: 40px;
		border-radius: 20px;
		line-height: 44px;
	}

	.navig
	{
		flex: nowrap;
		justify-content: flex-end;
		width: 50%;
		max-width: 180px;
	}

	.bouton-icone
	{
		margin-right: 16px;
		width: 40px;
		min-width: 40px;
		height: 40px;
		border-radius: 20px;
		line-height: 44px;
	}

	/* Layout Menu de navigation ------------------------ */

	.menu
	{
		/*position: absolute;*/
		max-width: 250px;
		padding: 0 10px 0 10px;
		flex-direction: column;
		font-size: 1.1em;
	}

	.menu-moncompte
	{
		/*position: absolute;*/
		min-width: 300px;
		padding: 0 5px 0 10px;
		font-size: 1.1em;
	}
	
	/*.menu-close
	{
		position: absolute;
	}*/

	.small-bouton-icone:not(.wssize)
	{
		margin: 0 10px 1px 0;

		width: 1.5em;
		min-width: 1.5em;
		height: 1.5em;
		border-radius: 0.75em;

		padding-top: 0.05em;
		font-size: 1em;
		line-height: 1.25em;
	}

	.bouton-close
	{
		/*Modifie la classe small-bouton-icon*/
		margin: 10px;
		border-radius: 0.5em;
	}

	/* Layout Content ------------------------ */

	.content
	{
		margin: 50px 15px 20px 15px;
	}


	.flexform
	{
		flex-direction: column;
		align-items: center;
	}

	.formelement
	{
		width: 100%;
		max-width: 400px;
		margin-right: 0;
	}

	.formelement.FullWidth
	{
		width: auto;
	}

	.FlexElt
	{
		width: 100%;
		margin-right: 0;
	}

	.FlexBoardElt {
		width: 100%;
		min-width: 0px;
		padding-bottom: 20px;
		/*border-right: none;
		border-left: none;
		border-bottom: none;*/
	}
}

/*Repositionnement du titre de page pour les petits écrans (affichage smartphone ou tablette portrait)*/
@media all and (max-width: 740px)
{
	/* Layout Header ------------------------ */

	#page-title
	{
		display: none;
		/* Affichage en mode flex si besoin:
		order: 3;
		margin-top: 10px;
		padding-top: 2px;
		border-top: 1px solid #eee;
		*/
	}

	/* Layout Content ------------------------ */

	.small-screen-only
	{
		/* Le titre de la page et son icône sont affichés dans la section content, au lieu de l'header*/
		display: block;
		width: 90%;
		margin: auto;
		text-align: center;
	}

	.page-title-icone
	{
		margin-left: 0;
		margin-right: 0.3em;
	}

	.WideScreenOnly
	{
		display: none;
	}

	.td-grouped
	{
		display: inline-block;
		padding-bottom: 0;
	}

	.tdFW .td-grouped /*:not(.bgcWait, .bgcOk, .bgcDone, .bgcInactive)*/
	{
		width: 100%;
	}

	.ssB
	{
		font-weight: bold;
	}

	.TableMO .td-grouped
	{
		padding-top: 0;
		padding-bottom: 0;
	}

	#TablePlanning .td-grouped
	{
		width: 100%;
		padding-bottom: 0;
	}

	#TablePlanning .td-grouped:nth-last-child(4),
	#TableFactures .td-grouped:last-of-type,
	#TablePaiement .td-grouped:last-of-type,
	#TableTresorerie .td-grouped:nth-last-child(2)
	{
		font-weight: bold;
	}
	
	#TableTresorerie .td-grouped:last-child {
		color: lightblue;
	}

	#TableFactures tbody tr td:nth-child(3):not(.td-grouped-first)
	/*,#TablePaiement tbody tr td:nth-child(3):not(.td-grouped-first)*/ {
		color: #808080;
	}

	/*#TablePaiement .td-grouped:first-of-type*/
	.td-grouped-first
	{
		font-weight: bold;
	}

	#TableFactures tr,
	#TablePaiement tr {
		border-bottom: lightgrey solid 1px;
	}

	#TablePlanning .td-grouped:last-child
	{
		color: #7bbdf5; /* #3366ff #2f7ec1 #808080*/
	}

	.td-line
	{
		display: table-row;
		/*white-space: nowrap;*/
	}

	table input[type="datetime-local"]
	{
		max-width: 200px;
	}

	.FiltreRecherche input:not([type="radio"], [type="checkbox"]), .FiltreRecherche select
	{
		display: block;
	}

	#TableFraisKM tbody tr td:nth-child(5) {
		font-weight: bold;
	}
	#TableFraisKM tbody tr td:nth-child(5) span {
		font-weight: normal;
		color: #808080;
	}

	#TableEmployes .td-grouped {
		display: block;
	}
	#TableEmployes tr td:nth-child(4) {
		font-weight: bold;
	}
}

/*Ajustement de la taille des caractères pour les grands écrans*/
@media screen and (min-width: 1024px)
{
	/* Typography */

	body,
	input,
	select,
	textarea {
		/*font-size: 18px;
		font-size: 1.125rem;*/
		font-size: 16px;
		font-size: 1rem;
		line-height: 1.5;
	}

	h1 {
		font-size: 30px;
		font-size: 1.875rem;
	}

	h2 {
		font-size: 26px;
		font-size: 1.625rem;
	}

	h3 {
		font-size: 22px;
		font-size: 1.375rem;
	}

	h4 {
		font-size: 18px;
		font-size: 1.125rem;
	}

	h5 {
		font-size: 13px;
		font-size: 0.8125rem;
	}

	h6 {
		font-size: 16px;
		font-size: 1rem;
	}

	.site-footer {
		font-size: 16px;
		font-size: 1rem;
	}

	.SmallScreenOnly
	{
		display: none;
	}
}

@media print
{
	.site-header,
	.TitleBox div,
	tfoot
	{
		display: none;
	}

	/*.content h1:first-child
	{
		display: block;
	}*/

	/*.no-print, .no-print *
	{
	display: none !important;
	}*/
}

/*Fixe un bug sur Ipad*/
@media (max-device-width:768px) and (orientation: landscape) {
  html {
   -webkit-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
  }
}


/*--------------------------------------------------------------
x. Dark mode
--------------------------------------------------------------*/

.DarkMode {
	background-color: #242424;
	color: white;
}

.DarkMode #intro {
	background-color: black;
}

.DarkMode a,
.DarkMode label:not(.credit),
.DarkMode h2,
.DarkMode h3,
.DarkMode .TitreGroupeSection {
	color: lightgrey;
}

.DarkMode .Modern input[type="radio"]:checked + label::before {
	color: lightgrey;
	font-weight: initial;
}
.DarkMode .Modern label:hover::before {
	color: lightgrey;
}

.DarkMode .Abonnement h2 {
	color: #7bbdf5 !important;
}

.DarkMode .ModalContent {
	background-color: #242424;
}

.DarkMode .menu,
.DarkMode .menu-moncompte {
	background-color: #454545;
}

/*.DarkMode .ModalContent fieldset,*/
.DarkMode fieldset,
.DarkMode .FlexElt:not(.nostyle),
.DarkMode .SelectFormContent .banniere,
.DarkMode #RechercheArticle,
.DarkMode #RechercheComposant,
.DarkMode #RechercheContact,
.DarkMode #FiltreGVE,
.DarkMode #SelectLieuModal .banniere {
	background: linear-gradient(to bottom, #454545, #353535); /* #eee, lightgrey OU 565353 OU 454545*/
}

.DarkMode .TitreSection {
	background: linear-gradient(to bottom, #454545, #353535); /* OU 454545 OU #7c7979 OU #252424 OU 8b8686 OU 6a6c7c OU 88898b */
	box-shadow: none;
}

.DarkMode .FlexElt:not(.nostyle) {
	border: none;
}

.DarkMode .FlexElt,
.DarkMode #AideContextuelle {
	box-shadow: none;
}

/*.DarkMode #menu-background a, */
.DarkMode .statut,
.DarkMode .bgcWait,
.DarkMode .bgcOk,
.DarkMode .bgcDone,
.DarkMode .bgcInactive,
.DarkMode #AideContextuelle {
	color: #454545; /* 222 OU 454545 OU 575656 */
}

.DarkMode .bgcDone {
	background-color: #61cdf1;
}

.DarkMode .indicateur {
	color: #222;
}

.DarkMode .Tableau2Dim .Head {
	background-color: grey;
}

.DarkMode .CalendarHours,
.DarkMode .CalendarGroup {
	background-color: #454545;
}

.DarkMode .CalendarTask {
	background: linear-gradient(to bottom, #454545, #353535);
	box-shadow: none;
}

.DarkMode .Livraison {
	background: none;
	background-color: #643194;
}
.DarkMode .Prestation {
	background: none;
	background-color: #1d6fb5;
}
.DarkMode .Evt {
	background: none;
	background-color: #259b73;
}

.DarkMode .info {
	color: #03A9F4; /* #7990d4 OU #03A9F4 OU #2f7ec1*/
}

.DarkMode .bgtotal {
	background-color: #454545;
}

.DarkMode .selectionne:not(.Head):not(.GroupeArticles) {
	background-color: #7bbdf5; /* 69b1ee OU 7bbdf5 */
}