@charset "UTF-8";



.bg-animation::before {
  background: #0096F1;
  display: none;
  content: "";
  position: fixed;
  transform: scale(100);
  z-index: 9999;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  width: 2rem;
  height: 2rem;
  display: block;
  border-radius: 50%;
  animation-name: PageAnime-circle;
  animation-duration: 0.8s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes PageAnime-circle {
  0% {
    transform: scale(100);
  }

  100% {
    transform: scale(0);
  }
}