html, body {
  border: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

*, *:before, *:after {
  box-sizing: inherit; }

#clicktag {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
  background: #000; }

#banner-ad {
  display: block;
  width: 300px;
  height: 250px;
  border: 1px solid black;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  background-image: url("frame.jpg");
  background-size: 135%;
  background-repeat: no-repeat;
  background-position: right bottom; }

.bg {
  bottom: 0;
  left: 0;
  right: 0;
  width: 300px;
  position: absolute;
  z-index: 3;
  height: 80px; }

.kid {
  position: absolute;
  top: 35px;
  z-index: 1;
  right: -10%;
  width: 100%;
  opacity: 0;
  height: auto;
  max-width: 100%;
  transform: scale(1.5); }

.ninjamas {
  position: absolute;
  bottom: 20px;
  z-index: 10;
  width: 175px;
  height: 96px;
  left: 50%;
  transform: translateX(-50%); }

.conquer {
  position: absolute;
  top: 5px;
  opacity: 0;
  z-index: 10;
  width: 115px;
  height: 53px;
  left: 10px; }

.bedwetting {
  position: absolute;
  top: 35px;
  opacity: 0;
  z-index: 10;
  width: 135px;
  height: 54px;
  left: 30px; }

.wakeup {
  position: absolute;
  top: 40px;
  opacity: 0;
  z-index: 10;
  width: 155px;
  height: 51px;
  left: 15px; }

.ninjawesome {
  position: absolute;
  top: 70px;
  opacity: 0;
  z-index: 10;
  width: 155px;
  height: 53px;
  left: 35px; }

.powerfulprotection {
  position: absolute;
  top: 20px;
  opacity: 0;
  z-index: 1;
  width: 200px;
  height: 66px;
  left: 50px; }

.likeyou {
  position: absolute;
  top: 59px;
  left: 80px;
  opacity: 0;
  z-index: 1;
  width: 200px;
  height: 62px; }

.product {
  position: absolute;
  bottom: 25px;
  opacity: 0;
  z-index: 10;
  width: 175px;
  height: 112px;
  left: 25%; }

.learnmore {
  opacity: 0;
  position: absolute;
  bottom: 10px;
  left: 183px;
  z-index: 10;
  width: 100px;
  height: 28px; }

.finalbg {
  position: absolute;
  top: 0px;
  opacity: 0;
  z-index: 1;
  width: 300px;
  height: 250px; }

.animate {
  /* 
	NAME, 
	DURATION, 
	TIMING FUNCTION, 
	DELAY, 
	FILL MODE (forwards - The element will retain the style values that is set by the last keyframe)
	*/ }
  .animate .kid {
    animation: fadeIn .1s ease-in 2.3s forwards,		 slideacrossLeft 2.65s ease-in 2.4s forwards; }
  .animate .conquer {
    animation: slideinfromLeft .1s ease-in .5s forwards, slideoutRight .2s ease-in 2.05s forwards; }
  .animate .bedwetting {
    animation: slideinfromRight .1s ease-in .5s forwards, slideoutLeft .2s ease-in 2.05s forwards; }
  .animate .wakeup {
    animation: slideinfromLeft .1s ease-in 2.6s forwards, slideoutRight .2s ease-in 4.65s forwards; }
  .animate .ninjawesome {
    animation: slideinfromRight .1s ease-in 2.6s forwards, slideoutLeft .2s ease-in 4.65s forwards; }
  .animate .ninjamas {
    animation: slideoutleftStraight .1s ease-in 4.85s forwards; }
  .animate .powerfulprotection {
    animation: slideinfromLeft .1s ease-in 5.1s forwards; }
  .animate .likeyou {
    animation: slideinfromRight .1s ease-in 5.1s forwards; }
  .animate .product {
    animation: slideinfromrightStraight .1s ease-in 4.95s forwards; }
  .animate .finalbg {
    animation: slideinfromrightStraight .1s ease-in 4.85s forwards; }
  .animate .learnmore {
    animation: fadeIn .1s ease-in 5s forwards, pulse .25s ease-in 5.25s forwards; }

/*.animate.finalloop{
	.learnmore{
		animation: slideinfromLeft .1s ease-in 3s forwards;		
	}	
}*/
@keyframes ninja-rope-in {
  0% {
    -webkit-transform: translate(0, -100%);
    transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 100px);
    transform: translate(0, 100px); } }

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes scaleIn {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1; }
  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 1; } }

@keyframes slideoutRight {
  0% {
    filter: blur(5px);
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0); }
  100% {
    left: 200%;
    -webkit-transform: translateX(200%) translateY(-250%);
    transform: translateX(200%) translateY(-250%); } }

@keyframes slideoutLeft {
  0% {
    filter: blur(5px);
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0); }
  100% {
    -webkit-transform: translateX(-250%) translateY(110%);
    transform: translateX(-250%) translateY(110%); } }

@keyframes slideoutleftStraight {
  0% {
    filter: blur(5px); }
  100% {
    -webkit-transform: translateX(-210%);
    transform: translateX(-210%); } }

@keyframes slideacrossLeft {
  0% {
    transform: translateX(0) scale(1.5); }
  100% {
    transform: translateX(-20px) scale(1.5); } }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes slideinfromLeft {
  0% {
    -webkit-transform: translateX(-100%) translateY(50%);
    transform: translateX(-100%) translateY(50%);
    opacity: 1;
    filter: blur(5px); }
  90% {
    filter: blur(5px); }
  100% {
    filter: blur(0);
    transform: translateX(0) translateY(0);
    opacity: 1; } }

@keyframes slideinfromRight {
  0% {
    -webkit-transform: translateX(100%) translateY(-50%);
    transform: translateX(100%) translateY(-50%);
    opacity: 1;
    filter: blur(5px); }
  90% {
    filter: blur(5px); }
  100% {
    filter: blur(0);
    transform: translateX(0) translateY(0%);
    opacity: 1; } }

@keyframes slideinfromrightStraight {
  0% {
    -webkit-transform: translateX(100%) translateY(0%);
    transform: translateX(100%) translateY(0%);
    opacity: 1;
    filter: blur(5px); }
  90% {
    filter: blur(5px); }
  100% {
    filter: blur(0);
    -webkit-transform: translateX(0) translateY(0%);
    transform: translateX(0) translateY(0%);
    opacity: 1; } }
