/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/
:root {
	--icon-space: 1.3em;
}

ul.checklist {
	font-size: 0.7em;
  	--icon-space: 1.3em;
 	list-style: none;
}


ul.checklists li {
  padding-left: var(--icon-space);
}

ul.checklist li:before {
  content: "\f00c"; /* FontAwesome Unicode */
  font-family: FontAwesome;
  display: inline-block;
  margin-left: calc( var(--icon-space) * -1 );
  width: var(--icon-space);
  color: #5d9761;
}