/* sticky table */

/* .sticky-table-wrapper thead th {
    position: -webkit-sticky;
    position: sticky;
    background-color: #fff;
    top: 0;
    z-index: 1;
}

.sticky-table-wrapper th:first-child {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
}

.sticky-table-wrapper thead th:first-child {
    z-index: 2;
}

.sticky-table-wrapper {
    overflow: scroll;
    width: calc(100vw - 1rem);
    height: 75vh;
} */

@media screen {
    thead {
        position: sticky;
        top: 56px;
        background-color: #fff;
        box-shadow: 0px 3px 5px -5px rgba(0, 0, 0, 0.2);
    }

    thead.sticky-with-bulk-actions {
        position: sticky;
        /* 56 + 76 */
        top: 132px;
        background-color: #fff;
        box-shadow: 0px 3px 5px -5px rgba(0, 0, 0, 0.2);
    }

    thead th {
        white-space: nowrap;
    }

    .sticky-div {
        position: sticky;
        top: 56px;
        background-color: #fff;
        z-index: 1;
        padding-top: 8px;
    }
}