$(document).ready(function(){
$("input[type='checkbox']").on('click', function(){
$("input[type='checkbox']").not(this).prop('checked', false);
});
$('#button-input').on('click', function(){
if($("input[type='checkbox']").is(':checked')){
var Id = $("input:checked").attr('id');
var currentId= $('#'+ Id);
currentId.css('background-color','red');
}else{
alert("Please check one Option");
}
});
});