@keyframes slideInLabel {
  from {
    transform: translateX(-120%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.label--slide-in {
  animation: slideInLabel 1s ease-out forwards;
}