.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
}

.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.dot {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  border-radius: 50%;
  background-color: #6abf69;
  animation: loader 0.9s infinite ease-in-out;
}

.dot:nth-child(1) {
  animation-delay: -0.45s;
}

.dot:nth-child(2) {
  animation-delay: -0.3s;
}

.dot:nth-child(3) {
  animation-delay: -0.15s;
}

.dot:nth-child(4) {
  animation-delay: 0s;
}

@keyframes loader {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}

.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
}

.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.dot {
  width: 22px;
  height: 22px;
  margin: 0 5px;
  border-radius: 50%;
  background-color: #6abf69;
  animation: loader 0.9s infinite ease-in-out;
}

.dot:nth-child(1) {
  animation-delay: -0.45s;
}

.dot:nth-child(2) {
  animation-delay: -0.3s;
}

.dot:nth-child(3) {
  animation-delay: -0.15s;
}

.dot:nth-child(4) {
  animation-delay: 0s;
}

@keyframes loader {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
.loaded .loader-container {
  display: none;
}
