<div class="panel panel-default cc_panel cc_panel_shopping_cart cc_cart2 custom_template">
    <div class="panel-body cc_body">
        <div class="row">
            <div class="col-xs-12">
                <h2 class="title cc_title">{{pageLabelMap 'CartInc_ShoppingCart'}}</h2>
            </div>
        </div>
        <div class="row">
            <div class="col-xs-12">
                <div id="cart_items_container" class="cc_cart_item_container">
                    {{> headerSection}}
                        <div class="cart_item_list cc_cart_item_list">
                            {{#if this.ECartItemsS}}
                                <div class="row">
                                    <!--Table-->
                                    <table id="shoppingcart" class="table responsiveTable table-hover table-sm">
                                        <!--Table head-->
                                        <thead class="thead-dark">
                                            <tr>
                                                <th scope="col" class="text_align_left" style="text-transform: uppercase;">{{pageLabelMap 'Product'}}</th>
                                                <th scope="col" class="text_align_left" style="text-transform: uppercase;">{{pageLabelMap 'Checkout_SKU'}}</th>
                                                <th scope="col" class="cart_action_section" style="text-transform: uppercase;">{{pageLabelMap 'CartInc_Qty'}}</th>
                                                <th scope="col" class="cart_action_section" style="text-transform: uppercase;">{{pageLabelMap 'TKAMB2B_ListPriceLabel'}}</th>
                                                <th scope="col" class="cart_price_text_align" style="text-transform: uppercase;">{{pageLabelMap 'TKAMB2B_YourPriceLabel'}}</th>
                                                <th scope="col" class="cart_price_text_align" style="text-transform: uppercase;">{{pageLabelMap 'TKAMB2B_PriceSavingsLabel'}}</th>
                                                <th scope="col" class="center" style="text-align: center; text-transform: uppercase;">{{pageLabelMap 'TKAMB2B_Action'}}</th>
                                            </tr>
                                        </thead>
                                        <!--Table head-->
                                        <!--Table body-->
                                        <tbody>
                                        {{#each this.ECartItemsS.models}}
                                        <tr class="cart_item {{this.attributes.sfid}} cc_cart_item" data-sku="{{this.attributes.product.SKU}}">
                                            {{> cartItemsDesktop}}
                                        </tr>
                                        {{/each}}
                                        </tbody>
                                    <!--Table body-->
                                    </table>
                                    <!--Table-->
                                </div>
                            {{/if}}
                        </div>
                    </div>
                {{> emailModal}}
                {{> rfqModal}}
                {{> wishModal}}
                {{> actionsTotals}}
            </div>
        </div>
    </div>
    <div id="modalSec"></div>
</div>