.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 Arm tattoo armrest is a new armrest from Ghost Tattoo Co that offers a larger and more comfortable pad, with full spectrum, hands-free adjustment. The larger armrest makes for a better workspace for your tattoo and a more comfortable experience for your customer. ( 17"x17" ) A patent pending industry-first, foot lever actuation controls height adjustment (24 inches - 36 inches) and our Ghost proprietary patent pending “quick lock” system allows for completely knobless control of angle and rotational position of your pad providing ultimate adjustability. Materials: Aerospace grade aluminum, Carbon Steel. This is for the Armrest Base only. Please purchased the Arm Pad Top separately if you need that as well. ▶ 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"; });