.checkbox-label {
	position: relative;
	display: flex;
	align-items: center;
	cursor: pointer;
	padding-left: 20px;
	user-select: none;
	padding-bottom: 0px;
}

.checkbox-label input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.checkbox-checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 15px;
	width: 15px;
	background-color: #FAFAFA;
	border-radius: 15px;
}

.checkbox-label:focus-within {
	outline: none;
}

.checkbox-label:hover input ~ .checkbox-checkmark {
	background-color: #CC9F63;
}

.checkbox-label input:checked ~ .checkbox-checkmark {
	background-color: #676767;
}

.checkbox-checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

.checkbox-label input:checked ~ .checkbox-checkmark:after {
	display: block;
}

.checkbox-label .checkbox-checkmark:after {
	top: 2px;
	left: 4px;
	width: 5px;
	height: 5px;
	border: solid #FAFAFA;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.checkbox-labels > .checkbox-label {
    margin: 3px 10px;
}