.checkbox[data-toggle="checkbox"] {
	margin: 0 0 1px 0;
	padding: 0 0 0 0;
	min-height: inherit;
	display: inline-block;
	width: 16px;
	height: 17px;

	position: relative;
	top: 0;

	font-family: 'Glyphicons Halflings';
	-webkit-font-smoothing: antialiased;
}

.checkbox[data-toggle="checkbox"]:before {
	content: "\e013";
	position: relative;
	top: -3px;

	font-size: 10px;
	opacity: 0;

	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
}

.checkbox[data-toggle="checkbox"][checked]:before {
	font-size: 15px;
	opacity: 1;
}