.container-tip-top-ecards-3d-carousel {
	margin: 4% auto;
	width: 250px;
	height: 250px;
	position: relative;
	perspective: 1000px;
}

#tip-top-ecards-3d-carousel {
	width: 100%;
	height: 100%;
	position: absolute;
	transform-style: preserve-3d;
	animation: rotation 25s infinite alternate;
}

#tip-top-ecards-3d-carousel:hover{
	animation-play-state: paused;
}

#tip-top-ecards-3d-carousel figure{
	display: block;
	position: absolute;
	width: 200px;
	height: 200px;
	left: 10px;
	top: 10px;
	background: #4169E1;
	overflow: hidden;
	border: solid 5px #4169E1;
}

#tip-top-ecards-3d-carousel figure:nth-child(1){transform: rotateY(0deg) translateZ(300px);}

#tip-top-ecards-3d-carousel figure:nth-child(2) { transform: rotateY(40deg) translateZ(300px);}

#tip-top-ecards-3d-carousel figure:nth-child(3) { transform: rotateY(80deg) translateZ(300px);}

#tip-top-ecards-3d-carousel figure:nth-child(4) { transform: rotateY(120deg) translateZ(300px);}

#tip-top-ecards-3d-carousel figure:nth-child(5) { transform: rotateY(160deg) translateZ(300px);}

#tip-top-ecards-3d-carousel figure:nth-child(6) { transform: rotateY(200deg) translateZ(300px);}

#tip-top-ecards-3d-carousel figure:nth-child(7) { transform: rotateY(240deg) translateZ(300px);}

#tip-top-ecards-3d-carousel figure:nth-child(8) { transform: rotateY(280deg) translateZ(300px);}

#tip-top-ecards-3d-carousel figure:nth-child(9) { transform: rotateY(320deg) translateZ(300px);}

@keyframes rotation {
	from{
		transform: rotateY(0deg);
	}
	to{
		transform: rotateY(360deg);
	}
}