.loader-container{
    background-color: #000;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 20;

    display: flex;
    justify-content: center;
    align-items: center;


}



.loader{
    width: 200px;
    height: 8px;
    background-color: rgba(46, 41, 41, 0.699);
    position: relative;
    border-radius: 30px;
}

.loader::before{
    content: "";
    background-color:rgb(203, 80, 252);
    width: 0%;
    height: 100%;
    border-radius: 30px;
    position: absolute;


    animation: loading 1.4s ease-in-out infinite;
}

@keyframes loading {
    50%{
        width: 100%;
    }
    100%{
        width: 0%;
        right: 0;
    }
}