/* =============================================================================
 * ce_video_background
 * ========================================================================== */

.ce_video_background {
	position: relative;
	overflow: hidden;
}

.ce_video_background .ce_video_background_inside {
	position: relative;
	z-index: 10
}

.ce_video_background .video {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.ce_video_background .video-overlay {
	opacity: 0.85;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	background-color: var(--accentColor);
}