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/710cc550-3ffc-4cce-8214-71eb9b49c138/ep/18d39e0c-f85e-42a9-a55f-7d6490a95738?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-18d39e0c-f85e-42a9-a55f-7d6490a95738"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
