body {
  margin: 0;
}

#wz-loading-bg {
  width: 100vw;
  height: 100vh;
  position: relative;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.wz-loading-logo {
  margin: auto;
}

.first-block,
.third-block {
  fill: #0091D2;
  -webkit-animation: color1Change 2s infinite;
  animation: color1Change 2s infinite;
}

.second-block,
.fourth-block {
  fill: #3D61AD;
  -webkit-animation: color2Change 2s infinite;
  animation: color2Change 2s infinite;
}

.first-block {
  animation-delay: 0s;
}

.second-block {
  animation-delay: 0.25s;
}

.third-block {
  animation-delay: 0.5s;
}

.fourth-block {
  animation-delay: 0.75s;
}

@keyframes color1Change {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@keyframes color2Change {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

.dot-loader {
  margin: auto;
  margin-top: 12px;
  width: 80px;
  height: 12px;
  display: flex;
  justify-content: space-between;
}

.dot-loader div {
  width: 12px;
  height: 12px;
  background-color: #0091D2;
  border-radius: 50%;
  opacity: 0;
  animation: dotOpacity 1s infinite;
}

.dot-loader div:nth-child(1) {
  animation-delay: 0s;
}

.dot-loader div:nth-child(2) {
  animation-delay: 0.2s;
}

.dot-loader div:nth-child(3) {
  animation-delay: 0.4s;
}

.dot-loader div:nth-child(4) {
  animation-delay: 0.6s;
}

.dot-loader div:nth-child(5) {
  animation-delay: 0.8s;
}

@keyframes dotOpacity {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}


/* .loading {
  position: absolute;
  left: calc(50% + 45px);
  top: 50%;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 3px solid transparent;
}
.loading .effect-1,
.loading .effect-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-left: 3px solid rgba(121, 97, 249, 1);
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.loading .effect-1 {
  animation: rotate 1s ease infinite;
}
.loading .effect-2 {
  animation: rotateOpacity 1s ease infinite 0.1s;
}
.loading .effect-3 {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-left: 3px solid rgba(121, 97, 249, 1);
  -webkit-animation: rotateOpacity 1s ease infinite 0.2s;
  animation: rotateOpacity 1s ease infinite 0.2s;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.loading .effects {
  transition: all 0.3s ease;
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@keyframes rotateOpacity {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 0.1;
  }
  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
    opacity: 1;
  }
} */