
html {
  box-sizing: border-box;
  height: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  height: 100%;
  margin: 0;
  width:100%;
}

.video-wrapper {
  width:100%;
  height:100vh;
  overflow: hidden;
  
  video {
    object-fit: cover;
    width:100%;
    height:100%;
  }
}


div#preloader {
	height: 100%;
	left: 0;
	overflow: visible;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 99999;
}
