.animated {
	-webkit-animation-duration: 10s;
	animation-duration: 10s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both
}
.animated.infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite
}
@-webkit-keyframes zoomIn {
0% {
 -webkit-transform:scale3d(1, 1, 1);
transform:scale3d(1, 1, 1)
}
100% {
-webkit-transform:scale3d(2.3, 2.3, 2.3);
transform:scale3d(2.3, 2.3, 2.3)
}
}
@keyframes zoomIn {
0% {
 -webkit-transform:scale3d(1, 1, 1);
transform:scale3d(1, 1, 1)
}
100% {
-webkit-transform:scale3d(2.3, 2.3, 2.3);
transform:scale3d(1.2, 1.2, 1.2)
}
}
.zoomIn {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn
}
