.bubblingG {
	text-align: center;
	width:190px;
	height:119px;
	margin: auto;
}

.bubblingG span {
	display: inline-block;
	vertical-align: middle;
	width: 24px;
	height: 24px;
	margin: 59px auto;
	background: rgb(25, 25, 25);
	border-radius: 119px;
		-o-border-radius: 119px;
		-ms-border-radius: 119px;
		-webkit-border-radius: 119px;
		-moz-border-radius: 119px;
	animation: bubblingG 0.975s infinite alternate;
		-o-animation: bubblingG 0.975s infinite alternate;
		-ms-animation: bubblingG 0.975s infinite alternate;
		-webkit-animation: bubblingG 0.975s infinite alternate;
		-moz-animation: bubblingG 0.975s infinite alternate;
}

#bubblingG_1 {
	animation-delay: 0s;
		-o-animation-delay: 0s;
		-ms-animation-delay: 0s;
		-webkit-animation-delay: 0s;
		-moz-animation-delay: 0s;
}

#bubblingG_2 {
	animation-delay: 0.2895s;
		-o-animation-delay: 0.2895s;
		-ms-animation-delay: 0.2895s;
		-webkit-animation-delay: 0.2895s;
		-moz-animation-delay: 0.2895s;
}

#bubblingG_3 {
	animation-delay: 0.589s;
		-o-animation-delay: 0.589s;
		-ms-animation-delay: 0.589s;
		-webkit-animation-delay: 0.589s;
		-moz-animation-delay: 0.589s;
}



@keyframes bubblingG {
	0% {
		width: 24px;
		height: 24px;
		background-color:rgb(30, 30, 30);
		transform: translateY(0);
	}

	100% {
		width: 57px;
		height: 57px;
		background-color:rgb(207, 207, 207);
		transform: translateY(-50px);
	}
}

@-o-keyframes bubblingG {
	0% {
		width: 24px;
		height: 24px;
		background-color:rgb(30, 30, 30);
		-o-transform: translateY(0);
	}

	100% {
		width: 57px;
		height: 57px;
		background-color:rgb(207,207,207);
		-o-transform: translateY(-50px);
	}
}

@-ms-keyframes bubblingG {
	0% {
		width: 24px;
		height: 24px;
		background-color:rgb(30, 30, 30);
		-ms-transform: translateY(0);
	}

	100% {
		width: 57px;
		height: 57px;
		background-color:rgb(207,207,207);
		-ms-transform: translateY(-50px);
	}
}

@-webkit-keyframes bubblingG {
	0% {
		width: 24px;
		height: 24px;
		background-color:rgb(30, 30, 30);
		-webkit-transform: translateY(0);
	}

	100% {
		width: 57px;
		height: 57px;
		background-color:rgb(207,207,207);
		-webkit-transform: translateY(-50px);
	}
}

@-moz-keyframes bubblingG {
	0% {
		width: 24px;
		height: 24px;
		background-color:rgb(30, 30, 30);
		-moz-transform: translateY(0);
	}

	100% {
		width: 57px;
		height: 57px;
		background-color:rgb(207,207,207);
		-moz-transform: translateY(-50px);
	}
}