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/bbe55295-fb16-4280-aef7-6369a0b6be62/ep/f412194e-1e10-4a43-a10c-ea48138254b6?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-f412194e-1e10-4a43-a10c-ea48138254b6"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
