@keyframes line-scale {
  0% {
    -webkit-transform: scaley(1);
            transform: scaley(1);
  }
  50% {
    -webkit-transform: scaley(0.4);
            transform: scaley(0.4);
  }
  100% {
    -webkit-transform: scaley(1);
            transform: scaley(1);
  }
}
#progress .line-scale > div:nth-child(1) {
  animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
#progress .line-scale > div:nth-child(2) {
  animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
#progress .line-scale > div:nth-child(3) {
  animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
#progress .line-scale > div:nth-child(4) {
  animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
#progress .line-scale > div:nth-child(5) {
  animation: line-scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
#progress .line-scale > div {
  display: inline-block;
  margin: 2px;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  background-color: var(--loading_color_bar1);

  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
