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/76598670-e4f2-44fa-8cfa-ecb36f4e6ac3/ep/3d100b33-b466-4740-928c-1f2dc7daa5c5?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-3d100b33-b466-4740-928c-1f2dc7daa5c5"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
