/**
 * L'image de la marianne.
 */
.o-header-marianne {
  border-bottom: 0;
  padding: 8px;
}
.o-header-marianne a {
  text-decoration: none;
}
.o-header-marianne img {
  width: 100px;
  padding-bottom: 8px;
  padding-top: 0.25em;
}
/**
 * L'image de fond dans l'en-tête.
 */
.o-header-picture {
  background: linear-gradient(90deg, #FFFFFF, #FFFFFF);
  background-image: unset;/* fallback */
  background-color: #007f99;
  background-repeat: no-repeat;
  background-position: right top;
  padding-left: 0;
  padding-right: 0;
}
.o-header-picture a {
  text-decoration: none;
  vertical-align: top;
  display: inline;
}
/**
 * Rendu du nom de l'utilisateur et de son rôle.
 */
.o-user-role {
  margin-top: 0.5em;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-border-radius: 0.2em;
  -moz-border-radius: 0.2em;
  border-radius: 0.2em;
  float: right;
  padding: 0.4em;
  color: #000000;
}
/**
 * Boutons de déconnexion, notifications de l'entête
*/
.o-header-buttons {
  margin-top: 0.5em;
  line-height: 50px;
  margin-right: 2.75em;
}
/**
 * Définit le titre de l'application.
 */
.o-header-title a {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 0.2em;
  padding: 8px;
  outline: 0;
}
/**
 * Le fil d'Ariane.
*/
.o-header-breadcrumb {
  padding-bottom: 0.5em;
  margin-bottom: 0;
}
/**
 * Le header fixe, avec un fond de couleur et un z-index élevé pour s'assurer 
 * qu'on ne voit pas le contenu qui scroll dessous...
 */
.o-header-fixed {
  z-index: 50000;
  background: #fff;
  margin-bottom: 1em;
}
/**
* Bouton permettant de replier/déplier l'entête
**/
.o-header-fold-unfold {
  position: absolute;
  top: 0;
  right: 10px;
  z-index: 200000;
}
.o-header-fold-icon {
  color: #989898;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  height: 50px;
  line-height: 50px;
  overflow: hidden;
  margin-left: 0.5em;
  margin-right: 0.5em;
  padding-left: 0.25em;
  padding-right: 0.25em;
}
.o-header-unfold-icon {
  color: #989898;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  height: 50px;
  line-height: 50px;
  overflow: hidden;
  margin-left: 0.5em;
  margin-right: 0.5em;
  padding-left: 0.25em;
  padding-right: 0.25em;
}
.o-header-fold-icon [class^="fa-"],
.o-header-fold-icon [class*=" fa-"],
.o-header-unfold-icon [class^="fa-"],
.o-header-unfold-icon [class*=" fa-"] {
  color: #989898;
  cursor: pointer;
}
/**
 * Surcharge Bootstrap...
 */
.o-header-picture form {
  margin: 0;
}
/**
 * Set corners individual because sometimes a single button can be in a .btn-group and we need :first-child and :last-child to both match.
 * ==> Utilisation de first-of-type au lieu de first-child pour permettre l'insertion des balises "script" par JSF (mode debug).
 */
.btn-group > .btn:first-of-type {
  margin-left: 0;
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-left-radius: 4px;
  outline: 0;
}
.btn-group > .btn:not(:first-of-type) {
  outline: 0;
}
