Cart page compatible with Elementor plugin

Design a cart page that works seamlessly with the Elementor plugin.

add_action('woocommerce_before_cart', function (){
    if (!WC()->cart->is_empty()){
		WC()->cart->calculate_totals();
    }
});