
.animationsobj {
	position: relative;
}

.animationsobj img {
	width: 50px;
	height: 50px;
}



/* ******************** rotateFade ***************** */

.rotateFade-wrap {
	position: relative;
	width: 150px;
	height: 150px;
}

.shakeFadeOut {
	position: absolute;
	left: 70px;
	top: 70px;
	opacity: 1;
}

.animieren .shakeFadeOut {	
	animation-name: schuettelnAusblenden;
  	animation-duration: 2s;
  	animation-timing-function: ease;
  	animation-delay: 1s;
  	animation-iteration-count: 1;
}

.shakeFadeIn {
	position: absolute;
	left: 70px;
	top: 70px;
	opacity: 0;
}

.animieren .shakeFadeIn {	
	animation-name: schuettelnEinblenden;
  	animation-duration: 2s;
  	animation-timing-function: ease;
  	animation-delay: 1s;
  	animation-iteration-count: 1;
}

.rotateFade {
	position: absolute;
	left: 70px;
	top: 70px;
	opacity: 0;
}

.animieren .rotateFade {	
	animation-name: rotierenAusblenden;
  	animation-duration: 3s;
  	animation-timing-function: ease;
  	animation-delay: 3s;
  	animation-iteration-count: 1;
}

.fadeIn {
	position: absolute;
	left: 70px;
	top: 70px;
	opacity: 0;
}

.animieren .fadeIn {	
	animation-name: rotierenEinblenden;
  	animation-duration: 3s;
  	animation-timing-function: ease;
  	animation-delay: 3s;
  	animation-iteration-count: 1;
}



@keyframes schuettelnEinblenden {
  0% {
    transform:  translate(0px,0px)  ;
    opacity: 0;
  }
  10% {
    transform:  translate(-10px,0px)  ;
  }
  20% {
    transform:  translate(10px,0px)  ;
  }
  30% {
    transform:  translate(-10px,0px)  ;
  }
  40% {
    transform:  translate(10px,0px)  ;
  }
  50% {
    transform:  translate(-10px,0px)  ;
  }
  60% {
    transform:  translate(10px,0px)  ;
  }
  70% {
    transform:  translate(-10px,0px)  ;
  }
  80% {
    transform:  translate(10px,0px)  ;
  }
  90% {
    transform:  translate(-10px,0px)  ;
  }
  100% {
    transform:  translate(0px,0px)  ;
    opacity: 1;
  }
}

@keyframes schuettelnAusblenden {
  0% {
    transform:  translate(0px,0px)  ;
    opacity: 1;
  }
  10% {
    transform:  translate(-10px,0px)  ;
  }
  20% {
    transform:  translate(10px,0px)  ;
  }
  30% {
    transform:  translate(-10px,0px)  ;
  }
  40% {
    transform:  translate(10px,0px)  ;
  }
  50% {
    transform:  translate(-10px,0px)  ;
  }
  60% {
    transform:  translate(10px,0px)  ;
  }
  70% {
    transform:  translate(-10px,0px)  ;
  }
  80% {
    transform:  translate(10px,0px)  ;
  }
  90% {
    transform:  translate(-10px,0px)  ;
  }
  100% {
    transform:  translate(0px,0px)  ;
    opacity: 0;
  }
}


@keyframes rotierenAusblenden {
	0% {
		transform: rotate(0deg);
		opacity: 1;
	}

	100% {
		transform: rotate(360deg);
		opacity: 0;
	}
}

@keyframes rotierenEinblenden {
	0% {
		transform: rotate(0deg);
		opacity: 0;
	}

	100% {
		transform: rotate(360deg);
		opacity: 1;
	}
}


/* ******************** elastic ***************** */

.animieren .rotate {
  animation-name: rotateFrames;
  animation-duration: 3s;
  animation-timing-function: ease;
  animation-delay: 1s;
  animation-iteration-count: 1;
  animation-direction: normal;
}

@keyframes rotateFrames {
  0%{
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3) rotate(720deg);
    transform: scale3d(0.3, 0.3, 0.3) rotate(720deg);
  }
  100%{
    opacity: 1;
    -webkit-transform: scale3d(1,1,1) rotate(15deg);
    transform: scale3d(1,1,1) rotate(15deg);
  }
}


/* ******************** elastic ***************** */

.animieren .elastic {
  animation-name: elasticFrames;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-delay: 1s;
  animation-iteration-count: 1;
  animation-direction: normal;
}

