html,body {
    display: flex;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}
.login .login-form {
    width: 100%;
    max-width: 450px;
}
.login .form-control::placeholder {
    color: #aaaaaa;
}
.login .bgi-no-repeat {
    background-repeat: no-repeat;
}
.login .bgi-size-cover {
    background-size: cover;
}
.login .bg-white-o-5 {
    background-color: rgba(255, 255, 255, 0.02) !important;
}
.login .max-h-75px {
    max-height: 75px !important;
}
.login .opacity-40 {
    opacity: 0.4 !important;
}
.login .opacity-90 {
    opacity: 0.9 !important;
}
.login .p-7 {
    padding: 1.75rem !important;
}
.login .mt-15 {
    margin-top: 3.75rem !important;
}
.login .mb-15 {
    margin-bottom: 3.75rem !important;
}
.login .mb-20 {
    margin-bottom: 5rem !important;
}
.login .text-white {
    color: #ffffff !important;
}
.login .h-auto {
    height: auto !important;
}
.login .form-group {
    margin-bottom: 1.75rem;
}
.login .btn.btn-pill {
    border-radius: 2rem;
}

.logout {
    position: absolute;
    top: 5px;
    right: 8px;
}

.font-small {
    font-size: small;
}
.flex-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}
.flex-root {
    -webkit-box-flex: 1;
    flex: 1;
    -ms-flex: 1 0 0px;
}
.flex-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.flex-row-fluid {
    -webkit-box-flex: 1;
    flex: 1 auto;
    -ms-flex: 1 0 0px;
    min-width: 0;
}

@media (max-width: 575.98px) {
    .login .login-form {
        width: 100%;
        max-width: 100%;
    }
}

#logoImage {
    width: auto;
    height: 65px;
}
#userButton,
#adminButton,
#deleteButton,
#bulkDelButton {
    display: flex;
    align-items: center;
    margin: 0 auto;
}
#userButton .spinner,
#adminButton .spinner,
#deleteButton .spinner,
#bulkDelButton .spinner {
    display: none;
}

.table tbody td .del {
    display: none;
}
.table tbody tr:hover td .del {
    display: inline-block;
}

table.dataTable thead tr th {
    text-align: left !important;
}
table.dataTable tbody tr td.state-ok {
    border-left: 2px solid rgba(25,135,84, 1);
}
table.dataTable tbody tr td.state-no {
    border-left: 2px solid rgba(108,117,125, 1)
}