
main{
  width: calc(100% - 200px);
  position: relative;
  left: 200px;
  top: 0px;
  min-height: 100%;
  background-color: #f8f8f8;
}

#main h1{
  font-size: 2em;
}

.presta.picto{
  font-size: 22px;
}

.presta.picto a:nth-child(1){
  margin-right: 15px;
}

#type_clients ul {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

#type_clients li{
    text-decoration: none;
    color: white;
    padding: 3px 0px;
    display: block;
    margin: 0;
    padding: 8px 16px;
    color: black;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    cursor: pointer;
}

#type_clients li:hover{
  text-decoration: underline;
}

#type_clients li.selected {
    background-color: #2c2c2c;
    color: white;
    font-weight: normal;
    pointer-events: none;
}

.presta.green span{
  background-color: green;
  font-weight: 700;
  padding: 0px 10px;
  color: white;

}

.header{
  height: 100px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header h1{
  font-size: 2.0em;
  font-weight: 600;
}

.content{
  background-color: white;
  width: 100%;
  padding: 2% 5%;
}

.table{
  width: 100%;
  position: relative;
}

.row{
  width: 100%;
  -webkit-transition:all .1s linear;
  -moz-transition:all .1s linear;
  -ms-transition:all .1s linear;
  -o-transition:all .1s linear;
  transition:all .1s linear;
}

.row:not(.title){
  cursor: pointer;
}

.row:not(.title):hover{
  background-color: #2c2c2c;
  color: white;
}

.row:nth-child(odd){
  background-color: #eeeeee;
}

.row:nth-child(even){
  background-color: #f6f6f6;
}

.row.title{
  position: sticky;
  left: 0px;
  top: 0px;
  text-transform: uppercase;
}

#add_fiche{
  position: absolute;
  bottom: 100%;
  right: 0%;
  font-size: 40px;
  color: #2c2c2c;
  cursor: pointer;
}

.row.title .column{
  height: 55px;
  overflow: hidden;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.row.title .column{
  padding: 12px 3px;
  background-color: #cfcfcf;
}

.column{
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  padding: 8px 3px;
  width: 16.66%;
}

#searchbar{
  margin: 0px auto;
  margin-bottom: 20px;
}

#searchbar input{
    width: 400px;
    padding: 6px 12px;
    height: 40px;
    text-align: center;
    outline: none;
    background-color: #fcfcfc;
    color: black;
    border: 2px solid #cfcfcf;
    border-radius: 20px;
    min-width: 340px;
}

#container-searchbar{
  position: relative;
}

#container-searchbar .material-icons{
  position: absolute;
  right: 5%;
  color: #04a4cc;
  font-size: 26px;
  top: 50%;
}







