.j-load10 {
  display: flex;
  width: 100%;
  height: 100%;
}
.j-load10 .loader {
  background-color: white;
  box-sizing: border-box;
  display: flex;
  flex: 0 1 auto;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 25%;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
@keyframes line-scale-pulse-out {
  0% {
    transform: scaley(1);
  }
  50% {
    transform: scaley(0.4);
  }
  100% {
    transform: scaley(1);
  }
}
.j-load10 .loader .line-scale-pulse-out > div {
  background-color: #42b983;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  animation-fill-mode: both;
  display: inline-block;
  animation: line-scale-pulse-out 0.9s 0s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
}
.j-load10 .loader .line-scale-pulse-out > div:nth-child(2),
.j-load10 .loader .line-scale-pulse-out > div:nth-child(4) {
  animation-delay: 0.2s !important;
}
.j-load10 .loader .line-scale-pulse-out > div:nth-child(1),
.j-load10 .loader .line-scale-pulse-out > div:nth-child(5) {
  animation-delay: 0.4s !important;
}
