/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Nov 06 2023 | 10:31:50 */
/* ul.green-object,ul.red-object {margin: 0 0 1.5em 0em;} */

ul.green-object li{
  list-style: none;
}
ul.green-object li:before {
   content: '\25CF'; /* Disc character, Unicode, colored */
  /*  font-weight: bold!important; */
    color: #58C649!important;
	padding-right: 8px;
}

/* Puts a red object in front */
ul.red-object li{
  list-style: none;
}
ul.red-object li:before {
   content: '\25CF'; /* Disc character, Unicode, colored */
    /* font-weight: bold!important; */
    color: #F24F4F!important;
	padding-right: 8px;
}

.column-proscons{
  margin-bottom: 0px!important;
}
.wpsm_pros ul, .wpsm_cons ul {
    margin: 0 0 15px 0;
}

.title_pros {
    color: #58C649;
  /* margin: 0 0 15px 0; */
    font-size: 17px!important;
    font-weight: bold;
    font-style: italic;
}
.title_cons {
    color:#F24F4F;
  /* margin: 0 0 15px 0; */  
    font-size: 17px!important;
    font-weight: bold;
    font-style: italic;
}
/* Left margin spacing (flush left side) for the Pros/Cons lists */
ul.green-check,ul.red-cross {  margin: 0 0 1.5em 0.5em;}

/* Puts a green Unicode check mark in place of selected List icon
 * This avoids loading the icon font file */
ul.green-check li{
  list-style: none;
}
ul.green-check li:before {
  content: "\27a4"; /* Side arrow, Unicode, colored */
  /*  font-weight: bold!important; */
    color: #58C649!important;
	padding-right: 8px;
   /* vertical-align: top; */
}

/* Puts a red Unicode X mark in place of selected List icon
 * This avoids loading the icon font file */
ul.red-cross li{
  list-style: none;
}
ul.red-cross li:before {
    content: "\27a4"; /* Side arrow, Unicode, colored */
    /* font-weight: bold!important; */
    color: #F24F4F!important;
	padding-right: 8px;
    /* vertical-align: top;*/
}

