:root {
  --font-weight: 300;
  --font-size: 1.4rem;
  --line-height: 18px;
  --spacing: 15px;
  --width-sm: 576px;
  --width-md: 768px;
  --width-lg: 992px;
  --width-xl: 1200px;
  --width-xxl: 1400px;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-white-hover: #F9F9F9;
  --color-txt: #5e5e5e;
  --color-background: #F1F5F9;
  --color-error: #8d1b1b;
  --color-error-bg: #f8d7da;
  --color-success: #288d1b;
  --color-success-bg: #ddfad9;
  --color-modal-backdrop: rgba(153, 18, 12, 0.7);
  --color-logo: #99120c;
  --color-logo-pale: #d82f34;
  --color-secondary: #2A2A2A;
  --color-grey: #b4b4b4;
  --color-green: #288d1b;
  --color-green-pale: #89ff79;
  --border-radius: 0.375rem;
  --transition: all 400ms;
}
body.login {
  background-color: var(--color-white);
  display: flex;
  width: 100vw;
  height: 100vh;
  align-items: center;
  justify-content: center;
}
body.login label {
  color: var(--color-black);
  margin-bottom: 0px;
  margin-top: 20px;
}
body.login label.mt-0 {
  margin-top: 0;
}
body.login .forgot_password {
  color: var(--color-black);
  text-align: right;
}
body.login .grid-2 {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  margin: 10px 0;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body {
  color: var(--color-txt);
  font-family: "Open Sans", sans-serif;
  font-size: var(--font-size);
  overflow: hidden;
  min-height: 100vh;
  margin: 0px;
  overflow-y: scroll;
}
h1 {
  font: bold 30px/40px Open Sans;
  color: var(--color-secondary);
  margin: 1em 0;
}
h2 {
  color: var(--color-secondary);
  margin: 30px 0 5px 0px;
}
h3 {
  color: var(--color-secondary);
  max-width: 800px;
}
h4 {
  color: var(--color-secondary);
  max-width: 800px;
}
a,
a:link,
a:visited {
  transition: var(--transition);
}
a.a--block,
a:link.a--block,
a:visited.a--block {
  display: block;
}
a.a--inline-block,
a:link.a--inline-block,
a:visited.a--inline-block {
  display: inline-block;
}
a.a--border-btn,
a:link.a--border-btn,
a:visited.a--border-btn {
  border-bottom: 1px solid var(--color-logo);
  padding: 5px 0;
}
a:hover,
a:link:hover,
a:visited:hover {
  transition: var(--transition);
}
p {
  display: block;
  padding-bottom: 20px;
  max-width: 800px;
}
p:last-of-type {
  padding-bottom: 0;
}
input,
select {
  height: 30px;
}
label.inline-flex {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.container {
  max-width: 90%;
  margin: 0 auto;
}
.flex-td {
  display: flex;
  justify-content: space-around;
  width: 100px;
}
.edit {
  color: white;
  background: var(--color-green);
  font: 14px/1.25em "Open Sans", sans-serif;
  border-radius: 4px;
  padding: 7px;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}
.edit:hover {
  color: white;
  background: var(--color-green-pale);
}
.btn__add {
  color: white;
  background: var(--color-green);
  font: 14px/1.25em "Open Sans", sans-serif;
  border-radius: 4px;
  padding: 7px;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}
.btn__add:hover {
  color: white;
  background: var(--color-green-pale);
}
.delete {
  width: auto;
  background: var(--color-error);
}
.delete:hover {
  color: white;
  background: var(--color-error-bg);
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex-center label {
  width: auto;
  display: inline;
  margin: 0 25px 0 0;
}
.flex-center.nospace {
  justify-content: flex-start;
}
.flex-center input {
  height: auto;
  margin-right: 5px;
}
.grid-3 {
  display: grid;
  column-gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  display: grid;
  column-gap: 30px;
  align-items: end;
  grid-template-columns: 28% 28% 28% 5%;
}
.form-bg {
  background-color: var(--color-white);
  padding: 30px;
  min-width: 500px;
  max-width: 1024px;
  border-radius: var(--border-radius);
}
.form-bg button {
  margin-top: 30px;
}
.form-bg input[type='checkbox'] {
  height: auto;
  margin-right: 5px;
}
.form-bg a {
  color: var(--color-green);
}
.listVille {
  display: flex;
  gap: 15px 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.token {
  display: none;
}
label.short_input {
  width: 100px;
}
label.loading::after {
  content: '';
  position: absolute;
  top: 5px;
  right: 5px;
  /*margin-top: -30px;*/
  /*margin-left: -30px;*/
  width: 5px;
  height: 5px;
  border-radius: 50px;
  border: 4px solid var(--color-grey);
  border-top-color: var(--color-logo);
  animation: loading 500ms linear infinite;
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
label > span {
  font: 14px 'Open Sans';
  margin-bottom: 5px;
  display: block;
  color: var(--color-grey);
}
label > span.no_margin_bottom {
  margin-bottom: 0px;
}
.requiredField {
  color: var(--color-error);
}
button {
  color: white;
  background: var(--color-green);
  font: 14px/1.25em 'Open Sans', sans-serif;
  width: 100%;
  border: none;
  border-radius: 4px;
  padding: 7px;
  margin-bottom: 1px;
  transition: var(--transition);
  cursor: pointer;
  max-width: 400px;
}
button.keyword {
  max-width: 200px;
}
button:hover {
  color: white;
  background: var(--color-green-pale);
}
button.btn-save {
  margin-top: 1em;
}
input[type=text],
input[type=url],
input[type=email],
input[type=password],
input[type=tel],
input[type=number],
input[type=time],
input[type=date],
input[type=datetime-local],
textarea,
select {
  color: var(--color-secondary);
  font: 14px/1.25em 'Open Sans', sans-serif;
  background: #ffffff 0% 0% no-repeat padding-box;
  border: 1px solid var(--color-grey);
  border-radius: 4px;
  padding: 3px 4px;
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */
  margin-bottom: 1px;
  width: 100%;
  transition: var(--transition);
}
input[type=text]:focus,
input[type=url]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=time]:focus,
input[type=date]:focus,
input[type=datetime-local]:focus,
textarea:focus,
select:focus {
  border-color: var(--color-logo);
}
input[type=text]:disabled,
input[type=url]:disabled,
input[type=email]:disabled,
input[type=password]:disabled,
input[type=tel]:disabled,
input[type=number]:disabled,
input[type=time]:disabled,
input[type=date]:disabled,
input[type=datetime-local]:disabled,
textarea:disabled,
select:disabled {
  cursor: not-allowed;
}
select option[value=""] {
  background-color: var(--color-grey);
}
.group-link a {
  text-decoration: none;
  color: #FFF;
}
.group-link a:hover {
  color: var(--color-logo-pale);
}
.groupe-switch {
  position: relative;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: 100%;
  /* Rounded sliders */
}
.groupe-switch.round .switch {
  border-radius: 34px;
}
.groupe-switch.round .switch:before {
  border-radius: 50%;
}
.groupe-switch input {
  display: none;
}
.groupe-switch .switch {
  cursor: pointer;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  width: 50px;
  height: 20px;
  margin: 0px;
  position: relative;
}
.groupe-switch .switch:before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  left: 3px;
  bottom: 2.5px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
.groupe-switch input:checked + .switch {
  background-color: var(--color-logo);
}
.groupe-switch input:focus + .switch {
  box-shadow: 0 0 1px var(--color-logo);
}
.groupe-switch input:checked + .switch:before {
  -webkit-transform: translateX(30px);
  -ms-transform: translateX(30px);
  transform: translateX(30px);
}
.groupe-checkbox {
  cursor: pointer;
  position: relative;
}
.groupe-checkbox.disabled {
  cursor: not-allowed;
}
.groupe-checkbox--w100 {
  width: 100%;
}
.groupe-checkbox input {
  display: none;
}
.groupe-checkbox input:checked + span {
  /*color: var(--color-logo);*/
}
.groupe-checkbox input:checked + span:before {
  color: var(--color-logo);
  border-color: var(--color-logo);
}
.groupe-checkbox input:checked + span:after {
  color: var(--color-logo);
  border-color: var(--color-logo);
}
.groupe-checkbox span {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 0px;
}
.groupe-checkbox span.checkbox:not([position]):before {
  font: var(--fa-font-regular);
  content: '\f00c';
  font-weight: 900;
  color: #FFF;
  background: #FFF;
  border: 1px solid var(--color-grey);
  border-radius: 4px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.groupe-checkbox span.checkbox[position=top],
.groupe-checkbox span.checkbox[position=top-center] {
  display: block;
}
.groupe-checkbox span.checkbox[position=top]:after,
.groupe-checkbox span.checkbox[position=top-center]:after {
  font: var(--fa-font-regular);
  content: '\f00c';
  font-weight: 900;
  color: #FFF;
  background: #FFF;
  border: 1px solid var(--color-grey);
  border-radius: 4px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
}
.groupe-checkbox span.checkbox[position=top-center] {
  text-align: center;
}
.groupe-checkbox span.checkbox[position=top-center]:after {
  margin: 5px auto 0 auto;
}
.groupe-checkbox__no_text {
  display: flex;
  justify-content: center;
}
.groupe-checkbox__no_text span {
  margin-bottom: 0px;
}
.groupe-radio {
  cursor: pointer;
  position: relative;
}
.groupe-radio input {
  display: none;
}
.groupe-radio input:checked + span {
  color: var(--color-logo);
}
.groupe-radio input:checked + span:before {
  color: var(--color-logo);
  border-color: var(--color-logo);
}
.groupe-radio span {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.groupe-radio span:before {
  font: var(--fa-font-regular);
  content: '\f111';
  font-weight: 900;
  color: #FFF;
  background: #FFF;
  border: 1px solid var(--color-grey);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.groupe-input {
  position: relative;
}
.groupe-input--suffix input {
  padding-right: 30px;
}
.groupe-input__suffix {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  background: transparent;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.groupe-input__monnaitaire {
  text-align: right;
}
.nav_link__a {
  font-size: 2em !important;
}
.logo {
  max-width: 350px;
}
.tooltip {
  position: relative;
  display: inline-block;
  cursor: help;
  margin: 0px;
}
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
.tooltip--right .tooltiptext {
  left: auto !important;
  right: -15px;
}
.tooltip--right .tooltiptext:after {
  left: auto !important;
  right: 15px;
}
.tooltip--down .tooltiptext {
  bottom: auto;
  top: 30px;
  min-height: 68px;
}
.tooltip--down .tooltiptext:after {
  top: auto !important;
  bottom: 100% !important;
  transform: rotate(180deg);
}
.tooltip .tooltiptext {
  visibility: hidden;
  opacity: 0;
  transition: all 400ms;
  width: 120px;
  background-color: #000000dd;
  text-align: center;
  color: #fff !important;
  font-weight: 400 !important;
  font-size: 12px !important;
  border-radius: 4px;
  padding: 7px;
  display: inline-block;
  width: 200px;
  position: absolute;
  bottom: 30px;
  left: -15px;
  z-index: 9999999999999999999999999;
}
.tooltip .tooltiptext:after {
  top: 100%;
  left: 24px;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: transparent;
  border-top-color: #000000dd;
  border-width: 7px;
  margin-left: -7px;
}
.tooltip i {
  font-size: 15px;
  color: var(--color-logo);
}
.tooltip i.fa-lightbulb-on {
  color: #4C6EF5;
  background-color: yellow;
  -webkit-animation: pulse 1s linear infinite;
  animation: pulse 1s linear infinite;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(1.1, 1.1);
  }
  100% {
    -webkit-transform: scale(1, 1);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.3, 1.3);
  }
  100% {
    transform: scale(1, 1);
  }
}
.tooltip i.fa-lightbulb-on:hover {
  -webkit-animation: none;
  animation: none;
}
.stack__be_message {
  font-weight: normal;
}
.stack__be_message ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
.stack__be_message .alert {
  position: relative;
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 3px solid transparent;
  border-radius: .25rem;
}
.stack__be_message .alert.alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}
.stack__be_message .alert.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}
.stack__be_message .alert.alert-success {
  color: var(--color-success);
  background-color: var(--color-success-bg);
  border-color: var(--color-success);
}
.stack__be_message .alert.alert-danger {
  color: var(--color-error);
  background-color: var(--color-error-bg);
  border-color: var(--color-error);
}
.stack__be_message .alert.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
.stack__be_message .alert .alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}
.stack__be_message .alert.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}
.stack__be_message .alert.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}
.stack__be_message .alert.small-size {
  padding: 5px;
  border: 2px solid;
}
.stack__be_message .alert.small-size li {
  font-size: 10px;
}
:root {
  --font-weight: 300;
  --font-size: 1.4rem;
  --line-height: 18px;
  --spacing: 15px;
  --width-sm: 576px;
  --width-md: 768px;
  --width-lg: 992px;
  --width-xl: 1200px;
  --width-xxl: 1400px;
  --color-white: #FFFFFF;
  --color-white-hover: #F9F9F9;
  --color-txt: #5e5e5e;
  --color-background: #F1F5F9;
  --color-error: #8d1b1b;
  --color-error-bg: #f8d7da;
  --color-success: #288d1b;
  --color-success-bg: #ddfad9;
  --color-btn: #333;
  --color-btn-info: #208de0;
  --color-btn-close: #ea0808;
  --color-btn-create: #288d1b;
  --color-btn-create-hover: #5BC04E;
  --color-btn-delete: #ca0404;
  --color-btn-delete-hover: #ea0808;
  --color-btn-edit: #af7702;
  --color-btn-edit-hover: #eab308;
  --color-btn-export: #99120c;
  --color-btn-export-hover: #d82f34;
  --color-modal-backdrop: rgba(153, 18, 12, 0.7);
  --color-logo: #99120c;
  --color-logo-pale: #d82f34;
  --color-secondary: #2A2A2A;
  --color-grey: #b4b4b4;
  --color-light-grey: #fcfcfc;
  --color-tabs-bg: #f1f1f1;
  --color-tabs-bg-hover: #d8d8d8;
  --color-tabs-bg-active: #cbcbcb;
  --border-radius: 0.375rem;
  --transition: all 400ms;
}
.admin-bar {
  position: relative;
  box-shadow: 0 0 5px #0001;
  display: flex;
  justify-content: space-between;
}
.admin-bar__bg {
  background: var(--color-green);
}
.admin-bar a {
  text-decoration: none;
  color: #fff;
}
.admin-bar__logo {
  padding: 1rem 3rem;
  width: 300px;
}
.admin-bar__logo img {
  height: 100%;
  width: 300px;
}
.admin-bar__menu {
  padding: 1rem 3rem;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 3rem;
  position: relative;
}
.admin-bar__menu__item {
  position: relative;
}
.admin-bar__menu__item:hover .admin-bar__menu__item__nav {
  display: block;
}
.admin-bar__menu__item a {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 20px;
}
.admin-bar__menu__item a img {
  height: 26px;
  object-fit: cover;
  border-radius: 25px;
}
.admin-bar__menu__item a span {
  font-weight: bold;
}
.admin-bar__menu__item a:hover {
  background-color: var(--color-green-pale);
  color: var(--color-black);
}
.admin-bar__menu__item__nav {
  position: absolute;
  top: 100%;
  border-top: 1px solid #fff;
  right: 0;
  box-shadow: 0 0 5px #0002;
  width: 100%;
  display: none;
  background: var(--color-secondary);
}
.admin-bar__menu__item__nav a:hover {
  color: var(--color-logo-pale);
}
.admin-bar__menu__item__nav ul {
  list-style: none;
  list-style-type: none;
  padding: 10px;
  margin: 0px;
}
section.admin-sidebar {
  min-width: 100%;
}
section.admin-sidebar ul {
  padding: 0px;
  margin: 0px;
}
section.admin-sidebar ul:not(:first-child) {
  padding-top: 30px;
}
section.admin-sidebar ul li {
  list-style: none;
}
section.admin-sidebar ul li a,
section.admin-sidebar ul li.label {
  display: inline-block;
  padding: 10px;
  width: 100%;
  height: 100%;
  color: var(--color-white);
  text-decoration: none;
  background-color: var(--color-logo);
}
section.admin-sidebar ul li a:first-letter,
section.admin-sidebar ul li.label:first-letter {
  text-transform: uppercase;
}
section.admin-sidebar ul li a:hover,
section.admin-sidebar ul li.label:hover {
  background-color: var(--color-logo-pale);
}
section.admin-sidebar ul li.label {
  color: var(--color-black);
  background-color: var(--color-white);
  text-transform: capitalize;
  box-sizing: border-box;
  border-bottom: 1px solid #e2e8f0;
}
section.admin-sidebar ul li.label:hover {
  background-color: var(--color-white-hover);
}
@media only screen and (min-width: 1024px) {
  section.admin-sidebar {
    padding: 3rem;
    min-width: 300px;
  }
}
.admin-footer {
  height: 50px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  color: var(--color-grey);
}
.admin-footer a {
  text-decoration: none;
  color: var(--color-secondary);
}
.admin-footer a:hover {
  color: var(--color-logo-pale);
}
table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  border-radius: var(--border-radius);
  background-color: var(--color-white);
  /*margin-top: 1.5rem;*/
}
table tr {
  box-sizing: border-box;
  border-bottom: 1px solid #e2e8f0;
}
table tr.title_row {
  background-color: #fef3f2;
}
table th,
table td {
  padding: 1rem 1.5rem;
  text-align: left;
}
table th a,
table td a {
  color: var(--color-green);
}
table th {
  padding-top: 1.5rem;
  font-weight: 700;
  position: relative;
}
table th::first-letter {
  text-transform: capitalize;
}
table tbody tr:hover {
  background-color: var(--color-white-hover);
}
.pager {
  margin-top: 1.5rem;
}
.pager__pages a {
  color: var(--color-txt);
  padding: 0.75rem 1rem;
  margin-bottom: 0.25rem;
  margin-right: 0.25rem;
  border-radius: var(--border-radius);
  border: 1px solid #e2e8f0;
  text-decoration: none;
  text-transform: capitalize;
  font-size: 0.875rem;
}
.pager__pages a.active,
.pager__pages a:hover {
  background-color: white;
  cursor: pointer;
}
.modal {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  overflow: hidden;
}
.modal_overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: var(--color-modal-backdrop);
  z-index: 990;
}
.modal_container {
  display: flex;
  justify-content: center;
  align-items: start;
  width: 100%;
  position: relative;
}
.modal_container_card {
  background-color: var(--color-white);
  z-index: 991;
  border-radius: 10px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
  /*overflow: hidden;*/
  max-height: calc(100vh - 60px);
  overflow: auto;
  margin: 30px 30px;
  position: fixed;
  top: 0px;
}
.modal_container_card_content {
  width: 100%;
  padding: 15px;
  position: relative;
}
.modal_container_card_header {
  width: 100%;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  background-color: var(--color-light-grey);
  border-bottom: 1px solid #dedede;
  border-radius: 10px;
}
.modal_container_card_header__close {
  cursor: pointer;
}
.modal_second_level {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  overflow: hidden;
}
.modal_second_level_overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: var(--color-modal-backdrop);
  z-index: 992;
}
.modal_second_level_container {
  display: flex;
  justify-content: center;
  align-items: start;
  width: 100%;
  position: relative;
}
.modal_second_level_container_card {
  background-color: var(--color-white);
  z-index: 993;
  border-radius: 10px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
  /*overflow: hidden;*/
  max-height: calc(100vh - 60px);
  overflow: auto;
  margin: 30px 30px;
  position: fixed;
  top: 0px;
}
.modal_second_level_container_card_content {
  width: 100%;
  padding: 15px;
  position: relative;
}
.modal_second_level_container_card_header {
  width: 100%;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  background-color: var(--color-light-grey);
  border-bottom: 1px solid #dedede;
  border-radius: 10px;
}
.modal_second_level_container_card_header__close {
  cursor: pointer;
}
.modal_third_level {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  overflow: hidden;
}
.modal_third_level_overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: var(--color-modal-backdrop);
  z-index: 994;
}
.modal_third_level_container {
  display: flex;
  justify-content: center;
  align-items: start;
  width: 100%;
  position: relative;
}
.modal_third_level_container_card {
  background-color: var(--color-white);
  z-index: 995;
  border-radius: 10px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
  /*overflow: hidden;*/
  max-height: calc(100vh - 60px);
  overflow: auto;
  margin: 30px 30px;
  position: fixed;
  top: 0px;
}
.modal_third_level_container_card_content {
  width: 100%;
  padding: 15px;
  position: relative;
}
.modal_third_level_container_card_header {
  width: 100%;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  background-color: var(--color-light-grey);
  border-bottom: 1px solid #dedede;
  border-radius: 10px;
}
.modal_third_level_container_card_header__close {
  cursor: pointer;
}
.modal_confirmation {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  overflow: hidden;
}
.modal_confirmation_overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: var(--color-modal-backdrop);
  z-index: 998;
}
.modal_confirmation_container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.modal_confirmation_container_card {
  background-color: var(--color-white);
  z-index: 999;
  border-radius: 10px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
  /*overflow: hidden;*/
  position: fixed;
  top: 0px;
  margin-top: 200px;
}
.modal_confirmation_container_card_content {
  width: 100%;
  padding: 15px;
  position: relative;
}
.modal_confirmation_container_card_header {
  width: 100%;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  background-color: var(--color-light-grey);
  border-bottom: 1px solid #dedede;
  border-radius: 10px;
}
.modal_confirmation_container_card_header__close {
  cursor: pointer;
}
.modal_confirmation_container_card_footer_action_btns {
  display: flex;
  gap: 5px;
  margin: 10px;
}
.btn-close {
  position: relative;
  width: 40px;
  height: 40px;
  border: 4px solid var(--color-btn);
  border-radius: 50%;
  cursor: pointer;
  transition: border-color 0.4s ease-in;
}
.btn-close:hover {
  border-color: var(--color-btn-close);
}
.btn-close:hover span {
  background: var(--color-btn-close);
}
.btn-close span {
  content: "";
  background: var(--color-btn);
  position: absolute;
  transition: all 0.4s ease-in-out;
}
.btn-close span:nth-child(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 4px;
  height: 24px;
  border-radius: 2px;
}
.btn-close span:nth-child(2) {
  top: 50%;
  left: 50%;
  width: 4px;
  height: 24px;
  transform: translate(-50%, -50%) rotate(-45deg);
}
:root {
  --out-left-start: -47.5px;
  --out-left-end: -70px;
  --out-top-start: -80px;
  --out-top-end: -15px;
}
.btn-infos {
  position: relative;
}
.btn-infos .information {
  position: relative;
  width: 25px;
  height: 25px;
  border: 2px solid var(--color-btn);
  border-radius: 50%;
  cursor: pointer;
  transition: border-color 0.4s ease-in;
}
.btn-infos .information:hover {
  border-color: var(--color-btn-info);
}
.btn-infos .information:hover span {
  background: var(--color-btn-info);
}
.btn-infos .information span {
  content: "";
  background: var(--color-btn);
  position: absolute;
  transition: all 0.4s ease-in-out;
}
.btn-infos .information span:nth-child(1) {
  transform: translateX(-50%);
  left: 50%;
  border-radius: 50%;
  width: 3px;
  height: 3px;
  top: 3px;
}
.btn-infos .information span:nth-child(2) {
  transform: translateX(-50%);
  left: 50%;
  top: 7px;
  width: 2px;
  height: 9px;
  border-radius: 2px;
}
.btn-infos.is-clicked:hover,
.btn-infos.is-clicked:hover .information {
  border-color: var(--color-btn-close);
}
.btn-infos.is-clicked:hover span,
.btn-infos.is-clicked:hover .information span {
  background: var(--color-btn-close);
}
.btn-infos.is-clicked span:nth-child(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 2px;
  height: 12px;
  border-radius: 2px;
}
.btn-infos.is-clicked span:nth-child(2) {
  top: 50%;
  left: 50%;
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.btn-infos .dialog {
  padding: 5px 15px;
  border: 4px solid var(--color-btn);
  border-radius: 10px;
  position: absolute;
  left: var(--out-left-start);
  /*top: var(--out-top-start);*/
  bottom: 175%;
  opacity: 0;
  /*width: 200px;*/
  background: var(--color-light-grey);
  display: none;
}
.btn-infos .dialog:before {
  content: "";
  border: 4px solid var(--color-btn);
  border-top: none;
  border-right: none;
  background: var(--color-light-grey);
  width: 15px;
  height: 15px;
  display: block;
  position: absolute;
  transform: rotate(-45deg);
  bottom: -12px;
  left: 47px;
}
.btn-infos .dialog p {
  font-weight: 600;
}
.btn-infos .dialog.out {
  animation: btnInfosOutAnimation forwards .6s;
  animation-iteration-count: 1;
  transform-origin: 50% 50%;
  -webkit-animation: btnInfosOutAnimation forwards .6s;
  -webkit-animation-iteration-count: 1;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: btnInfosOutAnimation forwards .6s;
  -moz-animation-iteration-count: 1;
  -moz-transform-origin: 50% 50%;
  -o-animation: btnInfosOutAnimation forwards .6s;
  -o-animation-iteration-count: 1;
  -o-transform-origin: 50% 50%;
  -ms-animation: btnInfosOutAnimation forwards .6s;
  -ms-animation-iteration-count: 1;
  -ms-transform-origin: 50% 50%;
}
.btn-infos .dialog.in {
  z-index: 999;
  animation: btnInfosInAnimation forwards .6s;
  animation-iteration-count: 1;
  transform-origin: 50% 50%;
  -webkit-animation: btnInfosInAnimation forwards .6s;
  -webkit-animation-iteration-count: 1;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: btnInfosInAnimation forwards .6s;
  -moz-animation-iteration-count: 1;
  -moz-transform-origin: 50% 50%;
  -o-animation: btnInfosInAnimation forwards .6s;
  -o-animation-iteration-count: 1;
  -o-transform-origin: 50% 50%;
  -ms-animation: btnInfosInAnimation forwards .6s;
  -ms-animation-iteration-count: 1;
  -ms-transform-origin: 50% 50%;
  display: block;
}
@keyframes btnInfosOutAnimation {
  0% {
    opacity: 1;
    transform: scaleX(1) scaleY(1);
    left: var(--out-left-start);
    top: var(--out-top-start);
  }
  25% {
    opacity: 1;
    transform: scaleX(0.95) scaleY(0.95);
    left: var(--out-left-start);
    top: var(--out-top-start);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.1) scaleY(1.1);
    left: var(--out-left-start);
    top: var(--out-top-start);
  }
  100% {
    opacity: 0;
    transform: scaleX(0.3) scaleY(0.3);
    left: var(--out-left-end);
    top: var(--out-top-end);
  }
}
@-moz-keyframes btnInfosOutAnimation {
  0% {
    opacity: 1;
    transform: scaleX(1) scaleY(1);
    left: var(--out-left-start);
    top: var(--out-top-start);
  }
  25% {
    opacity: 1;
    transform: scaleX(0.95) scaleY(0.95);
    left: var(--out-left-start);
    top: var(--out-top-start);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.1) scaleY(1.1);
    left: var(--out-left-start);
    top: var(--out-top-start);
  }
  100% {
    opacity: 0;
    transform: scaleX(0.3) scaleY(0.3);
    left: var(--out-left-end);
    top: var(--out-top-end);
  }
}
@-webkit-keyframes btnInfosOutAnimation {
  0% {
    opacity: 1;
    transform: scaleX(1) scaleY(1);
    left: var(--out-left-start);
    top: var(--out-top-start);
  }
  25% {
    opacity: 1;
    transform: scaleX(0.95) scaleY(0.95);
    left: var(--out-left-start);
    top: var(--out-top-start);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.1) scaleY(1.1);
    left: var(--out-left-start);
    top: var(--out-top-start);
  }
  100% {
    opacity: 0;
    transform: scaleX(0.3) scaleY(0.3);
    left: var(--out-left-end);
    top: var(--out-top-end);
  }
}
@-o-keyframes btnInfosOutAnimation {
  0% {
    opacity: 1;
    transform: scaleX(1) scaleY(1);
    left: var(--out-left-start);
    top: var(--out-top-start);
  }
  25% {
    opacity: 1;
    transform: scaleX(0.95) scaleY(0.95);
    left: var(--out-left-start);
    top: var(--out-top-start);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.1) scaleY(1.1);
    left: var(--out-left-start);
    top: var(--out-top-start);
  }
  100% {
    opacity: 0;
    transform: scaleX(0.3) scaleY(0.3);
    left: var(--out-top-end);
    top: var(--out-top-end);
  }
}
@-ms-keyframes btnInfosOutAnimation {
  0% {
    opacity: 1;
    transform: scaleX(1) scaleY(1);
    left: var(--out-left-start);
    top: var(--out-top-start);
  }
  25% {
    opacity: 1;
    transform: scaleX(0.95) scaleY(0.95);
    left: var(--out-left-start);
    top: var(--out-top-start);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.1) scaleY(1.1);
    left: var(--out-left-start);
    top: var(--out-top-start);
  }
  100% {
    opacity: 0;
    transform: scaleX(0.3) scaleY(0.3);
    left: var(--out-left-end);
    top: var(--out-top-end);
  }
}
@keyframes btnInfosInAnimation {
  0% {
    opacity: 0;
    transform: scaleX(0.3) scaleY(0.3);
  }
  25% {
    opacity: 1;
    transform: scaleX(1.1) scaleY(1.1);
  }
  50% {
    opacity: 1;
    transform: scaleX(0.95) scaleY(0.95);
  }
  100% {
    opacity: 1;
    transform: scaleX(1) scaleY(1);
  }
}
@-moz-keyframes btnInfosInAnimation {
  0% {
    opacity: 0;
    transform: scaleX(0.3) scaleY(0.3);
  }
  25% {
    opacity: 1;
    transform: scaleX(1.1) scaleY(1.1);
  }
  50% {
    opacity: 1;
    transform: scaleX(0.95) scaleY(0.95);
  }
  100% {
    opacity: 1;
    transform: scaleX(1) scaleY(1);
  }
}
@-webkit-keyframes btnInfosInAnimation {
  0% {
    opacity: 0;
    transform: scaleX(0.3) scaleY(0.3);
  }
  25% {
    opacity: 1;
    transform: scaleX(1.1) scaleY(1.1);
  }
  50% {
    opacity: 1;
    transform: scaleX(0.95) scaleY(0.95);
  }
  100% {
    opacity: 1;
    transform: scaleX(1) scaleY(1);
  }
}
@-o-keyframes btnInfosInAnimation {
  0% {
    opacity: 0;
    transform: scaleX(0.3) scaleY(0.3);
  }
  25% {
    opacity: 1;
    transform: scaleX(1.1) scaleY(1.1);
  }
  50% {
    opacity: 1;
    transform: scaleX(0.95) scaleY(0.95);
  }
  100% {
    opacity: 1;
    transform: scaleX(1) scaleY(1);
  }
}
@-ms-keyframes btnInfosInAnimation {
  0% {
    opacity: 0;
    transform: scaleX(0.3) scaleY(0.3);
  }
  25% {
    opacity: 1;
    transform: scaleX(1.1) scaleY(1.1);
  }
  50% {
    opacity: 1;
    transform: scaleX(0.95) scaleY(0.95);
  }
  100% {
    opacity: 1;
    transform: scaleX(1) scaleY(1);
  }
}
.btn-edit {
  background-color: var(--color-btn-edit);
  border-radius: 0.75rem;
  transition: var(--transition);
  min-width: 30px;
  min-height: 30px;
  display: flex;
  justify-content: space-between;
  gap: 1em;
  align-items: center;
  text-align: left;
}
.btn-edit:hover {
  background-color: var(--color-btn-edit-hover);
  border-radius: 1.5rem;
}
.btn-create {
  background-color: var(--color-btn-create);
  border-radius: 0.75rem;
  transition: var(--transition);
  min-width: 30px;
  min-height: 30px;
}
.btn-create:hover {
  background-color: var(--color-btn-create-hover);
  border-radius: 1.5rem;
}
.btn-delete {
  background-color: var(--color-btn-delete);
  border-radius: 0.75rem;
  transition: var(--transition);
  min-width: 30px;
  min-height: 30px;
}
.btn-delete:hover {
  background-color: var(--color-btn-delete-hover);
  border-radius: 1.5rem;
}
.btn-export {
  background-color: var(--color-btn-export);
  border-radius: 0.75rem;
  transition: var(--transition);
  min-width: 30px;
  min-height: 30px;
}
.btn-export:hover {
  background: var(--color-btn-export-hover);
  border-radius: 1.5rem;
}
.tabs_links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  border: 1px solid var(--color-tabs-bg-active);
  background-color: var(--color-tabs-bg);
}
.tabs_links > * {
  background-color: inherit;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}
