.preloader{
	width:40px;
	height:40px;
	position:absolute;
	border-radius:10%;
	top:50%;
	transform:translate(-40%,-40%);
	animation:osc-l 1.2s ease infinite;
	background:#333333;

	/* opacity: 0; */
}

#preloaderContainer{

    position: absolute;
	top:0;
	height: 100%;
	width: 100%;
	
	display: flex;
	-webkit-flex-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
    align-items: center;
    
    pointer-events: none;

}

#preloaderContainer p{

    margin-top: 110px;  
	display: block;
	margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    color: #888888;

}

@keyframes osc-l{
	0%{left:45%;}
	50%{left:55%;}
	100%{left:45%;}
}