.loader-container {
  background-color: white;
  border-radius: 15px;
  position: fixed;
  top: calc(40% - 30px);
  left: calc(50% - 170px);
  z-index: 2599;
  animation: showMe 1s;
  padding: 90px 10px 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.loader {
  border: 4px solid #ffffff;
  border-top: 4px solid #0091DA;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: showMe 1s, spin 2s linear infinite;
  position: fixed;
  left: calc(50% - 30px);
  top: 40%;
  z-index: 2600;
}

.loader-text {
  text-align: center;
  max-width: 400px;
}

@keyframes spin {
  0% {
    transform: rotate(0)
  }

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

@keyframes showMe {
  0% {
    opacity: 0;
  }

  99.99% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
