shopwise autoresize gallery (nereikalingas, smooth gallery atlieka sia func)

$( document ).ready(function() {

	$('.product_gallery_item').on('click', function(){
		setTimeout(function(){
			const $img_box = $('.product_img_box')
			const img_box_height = parseInt( $img_box.css('height') ) - 16
			const img_box_width = parseInt( $img_box.css('width') ) - 16

			$('.zoomContainer').css('width', img_box_width)
			$('.zoomContainer').css('height', img_box_height)

			$('.zoomWindow').css('width', img_box_width)
			$('.zoomWindow').css('height', img_box_height)

		}, 200)
	})
	
})