.loader-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 0rem;
}



.loader-container > p {
  margin-top: 1rem;
  color: grey;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 40px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  /* margin: 8px; */
  border: 4px solid rgb(96, 174, 69);
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: rgb(96, 174, 69) transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

/* Ring Size */

.loader-container.sm .lds-ring {
  width: 20px;
  height: 20px;
}

.loader-container.sm .lds-ring div {
  border-width: 2px !important;
}

.loader-container.xs .lds-ring {
  width: 15px;
  height: 15px;
}

.loader-container.xs {
  padding: 0.25rem 0rem;
}

.loader-container.xs .lds-ring div {
  border-width: 1.5px !important;
  width: 15px !important;
  height: 15px !important;
}
/* Ring color */

.loader-container.white .lds-ring div {
  width: 30px;
  height: 30px;
  border: 4px solid white;
  border-color: white transparent transparent transparent;
}


@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}