.loading-animation-profile-icon,
.loading-animation-boxes {
  min-height: 350px;
  padding: 65px 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.loading-animation-profile-icon #loadingAnimationsText,
.loading-animation-boxes #loadingAnimationsText {
  font-size: 24px;
  text-align: center;
  margin: auto 34px;
}
.loading-animation-profile-icon-svg {
  width: 140px;
  height: 140px;
  background-image: url(../public/img/loading-profile-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 120px;
}
.loading-animation-profile-icon-svg-arc {
  animation: profile-arc-spinner 1s infinite linear;
  transform-origin: 50%;
  stroke: #005ea6;
  stroke-width: 2px;
  fill: none;
  opacity: 1;
}
.loading-animation-boxes-box-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: #f5f7fa;
  padding: 30px 20px;
  width: 200px;
  height: 250px;
  margin-bottom: 36px;
}
@media screen and (max-width: 530px) {
  .loading-animation-boxes-box-container {
    width: 150px;
    height: 187.5px;
  }
}
.loading-animation-boxes-box {
  display: block;
  position: relative;
  width: 100%;
  height: 40px;
}
@media screen and (max-width: 530px) {
  .loading-animation-boxes-box {
    height: 30px;
  }
}
.loading-animation-boxes-box.loading {
  animation: flying-boxes-loading 4s infinite;
}
.loading-animation-boxes-box.loading-complete {
  transform: rotate(0deg);
  opacity: 1;
  background-color: #0070ba;
  left: 0;
  top: 0;
}
.loading-animation-boxes-box:nth-child(2) {
  animation-delay: .8s;
}
.loading-animation-boxes-box:nth-child(3) {
  animation-delay: 1.6s;
}
@keyframes flying-boxes-loading {
  0% {
    opacity: 0;
    transform: rotate(-12deg);
    background-color: #0070ba;
    left: 70%;
    top: 10%;
  }
  5% {
    opacity: 1;
    transform: rotate(-12deg);
    left: 70%;
    top: 10%;
  }
  35% {
    transform: rotate(0deg);
    left: -1px;
    top: -1px;
  }
  37% {
    left: 0;
    top: 0;
  }
  50%,
  95% {
    background-color: #bfdbee;
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes profile-arc-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}

