.spin_loader {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    position: relative;
    animation: rotate_sl 1s linear infinite
}
.spin_loader::before , .spin_loader::after {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    border: 5px solid #FFF;
    animation: prixClipFix 2s linear infinite ;
}
.spin_loader::after{
    transform: rotate3d(90, 90, 0, 180deg );
    border-color: #38bdf8;
}

@keyframes rotate_sl {
    0%   {
        transform: rotate(0deg)
    }
    100%   {
        transform: rotate(360deg)
    }
}

@keyframes prixClipFix {
    0%   {
        clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)
    }
    50%  {
        clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)
    }
    75%, 100%  {
        clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)
    }
}