/**************************************Header OUTSIDE MINI CART ******************************************/

.custom-cart-icon img {
  width: 20px;
  height: auto;
  vertical-align: middle;
}

.custom-cart-count{
    display: block;      /* obligatoire ici */
    line-height: 1;
    white-space: nowrap; /* éviter retour ligne */
    max-width: 100%;     /* reste dans la div */
    text-align: center;
	font-size: 8px;
	color:white;
}
.custom-cart-compteur{
	position: absolute;
    top: -5px;
    right: -15px;
	width: 20px;        /* taille fixe */
    height: 20px;       /* taille fixe */
    background: black;
	display: flex;      /* centrer avec flexbox */
    align-items: center;
    justify-content: center;
    padding: 4px 6px;
    border-radius: 50%;
    font-weight: bold;
}

.custom-cart-compteur.hidden {
    display: none !important;
}
.custom-cart-compteur.visible {
  display: flex !important; /* Et pas block */
}