@keyframes elasticFrames {
  0%{
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  30%{
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    -ms-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }
  40%{
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    -ms-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }
  60%{
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    -ms-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }
  100%{
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}




/* ******************** tadaa ***************** */

.animieren .tadaa {
  animation: tadaaFrames linear 1s;
  animation-delay: 1s;
  animation-iteration-count: 1;
  transform-origin: 50% 50%;
}

@keyframes tadaaFrames{
  0% {
    transform:  rotate(0deg) scaleX(1.00) scaleY(1.00) ;
  }
  10% {
    transform:  rotate(-3deg) scaleX(0.80) scaleY(0.80) ;
  }
  20% {
    transform:  rotate(-3deg) scaleX(0.80) scaleY(0.80) ;
  }
  30% {
    transform:  rotate(3deg) scaleX(1.20) scaleY(1.20) ;
  }
  40% {
    transform:  rotate(-3deg) scaleX(1.20) scaleY(1.20) ;
  }
  50% {
    transform:  rotate(3deg) scaleX(1.20) scaleY(1.20) ;
  }
  60% {
    transform:  rotate(-3deg) scaleX(1.20) scaleY(1.20) ;
  }
  70% {
    transform:  rotate(3deg) scaleX(1.20) scaleY(1.20) ;
  }
  80% {
    transform:  rotate(-3deg) scaleX(1.20) scaleY(1.20) ;
  }
  90% {
    transform:  rotate(3deg) scaleX(1.20) scaleY(1.20) ;
  }
  100% {
    transform:  rotate(0deg) scaleX(1.20) scaleY(1.20) ;
  }
}




/* ******************** rotate out ***************** */

.animieren .rotate_out {
  animation: rotateoutFrames linear 2s;
  animation-delay: 1s;
  animation-iteration-count: 1;
  transform-origin: 50% 50%;

}

@keyframes rotateoutFrames{
  0% {
    opacity:0;
    transform: rotate(-200deg) ;
  }
  100% {
    opacity:1;
    transform: rotate(0deg) ;
  }
}




/* ******************** wobble ***************** */

.animieren .wobble {
  animation: wobbleFrames linear 1s;
  animation-delay: 1s;
  animation-iteration-count: 1;
  transform-origin: 50% 50%;
}

@keyframes wobbleFrames{
  0% {
    transform:  translate(0px,0px)  rotate(0deg) ;
  }
  15% {
    transform:  translate(-25px,0px)  rotate(-5deg) ;
  }
  30% {
    transform:  translate(20px,0px)  rotate(3deg) ;
  }
  45% {
    transform:  translate(-15px,0px)  rotate(-3deg) ;
  }
  60% {
    transform:  translate(10px,0px)  rotate(2deg) ;
  }
  75% {
    transform:  translate(-5px,0px)  rotate(-1deg) ;
  }
  100% {
    transform:  translate(0px,0px)  rotate(0deg) ;
  }
}



/* ******************** swing ***************** */

.animieren .swing {
  animation: swingFrames linear 1s;
  animation-delay: 1s;
  animation-iteration-count: 1;
  transform-origin: 50% 0%;
}

@keyframes swingFrames{
  0% {
    transform:  rotate(0deg) ;
  }
  20% {
    transform:  rotate(15deg) ;
  }
  40% {
    transform:  rotate(-10deg) ;
  }
  60% {
    transform:  rotate(5deg) ;
  }
  80% {
    transform:  rotate(-5deg) ;
  }
  100% {
    transform:  rotate(0deg) ;
  }
}


/* ******************** shake ***************** */

.animieren .shake{
  animation: shakeFrames linear 1s;
  animation-delay: 1s;
  animation-iteration-count: 1;
  transform-origin: 50% 50%;
}

@keyframes shakeFrames{
  0% {
    transform:  translate(0px,0px)  ;
  }
  10% {
    transform:  translate(-10px,0px)  ;
  }
  20% {
    transform:  translate(10px,0px)  ;
  }
  30% {
    transform:  translate(-10px,0px)  ;
  }
  40% {
    transform:  translate(10px,0px)  ;
  }
  50% {
    transform:  translate(-10px,0px)  ;
  }
  60% {
    transform:  translate(10px,0px)  ;
  }
  70% {
    transform:  translate(-10px,0px)  ;
  }
  80% {
    transform:  translate(10px,0px)  ;
  }
  90% {
    transform:  translate(-10px,0px)  ;
  }
  100% {
    transform:  translate(0px,0px)  ;
  }
}

/* ******************** bounce ********************* */

.animieren .bounce {
  animation: bounceFrames linear .8s;
  animation-delay: 1s;
  animation-iteration-count: 1;
  transform-origin: 50% 50%;
}

@keyframes bounceFrames{
  0% {
    transform:  translate(0px,0px)  ;
  }
  15% {
    transform:  translate(0px,-25px)  ;
  }
  30% {
    transform:  translate(0px,0px)  ;
  }
  45% {
    transform:  translate(0px,-15px)  ;
  }
  60% {
    transform:  translate(0px,0px)  ;
  }
  75% {
    transform:  translate(0px,-5px)  ;
  }
  100% {
    transform:  translate(0px,0px)  ;
  }
}



/* *********** slide-back ************ */


.animieren .slide-back {
	animation: slide-bck-center 2s cubic-bezier(0.470, 0.000, 0.745, 0.715) 2s infinite both;
}


/* ----------------------------------------------
 * Generated by Animista on 2019-9-12 17:30:27
 * Licensed under FreeBSD License.animieren .
 * See http://animista.animieren .net/license for more info.animieren . 
 * w: http://animista.animieren .net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-bck-center
 * ----------------------------------------
 */
@keyframes slide-bck-center {
  0% {
    transform: translateZ(0);
  }
  100% {
    transform: translateZ(-400px);
  }
}


