html {
    position: relative;
    min-height: 100%;
}

body {
    min-height: 75rem;
    padding-top: 4.5rem;
    /* Margin bottom by footer height */
    margin-bottom: 60px;
}

.overlay {
    position: fixed;
    z-index:999999;
    top:0;
    left:0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255,255,255,0.7);
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
    height: 60px;
    line-height: 60px; /* Vertically center the text there */
    background-color: #f5f5f5;
}

.btn-success {
    background-color: #57a900;
    background-image: -moz-linear-gradient(top, #70d900, #57a900);
    background-image: -ms-linear-gradient(top, #70d900, #57a900);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#70d900), to(#57a900));
    background-image: -webkit-linear-gradient(top, #70d900, #57a900);
    background-image: -o-linear-gradient(top, #70d900, #57a900);
    background-image: linear-gradient(top, #70d900, #57a900);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#70d900', endColorstr='#57a900', GradientType=0);
}

.btn-success:hover,
.btn-success:active,
.btn-success.active,
.btn-success.disabled,
.btn-success[disabled] {
    background-color: #57a900;
}

div.container a.navbar-brand > img {
    display: inline;
    margin-right: 4px;
    margin-top: -2px;
}

.form-control-sm {
    height: calc(1.5205rem + 2px);
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .1rem;
}

textarea {
    resize: vertical;
}

a.dropdown-item.active {
    font-weight: 900;
    background-color: #979797;
}

ul.ulNbDirectory {
    list-style: none;
}

ul.ulNbDirectory > li {
    cursor: pointer;
}

.liDirectory > span > i.fas.fa-pen,
.liDirectory > span > i.fas.fa-arrow-circle-right {
    opacity: 0;
}

.liDirectory:hover > span > i.fas.fa-pen,
.liDirectory:hover > span > i.fas.fa-arrow-circle-right {
    opacity: 0.7;
}

#header-fixed {
    position: fixed;
    top: 0px;
    display: none;
    background-color: lightgrey;
    z-index: 99999;
}

#header-fixed .dispolistFixHeader {
    color: black;
    font-size: 10px;
    padding: 0px;
    height: 50px;
    font-weight: bold;
    overflow: hidden;
    border: 1px solid grey;
}

.text-wrap {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}


.table-area {
    position: relative;
    z-index: 0;
    margin-top: 50px;
}

#headerFixed {
    position: fixed;
    top: 50px;
    height: 50px;
    line-height: 3em;
    width: 97.6vw;
    background-color: beige;
    z-index: 9999;
}

#headerFixed * {
    background-color: beige;
}

.center-in-fixed {
    position:relative;
    left: 25%;
    top: 50%;
    width: 50%;
}

.nb-scroll {
    max-height: 220px;
    overflow-y: auto;
}


