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/c3c784fc-1d5d-4d9e-9488-314dea1dd91a/ep/a02b9a67-b7fa-4168-8c2b-317927574d1e?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-a02b9a67-b7fa-4168-8c2b-317927574d1e"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
