_marisha,
<!DOCTYPE html>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">
.checkbox-checked {
background: #FFCC00;
}
.put_off label{
display: block;
height: 100%;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>
$(function() {
$('.put_off').on('change', 'input[type="checkbox"]', function(event) {
$(event.delegateTarget).toggleClass('checkbox-checked', this.checked)
}).find('input[type="checkbox"]').trigger('change');
});
</script>
</head>
<body>
<div class="col-lg-3 put_off">
<label id="bx_117848907_1354_compare_link">
<input type="checkbox" data-entity="compare-checkbox">
<span data-entity="compare-title">Сравнить</span>
</label>
</div>
<div class="col-lg-3 put_off">
<label id="bx_117848907_1354_compare_link">
<input type="checkbox" data-entity="compare-checkbox" checked="checked">
<span data-entity="compare-title">Сравнить</span>
</label>
</div>
</body>
</html>