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/b931d246-107e-4928-96de-7ca2da75943a/ep/172c105d-86c4-4f0d-b027-18bb509e26df?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-172c105d-86c4-4f0d-b027-18bb509e26df"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
