*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1{
  font-weight: 400;
}
a{
  color: inherit;
}
p{
  margin-top: .7em;
}
.warning{
  color: rgb(62,148,236);
}
.st_viewport{

    
  position: fixed;
  height: calc(100% - 55px); /* hauteur de la page en % du viewport , si on ne met pas alors les scrollbars ne s'affichent pas et pas possible de descendre dans la page / -55px pour afficher le bas de page en entier pour les petits ecrans sinon il manque une petite partie*/
  width: calc(90% - 260px);
  left: 100px;
  top: 5%; /* permet d'afficher le titre dans formtitle comme un menu en top donc = le height du formtitle */
  background-size: cover; 
  background-image: url('../media/fond.jpg');  
  z-index: -1; /* permet de garder le bouton d'expansion du sidebar au dessus de la home-section */
  transition: all 0.5s ease;
  overflow: auto;  /* autorise barres de défilement si il y a bcp d'objet dans la page */

}

[data-table_id="0"]{
    color: rgb(220,220,220);

}

[data-table_id="1"]{
  background-color: rgba(255,115,0, .5);

}
[data-table_id="2"]{
  background-color: rgba(61,53,39, .5);
  color: rgb(220,220,220);
}
[data-table_id="3"]{
  background-color: rgba(168,189,4, .5);
}

._rank{
  min-width: 80px;
}
._id{
  min-width: 60px;
}
._name{
  min-width: 130px;
}
._surname{
  min-width: 130px;
}
._year{
  min-width: 80px;
}
._section{
  min-width: 130px;
}

pre{
  overflow: auto;
}

/** Sticky table styles **/
.st_viewport{
  background-color: rgba(62,148,236, .5);
  color: rgb(27,30,36);
  margin: 20px 0;
}
/* ###  Table wrap */
.st_wrap_table{
  
}
/* ##   header */
.st_table_header{
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  z-index: 1;
  background-color: rgba(27,30,36, .8);
  color: rgb(220,220,220);
}
.st_table_header h2{
  font-weight: 400;
  margin: 0 20px;
  padding: 20px 0 0;
}
.st_table_header .st_row{
  color: rgba(220,220,220, .5);
}
.st_table_header .st_column{
  
}
/* ##  table */
.st_table{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
/* #   row */
.st_row{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}
.st_table .st_row:nth-child(even){
  background-color: rgba(0,0,0, .1)
}
/* #   column */
.st_column{
  padding: 10px 20px;
}