$('.sbs2').on('mouseover', function(e){
    $(this).addClass('li_open_180');
});

$('.sbs2').on('mouseleave', function(e){
    $(this).removeClass('li_open_180');
});

$('.share_btns').off('click');
$('.share_btns').on('click', function(e){
    e.preventDefault();
    swal({
       html: $('#sharebtnshtml').html(),
       showCancelButton: false,
       showConfirmButton: false,
       showCloseButton: true
    });
});