.table-customers-wrapper {
    overflow: auto;
}

.table-customers td {
    position: relative;
}

.table-customers th {
    position: relative;
    text-align: center;
    vertical-align: middle;
    padding-right: 30px;
    font-weight: 600;
}

.table-customers-head-row th {
    background-color: #ececec;
}

.table-customers th .sort-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.table-customers .sortable {
    cursor: pointer;
}

    .table-customers .sortable:hover {
        background-color: #d0d0d0;
    }

.sticky-table-header {
    position: sticky;
    top: 0px;
    z-index: 1;
}

.table.table-bordered.table-hover.table-customers td a {
    text-decoration: none;
    color: black;
}

.no-content-info {
    width: fit-content;
    margin: 2rem 0 0 2rem;
}

.files-table {
    vertical-align: middle;
}

    .files-table tr td:last-of-type {
        max-width: fit-content;
        min-width: 7rem;
    }

    .files-table tr td.table-row-folder {
        cursor: pointer;
    }

        .files-table tr td.table-row-folder > div, .files-table tr td.table-row-file > div {
            display: flex;
            align-items: flex-start;
        }

    .files-table tr td:first-of-type i {
        font-size: 1.66rem;
        font-weight: 600;
        display: inline-block;
        min-width: 1.5rem;
    }

        .files-table tr td:first-of-type i.fa-folder {
            font-weight: 300;
        }

    .files-table tr td:first-of-type span {
        display: inline-block;
        line-height: 2rem;
        margin-left: .5rem;
    }

@media (max-height: 1080px) {
    .table-customers-wrapper {
        overflow-x: auto;
    }
}
