.global-console-vue--loading {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  font-size: 0;
  background-color: white;
}
.global-console-vue--loading img {
  margin-top: -100px;
}
.global-console-vue--loadingBox {
  width: 160px;
  height: 80px;
}

.global-console-vue--loadingBox .bg-path {
  fill: none;
  stroke: #f5f5f5;
  stroke-width: 21;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.global-console-vue--loadingBox .anim-path {
  animation: global-console-vue--loadingBox-draw 2s linear infinite;
  fill: none;
  stroke-width: 21;
  stroke-linecap: round;
  stroke-linejoin: round;
  /* CSS Animation */
  stroke-dasharray: 776.4229736328125;
  stroke-dashoffset: 776.4229736328125;
}

@keyframes global-console-vue--loadingBox-draw {
  0% {
    stroke-dashoffset: 776.42; /* Fully hidden */
  }
  50% {
    stroke-dashoffset: 0; /* Fully visible */
  }
  100% {
    stroke-dashoffset: -776.42; /* Fully hidden again */
  }
}