 .load-components {
    display: none;
 }

 img.load {
    -webkit-animation: anim 2s infinite linear;
    animation: anim 2s infinite linear;
    
    left: 0;
    position: absolute;    
    width: 100px;
    left: 50%;    
    margin-left: -50px;
    top: 50%;
    margin-top: -50px;
    z-index: 2147483647;
	}

@-webkit-keyframes anim {
    from {-webkit-transform: rotateY(0deg);}
    to {-webkit-transform: rotateY(360deg);}
}

@keyframes anim {
    from {transform: rotateY(0deg);}
    to {transform: rotateY(360deg);}
}

.bg-page-load {
	background: #FFF;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 9999;
}

.load-msg {
	font-size: 20px;
    font-style: italic;
    height: 40px;
    margin-top: 70px;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    top: 50%;
    width: 100%;
    z-index: 9999;
}