.products li.product {
margin: 0 3% 2.992em 0 !important;
}
Может это для чего-то другого нужно?
var menu = jQuery('.theme-main-menu');
var burger = menu.find('.navbar-toggle');
menu.find('.menu-item a').on('click', function(){
if(!burger.hasClass('collapsed')){
burger.trigger('click');
}
});
jQuery(document).on('wpcf7:mailsent', function(event){
console.log(event.target);
});
$('.image').magnificPopup({
delegate: '.example-image-link', // child items selector, by clicking on it popup will open
type: 'image',
gallery: {
enabled: true
}
});