html { 
    background: url('kpmbuilding.jpg') no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.td-fit{
    width:1px;
}
.sticky-left{
    position: sticky;
    left: 0;
}
.sticky-top-left{
    z-index: 1021;
    position: sticky;
    left: 0;
    top: 0;
}
.sticky-bottom-left{
    z-index: 1021;
    position: sticky;
    left: 0;
    bottom: 0;
}
.responsive-truncate{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 400px;
}
.full-screen-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* semi-transparent white */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* ensures loader is on top */
}
.spinner-border-lg {
    width: 5rem;
    height: 5rem;
    border-width: 0.5rem;
}

.main-card-opac{
    background-color: rgba(255, 255, 255, 0.85);
}

noscript {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3em;
    text-align: center;
    z-index: 10000; /* Ensure it covers all other content */
}

.btn-group-vertical>.btn, .btn-group>.btn {
    position: relative;
    flex: 1 0 0%;
}

.animate {
    transition: width 0.5s;
}

@media (min-width: 992px) {
    .responsive-truncate{
        overflow: auto;
        text-overflow: initial;
        white-space: initial;
        max-width: none;
    }
}