.label-checkbox {
	display: inline-block;
	font-size: 1.2rem;
	line-height: 1.5;
	margin: 0 1rem 1rem 0;
	cursor: pointer;
	padding: 0;
	height: auto;
	width: auto;
	vertical-align: inherit;
	transition: color 0.3s ease-in-out;
}
.label-checkbox input[type="checkbox"] {
	appearance: checkbox !important;
	line-height: 1.5;
	display: inline-block;
	cursor: pointer;
	vertical-align: middle;
	margin-right: 0.1rem;
	margin-bottom: 0.1rem;
	outline: 0 solid red;
	box-shadow: 0 0 0.5rem 0 rgba(34, 34, 34, 0);
	transition: box-shadow 0.3s ease-in-out;
}
.label-checkbox input[type="checkbox"]:hover,
.label-checkbox input[type="checkbox"]:focus {
	box-shadow: 0 0 0.5rem 0 rgba(34, 34, 34, 0.5);
}
