.d-checkbox {
  position: relative;
  display: inline-block;
  margin-left: 4px;
  margin-right: 4px;
  margin-top: 3px;
  margin-bottom: 3px;
}
.d-checkbox.d-focused {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.d-checkbox .d-checkbox-icon::before {
  display: inline-block;
  text-align: center;
  content: "\00A0";
  font-family: Times;
  border-color: #ccc;
  border-style: solid;
  border-width: 1px;
  border-radius: 4px;
  background-image: linear-gradient(to bottom, #ededed 0%, #dedede 100%);
  height: 1em;
  width: 1em;
  line-height: 1em;
  font-size: 1em;
}
.d-checkbox.d-rtl .d-checkbox-icon::before {
  right: 0px;
}
.d-checkbox.d-checked .d-checkbox-icon::before {
  content: "\2714";
  color: #555555;
}
.d-checkbox.d-indeterminate .d-checkbox-icon::before {
  content: "-";
  color: #555555;
}
.d-checkbox.d-disabled {
  color: #eeeeee;
}
.d-checkbox.d-disabled::before {
  color: #999999;
  background-color: #eeeeee;
}
.d-checkbox.d-disabled,
fieldset[disabled] .d-checkbox {
  cursor: not-allowed;
}
.d-checkbox > input[type=checkbox] {
  width: 1em;
  height: 1em;
  margin: 0px;
  opacity: 0.01;
  position: absolute;
  top: 0;
  left: 0;
  font: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.d-checkbox > input[type=checkbox][disabled],
fieldset[disabled] .d-checkbox > input[type=checkbox] {
  cursor: not-allowed;
}
label[for] {
  cursor: pointer;
}
