.infos{
  flex:1;
  display: flex;
  flex-direction: column;

  .header{
    @extend .din-extraBlack;
    text-transform: uppercase;
    font-size: 1.125rem;
    border-bottom: 2px solid black;
    height: 30px;
  }

  .bloc{ 
    display: block;

    &:not(:last-child){
      margin-bottom: 10px;
    }

    &.generales{
      padding-top: 15px;
      
      .h3{
        @extend .absara-bold;
        font-size: 1rem;
      }

      .value{
        @extend .absara-regular;
        font-size: 1rem;

        &:not(:last-child){
          margin-bottom: 20px;
        }
      }
    }

    &.downloads{
      .value a.link_download{
        display: block;
        color: $black;
        text-decoration: none;

        &:hover{
          text-decoration: underline;
        }
      }
    }
  }
}