/* Sticky header
#header {
    position: fixed !important;
    top: 0;
    width: 100%
}
*/

/*Table sticky header*/
.table-wrapper {
    overflow-x: unset;
}

table {
    text-align: left;
    position: relative;
    border-collapse: collapse;
}

th, td {
    padding: 0.25rem;
}

th {
    background: #242943;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.4);
}