@keyframes loader_animation {
    0% {
        transform: translateX(-150%);
    }

    100% {
        transform: translateX(150%);
    }
}