﻿.chbox .chbox-label {
	display: inline-block;
	cursor: pointer;
	position: relative;
	padding-left: 25px;
	margin-right: 15px;
	font-size: 13px;
}

.chbox input[type=checkbox] {
	display: none;
}

.chbox .chbox-label:before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 10px;
	position: absolute;
	left: 0;
	top: 1px;
	background-color: #fff;
	border: 2px solid #aaa;
}

.chbox .chbox-label {
	margin-bottom: 10px;
}

.chbox .chbox-label:before {
    border-radius: 4px;
}

.chbox input[type=checkbox]:checked + .chbox-label:before {
	content: "\2714";
	font-size: 12px;
    font-family: Open Sans;
	color: #791c59;
	text-align: center;
    line-height: 12px;
}

.chbox .chbox-label p {
    margin: 0;
}

