.visual-loading-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #333;
  font-size: 14px;
}

.visual-circle-path {
  stroke: #0f62fe;
  stroke-width: 2;
  stroke-dasharray: 95, 126;
  stroke-dashoffset: 0;
  animation: visual-loading-dash 1.5s ease-in-out infinite;
}

@keyframes visual-loading-dash {
  0% {
    stroke-dasharray: 1, 126;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 95, 126;
    stroke-dashoffset: -31px
  }

  to {
    stroke-dasharray: 6, 120;
    stroke-dashoffset: -120px;
  }
}

.visual-loading-svg {
  width: 2.5em;
  height: 2.5em;
  max-width: 50px;
  max-height: 50px;
  animation: visual-loading-rotate 1.5s infinite ease-in-out;
  margin-bottom: 20px;
}

@keyframes visual-loading-rotate {
  to {
    transform: rotate(1turn);
  }
}
