@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Muli:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i');

/* variables */
:root {
  --background-color: #f1f1f1;
  --text: #111;
  --link: #111;
  --link-visited: #111;
  --link-hover: #00b9eb;
}

/* global */
html,
body {
  font-family: 'Muli', sans-serif;
  font-weight: 400;
  color: var(--text);
  background-color: var(--background-color);
  scroll-behavior: smooth;
}
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
::selection {
  background: #b3d4fc;
  text-shadow: none;
}
.browserupgrade,
.noscript {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}
.hidden {
  display: none !important;
}
.invisible {
  visibility: hidden;
}
.disabled {
  pointer-events: none;
  opacity: 0.3;
  background: #CCC;
}
.transition {
  transition: all 0.5s ease;
}
.radius {
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
.clearfix:before,
.clearfix:after {
  content: " "; /* 1 */
  display: table; /* 2 */
}
.clearfix:after {
  clear: both;
}
.image {
  display: block;
  -webkit-background-size: cover;
  background-size: cover;
}
div[class^='alert'],
p[class^='alert'] {
  font-size: 0.85em;
  margin-bottom: 1em;
  line-height: 1.1em;
}
div[class^='alert'] svg,
p[class^='alert'] svg {
  margin-right: 8px;
}

/* balises */
a {
  text-decoration: none;
}
a:link {
  color: var(--link);
}
a:visited {
  color: var(--link-visited);
}
a:hover,a:focus,a:active {
  color: var(--link-hover);
  text-decoration: none;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Muli', sans-serif;
  font-weight: normal;
  color: #00b9eb;
}
h1 + p,
h5 + p {
  font-size: 0.75em;
}
strong {
  font-weight: 600;
}
hr {
  display: block;
  height: 0;
  border: 0;
  border-top: 1px solid #ecebeb !important;
  background-color: inherit !important;
  margin: 20px 0;
  padding: 0;
}
input:not(.switch):not(.radio),
select,
textarea {
  font-size: 0.85em !important;
  padding: 5px 10px !important;
  border: 1px solid #ecebeb !important;
  box-shadow: none !important;
  -webkit-border-radius: 2px !important;
  border-radius: 2px !important;
  line-height: 1.5em !important;
}
select {
  padding-right: 3rem !important;
}
input[type=submit],
input.important {
  padding: 5px 20px !important;
  border: none !important;
  background-color: #478bf9 !important;
	color: white !important;
}
input[type=submit]:hover,
input.important:hover {
  background-color: #2970e4 !important;
}
input[type=button] {
  padding: 5px 20px !important;
  border: none !important;
  background-color: gray;
	color: white;
}
input[type=button]:hover {
  background-color: #444;
}
input ~ span,
select ~ span {
  font-size: 0.65em;
}
input:valid+span:after,
input:invalid+span:after,
select:valid+span:after,
select:invalid+span:after {
  padding: 0 5px;
}
input:invalid+span:after,
select:invalid+span:after {
  content: '✖';
  color: red;
}
input:valid+span:after,
select:valid+span:after {
  content: '✓';
  color: green;
}
p > label:first-child,
label.aslabel {
  width: 150px;
  text-align: right;
  padding-right: 10px;
  font-size: 0.85em;
  color: #777;
}
.ashref:hover {
  color: #00b9eb !important;
  cursor: pointer !important;
}
div.h {
  background-color: #acb3c2;
  color: white;
  padding: 5px 10px;
  width: 45%;
}
.table caption {
  font-size: 0.75em;
}

/* identification */
div.backstretch {
  display: flex !important;
  height: 100vh !important;
}
div.backstretch img.loading {
  width: 80px !important;
  height: 80px !important;
  position: absolute;
  z-index: -9999999;
  top: 50%;
  left: 50%;
  margin-top: -40px;
  margin-left: -40px;
}
div.identification {
  margin: auto;
  background-color: white;
  padding: 25px;
  box-shadow: 0 0 15px 0 rgba(0,0,0,0.1);
  display: flex;
}
div.identification div.password {
  font-size: 0.7em;
}
div.identification div.submit {
  text-align: right;
}

/* header */
header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  padding: 0;
  background-color: #23282d;
  color: #dedede;
  display: flex;
}

header a:link {
  color: white;
}
header a:visited {
  color: white;
}
header a:hover,a:focus,a:active {
  color: #00b9eb;
}

header ul.webgest {
  padding: 0;
}
header ul.webgest img {
  width: 20px;
}
header ul.webgest svg {
  color: white;
  margin-right: 10px;
}
header ul.webgest li {
  display: inline-table;
  padding-left: 10px;
  font-size: 0.7em;
  line-height: 40px;
  cursor: pointer;
  position: relative;
}
header ul.webgest ul li {
  display: inherit;
  font-size: inherit;
  padding: 0;
  line-height: 20px;
}
header ul.webgest ul {
  position: absolute;
  left: -999em;
  text-align: left;
  z-index: 1000;
  background-color: #777;
  padding: 15px 20px !important;
  min-width: 150px;
  background-color: #23282d;
}
header ul.webgest li:hover ul {
  left: 0;
}

