
 
 
 .blocker{
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:1280;
  background-color:rgba(255, 255, 255, 0.5);
 }

 .popUp{
  position: relative;
  background-color: gray;
  top:5%;
  left:5%;
  width:90%;
  height:90%;
  overflow-y: scroll;
 }

 .popUp .titlePopUp{
  width:100%;
  height:40px;
  text-align: center;
  font-size: xx-large;
  padding-top: 20px;
  background-color: blue;
 }

 .popUp .link{
  position: absolute;
  top:5px;left:5px;
  width: 50px;height: 50px;
  background-color: lightblue;
 }

   /*******************************************/

 .listing{
      margin:0;
      padding:0;
    max-height: calc( 100vh - 85px );;
      overflow-x: hidden;
    overflow-y: scroll;
  }

  /*******************************************/

  .listing .texte{
    text-align:center;
    padding : 10px;
    border: solid 1px;
    border-color:green;
  }

  .listing .texteTitle{
    background-color: lightblue;
    text-align:center;
    border-radius:5px;
    padding : 10px;
    border: solid 1px;
    border-color:black;
    
  }

  .listing .entete{
    position: sticky; top: 0;
  }

  .listing .row{
    background-color: white;
    border-radius:5px;
 
  }

  .listing .link{
    width: 50px;height: 50px;
    background-color: lightblue;
  }

  .listing  .linkCorner{
    width: 50px;height: 50px;
    background-color: gray;
  }

  .listing .selected{
    background-color: lightgray;
  }