File: /home/retile.ru/public_html/catalog/view/theme/unishop2/template/checkout/uni_totals.twig
<div class="unicheckout-sticky col-sm-12 col-md-3 col-lg-3 col-xxl-5">
<div class="unicheckout-sticky__wrapper">
<div class="unicheckout-sticky__heading">{{ text_your_order }}</div>
<div class="unicheckout-sticky__total">
<div class="unicheckout-sticky__total-item product-total">
<div class="unicheckout-sticky__total-title">{{ text_product_total }}</div>
<div class="unicheckout-sticky__total-text"><a onclick="uniScrollTo('.checkout-cart__wrapper'); return false;">{{ product_total }}</a></div>
</div>
{% if weight_total %}
<div class="unicheckout-sticky__total-item product-weight">
<div class="unicheckout-sticky__total-title">{{ text_product_weight }}</div>
<div class="unicheckout-sticky__total-text">{{ weight_total }}</div>
</div>
{% endif %}
{% for total in totals %}
<div class="unicheckout-sticky__total-item {{ total.code }}">
<div class="unicheckout-sticky__total-title">{{ total.title }}:</div>
<div class="unicheckout-sticky__total-text"><span class="{{ total.code }}">{{ total.text }}</span></div>
</div>
{% endfor %}
</div>
<div class="unicheckout-sticky__confirm">
{% if text_confirm %}
<div class="unicheckout-sticky__confirm-agree">
<label class="input"><input type="checkbox" name="confirm" value="1" {{ confirm ? ' checked="checked"' }} id="agree" class="unicheckout-sticky__confirm-input" />{{ text_confirm }}</label>
</div>
{% endif %}
<button data-loading-text="{{ text_loading }}" id="confirm_checkout" class="unicheckout-sticky__confirm-btn btn btn-xl btn-block btn-primary">{{ button_confirm_checkout }}</button>
</div>
</div>
</div>