@charset "UTF-8";
.sortable th {
    cursor: pointer;
}

.sortable th.no-sort {
    pointer-events: none;
}

.sortable th.no-sort::after {
    content: '';
    margin: 0;
}

.sortable th::after, .sortable th::before {
    transition: color 0.1s ease-in-out;
    font-size: 1.2em;
    color: transparent;
}

.sortable th::after {
    margin-left: 3px;
    content: "▸";
}

.sortable th:hover::after {
    color: inherit;
}

.sortable th.dir-d::after {
    color: inherit;
    content: "▾";
}

.sortable th.dir-u::after {
    color: inherit;
    content: "▴";
}

.sortable th.indicator-left::after {
    content: "";
}

.sortable th.indicator-left::before {
    margin-right: 3px;
    content: "▸";
}

.sortable th.indicator-left:hover::before {
    color: inherit;
}

.sortable th.indicator-left.dir-d::before {
    color: inherit;
    content: "▾";
}

.sortable th.indicator-left.dir-u::before {
    color: inherit;
    content: "▴";
}