.produits{
  min-height: calc(100% - 60px);
  max-width: 1200px;
  margin: auto;
}

.produit{
  cursor: pointer;
  float: left;
  padding: 20px;
}

.produit-texte{
  display: block;
  margin: auto;
	color:#fff;
  height: 50px;
}

.produit-titre{
  font-weight: bold;
  text-align: center;
  font-size: 14px;
}

.produit-description{
  text-align: center;
  font-size: 14px;
}

.produit-image{
  display: block;
  width: 100%;
  height: 200px;
  margin: auto;
  object-fit:contain;
}

.article{
  position: relative;
  margin: auto;
  float: center;
  text-align: center;
}

.article-fermer{
  position: absolute;
  top: 0;
  right: 0;
}

.article-texte{

}

.article-titre{
  font-size: 16px;
}

.article-description{
  font-size: 14px;
}

.article-image{
  width: 270px;
  height: 200px;
  margin: auto;
  object-fit: contain;
}

.article-op{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  margin-bottom: 20px;
}

.article-op-nombre{
  text-align: center;
}

.article-op-image{
  width: 30px;
  height: 30px;
  cursor: pointer; 
  margin: auto; 
}

/* Clearfix (clear floats) */
.produits::after {
  content: "";
  clear: both;
  display: table;
}