.loadingDiv{
    position: fixed;
    top:0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 999999;
}

.loadingDivInner{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    flex-direction: column;
}

.loadingDiv p{
    color: #fff;
    text-align: center;
    font-size: 30px;
    margin-top: 2.5rem;
}

.loader {
  width: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ff0000;
  box-shadow: 0 0 0 0 #fff;
  animation: l1 1s infinite;
}
@keyframes l1 {
    100% {box-shadow: 0 0 0 30px #0000}
}
.sidebartoggler i{
    color: #000;
}

label{
    font-weight: 600;
    color: #000;
    margin-bottom: 0.55rem;
}

.table-responsive thead th{
    white-space: nowrap;
}