/* Audi Animation Styles */
#audiLoader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.audi-ring {
    stroke-dasharray: 160;
    /* Approx circumference 2*pi*24 ~ 150 */
    stroke-dashoffset: 160;
    opacity: 0;
}

@keyframes drawRing {
    0% {
        stroke-dashoffset: 160;
        opacity: 1;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

.anim-ring-1 {
    animation: drawRing 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.anim-ring-2 {
    animation: drawRing 0.6s 0.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.anim-ring-3 {
    animation: drawRing 0.6s 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.anim-ring-4 {
    animation: drawRing 0.6s 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}