.checkbox label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 3rem;
  line-height: 3rem;
}
.checkbox label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 2.60rem;
  height: 2.60rem;
  line-height: 3rem;
  left: 0;
  margin-left: -1rem;
  border: 1px solid #99999a;
  border-radius: 3px;
  background-color: white;
  -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}

.checkbox label:hover::before {
	border: 2px solid #88C654;
}

.checkbox label::after {
  display: inline-block;
  position: absolute;
  width: 1rem;
  height: 1rem;
  left: 0;
  top: 0;
  margin-top: -2px;
  margin-left: -20px;
  padding-left: 1.3rem;
  font-size: 2rem;
  color: #88C654;
  padding-top: 0.1rem;
}
.checkbox input[type="checkbox"], input[type="radio"] {
  opacity: 0;
  z-index: 1;
}
.checkbox input[type="checkbox"]:checked + label::after {
  font-family: "fawesome-webfont";
  content: "\f00c";
}
.checkbox input[type="checkbox"]:indeterminate + label::after {
  display: block;
  content: "";
  width: 10px;
  height: 3px;
  background-color: #555555;
  border-radius: 2px;
  margin-left: -16.5px;
  margin-top: 7px;
}
.checkbox input[type="checkbox"]:disabled + label {
  opacity: 0.65;
}
.checkbox input[type="checkbox"]:disabled + label::before {
  background-color: #eeeeee;
  cursor: not-allowed;
}
.checkbox.checkbox-circle label::before {
  border-radius: 50%;
}
.checkbox.checkbox-inline {
  margin-top: 0;
}

label[for="sample-radio"] {
	padding-left: 30px;
    line-height: 3rem;
}

.checkbox input[type="checkbox"]:checked + label.statusfilterlabel::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 2.60rem;
  height: 2.60rem;
  line-height: 3rem;
  left: 0;
  margin-left: -1rem;
  border: 1px solid #afe0f2;
  border-radius: 3px;
  background-color: #009cd5;
  -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}
.checkbox input[type="checkbox"]:checked + label.statusfilterlabel::after {
  display: inline-block;
  position: absolute;
  width: 1rem;
  height: 1rem;
  left: 0;
  top: 0;
  margin-top: -2px;
  margin-left: -20px;
  padding-left: 1.3rem;
  font-size: 2rem;
  color: white;
  padding-top: 0.1rem;
}