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/00190646-27db-4870-a174-243a41936b9b/ep/0ad0ee68-9da7-4c11-89d8-e308a7472b3e?");
    Array.prototype.forEach.call(document.getElementsByClassName("redcirclePlayer-0ad0ee68-9da7-4c11-89d8-e308a7472b3e"), el => {
        if (el.getElementsByTagName("iframe").length === 0) {
            el.appendChild(iframe)
        }
    })
}
document.addEventListener("DOMContentLoaded", redcircleIframe)
