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/bb1b6bff-c267-4c5d-8e42-ab24e5123c01/ep/9cf44c6b-9fdf-42a9-abcb-ee66b2632c0f?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-9cf44c6b-9fdf-42a9-abcb-ee66b2632c0f"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
