/* ----------------------------------------------------------------------------- */
/* Elements
-------------------------------------------------------------------------------- */

/* Bullets */
ul.blue-bullets, ul.blue-bullets ul {
    list-style: none; /* Remove default bullets */
  padding-left:1em;
  margin-left:0.5em;
}

ul.blue-bullets li::before {
    content: "\25A0";  /* Add content: square bullet is the CSS Code/unicode for a bullet */
    color: #009eb6; /* Change the color */
    display: inline-block; /* Needed to add space between the bullet and the text */ 
    width: 1.5em; /* Also needed for space (tweak if needed) */
    margin-left: -1.5em; /* Also needed for space (tweak if needed) */
}