/**
 * VIDEO https://stackoverflow.com/questions/25164239/how-to-display-html5-video-tag-in-circle-shape 
 */
TABLE.webm-table {
  border: 5px solid #EEE !important;
  background-color: #EEE;
  border-collapse: unset;
  border-radius: 10px;
}
TABLE.webm-table TD {
  background-color: white;
  border: 2px solid #EEE !important;
  border-collapse: collapse;
  text-align: left;
}
DIV.webm-wrapper {
	width: 250px;
	height: 250px;
  margin: auto;
}
DIV.webm-frame {
  margin: auto;
	width: 250px;
	height: 250px;
	border-radius: 125px;
	-webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
}
VIDEO.webm-video {
	width: 500px; 
	height: 500px;
	position: relative;
  top: -125px;
  left: -125px;
}
