/*
 * Custom code goes here.
 * A template should always ship with an empty custom.css
 */

/* TOOLTIP PRODUIT */
.custom-tooltip {
  position: relative;
}
.custom-tooltiptext {
  visibility: hidden;
  width: 90%;
  font-size: 12px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 0px;
  left: 5%;
  opacity: 0;
  transition: opacity 0.3s;
  transition-delay: 0.5s;
}
.custom-tooltip:hover .custom-tooltiptext {
  visibility: visible;
  opacity: 1;
}