@charset "UTF-8";

/*----------------------------------------
loading
----------------------------------------*/
.js-loading {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fafafa;
}

.js-loading-parts {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  display: block;
  width: 50px;
  height: 50px;
  border: 2px solid #051833;
  border-top: 2px solid rgba(5, 24, 51, 0.3);
  border-radius: 50%;
  opacity: 1;
  -webkit-animation: rotate 2s infinite ease;
          animation: rotate 2s infinite ease;
}

body[data-status="loaded"] .js-loading {
  pointer-events: none;
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
}

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

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