#loading{
	background-color: #fff;
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 999999;
	margin-top: 0px;
	top: 0px;
}
#loading-center{
	width: 100%;
	height: 100%;
	position: relative;
	}
#loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 120px;
    width: 100px;
    margin-top: -60px; /* vertical center */
    margin-left: -50px; /* horizontal center */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* #loading-center-absolute > img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
    user-select: none;
    pointer-events: none;
} */

.object {
    width: 20px;
    height: 20px;
    background-color: #404ff3;
    border-radius: 50%;
    position: absolute;
    display: inline-block;
}

/* Make the balls show up in a row below the logo */
#object_one, #object_two, #object_three, #object_four, #object_five {
    top: 90px;
}

#prelogo {
    position: absolute;
    left: 48%;
    top: 25%;
    height: 80px;
}


@media only screen and (max-width: 575px) {
    #prelogo {
        position: absolute;
        left: 32% !important;
        top: 40% !important;
    }
}
/* The rest of your animation keyframes stay the same */


/* #loading-center-absolute {
	position: absolute;
	left: 50%;
	top: 50%;
	height: 120px;
	width: 100px;
	margin-top: -10px;
	margin-left: -50px;
	
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

}

#loading-center-absolute > img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px; 
    user-select: none;
    pointer-events: none;
}

.object{
	width: 20px;
	height: 20px;
	background-color: #404ff3;
	-moz-border-radius: 50% 50% 50% 50%;
	-webkit-border-radius: 50% 50% 50% 50%;
	border-radius: 50% 50% 50% 50%;
	margin-right: 20px;
	margin-bottom: 20px;
	position: absolute;	
	display: inline;
} */

.object_zero{
	height: 80px !important;
	
}



#object_one{
	-webkit-animation: object 2s linear infinite;
	 animation: object 2s linear infinite;
	 }
#object_two{ 
	-webkit-animation: object 2s linear infinite -.4s;
	animation: object 2s linear infinite -.4s;
	 }
#object_three{ 
	-webkit-animation: object 2s linear infinite -.8s; 
	animation: object 2s linear infinite -.8s; 
	}
#object_four{ 
	-webkit-animation: object 2s linear infinite -1.2s;
	animation: object 2s linear infinite -1.2s; 
	} 
#object_five{ 
	-webkit-animation: object 2s linear infinite -1.6s; 
	animation: object 2s linear infinite -1.6s; 
	}
	
	
@-webkit-keyframes object{
  0% { left: 100px; top:0}
  80% { left: 0; top:0;}
  85% { left: 0; top: -20px; width: 20px; height: 20px;}
  90% { width: 40px; height: 15px; }
  95% { left: 100px; top: -20px; width: 20px; height: 20px;}
  100% { left: 100px; top:0; }		
	
}		
@keyframes object{
  0% { left: 100px; top:0}
  80% { left: 0; top:0;}
  85% { left: 0; top: -20px; width: 20px; height: 20px;}
  90% { width: 40px; height: 15px; }
  95% { left: 100px; top: -20px; width: 20px; height: 20px;}
  100% { left: 100px; top:0; }
}	
	
	
			