/*******************************************
 *  THÈME LIGHT (par défaut)
 *  Variables CSS générées à partir du thème clair
 *******************************************/
:root {
  /* Couleurs principales */
  --color1: #2E547B;
  /* Composantes RGB correspondantes à --color1 (utile pour rgba) */
  --color1_r: 46;
  --color1_g: 84;
  --color1_b: 123;
  --color2: #5C000D;
  --color3: #9faec5;
  --couleur_principale: #1390C1;
  /* Gris */
  --gris2: #d5d5d5;
  --gris3: #BBBBBB;
  --gris4: var(--color1);
  --gris5: #eaeef4;
  --gris6: #5f6a73;
  --gris7: #B2B2B1;
  --gris8: #a0a7ad;
  --gris9: #CCC9C7;
  /* Divers */
  --border: #575756;
  --fieldset_title: #6D6E6D;
  --bg_bloc: #F8F8F8;
  --fontColor: #000000;
  --body-bg: #ffffff;
  --body-color: var(--fontColor);
  /* Éléments fonctionnels */
  --color_tag: var(--couleur_principale);
  --color_valid: #8ebe21;
  --color_unvalid: #ed6a51;
  --color_required: #DC001E;
  --background_required: rgba(220, 0, 30, 0.1);
  --color_required_check: #067A1B;
  --background_required_check: rgba(6, 122, 27, 0.1);
  --inputSelectColor: #333333;
  --inputColor: #F1F1F1;
  --white: #ffffff;
  --bodyColor: #f4f6f8;
  /* Typo */
  --font-size: 11px;
}
/*******************************************
 *  THÈME DARK
 *  Écrase uniquement les variables CSS
 *  pour un rendu sombre cohérent et lisible
 *******************************************/
