.image_wrapper {
  position: relative;
  display: block;
}

.image_wrapper img {
  -webkit-transform: translateY(-2800px) scale(0.5);
          transform: translateY(-2800px) scale(0.5);
  -webkit-transition: all 0.9s ease-in;
  transition: all 0.9s ease-in;
  position: relative;
}

.image_wrapper.positioned img {
  -webkit-transform: translateY(0px) scale(0.7);
          transform: translateY(0px) scale(0.7);
}

.image_wrapper.animated img {
  -webkit-transition: all 1.2s ease-in;
  transition: all 1.2s ease-in;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-animation: bounce 3s;
          animation: bounce 3s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

@-webkit-keyframes bounce {
  0% {
    bottom: 0;
    -webkit-animation-timing-function: ease-out;
    -webkit-transition: all 1s ease-in;
    transition: all 1s ease-in;
  }
  10% {
    bottom: 100px;
    -webkit-animation-timing-function: ease-in;
  }
  40% {
    bottom: 0px;
    -webkit-animation-timing-function: ease-out;
  }
  50% {
    bottom: 50px;
    -webkit-animation-timing-function: ease-in;
  }
  70% {
    bottom: 0;
    -webkit-animation-timing-function: ease-out;
  }
  95% {
    bottom: 0px;
    -webkit-animation-timing-function: ease-out;
  }
  100% {
    bottom: 0;
    -webkit-animation-timing-function: ease-out;
  }
}

@keyframes bounce {
  0% {
    bottom: 0;
    -webkit-animation-timing-function: ease-out;
    -webkit-transition: all 1s ease-in;
    transition: all 1s ease-in;
  }
  10% {
    bottom: 100px;
    -webkit-animation-timing-function: ease-in;
  }
  40% {
    bottom: 0px;
    -webkit-animation-timing-function: ease-out;
  }
  50% {
    bottom: 50px;
    -webkit-animation-timing-function: ease-in;
  }
  70% {
    bottom: 0;
    -webkit-animation-timing-function: ease-out;
  }
  95% {
    bottom: 0px;
    -webkit-animation-timing-function: ease-out;
  }
  100% {
    bottom: 0;
    -webkit-animation-timing-function: ease-out;
  }
}
/*# sourceMappingURL=objectAnimation.css.map */