.vfbp-loading-overlay{
	position:fixed;
	width:100%;
	height:100%;
	top:0;
	left:0;
	
	background-color:rgba(0,0,0,0.6);
}

.vfbp-loading-overlay .vfbp-loading-text{
	height: 0;
	padding-top:8em;
	width: 100%;
	text-align:center;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	
	color:#eee;
}

.loader {
	height: 20px;
	width: 250px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.loader--dot {
	animation-name: loader;
	animation-timing-function: ease-in-out;
	animation-duration: 3s;
	animation-iteration-count: infinite;
	height: 20px;
	width: 20px;
	border-radius: 100%;
	position: absolute;
	/*border: 2px solid black;*/
	background-color: rgba(255,255,255,0.2);
}
.loader--dot:first-child {
	animation-delay: 0.5s;
}
.loader--dot:nth-child(2) {
	animation-delay: 0.4s;
}
.loader--dot:nth-child(3) {
	animation-delay: 0.3s;
}
.loader--dot:nth-child(4) {
	animation-delay: 0.2s;
}
.loader--dot:nth-child(5) {
	animation-delay: 0.1s;
}
.loader--dot:nth-child(6) {
	animation-delay: 0s;
}
.loader--text {
	position: absolute;
	top: 200%;
	left: 0;
	right: 0;
	width: 5em;
	margin: auto;
	color:#eee;
}
.loader--text:after {
	content: "Sending";
	font-weight: bold;
	animation-name: loading-text;
	animation-duration: 3s;
	animation-iteration-count: infinite;
}

@keyframes loader {
	15% {
		transform: translateX(0);
	}
	45% {
		transform: translateX(230px);
	}
	65% {
		transform: translateX(230px);
	}
	95% {
		transform: translateX(0);
	}
}
@keyframes loading-text {
	0% {
		content: "Sending";
	}
	25% {
		content: "Sending.";
	}
	50% {
		content: "Sending..";
	}
	75% {
		content: "Sending...";
	}
}