.animated-path {
    stroke-dasharray: 302;
    stroke-dashoffset: 302;
    animation: dash 2s ease-out forwards;
}

.loader-icon {
    left: 5%;
    top: 5%;
    width: 90%;
    height: 90%;
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

.animation-delay-2 {
    animation-delay: 0.66s;
}

.animation-delay-3 {
    animation-delay: 1.33s;
}