    <div class="popup_container wide">
        <div class="popup">
            <div class="popup_content">
                <p class="not_in_stock_title"><span></span>{{i18n "no.stock.ops"}}</p>
                <p class="not_in_stock_text">{{i18n "no.stock.description"}}</p>
                <div style="padding:0em 28px 34px;atg">
                    {{#if catalogSwitching}}
                        <a class="white_button" title="{{i18n "no.stock.remove"}}" href="javascript:removeNoStockProducts(postRemoveNoStockProducts);" onClick="ga('send', 'event', 'acciones usuario', 'eliminar productos y sustituir por otros');">{{i18n "no.stock.remove"}}</a>
                        <a class="orange_button" style="float:right" title="{{i18n "no.stock.cancel"}}" href="javascript:closeNoStockPopup();">{{i18n "no.stock.cancel"}}</a>
                    {{/if}}

                    {{#if login}}
                        <a class="white_button" title="{{i18n "no.stock.remove"}}" href="javascript:closeNoStockPopup();">{{i18n "no.stock.remove"}}</a>
                    {{/if}}

                    {{#if shoppingCart}}
                        <a class="white_button" title="{{i18n "no.stock.remove"}}" href="javascript:closeNoStockPopup('shoppingcart');">{{i18n "no.stock.remove.verify"}}</a>
                    {{/if}}

                    {{#if checkout}}
                        <a class="white_button" title="{{i18n "no.stock.remove"}}" href="javascript:removeNoStockProducts(postRemoveNoStockProductsCheckout);" onClick="ga('send', 'event', 'acciones usuario', 'eliminar productos y sustituir por otros');">{{i18n "no.stock.remove"}}</a>
                        <a class="orange_button" style="float:right" title="{{i18n "no.stock.cancel"}}" href="javascript:closeNoStockPopup();">{{i18n "no.stock.cancel"}}</a>
                    {{/if}}
                </div>
                <div class="not_in_stock_container">
                    <div class="header_list">
                        <span class="list_title products">{{i18n "no.stock.products"}}</span>
                    </div>

                    <div class="scroll_container">
                        <div class="scrollable_container">
                            <ul id="not_in_stock_list" class="item_list">
                                {{#each products}}
                                    <li class="item">
                                        <span class="item_block products">
                                            <span class="product_name">{{product_description}}</span>
                                            <img class="product_image"  alt="{{product_description}}" src="{{MEDIA_CONTENT_URL}}/resize_67x67{{product_large_image}}" width="64" height="67">
                                        </span>
                                    </li>
                                {{/each}}
                            </ul>
                        </div>
                        <div id="scroll-popup-products" class="custom_scroll_container">
                            <span class="scroll_end top"></span>
                            <div class="custom_scroll"></div>
                            <span class="scroll_end bottom"></span>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
