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/54a234f8-8ace-4fd2-b838-5da1c7efcd8f/ep/10c98b2a-a197-4a7d-9c9d-0b2d8517c67f?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-10c98b2a-a197-4a7d-9c9d-0b2d8517c67f"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
