.flames {
  margin-left: 1em;
  position: relative;
  width: 3em;
  height: 3em;
  transform: translateX(-50%) rotate(135deg);
}
.flames .flame {
  position: absolute;
  right: 0%;
  bottom: 0%;
  width: 0%;
  height: 0%;
  background-color: #FFDC01;
  border-radius: 1vw;
}
.flames .flame:nth-child(2n+1) {
  animation: flameodd 1.5s ease-in infinite;
}
.flames .flame:nth-child(2n) {
  animation: flameeven 1.5s ease-in infinite;
}
.flames .flame:nth-child(1) {
  animation-delay: 0s;
}
.flames .flame:nth-child(2) {
  animation-delay: 0.375s;
}
.flames .flame:nth-child(3) {
  animation-delay: 0.75s;
}
.flames .flame:nth-child(4) {
  animation-delay: 1.125s;
}

@keyframes flameodd {
  0%, 100% {
    width: 0%;
    height: 0%;
  }
  25% {
    width: 100%;
    height: 100%;
  }
  0% {
    background-color: #FFDC01;
    z-index: 1000000;
  }
  40% {
    background-color: #FDAC01;
    z-index: 1000000;
  }
  100% {
    background-color: #F73B01;
    z-index: -10;
  }
  0% {
    right: 0%;
    bottom: 0%;
  }
  25% {
    right: 1%;
    bottom: 2%;
  }
  100% {
    right: 150%;
    bottom: 170%;
  }
}
@keyframes flameeven {
  0%, 100% {
    width: 0%;
    height: 0%;
  }
  25% {
    width: 100%;
    height: 100%;
  }
  0% {
    background-color: #FFDC01;
    z-index: 1000000;
  }
  40% {
    background-color: #FDAC01;
    z-index: 1000000;
  }
  100% {
    background-color: #F73B01;
    z-index: -10;
  }
  0% {
    right: 0%;
    bottom: 0%;
  }
  25% {
    right: 2%;
    bottom: 1%;
  }
  100% {
    right: 170%;
    bottom: 150%;
  }
}

/*# sourceMappingURL=fire.css.map */
