/*
 Theme Name:   Divi Child
 Template:     Divi
 Version:      1.0
*/

/* ---- GLC Progress Bar ---- */
.glc-progress-wrapper { margin: 1.5em 0; font-family: inherit; }
.glc-progress-labels {
  display: flex; justify-content: space-between;
  font-weight: 700; color: #2e5b8a; margin-bottom: 6px;
}
.glc-progress-track {
  background: #d9e6f5; border-radius: 6px; height: 34px; overflow: hidden;
}
.glc-progress-fill {
  height: 100%;
  background: repeating-linear-gradient(
    45deg, #5b9bd5, #5b9bd5 12px, #6fa8dc 12px, #6fa8dc 24px);
  background-size: 34px 34px;
  animation: glc-stripes 1s linear infinite;
  transition: width .4s ease;
}
@keyframes glc-stripes { from { background-position: 0 0; } to { background-position: 34px 0; } }
.glc-progress-goal {
  text-align: right; color: #888; font-size: .85em; margin-top: 4px;
}
