.checkbox-block+.checkbox-block, .radio-block+.radio-block {
	margin-top: 3px;
}

.checkbox-block label, .radio-block label {
	display: block
}

.checkbox-block img, .radio-block img {
	width: auto;
	display: inline-block;
	vertical-align: middle
}

.radio-inline, .checkbox-inline {
	padding: 0
}

.radio-inline+.radio-inline, .checkbox-inline+.checkbox-inline {
	margin-left: 5px
}
/*
input[type='radio'], input[type='checkbox'] {
	opacity: 0;
	display: none;
	float: left;
	width: 18px
}

input[type='radio']+label, input[type='checkbox']+label {
	margin: 0;
	clear: none;
	padding: 4px 0 3px 22px;
	cursor: pointer;
	font-weight: 400;
	line-height: 22px;
	position: relative;
	font-size: 16px;
}

input[type='radio']+label:before, input[type='checkbox']+label:before {
	font: normal normal normal 14px/1 FontAwesome;
	content: "\f096";
	position: absolute;
	left: 0;
	top: 1px;
    color: #999;
    font-size: 24px;
	-webkit-text-stroke: 0.5px white;
}

input[type='checkbox']:checked+label:before {
	content: "\f046"
}

input[type='radio']+label:before {
	content: "\f10c";
}

input[type='radio']:checked+label:before {
	content: "\f05d";
}

input[type='radio']+label:hover::before, input[type='checkbox']+label:hover::before,
	input[type='radio']:checked+label:before, input[type='checkbox']:checked+label:before
	{
	color: #ab953c;
}

*/

input[type=checkbox] {
    width: 24px;
    height: 24px;
    -webkit-appearance: none;
    outline: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

input[type=checkbox]:not(:checked) {
    background-image: url(/images/checkbox.png);
}

input[type=checkbox]:checked {
     background-image: url(/images/checkbox_active.png);
}

input[type='radio']+label, input[type='checkbox']+label {
	margin: 0;
	clear: none;
	padding: 0px 0px 0px 4px; 
	cursor: pointer;
	font-weight: 400;
	line-height: 24px;
	position: relative;
	font-size: 16px;
	vertical-align: bottom;
}