I’ve found the issue:
in the row 604 of file customizer.php:
<?php if ( ! empty( $bg_url ) ) : ?>
background-size: <?php echo $bg_size; ?> !important;
<?php endif; ?>
you must change with:
<?php if ( ! empty( $bg_size ) ) : ?>
background-size: <?php echo $bg_size; ?> !important;
<?php endif; ?>
Obviously, $bg_url will be always empty!