﻿.loading-container.hidden {
    display: none !important;
}

@keyframes moving {
  0%, 5% {
    left: 0;
    background-color: #039be5;
  }
  95%, 100% {
    left: calc(100% - 0.25rem);
    background-color: #84d6fd;
  }
}
@keyframes box-2-anim {
  0% {
    transform: scale(1, 1) rotate(0deg);
    bottom: 0;
  }
  5% {
    bottom: 0.25rem;
  }
  15% {
    bottom: 0;
    transform: scale(1, 1) rotate(-180deg);
  }
  17.001% {
    bottom: 0;
    transform: translate(0.075rem, 0.05rem) scale(1.3, 0.6) translateY(0px) rotate(-180deg);
  }
  25% {
    bottom: 0;
    transform: scale(1, 1) rotate(-180deg);
  }
  66% {
    transform: scale(1, 1) rotate(-180deg);
    bottom: 0;
  }
  71% {
    bottom: 0.25rem;
  }
  81% {
    bottom: 0;
    transform: scale(1, 1) rotate(0deg);
  }
  83.001% {
    bottom: 0;
    transform: translate(-0.075rem, 0.05rem) scale(1.3, 0.6) translateY(0px) rotate(0deg);
  }
  91% {
    transform: scale(1, 1) rotate(0deg);
  }
  100% {
    transform: scale(1, 1) rotate(0deg);
  }
}
@keyframes box-3-anim {
  0% {
    transform: scale(1, 1) rotate(0deg);
    bottom: 0;
  }
  5% {
    bottom: 0.25rem;
  }
  15% {
    bottom: 0;
    transform: scale(1, 1) rotate(-180deg);
  }
  17.001% {
    bottom: 0;
    transform: translate(0.075rem, 0.05rem) scale(1.3, 0.6) translateY(0px) rotate(-180deg);
  }
  25% {
    bottom: 0;
    transform: scale(1, 1) rotate(-180deg);
  }
  56% {
    transform: scale(1, 1) rotate(-180deg);
    bottom: 0;
  }
  61% {
    bottom: 0.25rem;
  }
  71% {
    bottom: 0;
    transform: scale(1, 1) rotate(0deg);
  }
  73.001% {
    bottom: 0;
    transform: translate(-0.075rem, 0.05rem) scale(1.3, 0.6) translateY(0px) rotate(0deg);
  }
  81% {
    transform: scale(1, 1) rotate(0deg);
  }
  100% {
    transform: scale(1, 1) rotate(0deg);
  }
}
@keyframes box-4-anim {
  0% {
    transform: scale(1, 1) rotate(0deg);
    bottom: 0;
  }
  5% {
    bottom: 0.25rem;
  }
  15% {
    bottom: 0;
    transform: scale(1, 1) rotate(-180deg);
  }
  17.001% {
    bottom: 0;
    transform: translate(0.075rem, 0.05rem) scale(1.3, 0.6) translateY(0px) rotate(-180deg);
  }
  25% {
    bottom: 0;
    transform: scale(1, 1) rotate(-180deg);
  }
  45% {
    transform: scale(1, 1) rotate(-180deg);
    bottom: 0;
  }
  50% {
    bottom: 0.25rem;
  }
  60% {
    bottom: 0;
    transform: scale(1, 1) rotate(0deg);
  }
  62.001% {
    bottom: 0;
    transform: translate(-0.075rem, 0.05rem) scale(1.3, 0.6) translateY(0px) rotate(0deg);
  }
  70% {
    transform: scale(1, 1) rotate(0deg);
  }
  100% {
    transform: scale(1, 1) rotate(0deg);
  }
}
@keyframes box-5-anim {
  0% {
    transform: scale(1, 1) rotate(0deg);
    bottom: 0;
  }
  5% {
    bottom: 0.25rem;
  }
  15% {
    bottom: 0;
    transform: scale(1, 1) rotate(-180deg);
  }
  17.001% {
    bottom: 0;
    transform: translate(0.075rem, 0.05rem) scale(1.3, 0.6) translateY(0px) rotate(-180deg);
  }
  25% {
    bottom: 0;
    transform: scale(1, 1) rotate(-180deg);
  }
  33% {
    transform: scale(1, 1) rotate(-180deg);
    bottom: 0;
  }
  38% {
    bottom: 0.25rem;
  }
  48% {
    bottom: 0;
    transform: scale(1, 1) rotate(0deg);
  }
  50.001% {
    bottom: 0;
    transform: translate(-0.075rem, 0.05rem) scale(1.3, 0.6) translateY(0px) rotate(0deg);
  }
  58% {
    transform: scale(1, 1) rotate(0deg);
  }
  100% {
    transform: scale(1, 1) rotate(0deg);
  }
}
.loading-container {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.box-loading {
  width: 2.25rem;
  height: 0.25rem;
  position: relative;
  margin: 0 auto;
}
.box-loading > .box {
  position: absolute;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 0.05rem;
  background-color: #007bff;
  transform-origin: -0.125rem 0.125rem;
}
.box-loading > .box:nth-child(1) {
  left: 0rem;
  background-color: #06abfc;
}
.box-loading > .box:nth-child(2) {
  left: 0.5rem;
  background-color: #1fb4fc;
  animation: box-2-anim 2s infinite linear;
  animation-delay: 0.2222222222s;
}
.box-loading > .box:nth-child(3) {
  left: 1rem;
  background-color: #38bcfc;
  animation: box-3-anim 2s infinite linear;
  animation-delay: 0.3333333333s;
}
.box-loading > .box:nth-child(4) {
  left: 1.5rem;
  background-color: #51c5fd;
  animation: box-4-anim 2s infinite linear;
  animation-delay: 0.4444444444s;
}
.box-loading > .box:nth-child(5) {
  left: 2rem;
  background-color: #6acdfd;
  animation: box-5-anim 2s infinite linear;
  animation-delay: 0.5555555556s;
}
.box-loading > .box:nth-child(1) {
  background-color: #039be5;
  animation: moving 1s infinite cubic-bezier(0.6, 0, 0.4, 1) alternate;
}