﻿/*==================== PROJET EDITORIAL ===================*/


/* listes a puce */

.liste,
.liste-num {
	margin-bottom: 10px;
}
.liste li,
.liste-num li {
	position: relative;
}
.puce-pleine li::before,
.puce-vide li::before,
.puce-fine li::before {
	position: relative;
	top:-0.3em;
	margin-right: 1em;
    display: inline-block;
    font-family: "ermes-font-addon";
    font-style: normal;
    font-weight: normal;
	font-size: 0.5em;
    text-decoration: inherit;
	color: #666;
}
.puce-pleine li::before { content: '\a137'; }
.puce-vide li::before { content: '\a138'; }
.puce-fine li::before { content: '\a139'; }

/* .liste-num {
	background: red;
}
.liste-num span {
	background: #fff;
} */

ol {counter-reset: repas;} /* on initialise et nomme un compteur */
ol li {
    list-style-type: none;
    counter-increment: repas; /* on incrémente le compteur à chaque nouveau li */
    margin-bottom: 10px;
}
ol li:beforePMD{
    content: counter(repas); /* on affiche le compteur */
    padding: 0 7px 4px;
    margin-right: 8px;
    vertical-align: top;
    background: #767676;
    -moz-border-radius: 0;
    border-radius: 0;
    font-weight: bold;
    font-size: 0.8em;
    color: white;		
}
