/* At the top of the WebForm the label to indicate required fields is a black asterisk and does not match the design of the icon actually used to indicate required fields.  This custom CSS class increases the size and changes to the branded color so you can use the Insert Special Character (Omega symbol) to select a circular dot character and apply this Custom CSS to make it look like the Required Fields icon.  Perhaps there is a better way to handle this that I am unaware of. -David Levy */
.required-icon-emulation { 
  font-size:200%;
  vertical-align: middle;
  color:#8c1d40;
}
/* The required-icon-emulation font-zoom is making the label box misaligned.  Probably a better way to cinch it down, but I'm putting this in place for now. */
.alert .alert-content {
  padding: 0.0rem, 0;
  line-height: 100%;
}


/* End of Custom CSS by David Levy */