/* Einblendeffekte */
.fade-in {
	animation: fade-in 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


.scale-in-center {
	animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@keyframes scale-in-center {
  0% {
	transform: scale(0);
	opacity: 1;
  }
  100% {
	transform: scale(1);
	opacity: 1;
  }
}


.rotate-in-2-fwd-cw {
	animation: rotate-in-2-fwd-cw 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes rotate-in-2-fwd-cw {
  0% {
    transform: rotate(-45deg) scale(0.25);
    opacity: 0;
  }
  100% {
    transform: rotate(0) scale(1.0);
    opacity: 1;
  }
}


.slide-in-top {
	animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@keyframes slide-in-top {
  0% {
	transform: translateY(-1000px);
	opacity: 0;
  }
  100% {
	transform: translateY(0);
	opacity: 1;
  }
}


.slide-in-topright {
	animation: slide-in-topright 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@keyframes slide-in-topright {
  0% {
    transform: translateY(-1000px) translateX(1000px);
    opacity: 0;
  }
  100% {
    transform: translateY(0) translateX(0);
    opacity: 1;
  }
}


.slide-in-right {
	animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@keyframes slide-in-right {
  0% {
	transform: translateX(1000px);
	opacity: 0;
  }
  100% {
	transform: translateX(0);
	opacity: 1;
  }
}


.slide-in-bottom {
	animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@keyframes slide-in-bottom {
  0% {
	transform: translateY(1000px);
	opacity: 0;
  }
  100% {
	transform: translateY(0);
	opacity: 1;
  }
}


.slide-in-left {
	animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@keyframes slide-in-left {
  0% {
    transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}


.slide-in-elliptic-top-fwd {
	animation: slide-in-elliptic-top-fwd 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@keyframes slide-in-elliptic-top-fwd {
  0% {
	transform: translateY(-600px) rotateX(-30deg) scale(0);
	transform-origin: 50% 100%;
    opacity: 0;
  }
  100% {
	transform: translateY(0) rotateX(0) scale(1);
	transform-origin: 50% 1400px;
    opacity: 1;
  }
}


.slit-in-vertical {
	animation: slit-in-vertical 0.45s ease-out both;
}
@keyframes slit-in-vertical {
  0% {
    transform: perspective(500px) translateZ(-800px) rotateY(90deg);
    opacity: 0;
  }
  54% {
    transform: perspective(500px) translateZ(-160px) rotateY(87deg);
    opacity: 1;
  }
  100% {
    transform: perspective(500px) translateZ(0) rotateY(0);
  }
}


.slit-in-diagonal {
	animation: slit-in-diagonal 1.00s ease-out both;
}
@keyframes slit-in-diagonal {
  0% {
    transform: perspective(500px) translateZ(-800px) rotate3d(-1, 1, 0, -115deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  54% {
    transform: perspective(500px) translateZ(-160px) rotate3d(-1, 1, 0, -87deg);
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    transform: perspective(500px) translateZ(0) rotate3d(-1, 1, 0, 0);
    animation-timing-function: ease-out;
  }
}


.bounce-in-top {
	animation: bounce-in-top 0.8s both;
}
@keyframes bounce-in-top {
  0% {
	transform: translateY(-500px);
	animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
	transform: translateY(0);
	animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
	transform: translateY(-65px);
	animation-timing-function: ease-in;
  }
  72% {
	transform: translateY(0);
	animation-timing-function: ease-out;
  }
  81% {
	transform: translateY(-28px);
	animation-timing-function: ease-in;
  }
  90% {
	transform: translateY(0);
	animation-timing-function: ease-out;
  }
  95% {
	transform: translateY(-8px);
	animation-timing-function: ease-in;
  }
  100% {
	transform: translateY(0);
	animation-timing-function: ease-out;
  }
}


.bounce-in-topright {
	animation: bounce-in-topright 0.8s both;
}
@keyframes bounce-in-topright {
  0% {
	transform: translateX(600px) translateY(-500px);
	animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
	transform: translateX(0) translateY(0);
	animation-timing-function: ease-out;
	opacity: 1;
  }
  55% {
	transform: translateX(68px) translateY(-65px);
	animation-timing-function: ease-in;
  }
  72% {
	transform: translateX(0) translateY(0);
	animation-timing-function: ease-out;
  }
  81% {
	 transform: translateX(32px) translateY(-28px);
	animation-timing-function: ease-in;
  }
  90% {
	transform: translateX(0) translateY(0);
	animation-timing-function: ease-out;
  }
  95% {
	transform: translateX(8px) translateY(-8px);
	animation-timing-function: ease-in;
  }
  100% {
	transform: translateX(0) translateY(0);
	animation-timing-function: ease-out;
  }
}


.bounce-in-left {
	animation: bounce-in-left 1.1s both;
}
@keyframes bounce-in-left {
  0% {
    transform: translateX(-600px);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateX(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateX(-68px);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateX(-32px);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateX(-8px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
}


.bounce-in-right {
	animation: bounce-in-right 1.1s both;
}
@keyframes bounce-in-right {
  0% {
    transform: translateX(600px);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateX(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateX(68px);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateX(32px);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateX(8px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
}


.bounce-in-fwd {
	animation: bounce-in-fwd 1.1s both;
}
@keyframes bounce-in-fwd {
  0% {
    transform: scale(0);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: scale(1);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: scale(0.7);
    animation-timing-function: ease-in;
  }
  72% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
  81% {
    transform: scale(0.84);
    animation-timing-function: ease-in;
  }
  89% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
  95% {
    transform: scale(0.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
}


.swing-in-bottom-fwd {
	animation: swing-in-bottom-fwd 0.75s cubic-bezier(0.785, 0.135, 0.150, 0.860) both;
}
@keyframes swing-in-bottom-fwd {
  0% {
    transform: perspective(50px) rotateX(100deg);
    transform-origin: bottom;
    opacity: 0;
  }
  100% {
    transform: perspective(50px) rotateX(0);
    transform-origin: bottom;
    opacity: 1;
  }
}
	

.swing-in-left-fwd {
	animation: swing-in-left-fwd 0.75s cubic-bezier(0.175, 0.885, 0.320, 1.0) both;
}
@keyframes swing-in-left-fwd {
  0% {
    transform: perspective(500px) rotateY(100deg);
    transform-origin: left;
    opacity: 1;
  }
  100% {
    transform: perspective(500px) rotateY(0);
    transform-origin: left;
    opacity: 1;
  }
}


/* Ein- und Ausblendeffekte */
.fade-inout {
	animation: fade-inout 1.5s 2 alternate both;
}
@keyframes fade-inout {
  0% {
	opacity: 0;
	animation-timing-function: ease-in-out;
  }
  30%, 100% {
	opacity: 1;
  }
}


.scale-inout-center {
	animation: scale-inout-center 2.5s 2 alternate both;
}
@keyframes scale-inout-center {
  0% {
	transform: scale(0);
	opacity: 1;
	animation-timing-function: ease-in-out;
  }
  20%, 100% {
	transform: scale(1);
	opacity: 1;
	}
}


.scale-inout-center-bck-fwd {
	animation: scale-inout-center-bck-fwd 5s linear both;
}
@keyframes scale-inout-center-bck-fwd {
  0% {
	transform: scale(0);
	opacity: 1;
	animation-timing-function: ease-in-out;
  }
  7%, 93% {
	transform: scale(1);
	opacity: 1;
	}
  100% {
	transform: scale(2);
	opacity: 0;
	animation-timing-function: ease-in-out;
	}
}


.slide-inout-top {
	animation: slide-inout-top 2s 2 alternate both;
}
@keyframes slide-inout-top {
  0% {
	transform: translateY(-300px);
	opacity: 0;
	animation-timing-function: ease-in-out;
  }
  30%, 100% {
	transform: translateY(0);
	opacity: 1;
  }
}


.slide-inout-top-to-bottom {
	animation: slide-inout-top-to-bottom 5s linear both;
}
@keyframes slide-inout-top-to-bottom {
  0% {
	transform: translateY(-300px);
	opacity: 0;
	animation-timing-function: ease-in-out;
  }
  7%, 94% {
	transform: translateY(0);
	opacity: 1;
  }
  100% {
	transform: translateY(300px);
	opacity: 0;
	animation-timing-function: ease-in-out;
  }
}


/* Sonstige Effekte */
.heartbeat {
	animation: heartbeat 1.5s ease-in-out infinite both;
}
@keyframes heartbeat {
  from {
	transform: scale(1);
	transform-origin: center center;
	animation-timing-function: ease-out;
  }
  10% {
	transform: scale(0.91);
	animation-timing-function: ease-in;
  }
  17% {
	transform: scale(0.98);
	animation-timing-function: ease-out;
  }
  33% {
	transform: scale(0.87);
	animation-timing-function: ease-in;
  }
  45% {
	transform: scale(1);
	animation-timing-function: ease-out;
  }
}


.wobble-hor-bottom {
	animation: wobble-hor-bottom 1.1s infinite both;
}
@keyframes wobble-hor-bottom {
  0%,
  100% {
	transform: translateX(0%);
	transform-origin: 50% 50%;
  }
  15% {
	transform: translateX(-10px) rotate(-6deg);
  }
  30% {
	transform: translateX(10px) rotate(6deg);
  }
  45% {
	transform: translateX(-5px) rotate(-3.6deg);
  }
  60% {
	transform: translateX(5px) rotate(2.4deg);
  }
  75% {
	transform: translateX(-2px) rotate(-1.2deg);
  }
}


.jello-horizontal {
	animation: jello-horizontal 0.9s infinite both;
}
@keyframes jello-horizontal {
  0% {
	transform: scale3d(1, 1, 1);
  }
  30% {
	transform: scale3d(1.25, 0.75, 1);
  }
  40% {
	transform: scale3d(0.75, 1.25, 1);
  }
  50% {
	transform: scale3d(1.15, 0.85, 1);
  }
  65% {
	transform: scale3d(0.95, 1.05, 1);
  }
  75% {
	transform: scale3d(1.05, 0.95, 1);
  }
  100% {
	transform: scale3d(1, 1, 1);
  }
}


.kenburns-bottom {
	animation: kenburns-bottom 5s ease-out both;
}
@keyframes kenburns-bottom {
  0% {
	transform: scale(1.25) translateY(0);
	transform-origin: 50% 84%;
  }
  100% {
	transform: scale(1) translateY(0);
	transform-origin: bottom;
  }
}