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

.voice-bar {
  display: inline-block;
  width: 5px;
  height: 20px;
  margin: 0 1px;
  background-color: #314e5c;
  animation: wave 1s infinite ease-in-out;
  border-radius: 5px;
}

.voice-bar:nth-child(1) {
  animation-delay: -0.9s;
}

.voice-bar:nth-child(2) {
  animation-delay: -0.8s;
}

.voice-bar:nth-child(3) {
  animation-delay: -0.7s;
}

.voice-bar:nth-child(4) {
  animation-delay: -0.6s;
}

.voice-bar:nth-child(5) {
  animation-delay: -0.5s;
}

.voice-bar:nth-child(6) {
  animation-delay: -0.4s;
}

.voice-bar:nth-child(7) {
  animation-delay: -0.3s;
}

.voice-bar:nth-child(8) {
  animation-delay: -0.2s;
}

.voice-bar:nth-child(9) {
  animation-delay: -0.1s;
}


.micloader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  border-top: 3px solid #FFF;
  border-right: 3px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 
.loadergpt2, .loadergpt2:before, .loadergpt2:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  animation-fill-mode: both;
  animation: bblFadInOut 1.8s infinite ease-in-out;
}
.loadergpt2 {
  color: #314e5c;
  font-size: 7px;
  position: relative;
  text-indent: -9999em;
  transform: translateZ(0);
  animation-delay: -0.16s;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.loadergpt2:before,
.loadergpt2:after {
  content: '';
  position: absolute;
  top: 0;
}
.loadergpt2:before {
  left: -3.5em;
  animation-delay: -0.32s;
}
.loadergpt2:after {
  left: 3.5em;
}

@keyframes bblFadInOut {
  0%, 80%, 100% { box-shadow: 0 2.5em 0 -1.3em }
  40% { box-shadow: 0 2.5em 0 0 }
}