/* :root {
    --ad-width: 300px;
    --ad-height: 600px;
} */

body {
  position: absolute !important;
  padding: 0 !important;
  width: var(--ad-width) !important;
  height: var(--ad-height) !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  margin: 0 auto !important;
  z-index: 9999 !important;
}

.wrapper {
  position: absolute;
  width: var(--ad-width);
  height: var(--ad-height);
  top: 0;
  left: 0;
  overflow: hidden;
  cursor: pointer;
  perspective: 1700px;
  transform-style: preserve-3d;
}

.bg {
  position: absolute;
  width: var(--ad-width);
  height: var(--ad-height);
  top: 0;
  left: 0;
  pointer-events: none;
}

.ico_dark {
  width: 45px;
  height: 45px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 25%;
  left: 50%;
  opacity: 0;
}

.product {
  transform-style: preserve-3d;
  z-index: 10;
}
.cta,
.t2,
.logo {
  z-index: 20;
}

.abs {
  position: absolute;
}

.fw {
  width: 100%;
  height: 100%;
  background-size: contain;
}

.opacity0 {
  opacity: 0;
}

.scale0 {
  transform: scale(0);
}

#copy {
  padding: 10px 17px;
  position: fixed;
  right: 15px;
  bottom: 15px;
  background-color: black;
  color: white;
  font-family: Arial;
  font-weight: bold;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  display: none;
}

#copy:hover {
  background-color: #6a1273;
}

#copy:active {
  background-color: #b621c8;
}

.shooterCont,
.gunCont {
  width: 53px;
  height: 135px;
  bottom: 75px;
  left: calc(50% - 26.5px);
}

.shooter,
.shooter_shad1,
.shooter_shad2 {
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.particle {
  position: absolute;
  /* width: 1px;
  height: 5px; */
  /* background-color: red; */
  /* left: calc(50% - 5px); */
  top: 0px;
  border-radius: 20%;
}

.particle_inner {
  position: absolute;
  display: block;
  content: "";
  height: 0px;
  right: 0px;
  top: 0px;
  width: 100%;
  border-top-left-radius: 20%;
  border-top-right-radius: 20%;
  /* background: linear-gradient(to bottom, red 0%, transparent 100%); */
}

.bubble_pop {
  /* width: 50px;
  height: 50px; */
  position: absolute;
  /* background-color: red; */
}

.dragEL {
  position: absolute;
  z-index: 1000;
  /* background-color: #e96b4f57; */
}

.obst1,
.obst2,
.obst3 {
  width: 70px;
  height: 70px;
  background-repeat: no-repeat;
  background-size: contain;
  top: calc(65% - 50px);
  left: calc(50% - 50px);
  animation: circularMotion 5s linear infinite;
}

.obst2 {
  animation-delay: -1.2s;
}
.obst3 {
  animation-delay: -2.4s;
}

.endObst {
  position: absolute;
  /* bottom: 0 !important;
  left: 0 !important; */
  z-index: 15;
}

@keyframes circularMotion {
  0% {
    transform: rotate(0deg) translateX(130px) rotate(0deg);
    z-index: 4;
  }
  70% {
    z-index: 2;
  }
  80% {
    z-index: 2;
  }
  100% {
    transform: rotate(360deg) translateX(130px) rotate(-360deg);
    z-index: 4;
  }
}

.obst {
  position: absolute;
  background-size: 100%;
  background-position: center;
  /* color: #334366; */
}

#canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  /* background-color: #000; */
}

.no-touch {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  touch-action: none;
}

.smoke_container {
  width: 120px;
  height: 200px;
  position: absolute;
  top: 10%;
  left: calc(-50% - 10px);
}

/* /// Thrust Animation //// */

.thrust_container {
  display: none;
  position: absolute;
  width: 50px;
  height: 70px;
  top: 85%;

  border-top-left-radius: 20%;
  border-top-right-radius: 20%;
  opacity: 0.8;
  transform-origin: top;
  animation: thrust 0.4s ease-in-out infinite;
}

@keyframes thrust {
  0% {
    height: 70px;
    opacity: 0.8;
    transform: scaleY(1);
  }
  50% {
    height: 80px;
    opacity: 1;
    transform: scaleY(1.2);
  }
  100% {
    height: 70px;
    opacity: 0.8;
    transform: scaleY(1);
  }
}

/* // Flame Animation  */
.flame_container {
  display: none;
  position: absolute;
  width: 60px;
  height: 60px;
  top: 85%;
  left: calc((100% - 60px) / 2);
  transform: scale(0.5);
}
.container {
  position: absolute;
  margin: 0 auto;
  width: 60px;
  height: 60px;
  /* left: 0;
  top: 0; */
  transform-origin: center top;
  animation-name: flicker;
  animation-duration: 3ms;
  animation-delay: 200ms;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.flame {
  bottom: 0;
  position: absolute;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  border-top-left-radius: 50%;
  transform: rotate(135deg) scale(1.5, 1.5);
  -moz-transform: rotate(135deg) scale(1.5, 1.5);
  -webkit-transform: rotate(135deg) scale(1.5, 1.5);
  -o-transform: rotate(135deg) scale(1.5, 1.5);
}
.yellow {
  left: 15px;
  width: 30px;
  height: 30px;
  background: gold;
  box-shadow: 0px 0px 9px 4px gold;
}
.orange {
  left: 10px;
  width: 40px;
  height: 40px;
  background: orange;
  box-shadow: 0px 0px 9px 4px orange;
}
.red {
  left: 5px;
  top: 20px;
  width: 50px;
  height: 50px;
  background: OrangeRed;
  border: 1px solid OrangeRed;
  box-shadow: 0px 0px 5px 4px OrangeRed;
}
.white {
  left: 15px;
  top: 20px;
  width: 30px;
  height: 30px;
  background: white;
  box-shadow: 0px 0px 9px 4px white;
}
.circle {
  border-radius: 50%;
  position: absolute;
}
.blue {
  width: 10px;
  height: 10px;
  left: 25px;
  top: 5px;
  background: SlateBlue;
  box-shadow: 0px 0px 15px 10px #4fc1e9;
}
.black {
  width: 35px;
  height: 35px;
  left: 12.5px;
  top: -20px;
  /* background: #ddd; */
  border: 1px solid #282a3a;
  box-shadow: 0px 0px 10px 5px #282a3a;
}
@keyframes flicker {
  0% {
    transform: rotate(-1deg);
    -moz-transform: rotate(-1deg);
    -webkit-transform: rotate(-1deg);
  }
  20% {
    transform: rotate(1deg);
    -moz-transform: rotate(1deg);
    -webkit-transform: rotate(1deg);
  }
  40% {
    transform: rotate(-1deg);
    -moz-transform: rotate(-1deg);
    -webkit-transform: rotate(-1deg);
  }
  60% {
    transform: rotate(1deg) scaleY(1.04);
  }
  80% {
    transform: rotate(-2deg) scaleY(0.92);
    -moz-transform: rotate(-2deg) scaleY(0.92);
    -webkit-transform: rotate(-2deg) scaleY(0.92);
  }
  100% {
    transform: rotate(1deg);
    -webkit-transform: rotate(1deg);
    -moz-transform: rotate(1deg);
  }
}
