AJAX cart

// added contacts
document.addEventListener("ShoptetCartUpdated", function() {
    addBox();
});
addBox();

function addBox() {
    const cart_contact = $(
        '<div class="detail_contacts" style="margin-top: 0px;"><h3 style="margin-top: 0px;">Pomůže a poradí</h3><p>Jan Fuller</p><p>K dispozici Po-pá 9:00-15:00</p><p><a href="tel:+420737676227">+420 737 676 227</a></p><p><a href="mailto:info@pijumate.cz">info@pijumate.cz</a></p></div>'
    );
    $(cart_contact).prependTo(".ordering-process.in-kosik .cart-content.checkout-box-wrapper");
    $(cart_contact).prependTo(".ordering-process .checkout-box");
}