.circular-progress {
    width: 48px;
    height: 48px;
    animation: rotate 1.5s linear infinite;
}

.circular-progress-background {
    fill: none;
    stroke: #FFFFFF;
    stroke-width: 4;
}

.circular-progress-fill {
    fill: none;
    stroke: #9684EF;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 10, 140;
    stroke-dashoffset: 0;
    animation: changeLength 2s ease-in-out infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(720deg);
    }
}

@keyframes changeLength {
    0%, 100% {
        stroke-dasharray: 10, 140; /* Короткая дуга */
    }
    50% {
        stroke-dasharray: 100, 140; /* Длинная дуга */
    }
}