/* ---- stats.js ---- */

#stats {
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}
.count-particles {
  border-radius: 0 0 3px 3px;
}

#balloons-container {
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.balloons div {
  position: fixed;
  left: 0;
  top: 0;
  width: 200px;
  height: 200px;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  /* border-radius: 50%; */
  /* box-shadow: -6px -6px 0 rgba(0, 0, 0, 0.15) inset; */
  opacity: 0.6;
  z-index: -1;
}

/* .balloons div:before {
  content: '';
  position: absolute;
  left: 38px;
  bottom: -70px;
  width: 2px;
  height: 70px;
  background: #a0a0a0;
  transform: rotate(5deg);
} */

/* .balloons div:after {
  content:"▲";
  position: absolute;
  left: 33px;
  bottom: -13px;
  color: #ffa07a;
} */

.balloons div:nth-of-type(1) {
  left: 0;
  top: 0;
  background: url(../img/1.png);
  background-size: 250px !important;
  animation: flashing_r 7s ease-in-out infinite;
}

.balloons div:nth-of-type(2) {
  left: 12%;
  top: 36%;
  background: url(../img/2.png);
  animation: flashing 7s ease-in-out infinite;
  transform: scale(5.5);
}

.balloons div:nth-of-type(3) {
  left: 23%;
  top: 90%;
  background: url(../img/3.png);
  animation: flashing_r 7s ease-in-out 2s infinite;
}

.balloons div:nth-of-type(4) {
  left: 35%;
  top: 68%;
  background: url(../img/2.png);
  animation: flashing 7s ease-in-out infinite;
  transform: scale(4.5);
}

.balloons div:nth-of-type(5) {
  left: 45%;
  top: 12%;
  background: url(../img/1.png);
  animation: flashing_r 7s ease-in-out infinite;
  transform: scale(1.5);
}

.balloons div:nth-of-type(6) {
  left: 50%;
  top: 78%;
  background: url(../img/2.png);
  animation: flashing 7s ease-in-out 2s infinite;
  transform: scale(3.5);
}

.balloons div:nth-of-type(7) {
  left: 62%;
  top: 62%;
  background: url(../img/3.png);
  animation: flashing_r 7s ease-in-out infinite;
  transform: scale(1.5);
}

.balloons div:nth-of-type(8) {
  left: 88%;
  top: 17%;
  background: url(../img/2.png);
  animation: flashing 7s ease-in-out infinite;
  transform: scale(3);
}

.balloons div:nth-of-type(9) {
  left: 78%;
  top: 50%;
  background: url(../img/1.png);
  background-size: 80px !important;
  animation: flashing_r 7s ease-in-out 1s infinite;
  transform: scale(3);
}

.balloons div:nth-of-type(10) {
  left: 90%;
  top: 80%;
  background: url(../img/3.png);
  animation: flashing 7s ease-in-out infinite;
  transform: scale(2.5);
}
.balloons div:nth-of-type(11) {
  left: -0%;
  top: 50%;
  background: url(../img/1.png);
  background-size: 80px !important;
  animation: flashing_r 7s ease-in-out infinite;
}

.balloons div:nth-of-type(12) {
  left: 12%;
  top: 40%;
  background: url(../img/2.png);
  animation: flashing 7s ease-in-out infinite;
  transform: scale(3.5);
}

.balloons div:nth-of-type(13) {
  left: 18%;
  top: 90%;
  background: url(../img/3.png);
  animation: flashing_r 7s ease-in-out 1s infinite;
}

.balloons div:nth-of-type(14) {
  left: 22%;
  top: 60%;
  background: url(../img/2.png);
  animation: flashing 7s ease-in-out infinite;
  transform: scale(4.5);
}

.balloons div:nth-of-type(15) {
  left: 36%;
  top: 70%;
  background: url(../img/1.png);
  animation: flashing_r 7s ease-in-out infinite;
}

.balloons div:nth-of-type(16) {
  left: 50%;
  top: 80%;
  background: url(../img/2.png);
  animation: flashing 7s ease-in-out 1s infinite;
  transform: scale(5.5);
  background-size: 300px;
}

.balloons div:nth-of-type(17) {
  left: 62%;
  top: 60%;
  background: url(../img/3.png);
  animation: flashing_r 7s ease-in-out infinite;
  transform: scale(4.5);
}

.balloons div:nth-of-type(18) {
  left: 68%;
  top: 90%;
  background: url(../img/2.png);
  animation: flashing 7s ease-in-out infinite;
  transform: scale(6.5);
}

.balloons div:nth-of-type(19) {
  left: 78%;
  top: 30%;
  background: url(../img/1.png);
  background-size: 200px !important;
  animation: flashing_r 7s ease-in-out 1s infinite;
}

.balloons div:nth-of-type(20) {
  left: 90%;
  top: 40%;
  background: url(../img/3.png);
  animation: flashing 7s ease-in-out infinite;
}

@keyframes flashing {
  0% {
    /* margin-left: 8px; */
    opacity: 1;
  }
  10% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  70% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    margin-left: 0px;
    opacity: 1;
  }
}

@keyframes flashing_r {
  0% {
    /* margin-bottom: 0px; */
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    /* margin-bottom: 8px; */
    opacity: 0;
  }
}
