a {
    cursor: pointer;
    pointer-events: all;
  }
  #video-wrapper {
    /* width: 100%;  */
    /* height: 360px;  */
    position: relative;
  }
  #video-mp4 { 
    margin: auto; 
    display: block;
  }
  /*
    Caption overlay visibility is controlled by JS toggling .is-visible.
    Default hidden prevents stray characters (like the slash) from showing
    before cuepoints load.
  */
  #video-caption { 
    position: absolute; 
    bottom: 56px; 
    left: 0px;
    display: flex;
    flex-direction: column; 
    justify-content: left;
    align-items: bottom; 
    overflow: visible;
    /* width: 1000px; */
    /* height: 280px; */
    z-index: 777;
	    padding-left: 94px;
	    /* hidden by default */
	    opacity: 0;
	    visibility: hidden;
	    pointer-events: none;
	    transition: opacity .5s ease, visibility 0s linear .5s;
  }

	  #video-caption.is-visible {
	    opacity: 1;
	    visibility: visible;
	    pointer-events: auto;
	    transition: opacity .5s ease;
	  }
  #video-caption:first-of-type {
    z-index: 888;
  }
#video-caption-thumbnail-stack { }

    
  /* Rollover thumbnail stack: static bottom, looping webp middle, white hover top */
  #video-caption-thumbnail-stack {
    position: relative;
    width: 172px;
    height: 82px;
    display: block;
  }
  #video-caption-thumbnail-stack img {
    position: absolute;
    top: 0;
    left: 0;
    width: 172px;
    height: 82px;
    display: block;
    pointer-events: none; /* keep hover on the caption/link */
  }
  #video-caption-thumbnail-static { z-index: 1; opacity: 1; }
  #video-caption-thumbnail { z-index: 2; opacity: 1; transition: opacity 200ms ease; }
  #video-caption-thumbnail-hover { z-index: 3; opacity: 0; transition: opacity 200ms ease; }

  #video-caption:hover #video-caption-thumbnail { opacity: 0; }
  #video-caption:hover #video-caption-thumbnail-hover { opacity: 1; }


  .video-caption-content {
    color: #fff;
    
    font-size: 56px;
    
    line-height: 58px;
    text-transform: none;
    letter-spacing: -2px;
    transition: color .1s ease-in-out;
  }
  #video-caption-title-slash {
    padding-left: 0px; 
    color: #01aeff;
    
  }

  #more-carat {
    position: absolute;
    /* bottom: 20px; */
    /* transform: scaleY(-1); */
    height: 50px;
    z-index: 666;
    display: block;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
  }

  /* #more-carat svg {
    fill: rgba(158, 158, 158, 0.8);
  } */

  #more-carat:hover svg {
    fill: #04acff;;
  }

  #more-carat.active {
    visibility: visible;
    opacity: 1;
  }

  .flip-horizontally {
    transform: scaleX(-1);
  }

  .flip-vertically {
    transform: scaleY(-1);
  }

  .center {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .anchor {
    position: absolute;
    bottom: 90px;
    height: 1px;
    display: block;
  }