.bounce-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #111111;
	z-index: 999999;
}
.bounce-wrapper .bounce {
	width: 68px;
	height: 59px;
	background-color: transparent;
	margin: 0px auto;
	-webkit-animation: bounce 0.5s infinite alternate;
	animation: bounce 0.5s infinite alternate;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -34px 0 0 -30px;
}
@keyframes bounce {
 from {
 transform: translateY(0px);
}
to {
	transform: translateY(-15px);
}
}
@-webkit-keyframes bounce {
 from {
 transform: translateY(0px);
}
to {
	transform: translateY(-15px);
}
}