.j-load6 {
  display: flex;
  height: 100%;
}
.j-load6 .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%;
  max-width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.j-load6 .loader .loader-inner {
  width: 40px;
  height: 40px;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(0.6);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}
.j-load6 .loader .ball-clip-rotate-multiple {
  position: relative;
}
.j-load6 .loader .ball-clip-rotate-multiple > div {
  animation-fill-mode: both;
  position: absolute;
  left: 0px;
  top: 0px;
  border: 2px solid #42b983;
  border-bottom-color: transparent !important;
  border-top-color: transparent !important;
  border-radius: 100%;
  height: 35px;
  width: 35px;
  animation: rotate 1s 0s ease-in-out infinite;
}
.j-load6 .loader .ball-clip-rotate-multiple > div:last-child {
  display: inline-block;
  top: 10px;
  left: 10px;
  width: 15px;
  height: 15px;
  animation-duration: 0.5s;
  border-color: transparent initial initial transparent !important;
  animation-direction: reverse;
}
