/* Logo Shot Animation */
.loader-logo {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-logo svg {
    width: 100%;
    height: 100%;
}

.nav-logo-svg {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo-svg svg {
    width: 100%;
    height: 100%;
}

.loader-logo svg.go #moving {
    animation: recoil 400ms ease-in-out ;
}

.loader-logo svg.go #flash {
    animation: flash 400ms ease-in-out ;
}

.loader-logo #flash {
    opacity: 0;
    transform-origin: 256px 170px;
}


@keyframes recoil {
    0% {
        transform: translateY(0px);
    }
    35% {
        transform: translateY(3px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes flash {
    0% {
        opacity: 0;
        transform: scale(0.85);
    }
    30% {
        opacity: 0.95;
        transform: scale(1.0);
    }
    60% {
        opacity: 0;
        transform: scale(1.05);
    }
    100% {
        opacity: 0;
        transform: scale(1.05);
    }
}
