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/1161f980-1ac5-4a19-be45-39c932c7051c/ep/e4e6e844-80f3-4d2f-8b9c-d6e97b393690?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-e4e6e844-80f3-4d2f-8b9c-d6e97b393690"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
