.mdc-loading-container {
  position: relative;
  height: 54px;
  width: 80px;
  left: 45%;
  top: 12px;
}

.mdc-loading-dot {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  animation-timing-function: linear;
  background: var(--mdc-theme-primary,#333);
}

.mdc-loading-dot-1 {
  left: 8px;
  animation: mdc-loading-animation-1 0.6s infinite;
}

.mdc-loading-dot-2 {
  left: 8px;
  animation: mdc-loading-animation-2 0.6s infinite;
}

.mdc-loading-dot-3 {
  left: 32px;
  animation: mdc-loading-animation-2 0.6s infinite;
}

.mdc-loading-dot-4 {
  left: 56px;
  animation: mdc-loading-animation-4 0.6s infinite;
}

@keyframes mdc-loading-animation-1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes mdc-loading-animation-4 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}

@keyframes mdc-loading-animation-2 {
  0% {
    transform: translate(0,0);
  }
  100% {
    transform: translate(24px, 0);
  }
}