/* ========= INFORMATION ============================
	- document:  WP Coder!
	- author:    Dmytro Lobov 
	- url:       https://wow-estore.com/
==================================================== */
@keyframes flash {
  0% { opacity: 1; }
  15% { opacity: 1; }
  20% { opacity: 0; }
  100% { opacity: 0; }
}
.video-watermark {
  position: absolute;
  top: 42%;
  left: 40%;
  z-index: 9999;
  margin: 11px;
  background: #82827d;
  padding: 5px;
  color: white;
  background-color: rgba(0, 0, 0, 0.2);
  animation: flash 15s infinite alternate;
}