function redcircleIframe() {
    let iframe = document && document.createElement && document.createElement("iframe");
    iframe.setAttribute("style","border: none;max-width: 100%;width:1px;min-width:100%;");
    iframe.setAttribute("height", 170);
    iframe.setAttribute("scrolling", "no");
    iframe.setAttribute("src", "https://redcircle.com/embedded-player/sh/8571235b-e106-40c9-a1c9-df7747913214/ep/db7b535b-7ecd-4798-bf09-8735cfa5b462?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-db7b535b-7ecd-4798-bf09-8735cfa5b462"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
