/**
 * @file
 * Intro Animation Styles
 */

.animation-wrapper { 
  position: fixed; 
  inset: 0; 
  z-index: 9999; 
  width: 100vw; 
  height: 100vh; 
  overflow: hidden; 
  background: #ffff00; 
  pointer-events: none; 
}

.intro-animation { 
  position: absolute; 
  width: 150%; 
  height: 100%; 
  left: 50%; 
  transform: translateX(-50%); 
}

.animation-container.isPlayed .animation-wrapper,
.animation-container.isPlayed .intro-animation { 
  display: none; 
}