@charset "utf-8";
/* CSS Document */ :root {
  --primary: #dc3545;
  --secondary: #6c757d;
  --success: #198754;
  --info: #0dcaf0;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #F2F2F2;
  --dark: #111111;
}
/* Espace pour éviter le chevauchement avec la navbar fixe */
body {
  padding-top: 150px;
}
@media (max-width: 991px) {
  body {
    padding-top: 100px;
  }
}
.fw-medium {
  font-weight: 600 !important;
}
#backToTop:hover {
  background-color: #d9534f;
  transform: translateY(-3px);
}
/*** Navbar ***/
.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}
.navbar-light .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #FFFFFF;
  font-size: 15px;
  text-transform: uppercase;
  outline: none;
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link.active {
  color: var(--primary);
}
@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }
  .navbar-light .navbar-nav {
    border-top: 1px solid #EEEEEE;
  }
}
.navbar-light .navbar-brand, .navbar-light a.btn {
  height: 75px;
}
.navbar-light .navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
}
.navbar-light.sticky-top {
  top: -100px;
  transition: .5s;
}
@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
  }
  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: .5s;
    opacity: 1;
  }
}
.nav-pills .nav-link {
  background-color: #f8f9fa;
  color: #000 !important;
  border: 1px solid #e0e0e0;
}
/* Icône et texte inactifs */
.nav-pills .nav-link i, .nav-pills .nav-link h4 {
  color: #000;
}
/* Bouton actif */
.nav-pills .nav-link.active {
  background-color: #f26d65 !important;
  border-color: #f26d65;
}
/* Icône et texte actifs en blanc */
.nav-pills .nav-link.active i, .nav-pills .nav-link.active h4 {
  color: #fff !important;
}
/* Hover */
.nav-pills .nav-link:hover:not(.active) {
  background-color: #fff0f0;
  border-color: #f26d65;
}
.nav-pills .nav-link:hover:not(.active) i, .nav-pills .nav-link:hover:not(.active) h4 {
  color: #f26d65 !important;
}
.effet {
  transition: color 0.3s ease-in-out;
}
/* TABLE article */
.table-options {
  border-collapse: collapse;
  border: 1px solid #000;
  width: auto;
  font-size: 0.875rem;
}
.table-options td {
  border: 1px solid #000;
  /*padding: 0.25rem 0.4rem;*/
  vertical-align: middle;
  line-height: 1;
  /*padding: 0.15rem 0.3rem;*/
  padding: 10px;
  font-size: 0.8rem;
}
.table-options .header td {
  font-weight: 600;
  /*text-align: center;*/
  white-space: nowrap;
}
/* Colonnes "Code" */
.table-options td:nth-child(2), .table-options td:nth-child(4) {
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
  padding: 10px;
}
.col-vide {
  min-height: 200px;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  margin-bottom: 20px;
}
/* Ligne 2 pleine largeur */
.row-vide {
  min-height: 250px;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  margin-bottom: 20px;
}
footer {
  background-color: #212529;
  color: #adb5bd;
  padding: 15px 0;
  text-align: center;
  font-size: 13px;
}
.bloc-texte p:first-child, .bloc-texte h1:first-child, .bloc-texte h2:first-child, .bloc-texte ul:first-child {
  margin-top: 0;
}
.bloc-table {
  margin-top: 0;
}
.bloc-table:first-child {
  margin-top: 0;
}
.table-title {
  margin-top: 0;
  margin-bottom: .5rem;
}
.bloc-table table {
  margin-top: 0;
}
.picto {
  background-color: #f26d65;
  margin: 3px;
  max-width: 60px;
}
