/* centered play badge on video cards */
.pwg-hover-play{
  position:absolute;
  left:50%; top:50%;
  transform:translate(-50%,-50%);
  z-index:3;
  font-size:46px;                 /* tweak if your thumbs are bigger */
  color:rgba(255,255,255,.92);
  text-shadow:0 2px 8px rgba(0,0,0,.6);
  pointer-events:none;            /* keep the link clickable */
  transition:opacity .15s ease;
}

/* hide the badge while the hover preview is shown */
#thumbnails li.gthumb:hover .pwg-hover-play{ opacity:.05; }

