.loading-component {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}

.loading-component span {
  font-size: 18px;
  color: rgb(84, 84, 84);
  font-style: italic;
  font-weight: 400;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

.circular-progress {
  display: inline-block;
  position: relative;
  width: var(--size);
  height: var(--size);
}

.circular-progress svg {
  animation: rotate 1.4s linear infinite;
  height: 100%;
  transform-origin: center center;
  width: 100%;
}

.circular-progress circle {
  fill: transparent;
  stroke: var(--color);
  stroke-linecap: round;
  stroke-width: var(--thickness);
  stroke-dasharray: var(--circumference);
  stroke-dashoffset: var(--offset);
  transition: stroke-dashoffset 0.35s;
  transform: rotate(-90deg);
  transform-origin: center center;
}
