.spinner {
    animation: rotator 1.4s linear infinite;
}

@keyframes rotator {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.path {
    stroke-dasharray: 210, 210;
    stroke-dashoffset: 0;
    transform-origin: center;
    animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
}

@keyframes colors {
    0% {
        stroke: #212b30;
        color: #212b30;
    }

    25% {
        stroke: #536c79;
        color: #536c79;
    }

    50% {
        stroke: #93aebd;
        color: #93aebd;
    }

    75% {
        stroke: #717d83;
        color: #717d83;
    }

    100% {
        stroke: #212b30;
        color: #212b30;
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 200;
    }

    50% {
        stroke-dashoffset: 50;
        transform: rotate(120deg);
    }

    100% {
        stroke-dashoffset: 200;
        transform: rotate(360deg);
    }
}
