@keyframes stretch {
  0% {
    -webkit-transform: scaleX(1) scaleY(1);
            transform: scaleX(1) scaleY(1);
  }
  33% {
    -webkit-transform: scaleX(0.95) scaleY(1.05);
            transform: scaleX(0.95) scaleY(1.05);
  }
  66% {
    -webkit-transform: scaleX(1.05) scaleY(0.95);
            transform: scaleX(1.05) scaleY(0.95);
  }
  100% {
    -webkit-transform: scaleX(1) scaleY(1);
            transform: scaleX(1) scaleY(1);
  }
}

@-webkit-keyframes stretch {
  0% {
    -webkit-transform: scaleX(1) scaleY(1);
  }
  33% {
    -webkit-transform: scaleX(0.95) scaleY(1.05);
  }
  66% {
    -webkit-transform: scaleX(1.05) scaleY(0.95);
  }
  100% {
    -webkit-transform: scaleX(1) scaleY(1);
  }
}

@keyframes shake {
  0% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  50% {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
}

@-webkit-keyframes shake {
  0% {
    -webkit-transform: translateX(20px);
  }
  50% {
    -webkit-transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(20px);
  }
}

@keyframes move {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translateY(-1400px);
            transform: translateY(-1400px);
    opacity: 0.6;
  }
}

@-webkit-keyframes move {
  0% {
    -webkit-transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(-1400px);
  }
}

.field {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: auto;
  top: 0;
  bottom: 0;
  z-index: -2;
  opacity: 0;
  -webkit-transition-duration: 0.33s;
          transition-duration: 0.33s;
}

.bubble {
  position: absolute;
  bottom: -20%;
  left: 50%;
}

.bubble .item {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  box-shadow: 0px 0px 4px 0px rgba(255, 255, 255, 0.7) inset;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(255, 255, 255, 0.7) inset;
  position: relative;
  margin-left: 10px;
}

.bubble .item:after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  right: 12%;
  top: 12%;
  -webkit-filter: blur(1px);
          filter: blur(1px);
  transform: rotateZ(45deg) scaleY(0.5);
  -webkit-transform: rotateZ(45deg) scaleY(0.5);
}

.stretch0 {
  animation: stretch 1s ease 0s infinite normal;
  -webkit-animation: stretch 1s ease 0s infinite normal;
}

.shake0 {
  animation: shake 3s ease 0s infinite normal;
  -webkit-animation: shake 3s ease 0s infinite normal;
}

