.drip-container {
    position: absolute;
    z-index: 1001;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: .2;
}

.liquid {
  width: 120%;
  height: 10px;
  position: absolute;
  top: -2%;
  left: -10%;
  background: black;
  border-radius: 10%;
  animation: liquid 5s infinite;
}

.blobs {
  filter: url("#goo");
  width: 100%;
  height: 100%;
  position: relative;
}
.blobs .blob {
  width: 20px;
  height: 20px;
  margin: 0 5px 0px 0;
  background: black;
  border-radius: 50%;
  position: absolute;
  top: 0;
  animation: drip_one 5s infinite;
}
.blobs .blob:nth-child(1) {
  left: -8%;
}
.blobs .blob:nth-child(2) {
  left: -5%;
}
.blobs .blob:nth-child(3) {
  left: -2%;
}
.blobs .blob:nth-child(4) {
  left: 1%;
}
.blobs .blob:nth-child(5) {
  left: 4%;
}
.blobs .blob:nth-child(6) {
  left: 7%;
}
.blobs .blob:nth-child(7) {
  left: 10%;
}
.blobs .blob:nth-child(8) {
  left: 13%;
}
.blobs .blob:nth-child(9) {
  left: 16%;
}
.blobs .blob:nth-child(10) {
  left: 19%;
}
.blobs .blob:nth-child(11) {
  left: 22%;
}
.blobs .blob:nth-child(12) {
  left: 25%;
}
.blobs .blob:nth-child(13) {
  left: 28%;
}
.blobs .blob:nth-child(14) {
  left: 31%;
}
.blobs .blob:nth-child(15) {
  left: 34%;
}
.blobs .blob:nth-child(16) {
  left: 37%;
}
.blobs .blob:nth-child(17) {
  left: 40%;
}
.blobs .blob:nth-child(18) {
  left: 43%;
}
.blobs .blob:nth-child(19) {
  left: 46%;
}
.blobs .blob:nth-child(20) {
  left: 49%;
}
.blobs .blob:nth-child(21) {
  left: 52%;
}
.blobs .blob:nth-child(22) {
  left: 55%;
}
.blobs .blob:nth-child(23) {
  left: 58%;
}
.blobs .blob:nth-child(24) {
  left: 61%;
}
.blobs .blob:nth-child(25) {
  left: 64%;
}
.blobs .blob:nth-child(26) {
  left: 67%;
}
.blobs .blob:nth-child(27) {
  left: 70%;
}
.blobs .blob:nth-child(28) {
  left: 73%;
}
.blobs .blob:nth-child(29) {
  left: 76%;
}
.blobs .blob:nth-child(30) {
  left: 79%;
}
.blobs .blob:nth-child(31) {
  left: 82%;
}
.blobs .blob:nth-child(32) {
  left: 85%;
}
.blobs .blob:nth-child(33) {
  left: 88%;
}
.blobs .blob:nth-child(34) {
  left: 91%;
}
.blobs .blob:nth-child(35) {
  left: 94%;
}
.blobs .blob:nth-child(36) {
  left: 97%;
}
.blobs .blob:nth-child(37) {
  left: 100%;
}
.blobs .blob:nth-child(38) {
  left: 103%;
}
.blobs .blob:nth-child(39) {
  left: 106%;
}
.blobs .blob:nth-child(40) {
  left: 109%;
}
.blobs .blob:nth-child(41) {
  left: 112%;
}
.blobs .blob:nth-child(42) {
  left: 115%;
}
.blobs .blob:nth-child(43) {
  left: 118%;
}
.blobs .blob:nth-child(44) {
  left: 121%;
}
.blobs .blob:nth-child(45) {
  left: 124%;
}
.blobs .blob:nth-child(46) {
  left: 127%;
}
.blobs .blob:nth-child(47) {
  left: 130%;
}
.blobs .blob:nth-child(48) {
  left: 133%;
}
.blobs .blob:nth-child(49) {
  left: 136%;
}
.blobs .blob:nth-child(50) {
  left: 139%;
}
.blobs .blob:nth-of-type(4n-7) {
  width: 65px;
  animation: drip_four 5s infinite;
}
.blobs .blob:nth-of-type(3n-2) {
  width: 26px;
}
.blobs .blob:nth-of-type(2) {
  width: 22px;
}
.blobs .blob:nth-of-type(8) {
  animation: drip_five 5s infinite;
}
.blobs .blob:nth-of-type(5n+3) {
  animation: drip_six 5s infinite;
}
.blobs .blob:nth-of-type(4n+2) {
  height: 56px;
  animation: drip_two 5s infinite;
}
.blobs .blob:nth-of-type(6n-2) {
  height: 42px;
  animation: drip_three 5s infinite;
}

@keyframes drip_one {
  from {
    top: 0;
  }
  to {
    top: 103%;
  }
}
@keyframes drip_two {
  from {
    top: 0;
  }
  to {
    top: 104%;
  }
}
@keyframes drip_three {
  from {
    top: 0;
    height: 52px;
  }
  to {
    top: 102%;
    height: 132px;
  }
}
@keyframes drip_four {
  from {
    top: 0;
    width: 65px;
    height: 30px;
  }
  to {
    top: 102%;
    width: 75px;
    height: 45px;
  }
}
@keyframes drip_five {
  from {
    top: 0;
    height: 30px;
  }
  to {
    top: 102%;
    height: 72px;
  }
}
@keyframes drip_six {
  from {
    top: 0;
    width: 15px;
    height: 30px;
  }
  to {
    top: 102%;
    width: 20px;
    height: 200px;
  }
}
@keyframes liquid {
  from {
    height: 25px;
  }
  to {
    height: 109%;
  }
}
