.container {
    background-color: beige;
    opacity: 0.9;
}
.pagination {
    text-align: center;
    padding-bottom: 1em;
}
blockquote{
    padding-left: 2em;
}
/* icon tailles des icones fontawesome */
.far {
    font-size: x-large;
}

.product-grid {
    background-color: rgba( 255, 255, 255, .8);
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, .1);
    list-style-type: none;
    margin: 50px auto;
    padding: 15px;
    width: 90%;
  }
  
  .product-item a {
    color: #333;
    display: flex;
    text-decoration: none;
  }
  
  .product-item img {
/*    background-color: #c5cae9;*/
/*    border: 1px solid #7986cb;*/ 
/*    display: block;*/
    height: 150px;
/*    flex: 0 0;*/
    width: 150px;
  }
  
  .product-item p {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    margin: 0;
    padding-left: 10px;
  }
  
  .product-item .price {
    border-bottom: 1px solid #ddd;
    margin-top: auto;
    padding-bottom: 5px;
    text-align: right;
    font-weight: bold;
  }

  .product-item .plus {
    margin-top: auto;
    padding-bottom: 5px;
    text-align: left;
    font-weight: bold;
  }

  .product-item .desc {
    text-align: left;
    font-size: small;
  }
  
  /* grid  */
  @supports (display: grid) {
    .product-grid {
      display: grid;
      grid-template-columns: repeat( auto-fit, minmax( 300px, 1fr ));
      grid-template-rows: 150px;
      grid-gap: 15px;
    } 
  }