body.dark-mode {
  /* Composantes RGB correspondantes à --color1 (dark) */
  --color1_r: 88;
  --color1_g: 185;
  --color1_b: 219;
  --couleur_principale: #58b9db;
  /* Gris adaptés au thème sombre */
  --gris2: #30363d;
  --gris3: #6b7177;
  --gris4: #2d3238;
  --gris5: #23272e;
  --gris6: #7a828a;
  --gris7: #a3a9ae;
  --gris8: #90979d;
  --gris9: #343a40;
  /* Bordures & divers */
  --border: #3a4047;
  --fieldset_title: #b6b6b6;
  --bg_bloc: #23272e;
  /* Texte & fond */
  --fontColor: #e5e5e5;
  --body-bg: #121212;
  --body-color: var(--fontColor);
  /* Tags */
  --color_tag: var(--couleur_principale);
  /* Validations */
  --color_valid: #7cc152;
  --color_required_check: #4ec77d;
  --background_required_check: rgba(78, 199, 125, 0.12);
  /* Erreurs / Requis */
  --color_unvalid: #e07360;
  --color_required: #ff5c7a;
  --background_required: rgba(255, 92, 122, 0.12);
  /* Inputs & utilitaires */
  --inputSelectColor: #e5e5e5;
  --inputColor: #40464d;
  --white: #ffffff;
  --bodyColor: #1b1f24;
}
.headerTop .container-fluid .navbar-brand .logo {
  height: 60px !important;
}
.headerTop .container-fluid .nav li {
  font-size: 14px;
}
.headerTop .container-fluid .nav li a {
  color: var(--color1) !important;
}
.headerTop .container-fluid .nav li a .iconeMenuPrincipal {
  font-size: 2em;
}
.headerTop .container-fluid .nav li a:hover,
.headerTop .container-fluid .nav li a:active,
.headerTop .container-fluid .nav li a:focus {
  background-color: unset;
  color: var(--couleur_principale) !important;
}
.headerTop .container-fluid .nav li.actif a {
  border-bottom: 4px solid var(--couleur_principale);
  color: var(--couleur_principale) !important;
}
.headerTop .container-fluid.mini .navbar-brand .logo {
  height: 30px !important;
}
.headerTop .container-fluid.mini .nav li a {
  text-align: center;
}
.headerTop .container-fluid.mini .nav li a.dropdown-item {
  text-align: left !important;
}
.headerTop .container-fluid.mini .nav li a .title_txt {
  display: none;
}
.headerTop .container-fluid.mini .nav li a .iconeMenuPrincipal {
  font-size: 1.5em;
  margin-right: unset !important;
}
.headerTop .container-fluid.mini .nav li.actif a {
  border-bottom: unset;
}
.bodyMenuLeft .menu-left {
  width: 250px;
}
.bodyMenuLeft .menu-left .nav li {
  font-size: 14px;
}
.bodyMenuLeft .menu-left .nav li a {
  color: var(--color1) !important;
}
.bodyMenuLeft .menu-left .nav li a:hover,
.bodyMenuLeft .menu-left .nav li a:active,
.bodyMenuLeft .menu-left .nav li a:focus {
  background-color: unset;
  color: var(--couleur_principale) !important;
}
.bodyMenuLeft .menu-left .nav li.actif a {
  border-bottom: 4px solid var(--couleur_principale);
  color: var(--couleur_principale) !important;
}
.bodyMenuLeft .menu-left::after {
  content: "";
  width: 1px;
  height: 100%;
  background: black;
  position: absolute;
  left: 250px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.1;
}
.bodyMenuLeft .menu-left.mini {
  width: 70px;
}
.bodyMenuLeft .menu-left.mini .nav li.nav-item {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.bodyMenuLeft .menu-left.mini .nav li.nav-item.actif {
  background: var(--color1);
}
.bodyMenuLeft .menu-left.mini .nav li.nav-item.actif a.nav-link {
  color: var(--white) !important;
}
.bodyMenuLeft .menu-left.mini .nav li a {
  text-align: center;
}
.bodyMenuLeft .menu-left.mini .nav li a.dropdown-item {
  text-align: left !important;
}
.bodyMenuLeft .menu-left.mini .nav li a .title_txt {
  display: none;
}
.bodyMenuLeft .menu-left.mini .nav li a .iconeMenuPrincipal {
  margin-right: unset !important;
  font-size: 18px !important;
}
.bodyMenuLeft .menu-left.mini .nav li.actif a {
  border-bottom: unset;
}
.bodyMenuLeft .menu-left.mini::after {
  left: 70px;
}
.bodyMenuLeft .menu-left .btn-circle {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  padding: 0;
  font-size: 1.2rem;
}
.bodyMenuLeft #dropdownUser.mini img {
  margin: 0 auto;
}
.bodyMenuLeft #dropdownUser.mini strong {
  display: none;
}
.bodyMenuLeft #dropdownUser.mini::after {
  display: none;
}
.search-overlay {
  z-index: 1051;
  background-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.search-overlay .fa-spin,
.search-overlay .fa-spin-pulse {
  animation-duration: 2s !important;
  animation-iteration-count: infinite !important;
}
.search-overlay .container {
  max-width: 700px;
  background-color: var(--white);
}
.search-overlay h2 {
  font-weight: bold;
  color: var(--couleur_principale);
  margin: 0 auto;
}
.search-overlay .search-input {
  max-height: 45px;
  padding-left: 1.5rem;
}
.search-overlay #searchResults {
  max-height: 75%;
  overflow-y: auto;
}
.search-overlay #searchResults .search-category {
  font-weight: bold;
  color: var(--couleur_principale);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
