/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 11 2025 | 22:48:43 */
ol.encircled-number {
  counter-reset: encircled-number-counter;
  list-style: none;
  padding: 0;
  margin:0;
}
 
ol.encircled-number > li {
  margin:0 0 10px;
  padding:0 0 0 2em;
  position: relative;
}

ol.encircled-number > li:before {
  content: counter(encircled-number-counter);
  counter-increment: encircled-number-counter;
  background-color: #bada55;
  color: #222;
  display: block;
  float: left;
  line-height: calc( 1em * 1.5 );
  margin-left: -2em;
  text-align: center;
  height: calc( 1em * 1.5 );
  width: calc( 1em * 1.54 );
  border-radius: 50%;
  font-size:1em;
}

ol.encircled-number > li:after {
  content:'';
  display:block;
  width:100%;
  clear:both;
}

