.checkbox-container {
  display: inline-flex;
  align-items: center;
  margin-bottom: var(--flex-form-field-label-margin);
}

.checkbox-label {
  margin-left: .25em;
}

.checkbox-label > label {
  font-size: var(--flex-text-sm);
  color: var(--flex-text-default);
}

.checkbox > span {
  cursor: pointer;
  font-size: var(--flex-text-2xl);
  color: var(--flex-bg-muted);
  vertical-align: middle;
  line-height: 1;
  outline: none;
}

.checkbox.read-only > span {
  cursor: not-allowed;
}