/*
Name: animation.css
Version: 1.0
*/

/* ########### Open Sub-Sub-Menu ########### */

@keyframes scaling {
	0% {
		transform-origin: left top;
		transform: scale(0);
	}
	100% {
		transform-origin: left top;
		transform: scale(1);
	}
}

@keyframes wechseln {
	0% {
		opacity: 0;
	}
	20% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	60% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

.gallery figure:nth-of-type(2) {
	animation-delay: 5s;
	opacity: 0;
}
.gallery figure:nth-of-type(3) {
	animation-delay: 10s;
	opacity: 0;
}
.gallery figure:nth-of-type(4) {
	animation-delay: 15s;
	opacity: 0;
}
.gallery figure:nth-of-type(5) {
	animation-delay: 20s;
	opacity: 0;
}
.gallery figure:nth-of-type(6) {
	animation-delay: 25s;
	opacity: 0;
}

.gallery_smal figure:nth-of-type(2) {
	animation-delay: 5s;
	opacity: 0;
}
.gallery_smal figure:nth-of-type(3) {
	animation-delay: 10s;
	opacity: 0;
}
.gallery_smal figure:nth-of-type(4) {
	animation-delay: 15s;
	opacity: 0;
}
.gallery_smal figure:nth-of-type(5) {
	animation-delay: 20s;
	opacity: 0;
}
.gallery_smal figure:nth-of-type(6) {
	animation-delay: 25s;
	opacity: 0;
}