I was able to resolve this issue by using the following code:
Added JS code under Custom > JavaScript in the Customizer:
jQuery(document).ready(function($) {
if ( $(‘html’).hasClass(‘touchevents’) ) {
$(‘.vc_tta.vc_general .vc_tta-panel-title > a, .vc_tta.vc_general .vc_tta-panel-title > a’).off(‘click touchstart touchend’);
}
});