.toggle-plus-minus {
	> input:not(:checked)::before {
		content: 'add';
	}

	> input:checked::before {
		content: 'remove';
	}
}