You can change the FontAwesome class a bit:
<i class="far fa-check-circle"></i>
change to:
<i class="fas fa-circle"></i>
and use the following custom CSS code to style for it:
.item-page ul li i {
color: #000 !important; /*change the color of the points*/
font-size: 10px !important; /*change the size*/
}
Hope this helps.