.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999999999999999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f4f6f9;
}
.login-loader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999999999999999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f4f6f9;
}

.table_loader{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999999999999999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f4f6f9db;
}
.table_loader svg text{
    stroke: #036839;
    font-size: 80px;
    font-weight: 900;
    stroke-width: 2;
    letter-spacing: 3px;
    font-family: auto;
    animation: textanimate 3s infinite alternate;
}
.loader svg text{
    stroke: #036839;
    font-size: 120px;
    font-weight: 900;
    stroke-width: 2;
    letter-spacing: 3px;
    font-family: auto;
    animation: textanimate 3s infinite alternate;
}
.login-loader svg text{
    stroke: #036839;
    font-size: 120px;
    font-weight: 900;
    stroke-width: 2;
    letter-spacing: 3px;
    font-family: auto;
    animation: textanimate 3s infinite alternate;
}
@keyframes textanimate{
    0%{
        stroke-dasharray: 0 50%;
        stroke-dashoffset: 40%;
    }
    100%{
        stroke-dasharray: 50% 0;
        stroke-dashoffset: -40%;
    }

}

.dashboard-loader{
    bottom: 70px;
    position: fixed;
    right: 70px;
    width: 150px;
    height: 90px;
    z-index: 99999999999999999;
    background: #f4f6f9db;
}
.dashboard-loader svg text{
    stroke: #036839;
    font-size: 80px;
    font-weight: 900;
    stroke-width: 2;
    letter-spacing: 3px;
    font-family: auto;
    animation: textanimate 3s infinite alternate;
}

.disable-click {
    pointer-events: none;
}

@keyframes textanimate{
    0%{
        stroke-dasharray: 0 50%;
        stroke-dashoffset: 40%;
    }
    100%{
        stroke-dasharray: 50% 0;
        stroke-dashoffset: -40%;
    }

}
