.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.threads-loader path {
    stroke: #AAA5;
    stroke-width: 4;
    stroke-linecap: round;
    fill: none;
}

.threads-loader .moving-line {
    stroke: #6366F1;
    stroke-width: 7;
    stroke-linecap: round;
    fill: none;
    stroke-dasharray: 110;
    stroke-dashoffset: 90;
    animation: moveAlongPath 1.5s reverse infinite linear;
}

@keyframes moveAlongPath {
    0% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: 220;
    }
}
