@keyframes dash {
    from {
        stroke-dashoffset: 502;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes checkFade {
    from {
        stroke-dashoffset: 100;
        opacity: 0;
    }

    to {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

.animate-dash {
    stroke-dasharray: 502;
    animation: dash 3s ease-in-out infinite;
}

.animate-check {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: checkFade 1.2s ease-out forwards;
    animation-delay: 0.5s;
}