



<style>
  .copy-wrapper {
    position: relative;
    /*display: inline-block;*/
  }

  .copy-btn,
  .copied-message {
    transition: opacity 0.3s ease;
  }

  .copy-btn.hidden {
    opacity: 0;
    pointer-events: none;
  }

  .copied-message {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    color: #16a34a;
    font-size: 14px;
    white-space: nowrap;
  }

  .copied-message.show {
    opacity: 1;
  }
</style>

<script>
  async function copyToClipboard(text, button) {
    try {
      await navigator.clipboard.writeText(text);
    } catch (err) {
      const tempInput = document.createElement('input');
      tempInput.value = text;
      document.body.appendChild(tempInput);
      tempInput.select();
      document.execCommand('copy');
      document.body.removeChild(tempInput);
    }

    showCopiedState(button);
  }

  function showCopiedState(button) {
    const wrapper = button.parentElement;
    const message = wrapper.querySelector('.copied-message');

    clearTimeout(wrapper._copyTimeout1);
    clearTimeout(wrapper._copyTimeout2);

    button.classList.add('hidden');
    message.classList.add('show');

    wrapper._copyTimeout1 = setTimeout(() => {
      message.classList.remove('show');
    }, 1500);

    wrapper._copyTimeout2 = setTimeout(() => {
      button.classList.remove('hidden');
    }, 1800);
  }
</script>

<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://mediabuyersfactory.com/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://mediabuyersfactory.com/wp-sitemap-posts-post-1.xml</loc></sitemap><sitemap><loc>https://mediabuyersfactory.com/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://mediabuyersfactory.com/wp-sitemap-posts-lp_course-1.xml</loc></sitemap><sitemap><loc>https://mediabuyersfactory.com/wp-sitemap-posts-product-1.xml</loc></sitemap><sitemap><loc>https://mediabuyersfactory.com/wp-sitemap-posts-thim_elementor_kit-1.xml</loc></sitemap><sitemap><loc>https://mediabuyersfactory.com/wp-sitemap-posts-cartflows_step-1.xml</loc></sitemap><sitemap><loc>https://mediabuyersfactory.com/wp-sitemap-taxonomies-category-1.xml</loc></sitemap><sitemap><loc>https://mediabuyersfactory.com/wp-sitemap-taxonomies-wc_square_synced-1.xml</loc></sitemap><sitemap><loc>https://mediabuyersfactory.com/wp-sitemap-taxonomies-product_cat-1.xml</loc></sitemap><sitemap><loc>https://mediabuyersfactory.com/wp-sitemap-users-1.xml</loc></sitemap></sitemapindex>
