//this js is for PRESENTATION ONLY 

$(document).ready(function(){
	var $customBoxes = $('.custom-check').find('input');
	$customBoxes.each(function() {
		$(this).click(function() {
			var $thisLabel = $(this).next();
			if (this.checked == true) {
				$thisLabel.addClass('checked');
			}
			
			else {
				$thisLabel.removeClass('checked');
			}
		});
	});
});

