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/323ee216-9adb-4aa9-bc0c-6f005d4e8f9f/ep/26e4c355-b935-4734-a9cb-94ef04df8ca1?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-26e4c355-b935-4734-a9cb-94ef04df8ca1"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
