.nav-sticky {
    height: unset;
    padding-top: 15px;
    padding-bottom: 15px;
}

.text-onsemi-orange {
    color: #da7f3c;
}

.bg-lightgreen{
    background-color: #12C81E;
}

.bg-mossgray{
    background-color: #465E66;
}

.dt-nowrap { 
    white-space: nowrap; 
}

.f-30{
    font-size: 30px;
}

.animate-appear{
    -webkit-animation-name: appear;
    -webkit-animation-duration: 1s;
    animation-name: appear;
    animation-duration: 1s;  
}

#spendTable td.dataTables_empty, #itemTable td.dataTables_empty{
    text-align: left;
}

/* Animation */
@keyframes appear {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}