.slider .nav span .on {
background: #000;
border-radius: 2px;
box-shadow: 10px;
}
$(document).ready(function(){
$('a.show-checked').on('click', function(e) {
e.preventDefault()
$('input:not(:checked)').parents('li').hide();
$('input:checked').parents('li').show();
});
$('a.show-active').on('click', function(e) {
e.preventDefault()
$('input:not(:checked)').parents('li').show();
$('input:checked').parents('li').hide();
});
})