(function ($){
$('.faq-label').click(function (){
$(this).toggleClass("active").next('.faq-content').slideToggle(400);
$(".faq-content").not($(this).next()).slideUp(400);
$(".faq-label").not($(this)).removeClass("active");
});
$('.wp-block-cb-faqs').each(function (){
var count=$(this).data('break');
$(this).children('.wp-block-cb-faq:nth-child(' + count + 'n)').addClass('col-break');
});
})(jQuery);