.j-load9 {
  display: flex;
  width: 100%;
  height: 100%;
}
.j-load9 .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 ball-beat {
  50% {
    opacity: 0.2;
    transform: scale(0.75);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.j-load9 .loader .ball-beat > div {
  background-color: #42b983;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  animation-fill-mode: both;
  display: inline-block;
  animation: ball-beat 0.7s 0s infinite linear;
}
.j-load9 .loader .ball-beat > div:nth-child(2n-1) {
  animation-delay: 0.35s !important;
}
