.app-loading .max-height {
  height: 100vh;
}

.app-loading .d-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-loading .big-loading {
  width: 4rem;
  height: 4rem;
}

.app-loading .loading-wrapper {
  width: 8rem;
  margin: 0 auto;
  position: relative;
}

.app-loading .loading-pulse {
  background-color: var(--primary);
  border-radius: 50%;
  position: relative;
}
.app-loading .loading-pulse:after {
  content: '';
  position: absolute;
  background-color: var(--primary);
  opacity: 70%;
  width: 5rem;
  height: 5rem;
  z-index: -1;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 1s ease-out infinite;
}

@keyframes pulse {
  0% {
    opacity: 100%;
    width: 4.5rem;
    height: 4.5rem;
  }
  5% {
    opacity: 90%;
    width: 4.5rem;
    height: 4.5rem;
  }
  100% {
    opacity: 0;
    width: 8rem;
    height: 8rem;
  }
}

:root {
  --primary: #335dfd;
}
