.wzt-gls-global-loading-cover {
  width: 100vw;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(2px);
  transition: 0.8s;
  position: fixed;
  z-index: 999;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wzt-gls-global-loading-folding {
  margin: 20px auto;
  width: 50px;
  height: 50px;
  position: relative;
  transform: rotateZ(45deg);
}
.wzt-gls-global-loading-folding .sk-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  transform: scale(1.1);
}
.wzt-gls-global-loading-folding .sk-cube:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333;
  animation: sk-foldCubeAngle 2.4s infinite linear both;
  transform-origin: 100% 100%;
}
.wzt-gls-global-loading-folding .sk-cube2 {
  transform: scale(1.1) rotateZ(90deg);
}
.wzt-gls-global-loading-folding .sk-cube3 {
  transform: scale(1.1) rotateZ(180deg);
}
.wzt-gls-global-loading-folding .sk-cube4 {
  transform: scale(1.1) rotateZ(270deg);
}
.wzt-gls-global-loading-folding .sk-cube2:before {
  animation-delay: 0.3s;
}
.wzt-gls-global-loading-folding .sk-cube3:before {
  animation-delay: 0.6s;
}
.wzt-gls-global-loading-folding .sk-cube4:before {
  animation-delay: 0.9s;
}
.wzt-gls-global-loading-folding .sk-logo {
  transform: rotateZ(-45deg) translateY(30px) translateX(-10px);
  font-size: 24px;
  font-weight: 300;
  color: #888;
  letter-spacing: 1px;
}
@keyframes sk-foldCubeAngle {
  0%,
  10% {
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%,
  75% {
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%,
  100% {
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}
