window.addEventListener("load", (event) => {
  const liteVimeoEmbeds = document.querySelectorAll('lite-vimeo');
	for (i=0; i < liteVimeoEmbeds.length; i++) {
		let style = document.createElement('style');
		style.innerHTML = '#frame::before { display: none !important; }';
		style.innerHTML += '#frame .lvo-playbtn { transition-property: none; opacity: 1; transform: none; top: initial; bottom: 42px; left: 55px; width: 39px; height: 45px; background: #ffffff; clip-path: polygon(0% 0%, 100% 50%,  0% 100%); }';
		style.innerHTML += '#frame:hover .lvo-playbtn { background: #ffffff; }';
		liteVimeoEmbeds[i].shadowRoot.appendChild(style);
	}
});


