/*
---

name: Inform Icons

description: Inform Icons

provides: [CSS.InformIcons]

...
*/
.icon {
  background: 0;
  display: inline;
  height: auto;
  line-height: normal;
  text-decoration: inherit;
  vertical-align: baseline;
  width: auto;
}
.icon span {
  left: -1000em;
  position: absolute;
}
.icon:before {
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  speak: none;
  text-decoration: inherit;
}

.progress li:first-child:before,
p.required:before,
span.required:before {
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  speak: none;
  text-decoration: inherit;
}

a .icon {
  display: inline-block;
}
a.icon:hover {
  text-decoration: none;
}

.icon.ok:before {
  color: #93a817;
  content: "\2713";
  font-size: 1.6em;
  line-height: 1;
}

.icon.lock:before {
  content: "\f023";
}

.progress li:first-child:before {
  content: "\f023";
  color: #ddd;
  font-size: 1.4em;
  margin-top: -3px;
  position: absolute;
  left: 10px;
}

.icon.calendar, .icon.clear {
  color: #178abb;
  float: right;
  font-size: 1.4em;
  position: relative;
  right: 10px;
  top: -33px;
  margin-bottom: -33px;
}
.icon.calendar:before, .icon.clear:before {
  content: "\f073";
}
.icon.calendar {
  pointer-events: none;
}
.icon.clear {
  cursor: pointer;
  right: 28px;
}
.icon.clear:before {
  color: #b71f38;
  content: "\0078";
  font-size: 16px;
  line-height: 16px;
}
.icon.warning:before {
  color: #b71f38;
  content: "\f071";
  font-size: 1.6em;
  position: absolute;
}

.icon.print:before {
  color: #aaa;
  content: "\f02f";
  padding: 0 4px 0 0;
}

.icon.required:before,
p.required:before {
  color: #b71f38;
  content: "\f069";
  font-size: 8px;
}

.icon.required {
  display: inline-block;
  margin: -4px 0 0 2px;
  vertical-align: top;
}

p.required:before {
  display: inline-block;
  margin: 0 2px 0 0;
  vertical-align: top;
}
