@keyframes animFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes animSwipeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}
.anim-swipe-in, .form-card, .sidebar-wrapper {
  animation: animSwipeIn 0.4s cubic-bezier(0, 0, 0, 1);
}

.anim-fade-in {
  animation: animFadeIn 0.4s cubic-bezier(0, 0, 0, 1);
}

.pop-in > * {
  opacity: 0;
}
.pop-in > *:nth-child(1) {
  animation: animSwipeIn 0.4s cubic-bezier(0, 0, 0, 1) 0.095s forwards;
}
.pop-in > *:nth-child(2) {
  animation: animSwipeIn 0.4s cubic-bezier(0, 0, 0, 1) 0.195s forwards;
}
.pop-in > *:nth-child(3) {
  animation: animSwipeIn 0.4s cubic-bezier(0, 0, 0, 1) 0.295s forwards;
}
.pop-in > *:nth-child(4) {
  animation: animSwipeIn 0.4s cubic-bezier(0, 0, 0, 1) 0.395s forwards;
}
.pop-in > *:nth-child(5) {
  animation: animSwipeIn 0.4s cubic-bezier(0, 0, 0, 1) 0.495s forwards;
}
.pop-in > *:nth-child(6) {
  animation: animSwipeIn 0.4s cubic-bezier(0, 0, 0, 1) 0.595s forwards;
}
.pop-in > *:nth-child(7) {
  animation: animSwipeIn 0.4s cubic-bezier(0, 0, 0, 1) 0.695s forwards;
}
.pop-in > *:nth-child(8) {
  animation: animSwipeIn 0.4s cubic-bezier(0, 0, 0, 1) 0.795s forwards;
}
.pop-in > *:nth-child(9) {
  animation: animSwipeIn 0.4s cubic-bezier(0, 0, 0, 1) 0.895s forwards;
}
.pop-in > *:nth-child(10) {
  animation: animSwipeIn 0.4s cubic-bezier(0, 0, 0, 1) 0.995s forwards;
}
.pop-in > *:nth-child(11) {
  animation: animSwipeIn 0.4s cubic-bezier(0, 0, 0, 1) 1.095s forwards;
}
.pop-in > *:nth-child(12) {
  animation: animSwipeIn 0.4s cubic-bezier(0, 0, 0, 1) 1.195s forwards;
}
.pop-in > *:nth-child(13) {
  animation: animSwipeIn 0.4s cubic-bezier(0, 0, 0, 1) 1.295s forwards;
}
.pop-in > *:nth-child(14) {
  animation: animSwipeIn 0.4s cubic-bezier(0, 0, 0, 1) 1.395s forwards;
}
.pop-in > *:nth-child(15) {
  animation: animSwipeIn 0.4s cubic-bezier(0, 0, 0, 1) 1.495s forwards;
}
.pop-in > *:nth-child(16) {
  animation: animSwipeIn 0.4s cubic-bezier(0, 0, 0, 1) 1.595s forwards;
}
.pop-in > *:nth-child(17) {
  animation: animSwipeIn 0.4s cubic-bezier(0, 0, 0, 1) 1.695s forwards;
}
.pop-in > *:nth-child(18) {
  animation: animSwipeIn 0.4s cubic-bezier(0, 0, 0, 1) 1.795s forwards;
}
.pop-in > *:nth-child(19) {
  animation: animSwipeIn 0.4s cubic-bezier(0, 0, 0, 1) 1.895s forwards;
}
.pop-in > *:nth-child(20) {
  animation: animSwipeIn 0.4s cubic-bezier(0, 0, 0, 1) 1.995s forwards;
}
.pop-in > *:nth-child(n+21) {
  opacity: 1;
}

.fade-in {
  animation: animFadeIn 0.4s cubic-bezier(0, 0, 0, 1);
}/*# sourceMappingURL=animate.css.map */