.cmd-loading {
  position: absolute;
  inset: 0;
  z-index: 200;
  clear: both;
  display: flex;
  flex-direction: column;
  user-select: none;
}

.cmd-loading .cmd-loading-content .circle-container {
  display: flex;
  flex-direction: column;
  padding: 1px;
  position: relative;
}

.cmd-loading .cmd-loading-content .circle-container .loading-circle {
  position: relative;
  border-radius: 50%;
  border-top-style: solid;
  border-right-style: solid;
  border-right-color: transparent;
  border-top-color: var(--loading-circle-color);
  animation: cmd-rotation 1s linear infinite;
  border-top-width: var(--loading-line-size);
  border-right-width: var(--loading-line-size);
  flex: 1;
}

.cmd-loading .cmd-loading-content .circle-container .loading-circle::after {
  position: absolute;
  content: " ";
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  border-style: solid;
  border-left-width: var(--loading-line-size);
  border-bottom-width: var(--loading-line-size);
  border-left-color: var(--loading-circle-next-color);
  border-bottom-color: transparent;
  animation: cmd-rotation 0.5s linear infinite reverse;
}

@keyframes cmd-rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

