.celula {
  position: absolute;
  width: 11.33%;
  height: 10.73%;
  border-radius: 50%;
}
.celula.celula-p {
  width: 5.66%;
  height: 5.36%;
}
.celula::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.celula.escura::after {
  background: rgb(255, 255, 255);
  background: -moz-radial-gradient(
    ellipse at left top,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(0, 0, 0, 0.18) 30%,
    rgba(0, 0, 0, 0.6) 62%,
    rgba(0, 0, 0, 0.76) 100%
  );
  background: -webkit-radial-gradient(
    ellipse at left top,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(0, 0, 0, 0.18) 30%,
    rgba(0, 0, 0, 0.6) 62%,
    rgba(0, 0, 0, 0.76) 100%
  );
  background: radial-gradient(
    ellipse at left top,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(0, 0, 0, 0.18) 30%,
    rgba(0, 0, 0, 0.6) 62%,
    rgba(0, 0, 0, 0.76) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#000000",GradientType=1);
}
.celula.clara::after {
  background: rgb(255, 255, 255);
  background: -moz-radial-gradient(
    ellipse at left top,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 1) 30%,
    rgba(255, 255, 255, 0.12) 62%,
    rgba(255, 255, 255, 0) 100%
  );
  background: -webkit-radial-gradient(
    ellipse at left top,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 1) 30%,
    rgba(255, 255, 255, 0.12) 62%,
    rgba(255, 255, 255, 0) 100%
  );
  background: radial-gradient(
    ellipse at left top,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 1) 30%,
    rgba(255, 255, 255, 0.12) 62%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}
.celula.celula-verde {
  background-color: var(--moa-cell-green);
}
.celula.celula-vermelha {
  background-color: var(--moa-cell-red);
}
.celula.celula-roxa {
  background-color: var(--moa-cell-purple);
}
.celula.celula-amarela {
  background-color: var(--moa-cell-yellow);
}
.celula.celula-azul {
  background-color: var(--moa-cell-blue);
}

.container-animacao {
  position: absolute;
  z-index: 14;
  top: 14.7%;
  bottom: 0;
  left: 0;
  right: 0;
}

.celula:nth-child(1) {
  top: 12%;
  left: 29%;
  animation-delay: 500ms;
}
.celula:nth-child(2) {
  top: 18%;
  left: 22%;
  animation-delay: 1s;
}
.celula:nth-child(3) {
  top: 26%;
  left: 25%;
  animation-delay: 1.5s;
}
.celula:nth-child(4) {
  top: 28%;
  left: 33%;
  animation-delay: 900ms;
}
.celula:nth-child(5) {
  top: 26%;
  left: 42%;
  animation-delay: 1.2s;
}
.celula:nth-child(6) {
  top: 18%;
  left: 47%;
  animation-delay: 750ms;
}
.celula:nth-child(7) {
  top: 40%;
  left: 50%;
  animation-delay: 1.6s;
}
.celula:nth-child(8) {
  top: 23%;
  left: 59%;
  animation-delay: 1s;
}
.celula:nth-child(9) {
  top: 34%;
  left: 59%;
  animation-delay: 650ms;
}
.celula:nth-child(10) {
  top: 46%;
  left: 22%;
  animation-delay: 1.1s;
}
.celula:nth-child(11) {
  top: 58%;
  left: 38%;
  animation-delay: 1.4s;
}
.celula:nth-child(12) {
  top: 5%;
  left: 0;
  animation-delay: 650ms;
}
.celula:nth-child(13) {
  top: 62%;
  left: 86%;
  animation-delay: 650ms;
}

.container-animacao .celula {
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.container-animacao.anime .celula {
  animation-name: anima_apoptose;
  /* animation: anima_apoptose 2s ease-out 500ms 1 normal forwards;
    -webkit-animation: anima_apoptose 2s ease-out 500ms 1 normal forwards; */
}

@keyframes anima_apoptose {
  0% {
  }
  15% {
    background-color: #777;
  }
  30% {
    opacity: 1;
  }
  100% {
    background-color: #777;
    opacity: 0;
    top: 80%;
  }
}

/* [ name, duration, ease, delay, interation-count, direction ] */
.container-arvore .arvore-recosntituicao.anime {
  animation: anima_reconstituicao 3s ease-out 500ms 1 normal forwards;
  -webkit-animation: anima_reconstituicao 3s ease-out 500ms 1 normal forwards;
}

@keyframes anima_reconstituicao {
  0% {
    opacity: 0;
  }
  45% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
