@keyframes loading {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.pangeaM-pageloading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.85);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.pangeaM-pageloading .circle-box {
  margin-top: 10px;
  display: flex;
  align-items: center;
}

.pangeaM-pageloading .circle-box  span {
  display: block;
  margin: 0.19em;
  width: 0.8em;
  height: 0.8em;
  background: #005e63;
  -webkit-animation: loading 1s infinite alternate;
  animation: loading 1s infinite alternate;
  border-radius: 50%;
}

.pangeaM-pageloading .circle-box  span:nth-child(2) {
  background: #00878a;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.pangeaM-pageloading .circle-box  span:nth-child(3) {
  background: #01b0ac;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.pangeaM-pageloading .circle-box  span:nth-child(4) {
  background: #20bdb5;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.pangeaM-pageloading .circle-box  span:nth-child(5) {
  background: #42c9be;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.pangeaM-pageloading .circle-box  span:nth-child(6) {
  background: #69d6c9;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.pangeaM-pageloading .circle-box  span:nth-child(7) {
  background: #00878a;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}