.status_loader {
    --height-of-loader: 5px;
    --loader-color: #f9f2f1;
    width: 100%;
    height: var(--height-of-loader);
    border-radius: 30px;
    background-color: rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 99999;
    margin-top: 16px;
}

.status_loader.loader_modal_footer {
    position: absolute;
    bottom: -4px;
    width: 110%;
    left: -5px;
    --loader-color: green;
    background-color: rgba(0, 0, 0, 0);
}

.status_loader.orange::before {
    background: #fd8805 !important;
}

.status_loader.green::before {
    background: darkgreen !important;
}

.status_loader::before {
    content: "";
    position: absolute;
    background: var(--loader-color);
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    border-radius: 30px;
    animation: moving 1s ease-in-out infinite;;
}

@keyframes moving {
    50% {
        width: 100%;
    }

    100% {
        width: 0;
        right: 0;
        left: unset;
    }
}
