/****************************************************************************
 * custom.css
 *     : Extended styles not found in the original theme.
 ****************************************************************************/
/* Background Video: */
.background-video
{
  display: block;
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
/*height: 56.25vw; /* 1.777778 aspect ratio */
/*max-height: 90vh; */
}
.background-video .background-video-blocker
{
  display: block;
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;

  background: rgba(0,0,0,0.5);
  background: radial-gradient(circle, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);

  pointer-events: all;
}
.background-video .background-video-container
{
  display: block;
  position: relative;
  max-width: none;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;

  background-size: contain;
  background-repeat: no-repeat;
	
  pointer-events: none;
}
.background-video .background-video-container video
{
  display: block;
  position: absolute;
  visibility: visible;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;

  top: 50%;
  left: 50%;
/*z-index: -100; */
  transform: translateX(-50%) translateY(-50%);
	
  pointer-events: none;
}