@import "animate.min.css";

@font-face {
    font-family: 'sector 034';
    src: url("sector_034.ttf");
}
@font-face {
    font-family: 'Mechsuit';
    src: url("Mechsuit.otf");
}
.ui-content{
	visibility: hidden;
}
.load-text{
	position: absolute;
	z-index: 102;
}
.load-text.center{
	font-size: 40px;
	top:35vh;
	left: 50%;
    transform: translate(-50%, -50%);
	text-align: center;
	max-height: 100px;
	
	font-family: 'Mechsuit';
}
.load-text.bottom {
	font-size: 1.5vw;
    bottom: 8px;
	z-index:102;
    right: 16px;
}
#preloader .loader-section 
{
	position: fixed;
	top:0;
	left:0;
	width: 50%;
	height: 100%;
	background: #111;
	transition: 1s;
	z-index:100;
	
	
	
	
}


#preloader .loader-section.section-left{
	/* animation: fadeOutLeft 2s infinite; */
	left: 0;
	
	
}
#preloader .loader-section.section-right{
	/* animation: fadeOutRight 2s infinite; */
	left: 50%;
}
 #preloader .loader-section.section-left.loaded{
	animation: fadeOutLeft 2s;
	visibility: hidden;
}
 #preloader .loader-section.section-right.loaded{
	animation: fadeOutRight 2s;
	visibility: hidden;
}
 .loader.loaded{
	 
	opacity:0;
}
#preloader .loaded{
	visibility: hidden;
}
.preloader:before
{
		content: .'';
		position: absolute;
		left: .0;
		width: .50%;
		height: .100%;
		background: red;
		transition: 1s;
		z-index:100;
		
}
.loader,
.loader:before,
.loader:after {
  background: red;
  -webkit-animation: load1 1s infinite ease-in-out;
  animation: load1 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
}
.loader {
  color: red;
  text-indent: -9999em;
  margin: 88px auto;
  position: relative;
  z-index:101;
  font-size: 11px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader:before,
.loader:after {
  position: absolute;
  top: 0;
  content: '';
}
.loader:before {
  left: -1.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader:after {
  left: 1.5em;
}
@-webkit-keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}
@keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}