$(window).on('resize', function() {
    $( ".highlightinsert" ).each(function() {
        let highlightinsert = $(this);
        let borderHeight = $(this).height() - 24;
        if ($(window).width() > 768) {
            $(highlightinsert).find('.highlightInsert').css("height",borderHeight)
        } else {
            let borderHeightMobile = $(this).height() - 13;
            $(highlightinsert).find('.highlightInsert').css("height",borderHeightMobile)
        }
    });
    if (navigator.appVersion.indexOf("Win")!==-1) {
        $( ".highlightinsert" ).each(function() {
            $( ".highlightinsert" ).find('.highlightInsert').removeClass('highlightinsertBorder').addClass('highlightinsertBorderWindows');
        });
    }
});