/**********************************************
Common Checkbox styles
*************************************************/

.aria-checkbox {
  float: left;
  cursor: pointer;
  width: 200px;
  padding: 20px;
  text-align: center;
  background: url(./img/checkbox/unchecked.svg) no-repeat;
}

.aria-checkbox.checked {
  background: url(./img/checkbox/checked.svg) no-repeat;
}

.aria-checkbox.partially-checked {
  background: url(./img/checkbox/indeterminate.svg) no-repeat;
}
