.fTable > .content {
    overflow: auto;
}
.fTable > .content > table > thead > .fields.sort > th:not(.buttons) {
    user-select: none;
    cursor: pointer;
}
.fTable > .content > table > thead > .fields > th > .sort {
    width: 10px;
    height: 10px;
    margin-left: 5px;
    margin-right: 5px;
    background-image: url('../images/sort.svg');
}
.fTable > .content > table > thead > .fields > th[sort='desc'] > .sort {
    transform: rotate(180deg);
}
.fTable > .content > table > thead > .filterFields > .filled {
    position: relative;
}
.fTable > .content > table > thead > .filterFields > th > .settings {
    cursor: pointer;
}
.fTable > .content > table > thead > .filterFields > th img {
    position: absolute;
    cursor: pointer;
}
.fTable > .content > table > thead > .filterFields > th:not(.filled) img {
    display: none;
}
.fTable > .content > table, .fTable > .content > table > thead > .filterFields > th > input {
    min-width: 100%;
}
.fTable > .content > table > thead > .buttons > th > .applyFilter, .fTable > .content > table > tbody > tr > .operations {
    cursor: pointer;
}