.animation-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
}

.animation-wrapper > span {
	background: #FDFDFD;
	height: 10px;
	width: 10px;
	margin: 7px;
	transform: translateY(0);
	border-radius: 50px;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	animation: bounce 600ms infinite alternate;
}

.animation-wrapper > span:nth-of-type(2) {
	animation-delay: 250ms;
}

.animation-wrapper > span:nth-of-type(3) {
	animation-delay: 350ms;
}

@keyframes bounce {
	to {
		transform: translateY(-.5em);
	}
}


.admininfo { line-height:30px; }

/* /////////////////////////////////////////////////////////////////////////// */
/* /////////////////////////      MOBILE STYLES      ///////////////////////// */
/* /////////////////////////////////////////////////////////////////////////// */


@media (max-width: 1279px) {

}

/* Landscape tablet to iPads */
@media (max-width: 1024px) {

}

/* Portrait tablet to landscape and desktop */
@media (max-width: 979px) {

}

/* Landscape phone to portrait tablet */
@media (max-width: 767px) {

}

/* Landscape phones and down */
@media (max-width: 587px) {
	.admininfo { line-height: 26px; }
}

/* Landscape phones and down */
@media (max-width: 480px) {

}

/* Older phones with super small screens */
@media (max-width: 392px) {

}	