.shape {
  --BG-COLOR: #59d5e0;
  /*margin-top: 50px;*/
  /*margin-left: 50px;*/
  /*margin-bottom: 50px;*/
  --OUTLINE-COLOR: #068b97;
  --OUTLINE-SIZE: 15px;
  width: 12rem;
  aspect-ratio: 1;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  outline: var(--OUTLINE-SIZE) solid var(--OUTLINE-COLOR);
  background: var(--BG-COLOR);
  box-shadow: 0px 0px calc(var(--OUTLINE-SIZE) + 25px) rgba(0, 0, 0, 0.438);
  animation: morph 3.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.numRowContainer {
  height: fit-content;
  animation: infiniteScroll 3.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

@keyframes infiniteScroll {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(0, -50%);
  }
}

@keyframes morph {
  50% {
    --BG-COLOR: PINK;
    --OUTLINE-COLOR: #ff407d;
    transform: rotate(150deg);
    border-radius: 20%;
  }
  100% {
    transform: rotate(360deg);
  }
}

.loader {
  display: inline-block;
  position: absolute;
  margin-top: 300px;
  margin-left: -300px;
}

.imageLoaderBinary {
}

