* {
	margin: 0;
	padding: 0;
	accent-color: #ff4e70;
}

html {
	font-size: 62.5%;    
	height: 100%;
}

body {
	/* La taille de base sera de 10px avec les valeurs par défaut de police du navigateur */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.4rem; /* 16px * 62.5% = 10px */
	height: 100%;
	/*background-color: #E6EBF4;*/
	margin: 0;
	overflow: hidden; /* utile pour débordement infobulles */
}

::selection {
	background: #ff4e70;
	color: #FFF;
}

a {
	color: inherit;
}

.text-center {
	text-align: center;
}

div#div_ident {
  position: absolute ;
  width: 400px;
  left: 50%;
  top: 40%;
  margin-left: -150px;
  margin-top: -100px;
  background-color: #FFF;
  padding: 20px 30px;
  text-align: left;
  box-shadow: 0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);
  border-radius: 4px;
}

div#div_ident button {
	color: #FFF;
	padding: 0.8em 1em;
	margin: 8px auto;
	background-color: #ff4e70;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

div#div_ident .logo {
	width: 200px;
}

div#div_message {
  color: #c40d19;
  font-weight: bold;
  text-align: center;
}

header {
	color: #6f2231;
	border-bottom: 3px solid #bb3d56;
	width: 100%;
	position: sticky;
	left: 0;
}

ul#ul_header_menu {
	list-style-type: none;
	margin: 0;
}

ul#ul_header_menu li {
	display: inline-block;
	color: #bb3d56;
	padding: 6px 10px;
	line-height: 1em;
}

ul#ul_header_menu li.sel {
	color: #FFF;
	background-color: #bb3d56;
}

ul#ul_header_menu li a {
	color: inherit;
	font-weight: bold;
	font-size: 1.5em;	
	text-decoration: none;
}

div#page {
	width: 100%;
	height: 100vh;
	overflow: auto;
}

div#div_chargement {
	display: none;
	position: absolute;
	z-index: 1000; /* Over #div_overlay */
	top: 45%;
	left: 50%;
	width: 500px;
	margin-left: -250px;
	margin-top: -100px;
	text-align: center;
	user-select: none;
}

div#div_chargement img {
	pointer-events: none; /* Prevent drag */
}

div#div_overlay {
	display: none;
}

table.table {
  width: 100%;
  margin: auto;
}

table.table th {
  color:#FFF;
  background-color: #657075;
}

table.table-striped tr:nth-child(even) {
	background: #e7ebed;
}

table.table-striped tr:nth-child(odd) {
	background: #FFF;
}

table.table-hover tr:hover {
  background-color: #ffd8df;
}

table.table tr.danger,
table.table td.danger {
  background-color: red;
}

table.table-assignments {
	white-space: nowrap;
	background-color: #e7ebed;
}

table.table-assignments input:disabled {
	opacity: 0.3;
}

ul#ul_step{
  display: flex;
  list-style-type:none ;
  margin: 0 0 2px;
  padding: 0px;
}

ul#ul_step li {
  display: grid;
  width: 7%;
  height: 3em;
  margin:0px 3px 0px 0px;
  padding: 2px;
  border: 1px solid rgba(0,0,0,.2);
  text-align: center;
  font-size: 0.6em;
  hyphens: auto;
  line-height: 1em;
  border-radius: 8px;
  align-items: center;
  align-self: center;
  overflow: hidden;
}

ul#ul_step li.selected {
  font-size: 0.8em;
  color: #FFF;
  background-color: #ff4e70;
  font-weight: bold;
}

.ui-widget-overlay {
	background-color: #FFF;
	opacity: 0.6;
	z-index: 999;
}

.deal-reference:before {
  content: "#";
  font-weight: normal;
  font-size: 80%;
}