.container {
    width: 100%;
    overflow-x: auto;
    border-radius: 4px;
    box-shadow: 0px 2px 1px -1px rgb(0 0 0 / 20%), 0px 1px 1px 0px rgb(0 0 0 / 14%), 0px 1px 3px 0px rgb(0 0 0 / 12%);
}

.table {
    width: 100%;
    display: table;
    border-spacing: 0;
    border-collapse: collapse;

    thead {
        display: table-header-group;
    }

    tbody {
        display: table-row-group;
    }

    tr {
        display: table-row;
        outline: 0;
        vertical-align: middle;
    }

    th,
    td {
        display: table-cell;
        padding: 16px;
        font-size: 0.875rem;
        text-align: left;
        font-family: "Roboto", "Helvetica", "Arial", sans-serif;
        border-bottom: 1px solid rgba(224, 224, 224, 1);
        letter-spacing: 0.01071em;
        vertical-align: inherit;

        &[align=right] {
            text-align: right;
        }
    }

    th {
        max-width: 200px;
        font-weight: 700;
        line-height: 1.5rem;
        position: relative;
    }

    td {
        font-weight: 400;
        line-height: 1.43;
        max-width: 200px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;

        a {
            color: #1890ff;
            text-decoration: none;

            &:hover {
                text-decoration: underline;
            }
        }

        &.shaded {
            border-bottom: 0;
            background: rgba(224, 224, 224, .4);
        }

        &.base {
            border-bottom: 0;
        }
    }
}

.sorter {
    transition: .1s;
    cursor: pointer;

    &:hover {
        opacity: .5;
    }

    &.active .arrow {
        visibility: visible;
        opacity: .4;
        position: relative;
    }

    .arrow {
        opacity: 0;
        visibility: hidden;
        position: absolute;
        width: .65rem;
        margin-top: -2px;
        margin-left: 5px;
        transition: .1s;
        display: inline-block;
        vertical-align: middle;

        &.direc-desc {
            transform: rotate(90deg);
        }

        &.direc-asc {
            transform: rotate(-90deg);
        }
    }
}

.screenreaderVisible {
    top: 20px;
    clip: rect(0 0 0 0);
    width: 1px;
    border: 0;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    position: absolute;

    &+svg {
        transition: 0.2s;
    }
}

.skeletonRow {
    border-radius: 4px;
    height: 0.875rem;
    position: relative;
    overflow: hidden;

    &:before {
        content: '';
        display: block;
        position: absolute;
        left: -150px;
        top: 0;
        height: 100%;
        width: 150px;
        background: linear-gradient(to right, transparent 0%, #E8E8E8 50%, transparent 100%);
        animation: load .9s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
    }
}

@keyframes load {
    from {
        left: -150px;
    }

    to {
        left: 100%;
    }
}