/*! Strand UI | MIT License | dillingerstaffing.com */

/* cf: settle */

@keyframes strand-settle-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.strand-settle {
  animation: strand-settle-in var(--strand-duration-fast) var(--strand-ease-out-expo) both;
}

@media (prefers-reduced-motion: reduce) {
  .strand-settle {
    animation: none;
  }
}
