.loading-navbar-height {
  height: 60px;
}

.loading-body-height {
  height: 762px;
}

.loading-text {
  top: 40%;
  bottom: 30%;
  left: 35%;
  right: 35%;
  height: 30%;
  width: 30%;
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  text-align: center !important;
}

.loader-container {
  top: calc(30% - 60px);
  bottom: calc(40% - 60px);
  left: calc(50% - 60px);
  right: calc(50% - 60px);
  width: 120px;
  height: 120px;
  position: absolute;
}

.loader {
  border: 16px solid var(--surface-section); /* Light grey */
  border-top: 16px solid var(--primary-color); /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
