/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 07 2025 | 22:52:56 */
/* Ordered lists style */ 
.puces-savoie ol {
counter-reset: my-ol-counter;
margin-left:1em; 
}
.puces-savoie ol li {
position: relative;
padding-left: 30px;
list-style: none;
margin-bottom:10px;	
} 
.puces-savoie ol li:before {
position: absolute;
left: 0;
width: 20px;
height: 20px;
margin-top: 3px;
color: #fff;
text-align:center;
background-color: #a20606;
content: counter(my-ol-counter,decimal);
counter-increment: my-ol-counter;
font-size: 12px;
font-weight: bold;
-webkit-border-radius: 40%;
border-radius: 40%; 
}
/* Unordered list style */ 


.puces-savoie ul {
margin-left:1em;
}
.puces-savoie ul li {
position: relative;
padding-left: 25px;
list-style: none;
margin-bottom: 10px;	

}
.puces-savoie ul li:before {
position: absolute;
left: 5px;
width: 10px;
height: 10px;
margin-top: 8px;
color: #fff;
text-align:center;
background-color: #a20606;
content: "\e900";
font-size: 0px;
-webkit-border-radius: 50%;
border-radius: 50%;
-webkit-transform: rotate(270deg);
-ms-transform: rotate(270deg);
transform: rotate(270deg); 
}