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/1c6abd69-2dbd-4673-b042-299f8216f82d/ep/32e6f9d1-f4f9-4b28-b266-7aab2bc1877a?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-32e6f9d1-f4f9-4b28-b266-7aab2bc1877a"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
