<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Styles for Fusion : Autoplay Video
*/

.fsn-video-autoplay {
  position:relative;
  line-height:0;
}
.fsn-video-autoplay video {
  width:100%;
  height:auto;
}
.fsn-video-autoplay .video-autoplay-overlay  {
  display:block;
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
  width:100%;
  height:100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 50%,rgba(0,0,0,0.6) 100%) !important;
}
.fsn-video-autoplay .video-autoplay-pause  {
  position:absolute;
  bottom:15px;
  left:15px;
  z-index:2;
  display: block;
  width:48px;
  height:48px;
  margin:0;
  padding:0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  border:0;
  border-radius:0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background:url('images/baseline-pause.svg') no-repeat center center;
  background-size:contain;
}
.fsn-video-autoplay .video-autoplay-pause.paused  {
  background-image:url('images/baseline-play_arrow.svg');
}</pre></body></html>