/* 
    for reference use this
    https://loading.io/css/
*/

#loadingBox .modal-body {
	padding: 0;	
}
.loading-wheel {
  display: inline-block;
  position: relative;
  width: 65px;
  height: 60px;
}

.loading-wheel div {
  position: absolute;
  width: 12px;
  height: 12px;
  background:var(--theme-color-brand-primary);
  border-radius: 50%;
  animation: loading-wheel 1s linear infinite;
}

.loading-wheel div:nth-child(1) {
  animation-delay: 0s;
  top: 23px;
  left: 51px;
}

.loading-wheel div:nth-child(2) {
  animation-delay: -0.1s;
  top: 8px;
  left: 45px;
}

.loading-wheel div:nth-child(3) {
  animation-delay: -0.2s;
  top: 0px;
  left: 28px;
}

.loading-wheel div:nth-child(4) {
  animation-delay: -0.3s;
  top: 8px;
  left: 11px;
}

.loading-wheel div:nth-child(5) {
  animation-delay: -0.4s;
  top: 23px;
  left: 4px;
}

.loading-wheel div:nth-child(6) {
  animation-delay: -0.5s;
  top: 39px;
  left: 11px;
}

.loading-wheel div:nth-child(7) {
  animation-delay: -0.6s;
  top: 46px;
  left: 28px;
}

.loading-wheel div:nth-child(8) {
  animation-delay: -0.7s;
  top: 39px;
  left: 45px;
}


@keyframes loading-wheel {

  0%,
  20%,
  80%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.4);
  }
}
  