header ul.login {
  margin-left: auto;
  padding: 0;
}
header ul.login svg {
  margin-left: 10px;
  color: white;
}
header ul.login li {
  display: table;
  padding: 0 20px;
  font-size: 0.7em;
  line-height: 40px;
  cursor: pointer;
  position: relative;
}
header ul.login ul li {
  display: inherit;
  font-size: inherit;
  padding: 0;
  line-height: 20px;
}
header ul.login ul li:first-child {
  padding-bottom: 10px;
}
header ul.login ul li span {
  font-size: 1.2em;
}
header ul.login ul {
  position: absolute;
  left: -999em;
  text-align: left;
  z-index: 1000;
  background-color: #777;
  padding: 15px 20px !important;
  min-width: 100%;
  background-color: #23282d;
}
header ul.login li:hover ul {
  left: 0;
}

/* nav */
nav {
  position: fixed;
  top: 40px;
  left: 0;
  width: 175px;
  height: 100vh;
  padding-top: 10px;
  background-color: #23282d;
  z-index: 10;
}

nav a:link {
  color: white;
  display: block;
  padding: 8px 10px;
}
nav a:visited {
  color: white;
}
nav a:hover,a:focus,a:active {
  color: #00b9eb;
}
nav svg {
  width: 20px !important;
  margin-right: 10px;
  color: white;
}

nav ul {
  padding: 0;
}
nav ul li {
  display: table;
  width: 100%;
  padding: 0;
  font-size: 0.85em;
  cursor: pointer;
  position: relative;
}
nav ul li:hover {
  background-color: #191e23;
}
nav ul li.active {
  background-color: #0073aa;
}
nav ul li.active a.active {
  color: white;
}
nav ul li.active ul {
  background-color: #32373c;
  padding: 5px 0;
}
nav ul li.active ul li {
  font-size: inherit;
}
nav ul li.active ul li:hover {
  background-color: inherit;
}
nav ul li.active ul li a {
  padding: 3px 8px;
}

/* main */
main {
  margin-top: 40px;
  margin-left: 175px;
  padding: 20px;
  position: relative;
}
.ui-widget {
  font-family: 'Muli', sans-serif !important;
  font-size: 0.85em !important;
  font-weight: 400 !important;
}

/* filtres */
div.filtres {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.85em;
}
div.filtres * {
  display: inline-table;
}

/* datatable */
div.dataTables_wrapper {
  font-size: 0.7em;
}
div.dataTables_wrapper input,
div.dataTables_wrapper select {
  font-size: 1.05em !important;
}
div.dataTables_wrapper table {
  table-layout: auto !important;
  width: 100% !important;
  border: 1px solid #acb3c2;
  border-bottom: 1px solid #acb3c2 !important;
}
div.dataTables_wrapper table thead th:not(:last-child) {
  border-right: 1px solid #acb3c2 !important;
}
div.dataTables_wrapper table thead th {
  border-bottom: 1px solid #acb3c2 !important;
}
div.dataTables_wrapper table thead th:not(:last-child),
div.dataTables_wrapper table tbody td:not(:last-child) {
  padding: 5px !important;
  border-right: 1px solid #acb3c2 !important;
}
div.dataTables_wrapper .icons {
  width: 15px;
  padding: 2px 5px;
  text-align: center;
}
div.dataTables_wrapper table tbody tr:hover,
div.dataTables_wrapper table tbody tr:hover > .sorting_1,
div.dataTables_wrapper table tbody tr:hover > .sorting_2,
div.dataTables_wrapper table tbody tr:hover > .sorting_3 {
  background-color: #e5f4fb !important;
}

/* table */
.table {
  border: 1px solid #acb3c2 !important;
}
.table th {
  background-color: #f9f9f9;
}
.table th, .table td {
  font-size: 0.7em;
  padding: 5px !important;
  border: 1px solid #acb3c2 !important;
}
.table th {
  background-color: #f9f9f9;
}
.table th:first-child {
  width: 25%;
}

/* steps */
div.steps {
  font-size: 0.85em;
  color: white;
}
div.steps div {
  display: inline-table;
  background-color: #acb3c2;
  padding: 10px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  min-width: 40px;
  text-align: center;
}
div.steps div.active {
  background-color: #00b9eb;
  padding: 10px 30px;
}

/* border */
.border {
  border: 1px solid #acb3c2 !important;
  padding: 20px;
}
.textarea {
  border: 1px solid #acb3c2 !important;
}
.textarea textarea {
  width: 100%;
  height: 250px;
  border: 1px solid white !important;
}

/* footer */
footer {
  margin-left: 175px;
  padding: 20px;
  padding-top: 0;
  font-size: 0.65em;
  color: #777;
}
footer div.footer {
  display: flex;
}
footer div.footer div:last-child {
  text-align: right;
  margin-left: auto;
}
footer div.footer img.arobase {
  width: 15px;
  opacity: 0.3;
  filter: grayscale(1);
}
footer div.footer img.arobase:hover {
  opacity: 1;
}

/* tooltip */
.ui-tooltip {
  font-family: 'Muli', sans-serif;
  font-size: 0.65em !important;
  white-space: nowrap !important;
  background: #0073aa !important;
  color: white !important;
  border: none !important;
  padding: 7px 10px !important;
}

/* mobile */
div.mobile {
  display: none;
}

/* divers */
p.delete {
  font-size: 0.75em;
  text-align: right;
}
