// source --> https://thienkhoigroup.org/wp-content/themes/thienkhoitheme/js/customize-js.js?ver=2.0 
jQuery(document).ready(function($) {
	setTimeout(function(){
		function checkMinheight(e) {
				  var t = 0,
				    r = jQuery(e);
				  jQuery(r).each(function() {
				    var e = parseInt(jQuery(this).css("height"));
				    t < e && (t = e)
				  }), t += 1, jQuery(r).each(function() {
				    jQuery(this).css("height", t + "px")
				    // jQuery(this).css("overflow","hidden")
				  })
				}			
		if(jQuery(window).width()>640) {
			checkMinheight('.kygui-phanhoi .home__phanhoi__card__content');	
		}			
			// 
		checkMinheight('.main-home-tt .item_post');	
	},500);
	// 
	const heightF = $('.fixed-line-wrap').height();
	// console.log(heightF);
	$('.full-footer-bottom').css('margin-bottom',heightF);
});