.tg-bounce-loader {
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
  display: flex;
  align-items: center;
}

.tg-bounce-loader > div {
  background-color: #006cab;
  height: 100%;
  max-height: 30px;
  width: 6px;
  display: inline-block;
  margin-right: 3px;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.tg-bounce-loader .rect2 {
  animation-delay: -1.1s;
}

.tg-bounce-loader .rect3 {
  animation-delay: -1s;
}

.tg-bounce-loader .rect4 {
  animation-delay: -0.9s;
}

.tg-bounce-loader .rect5 {
  animation-delay: -0.8s;
}

@keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
    transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
  }
}
