/******* Do not edit this file *******
Code Snippets Manager
Saved: May 02 2026 | 13:39:15 */
/* ==========================================================================
   Separator Lines Animation
   ========================================================================== */

/* 1. The INITIAL (hidden) state */
.separator-animation {
  height: 1px;
  background-color: #d9d9d9;
  transform: scaleX(0); 
  transform-origin: left center; 
  transition: transform 800ms cubic-bezier(.645, .045, .355, 1);
  background-color 200ms ease;
}

/* 2. The FINAL (visible) state
   This class will be added by our JavaScript
*/
.separator-animation.is-visible {
  transform: scaleX(1);
}