@charset "utf-8";

/* --------------------------------------------
 * HanbitSoft Infra Development Team
 * Super Star Membership Animation Stylesheet
 * Author - sgp8116@hanbitsoft.co.kr  20200903
----------------------------------------------- */


@keyframes smokeEffect {
  0% {
    transform: skew(0deg, 0deg);
  }
  50% {
    transform: skew(1deg, 0.5deg) scale(1.02);
  }
  100% {
    transform: skew(0deg, 0deg) scale(1);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.jugando .stage-smoke-effect {
  animation: smokeEffect 8s 10 ease-in-out both;
}

.jugando .header:before,
.jugando .stage-lighting {
  animation: fadeIn .1s  both linear;
}

.jugando .title-main-superstar {
  transform: translate3d(-100%, 0, 0);
  animation: slideIn .25s 0.35s both linear;
}
.jugando .title-main-membership {
  transform: translate3d(100%, 0, 0);
  animation: slideIn .25s 0.35s both linear;
}
.jugando .title-main-description {
  transform: translate3d(0, 10px, 0);
  animation: slideIn .25s 0.5s both;
}

.star-point.play-on .title-sub-star-point,
.membership-class.play-on .title-sub-membership-class {
  transform: translate3d(0, 10px, 0);
  animation: slideIn .25s both;
}
.star-point.play-on .star-point-howToEarn-1stLine,
.star-point.play-on .star-point-howToEarn-2ndLine {
  transform: translate3d(0, 10px, 0);
  animation: slideIn .25s both;
}
.star-point.play-on .star-point-howToEarn-1stLine {
  animation-delay: .2s;
}
.star-point.play-on .star-point-howToEarn-2ndLine {
  animation-delay: .3s;
}
.membership-class.play-on .membership-class-list {
  transform: translate3d(0, 20px, 0);
  animation: slideIn .25s .25s both;
}