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/62d83436-278b-4db3-a2c2-5d735ac87409/ep/6048f5ae-9b82-47dc-a190-6dadc19c30c6?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-6048f5ae-9b82-47dc-a190-6dadc19c30c6"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
