.loader-getting-data {
    width: 15px;
    aspect-ratio: 1;
    border-radius: 50%;
    animation: l5 1s infinite linear alternate;
}

@keyframes l5 {
    0%  {box-shadow: 20px 0 #004DDA, -20px 0 #0002; background: #004DDA}
    33% {box-shadow: 20px 0 #004DDA, -20px 0 #0002; background: #0002}
    66% {box-shadow: 20px 0 #0002, -20px 0 #004DDA; background: #0002}
    100% {box-shadow: 20px 0 #0002, -20px 0 #004DDA; background: #004DDA}
}