.loader {
    width: 48px;
    height: 48px;
    border: 5px solid rgba(255, 255, 255, 0.698);
    border-bottom-color: rgba(119,107,231,1);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: srotation 1s linear infinite;
}

@keyframes srotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}