@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(-180deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
body {
  display: flex;
  height: 100%;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.loading-content * {
  display: block;
  text-align: center;
}

.loading-content i.loading {
  width: 68pt;
  height: 68pt;
  display: inline-block;
  border-radius: 50%;
  box-sizing: border-box;
  border: 5pt solid #004076;
  animation: rotate 1s 0s linear infinite;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border-top: 5pt solid rgba(0, 0, 0, 0);
}

.loading-content span {
  font-size: 12pt;
  line-height: 2;
  color: #000;
}