/* Our video background container */
.vidbg-container {
  position: absolute;
  z-index: -1;
/*  top: 0;  */
/*  left: 0;  */
  right: 0;
  bottom: 0;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: #444;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
/*transform: scale(1) translate(200%, 200%);*/
}	

/* The actual video */
.vidbg-container video {
  margin: auto;
  position: absolute;
  z-index: -1;
/*  top: 50%;  */
/*  left: 50%;  */
  bottom: 0;
  right: 0;
/*  transform: translate(-50%, -50%);  */
/*  max-width: none;  */
  opacity: 0;
top: 0;
left: 0;
min-height: 50%;
min-width: 50%;
}

/* The overlay shield */
.vidbg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
  transition: opacity 0.5s ease;
}