ol {
  counter-reset: li;
}
li {
  list-style: none!important;
}
.rounded-list fancylist {
  position: relative;
  display: block;
  padding: .4em .4em .4em 2em;
  *padding: .4em;
  margin: .5em 0;
  background: #ddd;
  text-decoration: none;
  border-radius: .3em;
 /* transition: all .5s ease-out;*/ 
}
.rounded-list fancylist:hover{
  background: #eee;
}
.rounded-list fancylist:before{
  content: counter(li);
  counter-increment: li;
  position: absolute; 
  left: -1.4em;
  top: 50%;
  margin-top: -1.4em;
  background: #3a7f52;
  color: #3a7f52;
  height: 2em;
  width: 2em;
  line-height: 2em;
  border: .3em solid #fff;
  text-align: center;
  font-weight: bold;
  border-radius: 2em;
  /*transition: all .3s ease-out;*/
}