.bkcl {
  counter-reset: my-counter;
  list-style: none !important;
  padding: 0;
  margin: 0 !important;
 }
 .bkcl li {
   font-size: 16px;
   line-height: 1.6;
   padding-left: 30px;
   position: relative;
 }
 .bkcl li:before {
    content: counter(my-counter);
    counter-increment: my-counter;
    background-color: #333;
    border: 1px solid;
    border-radius: 50%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 22px;
    width: 22px;
    color: #ffffff;
    font-size: 85%;
    line-height: 1;
    position: absolute;
    top: 0;
    left: 0;
  }
}