.nav-loader {
    height: 2px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #f7fafc;
    display: none;
}
.nav-loader:before {
    display: block;
    position: absolute;
    content: "";
    left: -200px;
    width: 200px;
    height: 2px;
    background-color: #11cdef;
    animation: bar-animation 2s linear infinite;
}
@keyframes bar-animation {
    from {left: -200px; width: 30%;}
    50% {width: 30%;}
    70% {width: 70%;}
    80% { left: 50%;}
    95% {left: 120%;}
    to {left: 100%;}
}

a.btn.disabled {
    text-decoration: line-through;
}
.cursor-wait {
    cursor: wait;
}

table.dataTable {
    width: 100% !Important;
}

.pagination {
    float: right;
}

.navbar-brand {
    display: inline !important;
    margin-left: 1rem;
}

.form-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
.form-signin {
    width: 100%;
    max-width: 330px;
    padding: 15px;
    margin: auto;
}