
.auto-scale2 {
	z-index: 100;
	animation-duration: 1.5s;
	animation-delay: 0.3s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	opacity: 0;
	animation-name: autoscale2;
}

@keyframes autoscale2 {
    0% { opacity:0; transform: scale(0.1); }
	100% { opacity:1; transform: scale(1); }
}

