.ya-product-video-row{ display:flex; align-items:flex-start; } .ya-video-wrapper{ transform: translate(245px, -67px); width: 21%; } .ya-video-wrapper video{ width:100%; border-radius:12px; } .custom-play-btn{ position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:70px; background: rgba(255, 255, 255, 0.65); height:70px; border-radius:50%; display:flex; align-items:center; justify-content:center; cursor:pointer; } .custom-play-btn span{ color:#fff; font-size:30px; } .ya-desc{ width:50%; } @media(max-width:768px){ .ya-product-video-row{ flex-direction:column; align-items:center; } .ya-video-wrapper{ width:100%; margin-left:0; transform:none !important; display:flex; justify-content:center; } .ya-desc{ width:100% } } The Demon Tray is made of the same incredible polycarbonate material as our classic mayo tray to ensure sanitation standards and high-quality performance. Magnetic, removable tray top design. Available in 5 colors, so you can customize your look and mood for the next incredible project. Grab your full setup including Tray base. This offering is for the full system including the Tray Base. The Demon Tray size is 17 inches x 24 inches in comparison to our standard Ghost Tray which is 12 inches x 17 inches. ▶ var video = document.getElementById("proVideo"); var icon = document.getElementById("icon"); var playBtn = document.getElementById("playBtn"); // Play button click playBtn.addEventListener("click", function() { if(video.paused){ video.muted = false; video.play(); icon.innerHTML = "❚❚"; playBtn.style.display = "none"; } else { video.pause(); icon.innerHTML = "▶"; playBtn.style.display = "flex"; } }); // Video pe click → pause + play button show video.addEventListener("click", function () { if (!video.paused) { video.pause(); icon.innerHTML = "▶"; playBtn.style.display = "flex"; } }); // Play hone pe button hide (safety) video.addEventListener("play", function(){ playBtn.style.display = "none"; }); // Pause pe button show video.addEventListener("pause", function(){ playBtn.style.display = "flex"; });