.j-load8 {
  display: flex;
  width: 100%;
  height: 100%;
}
.j-load8 .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-party {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
.j-load8 .loader .line-scale-party > div:nth-child(1) {
  animation-delay: 0.77s;
  animation-duration: 1.26s;
}
.j-load8 .loader .line-scale-party > div:nth-child(2) {
  animation-delay: 0.29s;
  animation-duration: 0.43s;
}
.j-load8 .loader .line-scale-party > div:nth-child(3) {
  animation-delay: 0.28s;
  animation-duration: 1.01s;
}
.j-load8 .loader .line-scale-party > div:nth-child(4) {
  animation-delay: 0.74s;
  animation-duration: 0.73s;
}
.j-load8 .loader .line-scale-party > div {
  background-color: #42b983;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  animation-fill-mode: both;
  display: inline-block;
  animation-name: line-scale-party;
  animation-iteration-count: infinite;
  animation-delay: 0;
}