.search-overlay #searchResults .search-result-item {
  border-radius: 1rem;
  transition: all 0.2s ease-in-out;
}
.search-overlay #searchResults .search-result-item:hover {
  cursor: pointer;
}
.menu-secondary {
  width: 170px;
  font-size: 14px;
  display: flex;
  align-items: stretch;
}
.menu-secondary .toggle {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
}
.menu-secondary .toggle::after {
  margin-left: 15px;
  width: 1.25em;
  line-height: 0;
  content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
  transition: transform 0.35s ease;
  transform-origin: 0.5em 50%;
}
.menu-secondary .toggle[aria-expanded="true"]::after {
  transform: rotate(90deg);
}
.menu-secondary .toggle-nav a {
  display: inline-flex;
  padding: 0.1875rem 0.25rem;
  margin-top: 0.125rem;
  margin-left: 1.25rem;
  text-decoration: none;
  color: gray;
}
.menu-secondary .toggle-nav a:hover {
  color: var(--couleur_principale) !important;
}
.menu-secondary a.actif {
  border-bottom: 2px solid var(--couleur_principale);
  color: var(--couleur_principale) !important;
}
.menu-secondary::after {
  content: "";
  width: 1px;
  height: 100%;
  background: black;
  position: absolute;
  left: 420px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.1;
}
.menu-secondary #menu-secondary-toggle {
  position: absolute;
  left: 421px;
  top: 2%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background: var(--white);
  color: var(--couleur_principale);
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-left: 0px;
  cursor: pointer;
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  border-radius: 0 5px 5px 0;
  transition: all 0.3s ease;
  z-index: 100;
}
.menu-secondary.collapsed {
  width: 0;
  padding: 0;
  overflow: hidden;
}
.menu-secondary.collapsed #menu-secondary-toggle {
  left: 251px;
}
.menu-secondary.collapsed::after {
  display: none;
}
.menu-secondary.mini::after {
  left: 240px;
}
.menu-secondary.mini #menu-secondary-toggle {
  left: 241px;
}
.menu-secondary.mini.collapsed #menu-secondary-toggle {
  left: 71px;
}
.dropdown-menu .dropdown-submenu {
  display: none;
  position: absolute;
  left: 100%;
  top: -7px;
}
.dropdown-menu .dropdown-submenu-left {
  right: 100%;
  left: auto;
}
.dropdown-menu > li:hover > .dropdown-submenu {
  display: block;
}
#openSearch {
  color: var(--white);
  background-color: rgba(var(--color1_r), var(--color1_g), var(--color1_b), 0.5);
}
body,
html {
  height: 100%;
  color: var(--fontColor);
  font-size: var(--font-size);
  background: var(--bodyColor);
}
hr {
  opacity: 0.1;
}
#appWrapper {
  margin: 0 auto;
  height: 100%;
  position: relative;
}
@media (min-width: 1200px) {
  #appWrapper.mini_menu #headerWrapper {
    min-height: 50px !important;
  }
  #appWrapper.mini_menu #headerWrapper .navbar-default {
    min-height: 50px !important;
  }
  #appWrapper.mini_menu #headerWrapper .navbar-header {
    height: 50px;
  }
  #appWrapper.mini_menu #headerWrapper .menuControls {
    min-height: 50px;
  }
  #appWrapper.mini_menu #bodyWrapper {
    top: 55px !important;
  }
  #appWrapper.mini_menu #bodyWrapper .derniersElementsConsultes {
    display: none;
  }
  #appWrapper.mini_menu ul.nav li {
    height: 50px;
  }
  #appWrapper.mini_menu ul.nav li.logo {
    height: 50px;
  }
  #appWrapper.mini_menu ul.nav li.logo .title {
    height: 40px;
  }
  #appWrapper.mini_menu ul.nav li .title {
    height: 40px;
  }
  #appWrapper.mini_menu ul.nav li .title a {
    height: 40px;
    line-height: 20px;
  }
  #appWrapper.mini_menu ul.nav li .title a.linkWithIcon {
    width: 55px;
  }
  #appWrapper.mini_menu ul.nav li .title a.linkWithIcon .iconeMenuPrincipal {
    font-size: 20px;
  }
  #appWrapper.mini_menu ul.nav li .title a.linkWithIconSupp .iconeSuppMenuPrincipal {
    font-size: 20px;
  }
  #appWrapper.mini_menu ul.nav li .title a .title_txt {
    display: none;
  }
}
#appWrapper #headerWrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  color: #3f4a5a;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
#appWrapper #headerWrapper .menuWrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}
#appWrapper #headerWrapper .menuControls {
  display: flex;
  align-items: center;
  min-width: 30%;
  justify-content: space-around;
  border-bottom: 1px solid #C1C1C1;
  min-height: 140px;
}
@media (max-width: 769px) {
  #appWrapper #headerWrapper .menuControls {
    min-width: 20%;
  }
}
#appWrapper #headerWrapper .navbar-default {
  min-height: 140px;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  #appWrapper #headerWrapper .navbar-default {
    min-height: 130px;
  }
}
#appWrapper #headerWrapper #rechercheGenerale {
  margin-left: 10px;
  width: 330px;
  border: none !important;
}
#appWrapper #headerWrapper #rechercheGenerale input {
  color: #000;
}
@media (min-width: 769px) {
  #appWrapper #headerWrapper #rechercheGenerale input {
    background: #E8E8E8;
  }
}
#appWrapper #headerWrapper #rechercheGenerale .input-group-addon {
  background: #E8E8E8;
  border: none !important;
}
#appWrapper #headerWrapper #rechercheGenerale .spinnerRecherche {
  color: var(--gris4);
}
@media (min-width: 769px) {
  #appWrapper #headerWrapper #rechercheGenerale .input-group-btn {
    background: #E8E8E8;
  }
}
#appWrapper #headerWrapper #rechercheGenerale .input-group-btn button {
  padding: 6px 6px 3px 6px !important;
}
#appWrapper #headerWrapper #rechercheGenerale .input-group-btn button:not(.btn-search) {
  background: #E8E8E8;
}
#appWrapper #headerWrapper #rechercheGenerale .input-group-btn button.btn-search {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
#appWrapper #headerWrapper #rechercheGenerale .input-group-btn button.actif {
  color: var(--color1);
}
#appWrapper #headerWrapper #rechercheGenerale .input-group-btn button.notactif {
  color: var(--gris4);
}
#appWrapper #headerWrapper #rechercheGenerale .input-group-btn button:focus {
  outline: none;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  #appWrapper #headerWrapper #rechercheGenerale {
    float: unset;
    margin: unset;
    margin: 0 auto;
    margin-bottom: 10px;
    display: flex;
  }
}
@media (max-width: 1200px) {
  #appWrapper #headerWrapper #rechercheGenerale {
    margin-top: unset;
    margin-left: 20px;
  }
}
@media (max-width: 768px) {
  #appWrapper #headerWrapper #rechercheGenerale {
    display: none;
  }
}
#appWrapper #headerWrapper .afficheRechercheGenerale {
  position: absolute;
  top: 30px;
  right: 168px;
  font-size: 20px;
  cursor: pointer;
}
@media (min-width: 769px) {
  #appWrapper #headerWrapper .afficheRechercheGenerale {
    display: none;
  }
}
#appWrapper #headerWrapper .afficheRechercheGenerale:hover,
#appWrapper #headerWrapper .afficheRechercheGenerale:active,
#appWrapper #headerWrapper .afficheRechercheGenerale:focus {
  color: var(--color1);
}
#appWrapper #headerWrapper #controls-buttons span.titre {
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-size: 10px;
  padding-bottom: 4px;
}
#appWrapper #headerWrapper #controls-buttons #panierBiens .btn {
  font-size: 16px;
  color: #000;
  background: none;
  border: none;
  border-right: 1px solid var(--gris3);
  padding: 5px 15px;
}
#appWrapper #headerWrapper #controls-buttons #panierBiens .btn.actif {
  color: var(--color1);
}
#appWrapper #headerWrapper #controls-buttons #panierContacts .btn {
  font-size: 16px;
  color: #000;
  background: none;
  border: none;
  padding: 5px 15px;
}
#appWrapper #headerWrapper #controls-buttons #panierContacts .btn.actif {
  color: var(--color1);
}
#appWrapper #headerWrapper #controls-buttons-messagerie {
  text-align: center;
}
#appWrapper #headerWrapper #controls-buttons-messagerie .badge {
  background: var(--color1);
}
@media (max-width: 768px) {
  #appWrapper #headerWrapper #controls-buttons-messagerie span.titre {
    display: none !important;
  }
}
#appWrapper #headerWrapper #controls-buttons-messagerie span.titre {
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-size: 10px;
  padding-bottom: 4px;
}
#appWrapper #headerWrapper #controls-buttons-messagerie #messagerie .btn,
#appWrapper #headerWrapper #controls-buttons-messagerie #queue .btn {
  font-size: 16px;
  color: #000;
  background: none;
  border: none;
  padding: 5px 15px;
}
#appWrapper #headerWrapper #userWrapper {
  text-align: center;
  z-index: 2;
  max-width: 525px;
  cursor: pointer;
  border-radius: 3px;
  border: 1px solid var(--white);
}
@media (max-width: 768px) {
  #appWrapper #headerWrapper #userWrapper {
    top: 0px;
    border: 0px;
  }
}
#appWrapper #headerWrapper #userWrapper .photo_ct {
  display: block;
  border-radius: 100%;
  overflow: hidden;
  text-align: right;
}
#appWrapper #headerWrapper #userWrapper .photo_ct .photo {
  max-height: 40px;
  max-width: 40px;
  background-color: #DBDBDA;
}
#appWrapper #userInfoWrapper {
  display: none;
  position: absolute;
  background: var(--white);
  right: 40px;
  top: 9px;
  text-align: center;
  z-index: 2;
  max-width: 525px;
  border: 1px solid #000;
  border-radius: 3px;
}
#appWrapper #userInfoWrapper ul {
  list-style-type: disc;
  text-align: left;
  padding: 0;
}
#appWrapper #userInfoWrapper a {
  color: var(--fontColor);
}
#appWrapper #userInfoWrapper a .icon {
  color: var(--gris6);
  margin-right: 10px;
  min-width: 10px;
  text-align: right;
  display: none;
}
#appWrapper #userInfoWrapper .header {
  display: flex;
  flex-wrap: nowrap;
}
#appWrapper #userInfoWrapper .header .menu_general,
#appWrapper #userInfoWrapper .header .menu_responsable {
  padding: 15px 20px 5px 20px;
}
#appWrapper #userInfoWrapper .header .userInfos {
  display: flex;
  flex-direction: column;
  min-width: 160px;
}
#appWrapper #userInfoWrapper .header .userInfos .photo_ct {
  display: block;
  overflow: hidden;
  text-align: right;
  margin: 5px 10px;
}
#appWrapper #userInfoWrapper .header .userInfos .photo_ct .photo {
  max-height: 40px;
  max-width: 40px;
  border-radius: 100%;
  background-color: var(--gris5);
}
#appWrapper #userInfoWrapper .header .userInfos .initiales {
  padding-right: 10px;
  text-align: right;
  margin-bottom: 18px;
}
#appWrapper #userInfoWrapper .footer {
  display: flex;
  justify-content: flex-end;
}
#appWrapper #userInfoWrapper .footer .btn {
  color: var(--white);
  border-radius: 2px;
  font-size: 12px;
  height: 30px;
}
#appWrapper #userInfoWrapper .footer .btn.btn-mode-prive-public {
  background: var(--fontColor);
  color: var(--white);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-right: 5px;
  width: 145px;
}
#appWrapper #userInfoWrapper .footer .btn.btn-mode-prive-public:hover,
#appWrapper #userInfoWrapper .footer .btn.btn-mode-prive-public:focus,
#appWrapper #userInfoWrapper .footer .btn.btn-mode-prive-public:active,
#appWrapper #userInfoWrapper .footer .btn.btn-mode-prive-public.color {
  background: var(--color1);
}
#appWrapper #userInfoWrapper .footer .btn.btn-mode-prive-public > div {
  display: flex;
  align-items: center;
  height: 15px;
}
#appWrapper #userInfoWrapper .footer .btn.btn-mode-prive-public > div .icon {
  color: var(--white);
  font-size: 30px;
  height: 30px;
  margin-right: 10px;
}
#appWrapper #userInfoWrapper .footer .btn.btn-deconnexion {
  background: var(--color1);
  text-transform: uppercase;
  font-size: 11px;
  height: 22px;
  padding: 3px 10px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
