.loading_container {
  --primary-color: #409eff;
  --primary-color-plain: #ecf5ff;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  z-index: 9999;
}

.loading_logo {
  position: relative;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader_ring {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  box-sizing: border-box;
  border: 4px solid var(--primary-color-plain);
  border-right-color: var(--primary-color);
  animation: loader_ring-animation 1s infinite linear;
}

@keyframes loader_ring-animation {
  to {
    transform: rotate(1turn);
  }
}
