@keyframes v-fade-in {
  from {
    opacity: 0;
  }
}

@keyframes v-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
