.preloader { position:fixed; top:0; left:0; right:0; bottom:0; background:#fff; z-index:9999; }

.preloader-ripple {
    display: inline-block;
    width: 64px;
    height: 64px;
    position: relative; left:50%; top:50%; margin:-64px 0 0 -32px;
}
.preloader-text {
    display: inline-block;
    left:0;
    padding: 25px 15px 15px 15px;
    position: absolute; 
    right: 0; 
    text-align: center;
    top:50%; 
}
.preloader-info {
    color: #999;
    display: block;
    font-style: italic;
    padding-top: 5px;
}
.preloader-ripple div {
    position: absolute;
    border: 4px solid #00a185;
    opacity: 1;
    border-radius: 50%;
    animation: preloader-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.preloader-ripple div:nth-child(2) {
    animation-delay: -0.5s;
}

@keyframes preloader-ripple {
	0% {
	    top: 28px;
	    left: 28px;
	    width: 0;
	    height: 0;
	    opacity: 1;
	}
	100% {
	    top: -1px;
	    left: -1px;
	    width: 58px;
	    height: 58px;
	    opacity: 0;
	}
}