.js-loading {
  height: 100%;
  display: block;
  width: 100%;
  background: #737088;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}
.js-loading-parts {
  top: calc(50% - 45px);
  left: calc(50% - 30px);
  text-align: center;
  display: block;
  position: absolute;
  border-radius: 50%;
  /* border-top: 4px solid rgba(255, 255, 255, .5); */
  /* border-right: 4px solid rgba(255, 255, 255, .3); */
  /* border-bottom: 4px solid rgba(255, 255, 255, .3); */
  /* border-left: 4px solid rgba(255, 255, 255, .3); */
  animation: 1s steps(8) rotate infinite;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.js-loading-parts:before {
  content: "\f110";

  font-size: 60px;
  color: rgba(255, 255, 255, .5);
}


@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}