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/73f2ae77-2bb5-4c40-ac98-6f567f210900/ep/0d172791-3146-4067-8f20-613375a69894?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-0d172791-3146-4067-8f20-613375a69894"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
