body {
    background-color: rgb(58, 60, 60);
    color: rgb(217, 217, 216);
    /* font */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
}

#day-progress {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    max-width: 1100px;
    height: 2px;
    z-index: 9999;
    background: rgba(0,0,0,0.25);
    border-radius: 2px;
    overflow: hidden;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    background-clip: content-box;
}

#day-progress .fill {
    height: 100%;
    width: 100%;
    transform-origin: left center;
    transform: scaleX(0);
    /* Blue */
    /* background: linear-gradient(90deg, #7dd3fc, #60a5fa); */

    /* Green */
    /* background: linear-gradient(90deg, #84fa74, #77fc4b); */

    /* Helium Default (purple-ish) */
    background: linear-gradient(90deg, #aeb7fe, #939efe);



    box-shadow: 0 0 6px rgba(96,165,250,0.35);
    transition: transform 850ms ease-in-out;
    will-change: transform;
    border-radius: 2px;
}

/* @media (prefers-reduced-motion: reduce) {
    #day-progress .fill {
        transition: none;
    }
} */

#day-tooltip {
    position: fixed;
    bottom: 55px;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: rgba(0,0,0,0.35);
    color: #fff;
    padding: 6px 10px;
    font-size: 12px;
    line-height: 1;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(49, 39, 39, 0.25);
    opacity: 0;
    transition: opacity 160ms ease, transform 160ms ease;
    white-space: nowrap;
    z-index: 10000;
}

#day-progress:hover ~ #day-tooltip,
#day-tooltip:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    cursor: default;
}

@keyframes white-pulse {
  0%, 25%,
  75%, 100% {
    box-shadow: 0 0 6px rgba(96,165,250,0.35);
    filter: brightness(1);
  }
  50% {
    box-shadow: 0 0 15px rgba(255,255,255,0.07), inset 0 0 10px rgba(255,255,255,0.07);
    filter: brightness(1.2);
  }
}

#day-progress.off-hours .fill {
    animation: white-pulse 3s infinite ease-in-out;
}