.tabs_links > *:hover {
  background-color: var(--color-tabs-bg-hover);
}
.tabs_links > *.active {
  background-color: var(--color-tabs-bg-active);
}
.tabs_content {
  /*min-width: 900px;*/
  display: block;
  opacity: 1;
  transition: var(--transition);
}
.tabs_content.loading {
  opacity: 0;
}
.tabs_content h2 {
  margin: 30px 0px;
}
.accordeon {
  border-radius: 8px;
  /*overflow: hidden;*/
}
.accordeon_item {
  width: 100%;
  /*overflow: hidden;*/
}
.accordeon_item label {
  margin: 0px;
}
.accordeon_item input.accordeon_item_chk {
  display: none;
}
.accordeon_item input.accordeon_item_chk ~ .accordeon_item_content {
  display: none;
}
.accordeon_item input.accordeon_item_chk:checked + .accordeon_item_label {
  background: var(--color-tabs-bg-active);
}
.accordeon_item input.accordeon_item_chk:checked + .accordeon_item_label::after {
  transform: rotate(90deg);
}
.accordeon_item input.accordeon_item_chk:checked ~ .accordeon_item_content {
  display: block;
  padding: 1em;
  border: 1px solid var(--color-tabs-bg-active);
}
.accordeon_item_label {
  display: flex;
  justify-content: space-between;
  padding: 1em;
  background: var(--color-tabs-bg);
  font-weight: bold;
  cursor: pointer;
  /* Icon */
}
.accordeon_item_label:hover {
  background: var(--color-tabs-bg-hover);
}
.accordeon_item_label::after {
  content: "\276F";
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all .35s;
}
.accordeon_item_content {
  padding: 0 1em;
  background: var(--color-white);
  transition: all .35s;
}
.accordeon_item:last-child .accordeon_item_content {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.section_filtre {
  display: block;
  margin-bottom: 10px;
}
.section_filtre label {
  margin-bottom: 0px;
  width: auto;
}
.section_filtre button {
  height: 30px;
  width: 30px;
}
.host-card_content__general {
  width: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.host-card_content__general > div {
  width: 50%;
}
.host-card_content__note {
  width: 600px;
  position: relative;
}
.total_email_usage_uncategorized {
  margin: 5px 0px;
}
.last-connected {
  font-style: italic;
}
html {
  font-size: 12px;
}
body {
  background: var(--color-background);
  position: relative;
}
body main {
  display: block;
}
body main section.content {
  flex-grow: 1 ;
}
@media only screen and (min-width: 1024px) {
  body main {
    display: flex;
  }
  body main section.content {
    padding: 3rem;
  }
}
