How to change the 'Sale' into a percentage discount refresh theme on the product page.

Hi I want to change the ‘Sale’ next to the product price tag on the product page into a discount percentage, note this must apply to all variants. I am using the Refresh Theme.

@blasoo
Hello can you Please Share Your Store URL I Will Check and Provide a Proper solution
or Search in snipet file price sale file
Search Code

 {% comment %} 
{{ 'products.product.on_sale' | t }} 
{% endcomment %} 
{{product.compare_at_price | minus: product.price | times: 100 | divided_by: product.compare_at_price }}% off

to: Replace

{% comment %}
{{ 'products.product.on_sale' | t }} 
{% endcomment %}
{{product.**selected_or_first_available_variant**.compare_at_price | minus: product.**selected_or_first_available_variant**.price | times: 100 | divided_by: product.**selected_or_first_available_variant**.compare_at_price }}% off