.checkbox {
	display:inline-block;
	cursor:pointer;
	font-size:13px;
	margin-right:10px;
	line-height:18px
}
input[type=checkbox] {
	display:none
}
.checkbox:before {
	content:"";
	display:inline-block;
	width:18px;
	height:18px;
	vertical-align:middle;
	background-color:#3368e8;
	color:#f3f3f3;
	text-align:center;
	border-radius:3px
}
input[type=checkbox]:checked+.checkbox:before {
	content:"\2713";
	text-shadow:1px 1px 1px rgba(0, 0, 0, .2);
	font-size:15px
}
label.steps1_from_name.checkbox {
	display:inline-block;
	font-size:13px;
	font-family:OpenSansRegular_0;
	margin-right:20px
}