.checked-custom {
	width: 1.5em;
	height: 1.5em;
	display: inline-block;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background: white;
	border-radius: 5px;
	border: 1px solid #ddd;
}

.checked-custom:after {
	content: "\f00c";
	font-family: FontAwesome;
	font-size: 1.5em;
	font-weight: normal;
	position: relative;
	visibility: hidden;
	color: #028bd3;
	top: -5px;
}

.checkbox-custom:checked ~ .checked-custom:after {
	visibility: visible;
}

input[type="checkbox"] {
	display: none !important;
}