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/18337a54-5fb6-4500-a119-e980acd9a3d7/ep/454945f1-2cf1-4c40-91e3-1505c123ff42?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-454945f1-2cf1-4c40-91e3-1505c123ff42"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
