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/c8eea462-feb1-40f1-805c-9d878f6cb4ab/ep/b20deb12-3d0a-4351-9f63-cbbb9f8e9005?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-b20deb12-3d0a-4351-9f63-cbbb9f8e9005"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
