div[type="checkbox"] {
	background: #FFF;
	border-radius: .2em;
	box-shadow: inset 0 1px 3px rgba(0,0,0, .1), 0 0 0 rgba(203, 34, 237, .2);
	transition: all .275s;
	width: 14px;
	height: 14px;
	vertical-align: middle;
	display: inline-block;
	cursor: pointer;
}

div[type="checkbox"][checked]{
	background: #005dd8;
}

div[type="radio"] {
	background: #FFF;
	border-radius: 1em;
	box-shadow: inset 0 1px 3px rgba(0,0,0, .1), 0 0 0 rgba(203, 34, 237, .2);
	transition: all .275s;
	width: 14px;
	height: 14px;
	vertical-align: middle;
	display: inline-block;
	cursor: pointer;
}

div[type="radio"][checked]{
	background: #005dd8;
}

div[type="checkbox"][checked]:after {
	content: "✓";
	color: white;
	margin-left: auto;
	margin-right: auto;
	top: -2px;
	position: relative;
}

div[type="radio"][checked]:after {
	color: white;
	margin-left: auto;
	margin-right: auto;
	top: -2px;
	position: relative;
}

div[type="checkbox"][checked][disabled] {
	background-color: #5d5f6a;
	color: #dcdcde;
	cursor: not-allowed;
}

div[type="radio"][checked][disabled] {
	background-color: #5d5f6a;
	color: #dcdcde;
	cursor: not-allowed;
}

div[type="checkbox"][disabled] {
	background-color: #5d5f6a;
	color: #dcdcde;
	cursor: not-allowed;
}

div[type="radio"][disabled] {
	background-color: #5d5f6a;
	color: #dcdcde;
	cursor: not-allowed;
}