@charset "utf-8";

/* --------------------------------------------------------------------

  Opening Loader Animation Styles

-------------------------------------------------------------------- */
.loader-unit {
  position: absolute;
  z-index: 9997;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(970 / 660 * 100%);
  margin: 0;
  aspect-ratio: 970 / 660;
  background: rgba(255,255,255,1);
  transition: all 1s;
}
.loader {
  position: absolute;
  top: calc(660 / 970 * 50%);
  left: 50%;
  transform: translate(-50%, calc(660 / 970 * -50%));
  width: 50px;
  height: 50px;
  border: 3px solid #f2f2f2;
  border-top-color: #205799;
  border-radius: 50%;
  display: inline-block;
  animation: spin 1.0s infinite linear;
}

@media screen and (max-width:480px) {
  .loader-unit {
    position: absolute;
    height: calc(750 / 660 * 100%);
    aspect-ratio: 750 / 660;
    display: grid;
    place-content: center;
  }
  .loader {
    position: relative;
    top: initial;
    left: initial;
    transform: translate(0);
    width: calc(50px * .8);
    height: calc(50px * .8);
  }
}
/*
.loader li {
  height: 0;
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  margin: 0;
  height: 15px;
  width: 15px;
  border: 3px solid #cccccc;
  border-radius: 100%;
  transform: transformZ(0);
  animation: LOADING 2s infinite;
}
.loader li:first-child {
  left: -45px;
  animation-delay: 0s;
}
.loader li:nth-child(2n) {
  left: 0;
  animation-delay: .2s;
}
.loader li:nth-child(3n) {
  left: 45px;
  animation-delay: .4s;
}

@media screen and (max-width:480px) {
  .loader li:first-child { left: -35px; }
  .loader li:nth-child(2n) { left: 0; }
  .loader li:nth-child(3n) { left: 35px; }
}

@keyframes LOADING {
  0% {
    transform: scale(.5);
    background-color: #cccccc;
  }
  50% {
    transform: scale(.75);
    background-color: #eaeaea;
  }
  100% {
    transform: scale(.5);
    background-color: #cccccc;
  }
}
*/

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}