#nprogress {
    pointer-events: none;
}
#nprogress .bar {
    background: var(--couleur-thème);
    position: fixed;
    z-index: 1031;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.3rem;
    animation: 500ms ease-in-out infinite alternate nprogress-opacity;

    filter: invert(1);
}

#nprogress .peg {
    display: block;
    position: absolute;
    right: 0;
    width: 100px;
    height: 100%;
    box-shadow: 0 0 10px var(--couleur-thème), 0 0 5px var(--couleur-thème);
    opacity: 1;

    transform: rotate(3deg) translate(0, -4px);
}

@keyframes nprogress-opacity {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }
}