/* **** VIDEO FILTER **** */

.video-inline-wrapper {
  display:inline-block;
  width:100%;
  margin-bottom:25px;
  text-align:center;
}

.video-inline,
.video-thumbnail {
  display:inline-block;
}

/* https://stackoverflow.com/a/3029434 */
.video-thumbnail {
  position:relative;
  width:192px;
  height:144px;
  display:block;
  margin:auto;
}

.video-thumbnail:hover {
  cursor:pointer;
}

.video-thumbnail img {
  max-width:100%;
  max-height:100%;
}
.video-youtube .video-thumbnail img,
.video-vimeo .video-thumbnail img {
  width:100%;
  height:100%;
}

/* https://stackoverflow.com/a/44692838 */
/* https://www.w3.org/Style/Examples/007/center.en.html */
.video-thumbnail .fa {
  position:absolute;
  font-size:3em;
  color:#ff0000;
  background-image: radial-gradient(at center, white 40%, transparent 40%);
  left:50%;
  top:50%;
  margin-right:-50%;
  transform: translate(-50%, -50%);
}

.video-thumbnail:hover .fa {
  text-shadow:0 0 3px #fff;
}

.video-title {
  font-size:0.85em;
  display:block;
  margin-top:5px;
}

.video-title:hover {
  cursor:pointer;
  text-decoration:underline;
}
