body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: verdana, geneva, sans-serif; }

h1, h2, h3 {
  font-family: "Raleway";
  color: #0D3C76;
  margin-bottom: 1em; }

h2 {
  color: #118F40; }

.bg-login {
  background: fixed no-repeat url("/static/bg-login.png?087a1b33b3b8") #E3EEF3; }

.bg-content {
  background: fixed no-repeat url("/static/bg-content.png?087a1b33b3b8") #E3EEF3; }

.login {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  width: 300px;
  height: 400px;
  box-shadow: 2px 2px 2px #7E8FA2; }
  .login form {
    text-align: center;
    padding: 1em; }
  .login p a {
    color: #118F40; }

input {
  border: #C9D3DF 1px solid;
  padding: 0.5em;
  border-radius: 5px;
  margin-bottom: 0.5em;
  background-color: #F7F7F7; }
  input::placeholder {
    color: #898989;
    opacity: 1; }

p.error {
  color: #E96B6B; }

p.warning {
  color: #898989; }

nav {
  background-color: #fff;
  position: absolute;
  top: 0;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center; }
  nav .connexion-bar {
    font-family: "Raleway";
    padding-right: 1em;
    text-transform: uppercase;
    font-size: 0.9em;
    margin: 1em; }
    nav .connexion-bar span {
      margin-left: 2em;
      display: inline-block;
      color: #E7B010;
      text-transform: uppercase;
      font-size: 1.2em; }
    nav .connexion-bar span img {
      width: 20px;
      vertical-align: sub;
      padding-right: 5px; }
    nav .connexion-bar a {
      background-image: linear-gradient(to right, #58DA87, #58DA87 50%, #0D3C76 50%);
      background-size: 200% 100%;
      background-position: -100%;
      display: inline-block;
      padding: 5px 1em;
      font-size: 1.3em;
      font-weight: 700;
      position: relative;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      transition: all 0.3s ease-in-out; }
      nav .connexion-bar a:before {
        content: '';
        background: #58DA87;
        display: block;
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 0;
        height: 3px;
        transition: all 0.4s ease-in-out; }
      nav .connexion-bar a:hover:before {
        width: 100%; }
      nav .connexion-bar a:hover {
        background-position: 0; }

.container {
  background-color: #fff;
  width: 60em;
  padding: 2em;
  box-shadow: 2px 2px 2px #7E8FA2;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 150px; }

.container form.box {
  margin-left: 4em;
  padding-top: 40px; }
  .container form.box .button {
    margin: 2em 0 3em 7em; }

.all-compagny {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center; }
  .all-compagny h1 {
    display: inline-flex; }
  .all-compagny .compagny {
    text-align: center;
    border-right: 1px solid #eee;
    border-left: 1px solid #eee;
    width: 250px;
    margin-bottom: 1em; }
  .all-compagny .compagny a {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1em 2em;
    font-family: "Raleway";
    text-decoration: none;
    font-size: 1.2em;
    color: #0D3C76;
    padding: 1em; }
    .all-compagny .compagny a .notifications {
      background-color: #E7B010;
      border-radius: 25px;
      width: auto;
      height: auto;
      min-width: 25px;
      min-height: 25px;
      padding: 0.1em 0.2em 0.3em 0.2em;
      position: absolute;
      margin-left: 3em;
      color: #fff; }
    .all-compagny .compagny a:hover {
      text-decoration: underline; }
    .all-compagny .compagny a img {
      width: 70px;
      margin: 0 0 1em 0; }

.button {
  background-color: #E7B010;
  border: none;
  cursor: pointer;
  color: #fff !important;
  font-size: 0.8em;
  text-transform: uppercase;
  padding: 0.5em 1.5em;
  border-radius: 5px;
  font-family: "Raleway";
  text-decoration: none;
  vertical-align: middle; }
  .button:hover {
    background-color: #118F40;
    transition: all 0.2s cubic-bezier(0.17, 0.67, 0.82, 0.78) 0s; }
  .button:focus {
    -moz-box-shadow: inset 0 0 10px #eee;
    -webkit-box-shadow: inset 0 0 10px #eee;
    box-shadow: inset 0 0 10px #eee; }

a.link {
  color: #E7B010;
  text-decoration: none; }
  a.link:hover {
    color: #118F40;
    transition: all 0.2s cubic-bezier(0.17, 0.67, 0.82, 0.78) 0s;
    text-decoration: underline; }

th {
  font-family: "Raleway";
  text-align: center;
  padding-bottom: 1em; }

td {
  color: #898989; }
  td.data.approved {
    position: relative;
    display: inline-block;
    cursor: not-allowed; }
    td.data.approved .tooltip {
      visibility: hidden;
      width: 240px;
      bottom: 100%;
      left: 50%;
      margin-left: -120px;
      /* Use half of the width (120/2 = 60), to center the tooltip */
      background-color: black;
      color: #fff;
      text-align: center;
      padding: 5px 0;
      border-radius: 6px;
      /* Position the tooltip text - see examples below! */
      position: absolute;
      z-index: 1; }
    td.data.approved:hover .tooltip {
      visibility: visible; }
  td.data img {
    width: 18px;
    margin: 0 1em 0 2em;
    vertical-align: sub;
    background-color: #E7B010;
    border-radius: 25px;
    padding: 0.2em; }
    td.data img.prefilled {
      background: none;
      border-radius: 0; }
    td.data img.approved {
      width: 20px; }
  td.data input[type=number] {
    margin-right: 1em;
    font-size: 1em; }
    td.data input[type=number]:hover {
      border: #7E8FA2 1px solid; }
    td.data input[type=number]:focus {
      border: #000 1px solid;
      background-color: #fff; }
    td.data input[type=number][disabled] {
      opacity: 0.4;
      color: #6C6C6C;
      border: none;
      -moz-appearance: textfield;
      background-color: #fff;
      cursor: not-allowed; }
  td.data input::-webkit-outer-spin-button[disabled],
  td.data input::-webkit-inner-spin-button[disabled] {
    -webkit-appearance: none;
    margin: 0; }
  td.month {
    font-family: "Raleway"; }

.help {
  font-size: 0.7em; }

.txt-password {
  margin-bottom: 0.5em; }

ul.compagny_nav {
  display: flex;
  flex-direction: row;
  width: 90%;
  justify-content: space-around; }
  ul.compagny_nav li {
    display: inline-block;
    font-family: "Raleway";
    font-size: 1.2em;
    font-weight: 300; }
    ul.compagny_nav li a {
      color: #898989;
      text-decoration: none;
      padding-bottom: 0.2em;
      border-bottom: 1px solid #898989; }
      ul.compagny_nav li a:hover {
        color: #505050;
        border-bottom: 1px solid #505050; }
      ul.compagny_nav li a:focus, ul.compagny_nav li a.active {
        color: #E7B010;
        border-bottom: 1px solid #E7B010; }

ul.messages {
  border: none;
  color: #fff !important;
  font-size: 0.8em;
  text-transform: uppercase;
  border-radius: 5px;
  font-family: "Raleway";
  vertical-align: middle;
  list-style: none; }
  ul.messages li {
    padding: 0.5em 1em;
    border-radius: 10px;
    margin-bottom: 1em;
    width: 80%; }
    ul.messages li.message-info {
      background-color: #0D3C76; }
    ul.messages li.message-warning {
      background-color: #E7B010; }
    ul.messages li.message-error {
      background-color: #E96B6B; }

p.consommations {
  font-family: "Raleway";
  color: #898989;
  margin-left: 2em;
  font-size: 1.1em; }
  p.consommations:before {
    content: "!";
    color: white;
    background-color: #0D3C76;
    border-radius: 50px;
    width: 1em;
    height: 1em;
    display: inline-block;
    text-align: center;
    padding: 0.1em 0.2em 0.3em 0.2em;
    margin-right: 0.5em; }

.rapid-nav {
  position: sticky;
  top: 20px;
  text-align: left; }
  .rapid-nav select {
    font-family: verdana, geneva, sans-serif;
    padding: 1em;
    display: inline;
    position: absolute;
    right: 0;
    width: 25em;
    border: solid 1px #0D3C76; }
    .rapid-nav select optgroup {
      color: #118F40; }
    .rapid-nav select option {
      color: #000; }

.site_div {
  text-align: center; }
  .site_div h3 {
    text-align: left;
    margin-top: 2em; }
  .site_div h2 {
    margin-top: 4em;
    text-align: left; }
  .site_div ul {
    padding: 0; }
    .site_div ul li {
      display: inline-block;
      margin: 0 2em; }
      .site_div ul li a {
        text-decoration: none;
        color: #505050;
        font-family: verdana, geneva, sans-serif;
        font-weight: 600;
        display: grid;
        max-width: 15em;
        word-break: break-word;
        margin: 0.5em; }
        .site_div ul li a:hover {
          color: #E7B010; }
        .site_div ul li a.document:before {
          content: url("/static/document.svg?087a1b33b3b8");
          display: block;
          margin: 0 auto;
          width: 54px; }
        .site_div ul li a.document-pdf:before {
          content: url("/static/pdf.svg?087a1b33b3b8"); }
        .site_div ul li a.document-docx:before {
          content: url("/static/docx.svg?087a1b33b3b8"); }
        .site_div ul li a.document-xlsx:before {
          content: url("/static/xlsx.svg?087a1b33b3b8"); }

@media (max-width: 1090px) {
  .container {
    width: 90%; }
  .rapid-nav {
    position: sticky;
    top: 0; }
    .rapid-nav select {
      display: inline;
      position: absolute;
      width: 100%; } }

@media (max-width: 620px) {
  nav {
    flex-direction: column;
    height: auto; }
    nav .connexion-bar span, nav .connexion-bar a {
      margin-left: 1em;
      display: block;
      flex-direction: column; }
  .container {
    padding: 0.3em;
    margin: 1em;
    top: 200px; }
  .container form.box {
    margin-left: 0; }
    .container form.box .button {
      margin: 1em 0 3em 6em; }
  td.data img {
    margin: 0 0.5em; }
  td.data input {
    width: 100px;
    margin-right: 0.2em; } }
