﻿@font-face {
  font-family: 'Roboto';
  font-style: normal;
  src: url('../Fonts/Roboto/Roboto-Regular.ttf') format('ttf'), url('../Fonts/Roboto/Roboto-Regular.woff') format('woff');
  /* old browsers */
}
@font-face {
  font-family: 'Roboto-Medium';
  font-style: normal;
  font-weight: 500;
  src: url('../Fonts/Roboto/Roboto-Medium.ttf') format('ttf'), url('../Fonts/Roboto/Roboto-Medium.woff') format('woff');
  /* old browsers */
}
@font-face {
  font-family: 'Roboto-Bold';
  font-style: normal;
  font-weight: 600;
  src: url('../Fonts/Roboto/Roboto-Bold.ttf') format('woff');
}
#header {
  background-color: #59b448;
  color: white;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  height: 50px !important;
  font-family: Roboto-Medium, Tahoma, sans-serif !important;
  z-index: 2;
}
#header-left {
  display: flex;
  align-items: center;
  flex-grow: 1;
}
#app-full-logo-mini {
  width: 230px;
  margin-left: 5px;
}
#app-full-logo-mini:hover {
  cursor: pointer;
}
#header-center {
  display: flex;
  align-items: center;
  height: 100%;
}
#header-expclient {
  display: flex;
  align-items: center;
  background-color: white;
  color: black;
  padding-block: 7px;
  margin-inline: 10px;
  border-radius: 8px;
  overflow: visible;
  position: relative;
}
#header-right {
  display: flex;
  align-items: center;
  width: 220px;
}
#header-right:hover {
  background-color: white;
  color: black;
  z-index: 10;
}
#header-right:hover #user {
  background-color: white;
  color: black;
}
#header-right:hover #user .header-icon {
  filter: invert(0%) sepia(0%) saturate(7483%) hue-rotate(75deg) brightness(104%) contrast(104%);
}
#header-right:hover #informations {
  display: flex;
}
#header-right #user {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding-block: 10px;
  color: white;
  padding-right: 10px;
  padding-left: 5px;
  height: 30px;
  width: 100%;
}
#header-right #user #identity {
  margin-inline: 6px;
}
#header-right #user .header-icon {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(223deg) brightness(104%) contrast(101%);
  margin-left: 3px;
}
#header-right #informations {
  z-index: 10000;
  display: none;
  position: absolute;
  top: 49px;
  color: black;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  border-radius: 6px 0px 6px 6px;
  flex-flow: column nowrap;
  padding-inline: 10px;
  background-color: white;
  width: 200px;
}
#header-right #informations * {
  margin-block: 3px;
}
#header-right #informations .title {
  font-size: 16px;
  font-family: Roboto-Bold, Tahoma, sans-serif !important;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header-right #informations .title .logout {
  cursor: pointer;
  width: 24px;
  filter: brightness(0) saturate(100%) invert(15%) sepia(79%) saturate(5003%) hue-rotate(1deg) brightness(102%) contrast(114%);
}
#header-right #informations .infos span {
  font-family: Roboto-Bold, Tahoma, sans-serif !important;
  font-weight: 600;
  margin-right: 5px;
  line-break: strict;
  word-break: keep-all;
}
#header-right #identity {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  line-height: 1.1em;
}
#header-right #identity .name {
  font-size: 12px;
  max-width: 200px;
  overflow-x: clip;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: keep-all;
  margin-bottom: 2px;
  font-family: Roboto-Bold, Tahoma, sans-serif !important;
}
#header-right #identity .company {
  max-width: 145px;
  font-family: Roboto-Bold, Tahoma, sans-serif !important;
  font-weight: 600;
  font-size: 16px;
  overflow-x: clip;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: keep-all;
}
#header-right #configurer-btn {
  margin-bottom: 10px;
}
.flex-row {
  display: flex;
  flex-flow: row nowrap;
}