svg {
  display: none;
}
/* Loader */
.blobs {
  width: 300px;
  height: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 70px;
  transform-style: preserve-3d;
}
/* Blob center item */
.blobs .blob-center {
  transform-style: preserve-3d;
  position: absolute;
  z-index: 10;
  background: #21818e;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  transform-origin: left top;
  transform: scale(0.9) translate(-50%, -50%);
  animation: blob-grow linear 3.4s infinite;
  border-radius: 50%;
  box-shadow: 0 -10px 40px -5px #ffffff;
}

/* Blob item */
.blob {
  position: absolute;
  background: #21818e;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  animation: blobs ease-out 3.4s infinite;
  transform: scale(0.9) translate(-50%, -50%);
  transform-origin: center top;
  opacity: 0;
}
/* Set animation delay for each of type */
.blob:nth-child(2) {
  animation-delay: 0.4s;
  background: #2aa6b7;
}
.blob:nth-child(3) {
  animation-delay: 0.6s;
  background: #41c2d3;
}
.blob:nth-child(4) {
  animation-delay: 0.8s;
  background: #6bcfdd;
}
.blob:nth-child(5) {
  animation-delay: 1s;
  background: #ffffff;
}

/* Keyframes */
@keyframes blobs {
  0% {
    opacity: 0;
    transform: scale(0) translate(calc(-330px - 50%), -50%);
    z-index: 8;
  }
  1% {
    opacity: 1;
    z-index: 8;
  }
  35%,
  65% {
    opacity: 1;
    transform: scale(0.9) translate(-50%, -50%);
    z-index: 9;
  }
  99% {
    opacity: 1;
    z-index: 8;
  }
  100% {
    opacity: 0;
    transform: scale(0) translate(calc(330px - 50%), -50%);
    z-index: 8;
  }
}

@keyframes blob-grow {
  0%,
  39% {
    transform: scale(0) translate(-50%, -50%);
  }
  40%,
  42% {
    transform: scale(1, 0.9) translate(-50%, -50%);
    background: #2aa6b7;
  }
  43%,
  44% {
    transform: scale(1.2, 1.1) translate(-50%, -50%);
  }
  45%,
  46% {
    transform: scale(1.3, 1.2) translate(-50%, -50%);
  }
  47%,
  48% {
    transform: scale(1.4, 1.3) translate(-50%, -50%);
  }
  52% {
    transform: scale(1.5, 1.4) translate(-50%, -50%);
  }
  54% {
    transform: scale(1.7, 1.6) translate(-50%, -50%);
  }
  58% {
    transform: scale(1.8, 1.7) translate(-50%, -50%);
  }
  68%,
  70% {
    transform: scale(1.7, 1.5) translate(-50%, -50%);
    background: #6bcfdd;
  }
  78% {
    transform: scale(1.6, 1.4) translate(-50%, -50%);
    background: #6bcfdd;
  }
  80%,
  81% {
    transform: scale(1.5, 1.4) translate(-50%, -50%);
    background: #80d6e2;
  }
  82%,
  83% {
    transform: scale(1.4, 1.3) translate(-50%, -50%);
    background: #a9e3eb;
  }
  84%,
  85% {
    transform: scale(1.3, 1.2) translate(-50%, -50%);
    background: #e7f7f9;
  }
  86%,
  87% {
    transform: scale(1.2, 1.1) translate(-50%, -50%);
    background: #ffffff;
  }
  90%,
  91% {
    transform: scale(1, 0.9) translate(-50%, -50%);
    background: #ffffff;
  }
  92%,
  100% {
    transform: scale(0) translate(-50%, -50%);
    background: #ffffff;
  }
}
