.loading-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex: 1;
  height: 100%;
}
.load1 {
  display: flex;
  height: 100%;
}
.load1 .loader {
  background-color: transparent;
  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;
}
@keyframes scale {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  45% {
    transform: scale(0.1);
    opacity: 0.7;
  }
  80% {
    transform: scale(1);
    opacity: 1;
  }
}
.load1 .loader .ball-pulse > div:nth-child(0) {
  animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.load1 .loader .ball-pulse > div:nth-child(1) {
  animation: scale 0.75s 0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.load1 .loader .ball-pulse > div:nth-child(2) {
  animation: scale 0.75s 0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.load1 .loader .ball-pulse > div:nth-child(3) {
  animation: scale 0.75s 0.36s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.load1 .loader .ball-pulse > div {
  background-color: var(--color);
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  animation-fill-mode: both;
  display: inline-block;
}
.load2 {
  display: flex;
  height: 100%;
}
.load2 .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;
}
@keyframes ball-grid-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.5);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.load2 .loader .ball-grid-pulse {
  width: 57px;
}
.load2 .loader .ball-grid-pulse > div:nth-child(1) {
  animation-delay: -0.06s;
  animation-duration: 0.72s;
}
.load2 .loader .ball-grid-pulse > div:nth-child(2) {
  animation-delay: 0.25s;
  animation-duration: 1.02s;
}
.load2 .loader .ball-grid-pulse > div:nth-child(3) {
  animation-delay: -0.17s;
  animation-duration: 1.28s;
}
.load2 .loader .ball-grid-pulse > div:nth-child(4) {
  animation-delay: 0.48s;
  animation-duration: 1.42s;
}
.load2 .loader .ball-grid-pulse > div:nth-child(5) {
  animation-delay: 0.31s;
  animation-duration: 1.45s;
}
.load2 .loader .ball-grid-pulse > div:nth-child(6) {
  animation-delay: 0.03s;
  animation-duration: 1.18s;
}
.load2 .loader .ball-grid-pulse > div:nth-child(7) {
  animation-delay: 0.46s;
  animation-duration: 0.87s;
}
.load2 .loader .ball-grid-pulse > div:nth-child(8) {
  animation-delay: 0.78s;
  animation-duration: 1.45s;
}
.load2 .loader .ball-grid-pulse > div:nth-child(9) {
  animation-delay: 0.45s;
  animation-duration: 1.06s;
}
.load2 .loader .ball-grid-pulse > div {
  background-color: var(--color);
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  animation-fill-mode: both;
  display: inline-block;
  float: left;
  animation-name: ball-grid-pulse;
  animation-iteration-count: infinite;
  animation-delay: 0;
}
.j-load3 {
  display: flex;
  height: 100%;
}
.j-load3 .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;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(0.6);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}
.j-load3 .loader .ball-clip-rotate > div {
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  animation-fill-mode: both;
  border: 2px solid var(--color);
  border-bottom-color: transparent !important;
  height: 25px;
  width: 25px;
  background: transparent !important;
  display: inline-block;
  animation: rotate 0.75s 0s linear infinite;
}
.j-load4 {
  display: flex;
  width: 100%;
  height: 100%;
}
.j-load4 .loader {
  background-color: white;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  justify-content: center;
}
.j-load4 .loader .loader-inner {
  width: 40px;
  height: 40px;
  margin: 30px auto 0;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(0.6);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}
@keyframes scale {
  30% {
    transform: scale(0.3);
  }
  100% {
    transform: scale(1);
  }
}
.j-load4 .loader .ball-clip-rotate-pulse {
  position: relative;
  transform: translateY(-15px);
}
.j-load4 .loader .ball-clip-rotate-pulse > div {
  animation-fill-mode: both;
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 100%;
}
.j-load4 .loader .ball-clip-rotate-pulse > div:first-child {
  background: var(--color);
  height: 16px;
  width: 16px;
  top: 9px;
  left: 9px;
  animation: scale 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
}
.j-load4 .loader .ball-clip-rotate-pulse > div:last-child {
  position: absolute;
  width: 30px;
  height: 30px;
  background: transparent;
  border: 2px solid var(--color);
  opacity: 0.55;
  border-bottom-color: transparent !important;
  border-top-color: transparent !important;
  animation: rotate 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
  animation-duration: 1s;
}
.j-load5 {
  display: flex;
  height: 100%;
}
.j-load5 .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;
}
@keyframes square-spin {
  25% {
    transform: perspective(100px) rotateX(180deg) rotateY(0);
  }
  50% {
    transform: perspective(100px) rotateX(180deg) rotateY(180deg);
  }
  75% {
    transform: perspective(100px) rotateX(0) rotateY(180deg);
  }
  100% {
    transform: perspective(100px) rotateX(0) rotateY(0);
  }
}
.j-load5 .loader .square-spin > div {
  animation-fill-mode: both;
  width: 50px;
  height: 50px;
  background: var(--color);
  animation: square-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
}
