Billing Address Checkbox Default Change Unexpanded In Cart

The checkbox for the billing address on the checkout page is unfolded by default. I would like to make it unexpanded by default how do I do that?

Think muss change the billing.tpl



{include file="views/profiles/components/profiles_scripts.tpl"}



{$use_billing_address = $user_data.ship_to_another|default:false}


{__("text_billing_address_is_different_from_shipping")}


<input
type="hidden"
value="0"
name="ship_to_another"
data-ca-lite-checkout-field="ship_to_another"
data-ca-lite-checkout-auto-save-on-change="true"
>
<input
type="hidden"
value="0"
name="user_data[ship_to_another]"
data-ca-lite-checkout-field="user_data.ship_to_another"
data-ca-lite-checkout-auto-save-on-change="true"
>
<input
id="sw_litecheckout_step_billing_address_suffix_no"
type="checkbox"
value="1"
name="user_data[ship_to_another]"
data-ca-lite-checkout-field="user_data.ship_to_another"
data-ca-lite-checkout-auto-save-on-change="true"
{if $use_billing_address}checked="checked"{/if}
class="checkbox cm-switch-availability cm-switch-visibility"
>








<input
type="hidden"
value="1"
name="ship_to_another"
data-ca-lite-checkout-field="ship_to_another"
data-ca-lite-checkout-auto-save-on-change="true"
{if !$use_billing_address}disabled="disabled"{/if}
>
{if $use_billing_address}
{$profile_fields_data = $user_data}
{else}
{$profile_fields_data = $current_user_data|default:$user_data}
{/if}
{include
file="views/checkout/components/profile_fields.tpl"
profile_fields=$profile_fields
disable_all_fields=!$use_billing_address
user_data=$profile_fields_data
section="ProfileFieldSections::BILLING_ADDRESS"|enum
exclude=["customer_notes"]
}