function isTheater(){return document.querySelector("body").classList.contains("is-theater")}window.playerHeight=()=>document.getElementById("player__parent").getBoundingClientRect().height;window.setHoldersHeight=()=>{const n=["quiz","poll","chat","playlist-replace","online-reporting"];n.forEach((t,i)=>{const r=document.getElementById(t+"-holder");r.hasChildNodes()?window.innerWidth>=1200?setTimeout(()=>{r.style.height=n[i]=="chat"&&document.querySelector(".mall_chat-wrapper").classList.contains("mall_chat-hidden")?"auto":n[i]=="online-reporting"&&document.querySelector(".live-reports_wrapper").classList.contains("live-reports_hidden")?"auto":isTheater()?"400px":window.playerHeight()+"px"},5):r.style.height=n[i]=="poll"?window.playerHeight()+"px":"auto":r.style.height="auto"})};window.setHolderHeight=n=>{const t=document.getElementById(n);t.style.height=window.innerWidth>=1200?t.hasChildNodes()?playerHeight()+"px":"auto":n=="poll-holder"?t.hasChildNodes()?playerHeight()+"px":"auto":"auto"};window.onload=()=>{window.addEventListener("resize",setHoldersHeight)}