html {
    font-size: 1rem;
}

@include media-breakpoint-up(sm) {
    html {
        font-size: 1.2rem;
    }
}

@include media-breakpoint-up(md) {
    html {
        font-size: 1.4rem;
    }
}

@include media-breakpoint-up(lg) {
    html {
        font-size: 1.6rem;
    }
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.ul {
    background-color: #DEDEDE;
}

.li, .li2, .li3 {
    padding: 2%;
}

.li:hover, .li2:hover, .li3:hover {
    background-color: #525252;
    color: white;
    cursor: pointer;
}

.addme {
    padding: 2%;
}

#item_descList, #item_descList2, #item_lookupList {
    display: none;
    overflow-y: scroll;
    overflow-x: hidden ;
    height: auto;
    max-height: 200px;
    max-width: 100%;
}

.toupper {
    text-transform: uppercase;
}

thead,th {
    vertical-align: middle;
    text-align: center;
}

.wait {
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    margin: 0px;
    background-color: rgba(10, 0, 0, 0.4);
    position: fixed;
    z-index: 8000;
}

.loading {
    position: absolute;
    top: 45%;
    left: 45%;
    right: 45%;
    bottom: 45%;
    margin: 0px auto;
    vertical-align: middle;
    white-space: nowrap
}

.search-bar {
    position: fixed;
    top: 0;
    background-color: #F5F5F5;
    padding: 1%;
}

.dialogBox {
    display: none;
    position: fixed;
    z-index: 9000;
    padding-top: 1%;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    background-color: rgb(0,0,0,0.4);
}

.dialogBoxContent {
    background-color: white;
    padding: 1%;
    border: thin solid black;
    width: 50%;
    margin: 0px auto;
    overflow: auto;
}

.footer2 {
    border-top: thin solid grey;
    padding-top: 2%;
    clear: both;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: #525252;
    border-left: thin solid black;
    overflow-x: hidden;
    transition: 0.5s;
}

.customtheme {

}

.customtheme:hover {
    
}

.text-normal {
    font-size: medium;
}

.text-small {
    font-size: small;
}

.text-smaller {
    font-size: smaller;
}

.notif-advancedSearch::after {
    content: "Advanced Search Results";
}

.bg-image {
    background-image: url(../images/bg-img.jpg);
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 100%;
}

.viewtable > tbody > tr > td {
    padding: .5%;
}