/******* Do not edit this file *******
Code Snippets Manager
Saved: Aug 07 2024 | 09:37:57 */
/* What we do pages */
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 Lightest */
}
.blue-light ul li::before {
  background-color: #009FE3;
  /* Blue Light */
}
.blue-mid ul li::before {
  background-color: #386DA4;
  /* Blue Mid */
}
.blue-dark ul li::before {
  background-color: #20376D;
  /* Blue Dark */
}
.green-dark ul li::before {
  background-color: #0DB14D;
  /* Green Dark */
}
.green-light ul li::before {
  background-color: #CADB2F;
  /* Green Light */
}
.yellow ul li::before {
  background-color: #FFDD4F;
  /* Yellow */
}
.orange ul li::before {
  background-color: #F26522;
  /* Orange */
}
.red ul li::before {
  background-color: #EF3743;
  /* Red */
}
