.pace .pace-activity {
  top: 70px;
}
.pace .pace-progress-inner {
  box-shadow: none;
}
.loading::before,
.loading::after {
  position: fixed;
  z-index: 3000;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.loading::before {
  content: '';
  background-color: #fff;
}
.loading::after {
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  content: url(./assets/images/logo.png);
  text-align: center;
  white-space: pre;
  font-weight: normal;
  font-size: 24px;
  letter-spacing: 0.04rem;
  color: #000;
  opacity: 0.95;
  animation: animation 1s alternate infinite;
}
@keyframes animation {
  to {
    opacity: 0.2;
  }
}