.app-loader-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.app-loader-animation {
  width: 25vw;
  height: 25vw;
  display: inline-block;
  position: relative;
  color: #9cdce4;
}

.app-loader-animation::after,
.app-loader-animation::before {
  content: "";
  box-sizing: border-box;
  width: 25vw;
  height: 25vw;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  animation: appLoaderAnimation 2s linear infinite;
}

.app-loader-animation::after {
  animation-delay: 1s;
}

.app-loader-label {
  font-family: "Karla";
}

@keyframes appLoaderAnimation {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
