.loading-cont {
  height: 500px;
  width: 500px;
  border-radius: 50%;
  background-color: var(--accent);
  position: relative;
  border: 1px solid var(--triple-accent);
}
.loading-cont > div:not(.loading-circle) {
  position: absolute;
  height: 4.3%;
  width: 4.3%;
  left: 47.85%;
  top: 47.85%;
  border-radius: 50%;
  transform-origin: center;
}
.loading-circle {
  height: calc(85.7% - 2px);
  width: calc(85.7% - 2px);
  border-radius: 50%;
  position: relative;
  top: 7.1%;
  left: 7.1%;
  border: 1px solid var(--triple-accent);
}
.loading-circle > div {
  height: 100%;
  width: 5%;
  top: 0;
  left: 47.5%;
  position: absolute;
}
.loading-circle > div:first-child > div {
  background-color: var(--red);
  animation-delay: calc(var(--animation-speed) * -0.17);
}
.loading-circle > div:nth-child(2) {
  transform: rotate(30deg);
}
.loading-circle > div:nth-child(2) > div {
  background-color: var(--orange);
  animation-delay: calc(var(--animation-speed) * -0.09);
}
.loading-circle > div:nth-child(3) {
  transform: rotate(60deg);
}
.loading-circle > div:nth-child(3) > div {
  background-color: var(--yellow);
}
.loading-circle > div:nth-child(4) {
  transform: rotate(90deg);
}
.loading-circle > div:nth-child(4) > div {
  background-color: var(--green);
  animation-delay: calc(var(--animation-speed) * -0.91);
}
.loading-circle > div:nth-child(5) {
  transform: rotate(120deg);
}
.loading-circle > div:nth-child(5) > div {
  background-color: var(--blue);
  animation-delay: calc(var(--animation-speed) * -0.83);
}
.loading-circle > div:nth-child(6) {
  transform: rotate(150deg);
}
.loading-circle > div:nth-child(6) > div {
  background-color: var(--purple);
  animation-delay: calc(var(--animation-speed) * -0.75);
}
.loading-circle > div:nth-child(7) {
  transform: rotate(15deg);
}
.loading-circle > div:nth-child(7) > div {
  background-color: var(--red);
  animation-delay: calc(var(--animation-speed) * -0.67);
}
.loading-circle > div:nth-child(8) {
  transform: rotate(45deg);
}
.loading-circle > div:nth-child(8) > div {
  background-color: var(--orange);
  animation-delay: calc(var(--animation-speed) * -0.59);
}
.loading-circle > div:nth-child(9) {
  transform: rotate(75deg);
}
.loading-circle > div:nth-child(9) > div {
  background-color: var(--yellow);
  animation-delay: calc(var(--animation-speed) * -0.5);
}
.loading-circle > div:nth-child(10) {
  transform: rotate(105deg);
}
.loading-circle > div:nth-child(10) > div {
  background-color: var(--green);
  animation-delay: calc(var(--animation-speed) * -1.41);
}
.loading-circle > div:nth-child(11) {
  transform: rotate(135deg);
}
.loading-circle > div:nth-child(11) > div {
  background-color: var(--blue);
  animation-delay: calc(var(--animation-speed) * -1.33);
}
.loading-circle > div:nth-child(12) {
  transform: rotate(165deg);
}
.loading-circle > div:nth-child(12) > div {
  background-color: var(--purple);
  animation-delay: calc(var(--animation-speed) * -1.25);
}
.loading-circle > div > div {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  animation-name: slide;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  --animation-speed: 3s;
  animation-duration: var(--animation-speed);
}
@keyframes slide {
  to, from {
    transform: translateY(0);
  }
  50% {
    transform: translateY(1900%);
  }
}