ul {
list-style-type: none;
padding-left: 0;
}
ul li {
position: relative;
padding-left: 20px;
}
ul li::before {
content: "";
width: 10px;
height: 10px;
position: absolute;
left: 0;
top: 0;
margin-top: 6px;
}
.blue-lightest ul li::before {
background-color: #41C0F0; }
.blue-light ul li::before {
background-color: #009FE3; }
.blue-mid ul li::before {
background-color: #386DA4; }
.blue-dark ul li::before {
background-color: #20376D; }
.green-dark ul li::before {
background-color: #0DB14D; }
.green-light ul li::before {
background-color: #CADB2F; }
.yellow ul li::before {
background-color: #FFDD4F; }
.orange ul li::before {
background-color: #F26522; }
.red ul li::before {
background-color: #EF3743; }