:root{
    --couleur : #089260;
    --couleur_fort : #089260;
  }
  body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
  }
  .app{
    margin-top: 10px;
  }
  .bar-navigation {
    width: 100%;
   /* background-color: #555;*/
    border-bottom: 2px solid var(--couleur_fort );
    overflow: auto;
  }
  
  .bar-logo {
    width: 15%;
    float: left;
    font-weight: bold;
  }
  .bar-logo a {
    float: left;
    padding: 10px 8px;
    color: #333;
    text-decoration: none;
    font-size: 20px;
  
    text-align: center;
    line-height: 20px;
    border-radius: 10px;
  }
  
  
  .bar-menu {
    width: 70%;
    float: left;
   /* background-color: #555;*/
    
  }
  
  .bar-menu a {
    float: left;
    padding: 10px 8px;
    color: #333;
    text-decoration: none;
    font-size: 17px;
  
    text-align: center;
    line-height: 20px;
    border-radius: 10px 10px 0px 0px;
    
  }
  
  
  .bar-menu a:hover {
    background-color: rgb(164, 212, 180);
  }
  
  .bar-menu .active, .bar-menu a.active {
    background-color: var(--couleur_fort);
    color: azure;
  }
  
  @media screen and (max-width: 500px) {
    .bar-menu a {
      float: none;
      display: block;
    }
  }
  
  .bar-action {
    width: 15%;
    float: left;
   /* background-color: #c89030;*/
  }
  .avatar {
    vertical-align: middle;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 4px;
  }
  .gb_d {
    display: inline-block;
    outline: none;
    padding: 8px;
    vertical-align: middle;
    border-radius: 2px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 40px;
    width: 40px;
    cursor: pointer;
    text-decoration: none;
    color: #5f6368;
  }
  .bar-action .fa{
    width: 32px;
    height: 32px;
    font-size: 28px;
    padding: 4px;
    float: left;
  }
  
  /* PAGE WEB */
  .page-web{
    width: 100%;
  }
  .page-entete{
    height: 30px;
    background-color: var(--couleur);
  }
  .page-entete a {
    float: left;
    padding: 5px 8px;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
  
    text-align: center;
    line-height: 20px;
    border-radius: 0px;
  }
  .contenu-right {
    float: right;
  }


  .dropdown {
    float: left;
    /*overflow: hidden;*/
  }
  
  .dropdown .dropbtn {
    cursor: pointer;
    font-size: 16px;  
    border: none;
    outline: none;
    color: white;
    padding: 5px 8px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
  }
  
  .navbar a:hover, .dropdown:hover .dropbtn, .dropbtn:focus {
    background-color: red;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .dropdown-content a:hover {
    background-color: #ddd;
  }
  
  .show {
    display: block;
  }
  /* */ 
  .list{
    padding-left: 50px;
    float: left;
    color: white;
    font-size: 16px;  
    padding-top: 3px;
  }