.doll {
  display: none;
  opacity: 0;
  position: absolute;
  right: 20px;
  top: -56px;
  transition: opacity .2s ease-in-out;
  width: 100px;
  z-index: 1;
}

@media (min-width: 1200px){
.doll--active {
  display: block;
  opacity: 1;
}
}

.karkjalg {
  right: -140px;
  top: -108px;
  width: 190px;
}

.man {
  width: 100%;
}
.foot {

  width: 30%;
  height: auto;
  top: 30%;
  left: 36%;
  position: absolute;
  transform-origin: 50% 0;
  animation: moveKark 2.5s ease-in-out infinite;
}
@keyframes moveKark {
  0%, 100% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(-5deg);
  }
}



.dancer {
  right: 30px;
  top: auto;
  bottom: -50px;
  /*width: 10vw;*/
  width: 150px;
}
.dancer .dress {
  width: 100%;
  height: auto;
  position: relative;
  transform-origin: 50% 50%;
  animation: moveIt 2.5s ease-in-out infinite;
}
@keyframes moveIt {
  0%, 100% {
    transform: rotate(2deg);
  }
  50% {
    transform: rotate(-2deg);
  }
}
.dancer .shoes {
   width: 30%;
  height: auto;
  display: table;
  margin-left: 30%;
  margin-top: -13%;
}



.clown {
  left: 0;
  right: auto;
  top: 50px;
  width: 90px;
}
.bike {
  width: 100%;
  height: auto;
  position: relative;
  transform-origin: 50% 0%;
  animation: moveClown 2.5s ease-in-out infinite;
}
@keyframes moveClown {
   0%, 100% {
    transform: rotate(1deg);
  }
  50% {
    transform: rotate(-6deg);
  }
}
.shadow {
  width:30%;
  height: 15px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  margin: -10px auto 0;
  animation: clownShade 1.25s ease-in-out alternate infinite;
}
@keyframes clownShade {
  0% {
    transform: translateX(-20px) scale(2, .5);
    filter: blur(5px);
  }
  50% {
    filter: blur(3px);
  }
  100% {
    transform: translateX(20px) scale(2, .5);
    filter: blur(5px);
  }
}





.joujunn {
  left: -20px;
  right: auto;
  top: 0px;
  width: 120px;
}
.man {
  width: 100%;
}
.hand {
  width: 50%;
  height: auto;
  top: -9%;
  left: 66%;
  position: absolute;
  transform-origin: 0% 70%;
  animation: moveHand 2.5s ease-in-out infinite;
}
@keyframes moveHand {
  0%, 100% {
    transform: rotate(-20deg);
  }
  50% {
    transform: rotate(0deg);
  }
}


.juggler {
  right: -220px;
    top: -70px;
    width: 220px;
}

.juggler img {
  height: auto;
  width: 100%;
}

.firelady {
  right: 1vw;
  top: auto;
  bottom:0;
 /* width: 15vw;
  max-width: 190px;*/
  width: 180px;
}

.firelady img {
  /*position: absolute;*/
  left: 0;
  top: 0;
  height: auto;
  width: 100%;
}

.firelady-left {
  margin-top: 15%;
  transform-origin: 20% 70%;
  animation: moveIt 3.5s ease-in-out infinite;
}

.firelady-right {
/*  margin-top: 15%; */
  transform-origin: 70% 70%;
  animation: moveIt 3.5s ease-in-out infinite;
}

.swing {
  left: 0;
  top: auto;
  bottom:0;
  transform: rotate(-20deg);
  /*width: 15vw;
  max-width: 150px;*/
  width: 150px;
}

.swing img {
  height: auto;
  width: 100%;
  transform-origin: 15% 9%;
  animation: moveIt2 3.5s ease-in-out infinite;
}
@keyframes moveIt2 {
  0%, 100% {
    transform: rotate(8deg);
  }
  50% {
    transform: rotate(-8deg);
  }
}  

