/* lemon_pop.css */
@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  10% {
    opacity: 1;
    transform: translateY(0);
  }
  90% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

@keyframes upDown {
  0% {
    top: 0;
  }
  100% {
    top: 5px;
  }
}

.lemon_pop_wrapper {
  position: fixed;
  left: 200px;
  bottom: 20px;
  width: 150px;
  height: auto;
  z-index: 999;
}

.lemon_item2 {
  width: 150px;
  aspect-ratio: 699 / 541;
  background-image: url("/common/img/dynosaur_2.png");
  background-size: 80% 80%;
  background-position: 0 0;
  background-repeat: no-repeat;
  border-radius: 10px;
  display: block;
  position: relative;
  opacity: 0;
  pointer-events: none;
}

.lemon_item2.pop {
  animation: fadeInOut 3s ease-in-out, upDown 0.15s steps(5) infinite alternate;
}

@media screen and (max-width:768px) {
  .lemon_pop_wrapper{
    left: 20px;
  }
}
