  
  /* === liste des jeux ================================================================= */

  #gametable {
    display: flex;
    flex-wrap: wrap;
  
    padding-left: 5px;
    margin: 0px 10px;
  }
  
  
  .element_liste_jeux {
  
    display: flex;
    flex-direction:column ;
    align-content: center;
  
    width:20%;
    margin: 2.5%;
    margin-bottom: 60px;
    
  
    text-decoration: none;
    list-style-type: none;
  }
  
  
  
  
  /* === caractéristique des JEUX ================================================================= */
  
  
  
  
  .encart_game_img{
    margin:10px 6% ;
    height: 100%;
    min-height: 20px;
    display: flex;
    align-items: center;
    justify-items: center;
  
  }
  .encart_game_img img{

    width:  100%;
  }

  .game_img{
    width: 100%;

  
  }
  
  
  .game_item_name {
    padding-top: 20px;
  
  
    display: flex;
    align-content: center;
    justify-content: center;
    
    margin-left: 5%;
    margin-right: 5%;
    width: 90%;
  
  }
  
  
  .game_name {
  
    padding: 15px;
    width: 100%;

    text-align: center;
  
    border-bottom: #aa8111 solid 1.5px;

    font-size: 1.5vw;
  
  }
  
  
  
  
  .game_item {
    padding-top: 20px;
    padding-bottom: 20px;
  
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  
    width: 100%;
  
  
  }
  
  
  .game_genre ,.game_tmps ,.game_ndp, .game_age {
    width: 50%;
    margin-top: 1%;
    height: 49%;
  
    text-align: center;
    
  
  }
  
  .game_ndp{
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: row;
  }
  
  
  .game_item  {

    color: #aa8111;

    border: #aa8111 solid 2px;
    font-size: 1.2vw;
    
  }

  .encart_info_sup{
    margin-top: 4px;
    display: flex;
    justify-content: center;
  }

  .encart_info_sup a {
    text-decoration: none;
    color: #fff;
    margin-bottom: 1px;
    
    transition: color 0.5s;
  }

  .encart_info_sup a:hover {
    
    margin-bottom: 0px;
    color: #aa8111;
    border-bottom: #aa8111 1px solid;
  }







  .link {
    display: inline-block;

    color: #fff;
    margin: 1rem auto;
    padding: 0.7rem 2rem;
    border-radius: 30em;
    border-style: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    background-color: transparent;
    box-shadow: 1px 1px 12px #222;
  }
  
  .link::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    transform: translateX(-101%);
    transition: all .3s ease;
    z-index: -1;
  }
  
  .link:hover {
    color: #aa8111;
    transition: all .3s ease;
  }
  
  .link:hover::before {
    transform: translateX(0);
  }

  .disabled_link{
    display: none;
  }



















