.ffhb-brand-sort-loader {
    width: 38px;
    height: 38px;
    border: 4px solid #FFF;
    border-bottom-color: #020381;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}