@keyframes lcNotifyIn {
  from {
    transform: scale(.4) translateY(100%);
    opacity: 0;
  }

  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

@keyframes lcNotifyOut {
  from {
    transform: scale(1);
    opacity: 1;
  }

  to {
    transform: scale(.4);
    opacity: 0;
  }
}

@keyframes lcNotifyOutLg {
  from {
    transform: scale(1);
    opacity: 1;
  }

  to {
    transform: scale(.4);
    opacity: 0;
  }
}

@keyframes lcNotifyInLg {
  from {
    transform: scale(.4) translateY(-100%);
    opacity: 0;
  }

  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}