/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 06 2025 | 10:11:18 */
.animated-line {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}

.animated-line .line {
  height: 2px;
  background: #fff; 
  width: 0;
  animation: growLine 4s forwards;
  transition: width 0.5s;
}

.animated-line .dot {
  width: 8px;
  height: 8px;
  background: #fff; 
  border-radius: 50%;
  margin: 0 10px;
  opacity: 0;
  animation: fadeDot 1s 2s forwards;
}

@keyframes growLine {
  from { width: 0; }
  to { width: 150px; }  
}

@keyframes fadeDot {
  to { opacity: 1; }
}