.move0 {
  animation: move 15s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 15s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay0 {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.pos0 {
  left: 0%;
}

.scale0 {
  transform: scale(0);
  -webkit-transform: scale(0);
}

@media screen and (max-width: 640px) {
  .scale0 {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
}

.stretch1 {
  animation: stretch 1.2s ease 0s infinite normal;
  -webkit-animation: stretch 1.2s ease 0s infinite normal;
}

.shake1 {
  animation: shake 3.2s ease 0s infinite normal;
  -webkit-animation: shake 3.2s ease 0s infinite normal;
}

.move1 {
  animation: move 15.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 15.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay1 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.pos1 {
  left: 2%;
}

.scale1 {
  transform: scale(0.03333);
  -webkit-transform: scale(0.03333);
}

@media screen and (max-width: 640px) {
  .scale1 {
    transform: scale(0.01667);
    -webkit-transform: scale(0.01667);
  }
}

.stretch2 {
  animation: stretch 1.4s ease 0s infinite normal;
  -webkit-animation: stretch 1.4s ease 0s infinite normal;
}

.shake2 {
  animation: shake 3.4s ease 0s infinite normal;
  -webkit-animation: shake 3.4s ease 0s infinite normal;
}

.move2 {
  animation: move 16s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 16s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay2 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.pos2 {
  left: 4%;
}

.scale2 {
  transform: scale(0.06667);
  -webkit-transform: scale(0.06667);
}

@media screen and (max-width: 640px) {
  .scale2 {
    transform: scale(0.03333);
    -webkit-transform: scale(0.03333);
  }
}

.stretch3 {
  animation: stretch 1.6s ease 0s infinite normal;
  -webkit-animation: stretch 1.6s ease 0s infinite normal;
}

.shake3 {
  animation: shake 3.6s ease 0s infinite normal;
  -webkit-animation: shake 3.6s ease 0s infinite normal;
}

.move3 {
  animation: move 16.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 16.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay3 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.pos3 {
  left: 6%;
}

.scale3 {
  transform: scale(0.1);
  -webkit-transform: scale(0.1);
}

@media screen and (max-width: 640px) {
  .scale3 {
    transform: scale(0.05);
    -webkit-transform: scale(0.05);
  }
}

.stretch4 {
  animation: stretch 1.8s ease 0s infinite normal;
  -webkit-animation: stretch 1.8s ease 0s infinite normal;
}

.shake4 {
  animation: shake 3.8s ease 0s infinite normal;
  -webkit-animation: shake 3.8s ease 0s infinite normal;
}

.move4 {
  animation: move 17s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 17s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay4 {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.pos4 {
  left: 8%;
}

.scale4 {
  transform: scale(0.13333);
  -webkit-transform: scale(0.13333);
}

@media screen and (max-width: 640px) {
  .scale4 {
    transform: scale(0.06667);
    -webkit-transform: scale(0.06667);
  }
}

.stretch5 {
  animation: stretch 2s ease 0s infinite normal;
  -webkit-animation: stretch 2s ease 0s infinite normal;
}

.shake5 {
  animation: shake 4s ease 0s infinite normal;
  -webkit-animation: shake 4s ease 0s infinite normal;
}

.move5 {
  animation: move 17.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 17.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay5 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.pos5 {
  left: 10%;
}

.scale5 {
  transform: scale(0.16667);
  -webkit-transform: scale(0.16667);
}

@media screen and (max-width: 640px) {
  .scale5 {
    transform: scale(0.08333);
    -webkit-transform: scale(0.08333);
  }
}

.stretch6 {
  animation: stretch 2.2s ease 0s infinite normal;
  -webkit-animation: stretch 2.2s ease 0s infinite normal;
}

.shake6 {
  animation: shake 4.2s ease 0s infinite normal;
  -webkit-animation: shake 4.2s ease 0s infinite normal;
}

.move6 {
  animation: move 18s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 18s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay6 {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.pos6 {
  left: 12%;
}

.scale6 {
  transform: scale(0.2);
  -webkit-transform: scale(0.2);
}

@media screen and (max-width: 640px) {
  .scale6 {
    transform: scale(0.1);
    -webkit-transform: scale(0.1);
  }
}

.stretch7 {
  animation: stretch 2.4s ease 0s infinite normal;
  -webkit-animation: stretch 2.4s ease 0s infinite normal;
}

.shake7 {
  animation: shake 4.4s ease 0s infinite normal;
  -webkit-animation: shake 4.4s ease 0s infinite normal;
}

.move7 {
  animation: move 18.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 18.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay7 {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}

.pos7 {
  left: 14%;
}

.scale7 {
  transform: scale(0.23333);
  -webkit-transform: scale(0.23333);
}

@media screen and (max-width: 640px) {
  .scale7 {
    transform: scale(0.11667);
    -webkit-transform: scale(0.11667);
  }
}

.stretch8 {
  animation: stretch 2.6s ease 0s infinite normal;
  -webkit-animation: stretch 2.6s ease 0s infinite normal;
}

.shake8 {
  animation: shake 4.6s ease 0s infinite normal;
  -webkit-animation: shake 4.6s ease 0s infinite normal;
}

.move8 {
  animation: move 19s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 19s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay8 {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}

.pos8 {
  left: 16%;
}

.scale8 {
  transform: scale(0.26667);
  -webkit-transform: scale(0.26667);
}

@media screen and (max-width: 640px) {
  .scale8 {
    transform: scale(0.13333);
    -webkit-transform: scale(0.13333);
  }
}

.stretch9 {
  animation: stretch 2.8s ease 0s infinite normal;
  -webkit-animation: stretch 2.8s ease 0s infinite normal;
}

.shake9 {
  animation: shake 4.8s ease 0s infinite normal;
  -webkit-animation: shake 4.8s ease 0s infinite normal;
}

.move9 {
  animation: move 19.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 19.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay9 {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}

.pos9 {
  left: 18%;
}

.scale9 {
  transform: scale(0.3);
  -webkit-transform: scale(0.3);
}

@media screen and (max-width: 640px) {
  .scale9 {
    transform: scale(0.15);
    -webkit-transform: scale(0.15);
  }
}

.stretch10 {
  animation: stretch 3s ease 0s infinite normal;
  -webkit-animation: stretch 3s ease 0s infinite normal;
}

.shake10 {
  animation: shake 5s ease 0s infinite normal;
  -webkit-animation: shake 5s ease 0s infinite normal;
}

.move10 {
  animation: move 20s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 20s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay10 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.pos10 {
  left: 20%;
}

.scale10 {
  transform: scale(0.33333);
  -webkit-transform: scale(0.33333);
}

@media screen and (max-width: 640px) {
  .scale10 {
    transform: scale(0.16667);
    -webkit-transform: scale(0.16667);
  }
}

.stretch11 {
  animation: stretch 3.2s ease 0s infinite normal;
  -webkit-animation: stretch 3.2s ease 0s infinite normal;
}

.shake11 {
  animation: shake 5.2s ease 0s infinite normal;
  -webkit-animation: shake 5.2s ease 0s infinite normal;
}

.move11 {
  animation: move 20.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 20.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay11 {
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}

.pos11 {
  left: 22%;
}

.scale11 {
  transform: scale(0.36667);
  -webkit-transform: scale(0.36667);
}

@media screen and (max-width: 640px) {
  .scale11 {
    transform: scale(0.18333);
    -webkit-transform: scale(0.18333);
  }
}

.stretch12 {
  animation: stretch 3.4s ease 0s infinite normal;
  -webkit-animation: stretch 3.4s ease 0s infinite normal;
}

.shake12 {
  animation: shake 5.4s ease 0s infinite normal;
  -webkit-animation: shake 5.4s ease 0s infinite normal;
}

.move12 {
  animation: move 21s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 21s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay12 {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}

.pos12 {
  left: 24%;
}

.scale12 {
  transform: scale(0.4);
  -webkit-transform: scale(0.4);
}

@media screen and (max-width: 640px) {
  .scale12 {
    transform: scale(0.2);
    -webkit-transform: scale(0.2);
  }
}

.stretch13 {
  animation: stretch 3.6s ease 0s infinite normal;
  -webkit-animation: stretch 3.6s ease 0s infinite normal;
}

.shake13 {
  animation: shake 5.6s ease 0s infinite normal;
  -webkit-animation: shake 5.6s ease 0s infinite normal;
}

.move13 {
  animation: move 21.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 21.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay13 {
  -webkit-animation-delay: 2.6s;
          animation-delay: 2.6s;
}

.pos13 {
  left: 26%;
}

.scale13 {
  transform: scale(0.43333);
  -webkit-transform: scale(0.43333);
}

@media screen and (max-width: 640px) {
  .scale13 {
    transform: scale(0.21667);
    -webkit-transform: scale(0.21667);
  }
}

.stretch14 {
  animation: stretch 3.8s ease 0s infinite normal;
  -webkit-animation: stretch 3.8s ease 0s infinite normal;
}

.shake14 {
  animation: shake 5.8s ease 0s infinite normal;
  -webkit-animation: shake 5.8s ease 0s infinite normal;
}

.move14 {
  animation: move 22s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 22s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay14 {
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
}

.pos14 {
  left: 28%;
}

.scale14 {
  transform: scale(0.46667);
  -webkit-transform: scale(0.46667);
}

@media screen and (max-width: 640px) {
  .scale14 {
    transform: scale(0.23333);
    -webkit-transform: scale(0.23333);
  }
}

.stretch15 {
  animation: stretch 4s ease 0s infinite normal;
  -webkit-animation: stretch 4s ease 0s infinite normal;
}

.shake15 {
  animation: shake 6s ease 0s infinite normal;
  -webkit-animation: shake 6s ease 0s infinite normal;
}

.move15 {
  animation: move 22.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 22.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay15 {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.pos15 {
  left: 30%;
}

.scale15 {
  transform: scale(0.5);
  -webkit-transform: scale(0.5);
}

@media screen and (max-width: 640px) {
  .scale15 {
    transform: scale(0.25);
    -webkit-transform: scale(0.25);
  }
}

.stretch16 {
  animation: stretch 4.2s ease 0s infinite normal;
  -webkit-animation: stretch 4.2s ease 0s infinite normal;
}

.shake16 {
  animation: shake 6.2s ease 0s infinite normal;
  -webkit-animation: shake 6.2s ease 0s infinite normal;
}

.move16 {
  animation: move 23s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 23s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay16 {
  -webkit-animation-delay: 3.2s;
          animation-delay: 3.2s;
}

.pos16 {
  left: 32%;
}

.scale16 {
  transform: scale(0.53333);
  -webkit-transform: scale(0.53333);
}

@media screen and (max-width: 640px) {
  .scale16 {
    transform: scale(0.26667);
    -webkit-transform: scale(0.26667);
  }
}

.stretch17 {
  animation: stretch 4.4s ease 0s infinite normal;
  -webkit-animation: stretch 4.4s ease 0s infinite normal;
}

.shake17 {
  animation: shake 6.4s ease 0s infinite normal;
  -webkit-animation: shake 6.4s ease 0s infinite normal;
}

.move17 {
  animation: move 23.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 23.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay17 {
  -webkit-animation-delay: 3.4s;
          animation-delay: 3.4s;
}

.pos17 {
  left: 34%;
}

.scale17 {
  transform: scale(0.56667);
  -webkit-transform: scale(0.56667);
}

@media screen and (max-width: 640px) {
  .scale17 {
    transform: scale(0.28333);
    -webkit-transform: scale(0.28333);
  }
}

.stretch18 {
  animation: stretch 4.6s ease 0s infinite normal;
  -webkit-animation: stretch 4.6s ease 0s infinite normal;
}

.shake18 {
  animation: shake 6.6s ease 0s infinite normal;
  -webkit-animation: shake 6.6s ease 0s infinite normal;
}

.move18 {
  animation: move 24s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 24s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay18 {
  -webkit-animation-delay: 3.6s;
          animation-delay: 3.6s;
}

.pos18 {
  left: 36%;
}

.scale18 {
  transform: scale(0.6);
  -webkit-transform: scale(0.6);
}

@media screen and (max-width: 640px) {
  .scale18 {
    transform: scale(0.3);
    -webkit-transform: scale(0.3);
  }
}

.stretch19 {
  animation: stretch 4.8s ease 0s infinite normal;
  -webkit-animation: stretch 4.8s ease 0s infinite normal;
}

.shake19 {
  animation: shake 6.8s ease 0s infinite normal;
  -webkit-animation: shake 6.8s ease 0s infinite normal;
}

.move19 {
  animation: move 24.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 24.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay19 {
  -webkit-animation-delay: 3.8s;
          animation-delay: 3.8s;
}

.pos19 {
  left: 38%;
}

.scale19 {
  transform: scale(0.63333);
  -webkit-transform: scale(0.63333);
}

@media screen and (max-width: 640px) {
  .scale19 {
    transform: scale(0.31667);
    -webkit-transform: scale(0.31667);
  }
}

.stretch20 {
  animation: stretch 5s ease 0s infinite normal;
  -webkit-animation: stretch 5s ease 0s infinite normal;
}

.shake20 {
  animation: shake 7s ease 0s infinite normal;
  -webkit-animation: shake 7s ease 0s infinite normal;
}

.move20 {
  animation: move 25s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 25s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay20 {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.pos20 {
  left: 40%;
}

.scale20 {
  transform: scale(0.66667);
  -webkit-transform: scale(0.66667);
}

@media screen and (max-width: 640px) {
  .scale20 {
    transform: scale(0.33333);
    -webkit-transform: scale(0.33333);
  }
}

.stretch21 {
  animation: stretch 5.2s ease 0s infinite normal;
  -webkit-animation: stretch 5.2s ease 0s infinite normal;
}

.shake21 {
  animation: shake 7.2s ease 0s infinite normal;
  -webkit-animation: shake 7.2s ease 0s infinite normal;
}

.move21 {
  animation: move 25.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 25.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay21 {
  -webkit-animation-delay: 4.2s;
          animation-delay: 4.2s;
}

.pos21 {
  left: 42%;
}

.scale21 {
  transform: scale(0.7);
  -webkit-transform: scale(0.7);
}

@media screen and (max-width: 640px) {
  .scale21 {
    transform: scale(0.35);
    -webkit-transform: scale(0.35);
  }
}

.stretch22 {
  animation: stretch 5.4s ease 0s infinite normal;
  -webkit-animation: stretch 5.4s ease 0s infinite normal;
}

.shake22 {
  animation: shake 7.4s ease 0s infinite normal;
  -webkit-animation: shake 7.4s ease 0s infinite normal;
}

.move22 {
  animation: move 26s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 26s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay22 {
  -webkit-animation-delay: 4.4s;
          animation-delay: 4.4s;
}

.pos22 {
  left: 44%;
}

.scale22 {
  transform: scale(0.73333);
  -webkit-transform: scale(0.73333);
}

@media screen and (max-width: 640px) {
  .scale22 {
    transform: scale(0.36667);
    -webkit-transform: scale(0.36667);
  }
}

.stretch23 {
  animation: stretch 5.6s ease 0s infinite normal;
  -webkit-animation: stretch 5.6s ease 0s infinite normal;
}

.shake23 {
  animation: shake 7.6s ease 0s infinite normal;
  -webkit-animation: shake 7.6s ease 0s infinite normal;
}

.move23 {
  animation: move 26.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 26.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay23 {
  -webkit-animation-delay: 4.6s;
          animation-delay: 4.6s;
}

.pos23 {
  left: 46%;
}

.scale23 {
  transform: scale(0.76667);
  -webkit-transform: scale(0.76667);
}

@media screen and (max-width: 640px) {
  .scale23 {
    transform: scale(0.38333);
    -webkit-transform: scale(0.38333);
  }
}

.stretch24 {
  animation: stretch 5.8s ease 0s infinite normal;
  -webkit-animation: stretch 5.8s ease 0s infinite normal;
}

.shake24 {
  animation: shake 7.8s ease 0s infinite normal;
  -webkit-animation: shake 7.8s ease 0s infinite normal;
}

.move24 {
  animation: move 27s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 27s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay24 {
  -webkit-animation-delay: 4.8s;
          animation-delay: 4.8s;
}

.pos24 {
  left: 48%;
}

.scale24 {
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
}

@media screen and (max-width: 640px) {
  .scale24 {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
  }
}

.stretch25 {
  animation: stretch 6s ease 0s infinite normal;
  -webkit-animation: stretch 6s ease 0s infinite normal;
}

.shake25 {
  animation: shake 8s ease 0s infinite normal;
  -webkit-animation: shake 8s ease 0s infinite normal;
}

.move25 {
  animation: move 27.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 27.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay25 {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

.pos25 {
  left: 50%;
}

.scale25 {
  transform: scale(0.83333);
  -webkit-transform: scale(0.83333);
}

@media screen and (max-width: 640px) {
  .scale25 {
    transform: scale(0.41667);
    -webkit-transform: scale(0.41667);
  }
}

.stretch26 {
  animation: stretch 6.2s ease 0s infinite normal;
  -webkit-animation: stretch 6.2s ease 0s infinite normal;
}

.shake26 {
  animation: shake 8.2s ease 0s infinite normal;
  -webkit-animation: shake 8.2s ease 0s infinite normal;
}

.move26 {
  animation: move 28s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 28s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay26 {
  -webkit-animation-delay: 5.2s;
          animation-delay: 5.2s;
}

.pos26 {
  left: 52%;
}

.scale26 {
  transform: scale(0.86667);
  -webkit-transform: scale(0.86667);
}

@media screen and (max-width: 640px) {
  .scale26 {
    transform: scale(0.43333);
    -webkit-transform: scale(0.43333);
  }
}

.stretch27 {
  animation: stretch 6.4s ease 0s infinite normal;
  -webkit-animation: stretch 6.4s ease 0s infinite normal;
}

.shake27 {
  animation: shake 8.4s ease 0s infinite normal;
  -webkit-animation: shake 8.4s ease 0s infinite normal;
}

.move27 {
  animation: move 28.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 28.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay27 {
  -webkit-animation-delay: 5.4s;
          animation-delay: 5.4s;
}

.pos27 {
  left: 54%;
}

.scale27 {
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
}

@media screen and (max-width: 640px) {
  .scale27 {
    transform: scale(0.45);
    -webkit-transform: scale(0.45);
  }
}

.stretch28 {
  animation: stretch 6.6s ease 0s infinite normal;
  -webkit-animation: stretch 6.6s ease 0s infinite normal;
}

.shake28 {
  animation: shake 8.6s ease 0s infinite normal;
  -webkit-animation: shake 8.6s ease 0s infinite normal;
}

.move28 {
  animation: move 29s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 29s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay28 {
  -webkit-animation-delay: 5.6s;
          animation-delay: 5.6s;
}

.pos28 {
  left: 56%;
}

.scale28 {
  transform: scale(0.93333);
  -webkit-transform: scale(0.93333);
}

@media screen and (max-width: 640px) {
  .scale28 {
    transform: scale(0.46667);
    -webkit-transform: scale(0.46667);
  }
}

.stretch29 {
  animation: stretch 6.8s ease 0s infinite normal;
  -webkit-animation: stretch 6.8s ease 0s infinite normal;
}

.shake29 {
  animation: shake 8.8s ease 0s infinite normal;
  -webkit-animation: shake 8.8s ease 0s infinite normal;
}

.move29 {
  animation: move 29.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 29.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay29 {
  -webkit-animation-delay: 5.8s;
          animation-delay: 5.8s;
}

.pos29 {
  left: 58%;
}

.scale29 {
  transform: scale(0.96667);
  -webkit-transform: scale(0.96667);
}

@media screen and (max-width: 640px) {
  .scale29 {
    transform: scale(0.48333);
    -webkit-transform: scale(0.48333);
  }
}

.stretch30 {
  animation: stretch 7s ease 0s infinite normal;
  -webkit-animation: stretch 7s ease 0s infinite normal;
}

.shake30 {
  animation: shake 9s ease 0s infinite normal;
  -webkit-animation: shake 9s ease 0s infinite normal;
}

.move30 {
  animation: move 30s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 30s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay30 {
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}

.pos30 {
  left: 60%;
}

.scale30 {
  transform: scale(1);
  -webkit-transform: scale(1);
}

@media screen and (max-width: 640px) {
  .scale30 {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
  }
}

.stretch31 {
  animation: stretch 7.2s ease 0s infinite normal;
  -webkit-animation: stretch 7.2s ease 0s infinite normal;
}

.shake31 {
  animation: shake 9.2s ease 0s infinite normal;
  -webkit-animation: shake 9.2s ease 0s infinite normal;
}

.move31 {
  animation: move 30.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 30.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay31 {
  -webkit-animation-delay: 6.2s;
          animation-delay: 6.2s;
}

.pos31 {
  left: 62%;
}

.scale31 {
  transform: scale(1.03333);
  -webkit-transform: scale(1.03333);
}

@media screen and (max-width: 640px) {
  .scale31 {
    transform: scale(0.51667);
    -webkit-transform: scale(0.51667);
  }
}

.stretch32 {
  animation: stretch 7.4s ease 0s infinite normal;
  -webkit-animation: stretch 7.4s ease 0s infinite normal;
}

.shake32 {
  animation: shake 9.4s ease 0s infinite normal;
  -webkit-animation: shake 9.4s ease 0s infinite normal;
}

.move32 {
  animation: move 31s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 31s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay32 {
  -webkit-animation-delay: 6.4s;
          animation-delay: 6.4s;
}

.pos32 {
  left: 64%;
}

.scale32 {
  transform: scale(1.06667);
  -webkit-transform: scale(1.06667);
}

@media screen and (max-width: 640px) {
  .scale32 {
    transform: scale(0.53333);
    -webkit-transform: scale(0.53333);
  }
}

.stretch33 {
  animation: stretch 7.6s ease 0s infinite normal;
  -webkit-animation: stretch 7.6s ease 0s infinite normal;
}

.shake33 {
  animation: shake 9.6s ease 0s infinite normal;
  -webkit-animation: shake 9.6s ease 0s infinite normal;
}

.move33 {
  animation: move 31.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 31.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay33 {
  -webkit-animation-delay: 6.6s;
          animation-delay: 6.6s;
}

.pos33 {
  left: 66%;
}

.scale33 {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}

@media screen and (max-width: 640px) {
  .scale33 {
    transform: scale(0.55);
    -webkit-transform: scale(0.55);
  }
}

.stretch34 {
  animation: stretch 7.8s ease 0s infinite normal;
  -webkit-animation: stretch 7.8s ease 0s infinite normal;
}

.shake34 {
  animation: shake 9.8s ease 0s infinite normal;
  -webkit-animation: shake 9.8s ease 0s infinite normal;
}

.move34 {
  animation: move 32s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 32s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay34 {
  -webkit-animation-delay: 6.8s;
          animation-delay: 6.8s;
}

.pos34 {
  left: 68%;
}

.scale34 {
  transform: scale(1.13333);
  -webkit-transform: scale(1.13333);
}

@media screen and (max-width: 640px) {
  .scale34 {
    transform: scale(0.56667);
    -webkit-transform: scale(0.56667);
  }
}

.stretch35 {
  animation: stretch 8s ease 0s infinite normal;
  -webkit-animation: stretch 8s ease 0s infinite normal;
}

.shake35 {
  animation: shake 10s ease 0s infinite normal;
  -webkit-animation: shake 10s ease 0s infinite normal;
}

.move35 {
  animation: move 32.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 32.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay35 {
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
}

.pos35 {
  left: 70%;
}

.scale35 {
  transform: scale(1.16667);
  -webkit-transform: scale(1.16667);
}

@media screen and (max-width: 640px) {
  .scale35 {
    transform: scale(0.58333);
    -webkit-transform: scale(0.58333);
  }
}

.stretch36 {
  animation: stretch 8.2s ease 0s infinite normal;
  -webkit-animation: stretch 8.2s ease 0s infinite normal;
}

.shake36 {
  animation: shake 10.2s ease 0s infinite normal;
  -webkit-animation: shake 10.2s ease 0s infinite normal;
}

.move36 {
  animation: move 33s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 33s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay36 {
  -webkit-animation-delay: 7.2s;
          animation-delay: 7.2s;
}

.pos36 {
  left: 72%;
}

.scale36 {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
}

@media screen and (max-width: 640px) {
  .scale36 {
    transform: scale(0.6);
    -webkit-transform: scale(0.6);
  }
}

.stretch37 {
  animation: stretch 8.4s ease 0s infinite normal;
  -webkit-animation: stretch 8.4s ease 0s infinite normal;
}

.shake37 {
  animation: shake 10.4s ease 0s infinite normal;
  -webkit-animation: shake 10.4s ease 0s infinite normal;
}

.move37 {
  animation: move 33.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 33.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay37 {
  -webkit-animation-delay: 7.4s;
          animation-delay: 7.4s;
}

.pos37 {
  left: 74%;
}

.scale37 {
  transform: scale(1.23333);
  -webkit-transform: scale(1.23333);
}

@media screen and (max-width: 640px) {
  .scale37 {
    transform: scale(0.61667);
    -webkit-transform: scale(0.61667);
  }
}

.stretch38 {
  animation: stretch 8.6s ease 0s infinite normal;
  -webkit-animation: stretch 8.6s ease 0s infinite normal;
}

.shake38 {
  animation: shake 10.6s ease 0s infinite normal;
  -webkit-animation: shake 10.6s ease 0s infinite normal;
}

.move38 {
  animation: move 34s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 34s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay38 {
  -webkit-animation-delay: 7.6s;
          animation-delay: 7.6s;
}

.pos38 {
  left: 76%;
}

.scale38 {
  transform: scale(1.26667);
  -webkit-transform: scale(1.26667);
}

@media screen and (max-width: 640px) {
  .scale38 {
    transform: scale(0.63333);
    -webkit-transform: scale(0.63333);
  }
}

.stretch39 {
  animation: stretch 8.8s ease 0s infinite normal;
  -webkit-animation: stretch 8.8s ease 0s infinite normal;
}

.shake39 {
  animation: shake 10.8s ease 0s infinite normal;
  -webkit-animation: shake 10.8s ease 0s infinite normal;
}

.move39 {
  animation: move 34.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 34.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay39 {
  -webkit-animation-delay: 7.8s;
          animation-delay: 7.8s;
}

.pos39 {
  left: 78%;
}

.scale39 {
  transform: scale(1.3);
  -webkit-transform: scale(1.3);
}

@media screen and (max-width: 640px) {
  .scale39 {
    transform: scale(0.65);
    -webkit-transform: scale(0.65);
  }
}

.stretch40 {
  animation: stretch 9s ease 0s infinite normal;
  -webkit-animation: stretch 9s ease 0s infinite normal;
}

.shake40 {
  animation: shake 11s ease 0s infinite normal;
  -webkit-animation: shake 11s ease 0s infinite normal;
}

.move40 {
  animation: move 35s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 35s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay40 {
  -webkit-animation-delay: 8s;
          animation-delay: 8s;
}

.pos40 {
  left: 80%;
}

.scale40 {
  transform: scale(1.33333);
  -webkit-transform: scale(1.33333);
}

@media screen and (max-width: 640px) {
  .scale40 {
    transform: scale(0.66667);
    -webkit-transform: scale(0.66667);
  }
}

.stretch41 {
  animation: stretch 9.2s ease 0s infinite normal;
  -webkit-animation: stretch 9.2s ease 0s infinite normal;
}

.shake41 {
  animation: shake 11.2s ease 0s infinite normal;
  -webkit-animation: shake 11.2s ease 0s infinite normal;
}

.move41 {
  animation: move 35.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 35.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay41 {
  -webkit-animation-delay: 8.2s;
          animation-delay: 8.2s;
}

.pos41 {
  left: 82%;
}

.scale41 {
  transform: scale(1.36667);
  -webkit-transform: scale(1.36667);
}

@media screen and (max-width: 640px) {
  .scale41 {
    transform: scale(0.68333);
    -webkit-transform: scale(0.68333);
  }
}

.stretch42 {
  animation: stretch 9.4s ease 0s infinite normal;
  -webkit-animation: stretch 9.4s ease 0s infinite normal;
}

.shake42 {
  animation: shake 11.4s ease 0s infinite normal;
  -webkit-animation: shake 11.4s ease 0s infinite normal;
}

.move42 {
  animation: move 36s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 36s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay42 {
  -webkit-animation-delay: 8.4s;
          animation-delay: 8.4s;
}

.pos42 {
  left: 84%;
}

.scale42 {
  transform: scale(1.4);
  -webkit-transform: scale(1.4);
}

@media screen and (max-width: 640px) {
  .scale42 {
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
  }
}

.stretch43 {
  animation: stretch 9.6s ease 0s infinite normal;
  -webkit-animation: stretch 9.6s ease 0s infinite normal;
}

.shake43 {
  animation: shake 11.6s ease 0s infinite normal;
  -webkit-animation: shake 11.6s ease 0s infinite normal;
}

.move43 {
  animation: move 36.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 36.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay43 {
  -webkit-animation-delay: 8.6s;
          animation-delay: 8.6s;
}

.pos43 {
  left: 86%;
}

.scale43 {
  transform: scale(1.43333);
  -webkit-transform: scale(1.43333);
}

@media screen and (max-width: 640px) {
  .scale43 {
    transform: scale(0.71667);
    -webkit-transform: scale(0.71667);
  }
}

.stretch44 {
  animation: stretch 9.8s ease 0s infinite normal;
  -webkit-animation: stretch 9.8s ease 0s infinite normal;
}

.shake44 {
  animation: shake 11.8s ease 0s infinite normal;
  -webkit-animation: shake 11.8s ease 0s infinite normal;
}

.move44 {
  animation: move 37s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 37s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay44 {
  -webkit-animation-delay: 8.8s;
          animation-delay: 8.8s;
}

.pos44 {
  left: 88%;
}

.scale44 {
  transform: scale(1.46667);
  -webkit-transform: scale(1.46667);
}

@media screen and (max-width: 640px) {
  .scale44 {
    transform: scale(0.73333);
    -webkit-transform: scale(0.73333);
  }
}

.stretch45 {
  animation: stretch 10s ease 0s infinite normal;
  -webkit-animation: stretch 10s ease 0s infinite normal;
}

.shake45 {
  animation: shake 12s ease 0s infinite normal;
  -webkit-animation: shake 12s ease 0s infinite normal;
}

.move45 {
  animation: move 37.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 37.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay45 {
  -webkit-animation-delay: 9s;
          animation-delay: 9s;
}

.pos45 {
  left: 90%;
}

.scale45 {
  transform: scale(1.5);
  -webkit-transform: scale(1.5);
}

@media screen and (max-width: 640px) {
  .scale45 {
    transform: scale(0.75);
    -webkit-transform: scale(0.75);
  }
}

.stretch46 {
  animation: stretch 10.2s ease 0s infinite normal;
  -webkit-animation: stretch 10.2s ease 0s infinite normal;
}

.shake46 {
  animation: shake 12.2s ease 0s infinite normal;
  -webkit-animation: shake 12.2s ease 0s infinite normal;
}

.move46 {
  animation: move 38s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 38s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay46 {
  -webkit-animation-delay: 9.2s;
          animation-delay: 9.2s;
}

.pos46 {
  left: 92%;
}

.scale46 {
  transform: scale(1.53333);
  -webkit-transform: scale(1.53333);
}

@media screen and (max-width: 640px) {
  .scale46 {
    transform: scale(0.76667);
    -webkit-transform: scale(0.76667);
  }
}

.stretch47 {
  animation: stretch 10.4s ease 0s infinite normal;
  -webkit-animation: stretch 10.4s ease 0s infinite normal;
}

.shake47 {
  animation: shake 12.4s ease 0s infinite normal;
  -webkit-animation: shake 12.4s ease 0s infinite normal;
}

.move47 {
  animation: move 38.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 38.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay47 {
  -webkit-animation-delay: 9.4s;
          animation-delay: 9.4s;
}

.pos47 {
  left: 94%;
}

.scale47 {
  transform: scale(1.56667);
  -webkit-transform: scale(1.56667);
}

@media screen and (max-width: 640px) {
  .scale47 {
    transform: scale(0.78333);
    -webkit-transform: scale(0.78333);
  }
}

.stretch48 {
  animation: stretch 10.6s ease 0s infinite normal;
  -webkit-animation: stretch 10.6s ease 0s infinite normal;
}

.shake48 {
  animation: shake 12.6s ease 0s infinite normal;
  -webkit-animation: shake 12.6s ease 0s infinite normal;
}

.move48 {
  animation: move 39s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 39s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay48 {
  -webkit-animation-delay: 9.6s;
          animation-delay: 9.6s;
}

.pos48 {
  left: 96%;
}

.scale48 {
  transform: scale(1.6);
  -webkit-transform: scale(1.6);
}

@media screen and (max-width: 640px) {
  .scale48 {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
  }
}

.stretch49 {
  animation: stretch 10.8s ease 0s infinite normal;
  -webkit-animation: stretch 10.8s ease 0s infinite normal;
}

.shake49 {
  animation: shake 12.8s ease 0s infinite normal;
  -webkit-animation: shake 12.8s ease 0s infinite normal;
}

.move49 {
  animation: move 39.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 39.5s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay49 {
  -webkit-animation-delay: 9.8s;
          animation-delay: 9.8s;
}

.pos49 {
  left: 98%;
}

.scale49 {
  transform: scale(1.63333);
  -webkit-transform: scale(1.63333);
}

@media screen and (max-width: 640px) {
  .scale49 {
    transform: scale(0.81667);
    -webkit-transform: scale(0.81667);
  }
}

.stretch50 {
  animation: stretch 11s ease 0s infinite normal;
  -webkit-animation: stretch 11s ease 0s infinite normal;
}

.shake50 {
  animation: shake 13s ease 0s infinite normal;
  -webkit-animation: shake 13s ease 0s infinite normal;
}

.move50 {
  animation: move 40s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
  -webkit-animation: move 40s cubic-bezier(0.27, 0, 0.2, 0) infinite normal;
}

.delay50 {
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}

.pos50 {
  left: 100%;
}

.scale50 {
  transform: scale(1.66667);
  -webkit-transform: scale(1.66667);
}

@media screen and (max-width: 640px) {
  .scale50 {
    transform: scale(0.83333);
    -webkit-transform: scale(0.83333);
  }
}
/*# sourceMappingURL=bubble.css.map */