/* 17/11/2021 Tous droits réservés */

ol.rond-rev {
    counter-reset: li;
    list-style: none;
    font: 1em;
    padding: 0;
    margin-bottom: 2em;
    max-width: 80%;
    padding-left: 20px;
    margin: auto;
}
@media screen and (max-width: 640px) {	
    ol.rond-rev {
        max-width: 100%;
        font-size: 0.7em;
        padding: 0;
        margin-left: 20px;
    }
}

ol.rond-rev ol{
    margin: 0 0 0 2em;
}
ol.rond-rev li{
    position: relative;
    display: block;
    padding: .2em .2em .2em 1em;
    margin: 0 0.5em 0.2em 0.5em;
    background: linear-gradient(to right, #2ab0f9, #1d6084,#0d4360);
    color: #fff;
    text-decoration: none;
    -moz-border-radius: .3em;
    -webkit-border-radius: .3em;
    border-radius: .3em;
    opacity: 0.7;
}

ol.rond-rev li:hover{
    color:#fff;
    background: #456471;
    transform: scale(1.02);
}
/* puce numérotée cercle  */
ol.rond-rev li:before{
    content: counter(li);
    counter-increment: li;
    position: absolute;left: -1.3em;
    top: 50%;
    margin-top: -1em;
    background: #fff;
    height: 1.5em;
    width: 1.5em;
    line-height: 1.5em;
    border: .2em solid #fff;
    text-align: center;
    font-weight: bold;
    -moz-border-radius: 2em;
    -webkit-border-radius: 2em;
    border-radius: 2em;
    background-color: #009fe3;
    color:#fff;
}
/* puce numérotée carré  */
ol.rond-rev2 li::before {
	content: counter(li);
	counter-increment: li;
	position: absolute;
	left: -1.3em;
	top: 66%;
	margin-top: -1em;
	background: #fff;
	height: 1.2em;
	width: 1.2em;
	line-height: 1.2em;
	border: .15em solid #fff;
	text-align: center;
	font-weight: bold;
	-moz-border-radius: 2em;
	-webkit-border-radius: 2em;
	border-radius: .1em;
	background-color: #009fe3;
	color: #fff;
}

ol.rond-rev > li a {
    display:block;
    text-decoration:none;
    color:#eee!important;
}
ol.rond-rev > li a:hover {
    display:block;
    text-decoration:none;
    color:#fff!important;
}