#filterContainer input[type="checkbox"] {
	display: none;
}

#filterContainer input[type="checkbox"] + label {
	cursor: pointer;
	vertical-align: middle;
}

[id^="checkbox-10-"] + label {
	background-color: #fafbfa;
	padding: 3px;
	border-radius: 50px;
	display: inline-block;
	position: relative;
	margin-right: 10px;
	-webkit-transition: all 0.05s ease-in;
	transition: all 0.05s ease-in;
	width: 25px;
	height: 15px;
}

[id^="checkbox-10-"] + label:after {
	content: ' ';
	position: absolute;
	top: 0;
	-webkit-transition: box-shadow 0.05s ease-in;
	transition: box-shadow 0.05s ease-in;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 100px;
	box-shadow: inset 0 0 0 0 #eee, 0 0 1px rgba(0,0,0,0.4);
}

[id^="checkbox-10-"] + label:before {
	content: ' ';
	position: absolute;
	background: white;
	top: 1px;
	left: 1px;
	z-index: 90;
	width: 19px;
	-webkit-transition: all 0.05s ease-in;
	transition: all 0.05s ease-in;
	height: 19px;
	border-radius: 100px;
	box-shadow: 0 3px 1px rgba(0,0,0,0.05), 0 0px 1px rgba(0,0,0,0.3);
}

[id^="checkbox-10-"]:active + label:after {
	box-shadow: inset 0 0 0 20px #eee, 0 0 1px #eee;
}

[id^="checkbox-10-"]:active + label:before {
	width: 19px;
}

[id^="checkbox-10-"]:checked:active + label:before {
	width: 19px;
	left: 10px;
}

[id^="checkbox-10-"] + label:active {
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
}

[id^="checkbox-10-"]:checked + label:before {
	content: ' ';
	position: absolute;
	left: 12px;
	border-radius: 100px;
}

[id^="checkbox-10-"]:checked + label:after {
	content: ' ';
	font-size: 1.5em;
	position: absolute;
	background: #2e63a9;
	box-shadow: 0 0 1px #2e63a9;
}