/* ----------------------------------------------------- */
/*  ANIMATION STYLES */
/* ----------------------------------------------------- */

@-webkit-keyframes anim-mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}
@keyframes anim-mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}
@-webkit-keyframes anim-mover-horizontal {
  0% {
    transform: translateX(10);
  }
  100% {
    transform: translateX(-10px);
  }
}
@keyframes anim-mover-horizontal {
  0% {
    transform: translateX(10);
  }
  100% {
    transform: translateX(-10px);
  }
}
/* Standard syntax */
@keyframes slide-down {
  from {
    top: 0% !important;
  }

  to {
    top: 50% !important;
  }
} /* Safari 4.0 - 8.0 */
@-webkit-keyframes slide-down {
  from {
    top: 0% !important;
  }

  to {
    top: 50% !important;
  }
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes anim-opacity {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Standard syntax */
@keyframes anim-opacity {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes anim-flyIn {
  from {
    opacity: 1;
    transform: translateX(10%) scale(0);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* Standard syntax */
@keyframes anim-flyIn {
  from {
    opacity: 0;
    transform: translateX(10%) scale(0);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes anim-swing {
  from {
    opacity: 0;
    transform: rotateX(-90deg);
    transition: all 0.5s cubic-bezier(0.36, -0.64, 0.34, 1.76);
  }

  to {
    opacity: 1;
    transform: none;
    transition: all 0.5s cubic-bezier(0.36, -0.64, 0.34, 1.76);
  }
}

/* Standard syntax */
@keyframes anim-swing {
  from {
    opacity: 0;
    transform: rotateX(-90deg);
    transition: all 0.5s cubic-bezier(0.36, -0.64, 0.34, 1.76);
    color: blue;
  }

  to {
    opacity: 1;
    transform: none;
    transition: all 0.5s cubic-bezier(0.36, -0.64, 0.34, 1.76);
    color: black;
  }
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes anim-rotate {
  from {
    opacity: 0;
    transform: rotateX(-540deg);
    transition: all 0.9s cubic-bezier(0.36, -0.64, 0.34, 1.76);
  }

  to {
    opacity: 1;
    transform: none;
    transition: all 0.9s cubic-bezier(0.36, -0.64, 0.34, 1.76);
  }
}

/* Standard syntax */
@keyframes anim-rotate {
  from {
    opacity: 0;
    transform: rotateX(-540deg);
    transition: all 0.9s cubic-bezier(0.36, -0.64, 0.34, 1.76);
  }

  to {
    opacity: 1;
    transform: none;
    transition: all 0.9s cubic-bezier(0.36, -0.64, 0.34, 1.76);
  }
} 
.anim-mover {
  -webkit-animation: anim-mover 2s infinite alternate;
  animation: anim-mover 1s infinite alternate;
}
.anim-mover-horizontal {
  -webkit-animation: anim-mover-horizontal 2s infinite alternate;
  animation: anim-mover-horizontal 1s infinite alternate;
}
/*Add css to animate tr elements in dependent table*/
.anim-div {
  perspective: 100px;
}
.anim-swing {
  -webkit-animation-name: anim-swing; /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 2s; /* Safari 4.0 - 8.0 */
  animation-name: anim-swing;
  animation-duration: 2s;
}
/*end tr elements*/

.anim-slidedown {
  -webkit-animation-name: slide-down; /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 2s; /* Safari 4.0 - 8.0 */
  animation-name: slide-down;
  animation-duration: 2s;
}
.anim-opacity {
  -webkit-animation-name: anim-opacity; /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 2s; /* Safari 4.0 - 8.0 */
  animation-name: anim-opacity;
  animation-duration: 2s;
}

.anim-flyIn {
  -webkit-animation-name: anim-flyIn; /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 1.5s; /* Safari 4.0 - 8.0 */
  animation-name: anim-flyIn;
  animation-duration: 1.5s;
}
.anim-rotate-wheel {
  -webkit-backface-visibility: hidden;
  -webkit-animation: anim-wheel 3s linear infinite 0s;
  -moz-animation: anim-wheel 3s linear infinite 0s;
  -o-animation: anim-wheel 3s linear infinite 0s;
  -ms-animation: anim-wheel 3s linear infinite 0s;
  animation: anim-wheel 2s linear normal;
}
.anim-rotate-wheel-infinite {
  -webkit-backface-visibility: hidden;
  -webkit-animation: anim-wheel 1s linear infinite 0s;
  -moz-animation: anim-wheel 1s linear infinite 0s;
  -o-animation: anim-wheel 1s linear infinite 0s;
  -ms-animation: anim-wheel 1s linear infinite 0s;
  animation: anim-wheel 3s linear infinite alternate;
}
.anim-rotate-wheel:hover {
  animation: none;
}
.anim-rotate {
  -webkit-backface-visibility: hidden;
  -webkit-animation: anim-rotateY 1s linear infinite 0s;
  -moz-animation: anim-rotateY 1s linear infinite 0s;
  -o-animation: anim-rotateY 1s linear infinite 0s;
  -ms-animation: anim-rotateY 1s linear infinite 0s;
  animation: anim-rotateY 5s linear infinite alternate;
}

.anim-rotate:hover {
  animation: none;
}
/* Animation for the slideshow images */
@keyframes anim-wheel {
  0% {
    height: 0%;
    opacity: 1;
    transform: rotate(0deg);
    transition: all 0.9s cubic-bezier(0.36, -0.64, 0.34, 1.76);
  }
  10% {
    height: 10%;
  }
  20% {
    height: 20%;
  }
  30% {
    height: 30%;
  }
  40% {
    height: 40%;
  }
  50% {
    height: 50%;
  }
  60% {
    height: 60%;
  }
  70% {
    height: 70%;
  }
  80% {
    height: 80%;
  }
  90% {
    height: 90%;
  }
  100% {
    height: initial;
    opacity: 1;
    transform: rotate(360deg);
    transition: all 0.9s cubic-bezier(0.36, -0.64, 0.34, 1.76);
  }
}

@keyframes anim-rotateY {
  0% {
    opacity: 1;
    transform: rotateY(0deg);
    transition: all 0.9s cubic-bezier(0.36, -0.64, 0.34, 1.76);
  }
  12.5% {
    opacity: 1;
    transform: rotateY(45deg);
    transition: all 0.9s cubic-bezier(0.36, -0.64, 0.34, 1.76);
  }
  25% {
    opacity: 1;
    transform: rotateY(90deg);
    transition: all 0.9s cubic-bezier(0.36, -0.64, 0.34, 1.76);
  }
  37.5% {
    opacity: 1;
    transform: rotateY(135deg);
    transition: all 0.9s cubic-bezier(0.36, -0.64, 0.34, 1.76);
  }
  50.0% {
    opacity: 1;
    transform: rotateY(180deg);
    transition: all 0.9s cubic-bezier(0.36, -0.64, 0.34, 1.76);
  }
  62.5% {
    opacity: 1;
    transform: rotateY(225deg);
    transition: all 0.9s cubic-bezier(0.36, -0.64, 0.34, 1.76);
  }
  75% {
    opacity: 1;
    transform: rotateY(270deg);
    transition: all 0.9s cubic-bezier(0.36, -0.64, 0.34, 1.76);
  }
  85% {
    opacity: 1;
    transform: rotateY(300deg);
    transition: all 0.9s cubic-bezier(0.36, -0.64, 0.34, 1.76);
  }
  100% {
    opacity: 1;
    transform: rotateY(360deg);
    transition: all 0.9s cubic-bezier(0.36, -0.64, 0.34, 1.76);
  }
}
/* Shake animation */
@keyframes anim-shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }

  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }

  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }

  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }

  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }

  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }

  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }

  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }

  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }

  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }

  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}
/*  END ANIMATION STYLES */
/* ----------------------------------------------------- */
/* css styles are used to animate  a open and closing element*/