#appWrapper #userInfoWrapper .footer .btn.btn-deconnexion:hover {
  opacity: 0.6;
}
#appWrapper .userInfoParagraphe {
  font-family: "Work sans", sans-serif;
}
#appWrapper #bodyWrapper {
  position: absolute;
  top: 115px;
  width: 100%;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  #appWrapper #bodyWrapper {
    top: 178px;
  }
}
@media (max-width: 1200px) {
  #appWrapper #bodyWrapper {
    top: 86px;
  }
}
#appWrapper #bodyWrapper.bodyMenuLeft {
  display: flex;
  height: 100%;
  min-height: 100%;
  top: unset;
}
#appWrapper #bodyWrapper.bodyMenuLeft #pageWrapper {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px 10px 20px 30px;
}
#appWrapper #bodyWrapper #pageWrapper {
  width: 100%;
  overflow-x: hidden;
}
#appWrapper #bodyWrapper #pageWrapper .ariane {
  text-align: center;
}
#appWrapper #bodyWrapper #pageWrapper .ariane a {
  color: var(--color1);
}
#appWrapper #bodyWrapper #pageWrapper .submitButton {
  position: fixed;
  z-index: 100;
  bottom: 20px;
  right: calc(2% + 60px);
  text-align: right;
}
#appWrapper #bodyWrapper #pageWrapper .submitButton:nth-last-child(2) {
  right: 2% !important;
}
#appWrapper #bodyWrapper #pageWrapper .submitButton .btn {
  min-height: 44px;
  border-radius: 0;
  text-transform: uppercase;
  margin-left: 15px;
}
#appWrapper #bodyWrapper #pageWrapper .submitButton a {
  line-height: 32px;
}
@media (max-width: 700px) {
  #appWrapper #bodyWrapper #pageWrapper .submitButton {
    bottom: 0px;
    padding: 10px;
    background: var(--white);
    width: 100%;
    right: unset;
    text-align: center;
    border-top: 2px solid var(--color1);
  }
  #appWrapper #bodyWrapper #pageWrapper .submitButton a,
  #appWrapper #bodyWrapper #pageWrapper .submitButton button {
    font-size: 0.9em;
    padding: 5px 10px;
  }
}
#appWrapper .lineGrey {
  background: #d3eafd;
  margin: 5px 0;
}
.newMessage {
  background: var(--color1);
  width: 50px;
  height: 100px;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  position: fixed;
  top: 300px;
  right: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-weight: bolder;
  font-size: 2em;
  cursor: pointer;
  z-index: 20;
}
footer {
  width: 100%;
  position: fixed;
  z-index: 500;
  bottom: 0;
  border-bottom: 6px solid var(--color1);
}
@media (max-width: 1050px) {
  #headerWrapper {
    min-height: 80px !important;
    position: fixed !important;
    background: var(--white);
    border-top: 6px solid var(--color1);
    border-bottom: 2px solid var(--color1);
  }
  #headerWrapper .menuWrapper,
  #headerWrapper .menuControls {
    border-bottom: unset !important;
  }
  #headerWrapper .menuWrapper {
    align-items: start !important;
  }
  #headerWrapper .navbar-default,
  #headerWrapper .menuControls {
    min-height: 80px !important;
  }
  #headerWrapper .title_txt {
    position: absolute;
    left: 15%;
  }
  #headerWrapper #userInfoWrapper {
    right: 10px !important;
  }
  #bodyWrapper {
    top: 80px !important;
  }
  #bodyWrapper.bodyMenuLeft {
    top: unset !important;
  }
}
@media (max-width: 768px) {
  #headerWrapper .title_txt {
    position: absolute;
    left: 30%;
  }
  #headerWrapper #userInfoWrapper {
    right: 10px !important;
  }
}
#cd-nav ul.is-visible {
  border-color: var(--gris7) !important;
}
#cd-nav li a {
  color: var(--gris7) !important;
  border-bottom-color: var(--gris7) !important;
}
#cd-nav li a:hover {
  background: var(--gris7) !important;
  color: var(--white) !important;
}
@media only screen and (min-width: 1170px) {
  #cd-nav.is-fixed ul li a {
    border-bottom-color: var(--gris7) !important;
  }
}
.cd-nav-trigger {
  background: var(--gris7) !important;
  border-color: var(--gris7) !important;
}
div.ss_menu_content ul li a {
  color: var(--gris7) !important;
  border-color: var(--gris7) !important;
}
div.ss_menu_content ul li a:hover,
div.ss_menu_content ul li a:active,
div.ss_menu_content ul li a:focus {
  background: var(--gris7) !important;
  color: var(--white) !important;
}
div.ss_menu_content ul li:first-child a {
  border-top-color: var(--gris7) !important;
}
.informationsBlockChamps {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  padding: 25px;
}
.informationsBlockChamps fieldset {
  background: unset !important;
}
.informationsBlockChamps fieldset .rubrique {
  box-shadow: unset !important;
}
.informationsBlockChamps fieldset .rubrique .rubrique-title {
  color: var(--couleur_principale) !important;
  font-weight: bold;
}
.btn-sidebar-historique {
  position: fixed;
  z-index: 1;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  background-color: var(--couleur_principale);
  color: var(--white);
  border-radius: 30px 0 0 30px;
  padding: 10px 5px;
  font-weight: bold;
  width: 30px;
  height: 40px;
}
/* Sidebar modernisée */
.sidebar-historique {
  width: 300px;
  background: #f8f9fa;
  border-left: 2px solid var(--couleur_principale);
  transition: transform 0.3s ease-in-out;
}
.sidebar-historique .offcanvas-header {
  background: var(--couleur_principale);
  color: var(--white);
}
.sidebar-historique .list-group-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: opacity 0.3s, transform 0.3s;
}
.sidebar-historique .list-group-item a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.sidebar-historique .list-group-item a:hover {
  color: var(--couleur_principale);
}
.sidebar-historique .list-group-item .btn-close-small {
  background: none;
  border: none;
  color: red;
  font-size: 16px;
  cursor: pointer;
  width: 10%;
}
.sidebar-historique .list-group-item.fade-out {
  opacity: 0;
  transform: translateX(20px);
}
@media only screen and (min-width: 1170px) {
  #cd-nav.is-fixed ul {
    bottom: 8px !important;
  }
}
