How enqueue CSS out of theme folder?

You can use content_url() to get a URL to the wp-content folder:

add_action( 'init', function() {
    wp_enqueue_style( 'my-tag', content_url( 'cssfile.css' ) );
});

See https://developer.wordpress.org/reference/functions/content_url/