.dummySelect {
    cursor: pointer;
    padding: 0 5px;
    border: 1px solid var(--color-border);
    border-radius: 5px;
    height: 26px;
    box-sizing: border-box;
    color: var(--color-main-text);
}

.dummySelect:hover, .dummySelect:focus {
    border: 1px solid var(--color-input-title-focus);
}

.dummySelect span {
    height: 24px;
    line-height: 24px;
}

.includingTips {
    position: relative;
    cursor: help;
}

.includingTips:after, .hoverTips {
    display: none;
}

.includingTips:after {
    content: attr(tips);
}

.includingTips:hover:after, .includingTips:focus:after,
*:hover > .hoverTips, *:focus > .hoverTips {
    display: block;
    position: absolute;
    left: 30px;
    top: 24px;
    min-width: 200px;
    word-break: normal;
    white-space: normal;
    z-index: 10;
    color: #888;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    box-shadow: 0 2px 4px #ccc;
}


.operationMenu {
    display: none;
    position: absolute;
    z-index: 9;
    min-width: 100px;
    max-width: 200px;
    min-height: 10px;
    max-height: 200px;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 8px 0;
    overflow: visible;
    box-shadow: 0 2px 4px #ccc;
    user-select: none;
}

.operationMenu ul li {
    padding: 5px 10px;
    cursor: pointer;
}

.operationMenu ul li:hover {
    background-color: #f5f5f5;
}

.operationMenu ul li.disabled {
    color: #a1a1a1;
    cursor: auto;
}

.operationButton {
    margin: 0 0.5em;
    padding: 0.5em;
    display: inline-block;
    cursor: pointer;
    color: #1a73e8;
}

.operationButton:hover {
    background-color: #ddd;
}

.operationButton.unavailable {
    color: #a1a1a1;
}

.popupOperateBox {
    display: none;
    position: absolute;
    z-index: 9;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 0;
    overflow: auto;
    box-shadow: 0 2px 4px #ccc;
}

/* filterDataListComponent start */
.filterDataList {
    height: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
}

.filterArea {
    display: flex;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    line-height: 25px;
    color: #777;
    user-select: none;
}

.filterArea .filterTitle, .filterArea .filterOptions {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-weight: 600;
    word-break: keep-all;
    white-space: nowrap;
}

.filterArea .filterOption {
    display: inline-block;
    text-align: center;
    height: 20px;
    line-height: 20px;
    width: 20px;
}

.filterArea .filterOption.clearFilters {
    height: 30px;
    line-height: 30px;
    margin: 0 5px;
}

.filterArea .filterConditionTips {
    top: 30px;
    left: -180px;
    width: 360px;
}

.filterArea .filterContent {
    margin-left: 5px;
    width: 100%;
}

.filterArea .filterContent span {
}

.filterArea .filterChip {
    display: inline-block;
    background-color: #777;
    color: #FFF;
    border-radius: 100px;
    box-sizing: border-box;
    margin-right: 3px;
    padding-left: 5px;
    padding-right: 3px;
    height: 20px;
    line-height: 20px;
    word-break: keep-all;
    white-space: nowrap;
    vertical-align: middle;
}

.filterArea .filterChip.filterOperator {
    background-color: #FFF;
    color: #777;
    border: 2px solid #777;
    line-height: 16px;
}

.filterArea .filterChip i.fa-remove {
    margin-left: 3px;
    background-color: #fff;
    color: #777;
    border-radius: 100px;
    height: 1em;
    width: 1em;
    text-align: center;
}

.filterArea .filterInputParent {
    position: relative;
    display: inline-block;
}

.filterArea .filterInput {
    border: none;
    height: 30px;
    line-height: 20px;
    width: 200px;
}

.filterArea .filterInput::placeholder {
    color: #AAA;
}

.filterArea .filterInputResult {
    display: none;
}

.filterArea .filterInputResult ul {
    position: absolute;
    z-index: 8;
    left: 0;
    min-width: 220px;
    max-width: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 8px 0;
    max-height: 250px;
    overflow: auto;
    box-shadow: 0 2px 4px #ccc;
}

.filterArea .filterInputResult ul li {
    font-size: 12px;
    padding: 2px 10px;
}

.filterArea .filterInputResult ul li.resultGroupTitle {
    color: #AAAAAA;
    height: 25px;
    line-height: 25px;
}

.filterArea .filterInputResult ul li.resultItem {
    height: 20px;
    line-height: 20px;
}

.filterArea .filterInputResult ul li.resultItem:hover {
    background-color: #f5f5f5;
}

.filterArea .filterInputResult ul li.resultItem b {
    color: #e99411;
}

.pageInfo {
    border-top: 1px solid #f0f0f0;
    padding: 5px 0;
    font-size: 12px;
    user-select: none;
}

.pageInfo span.pageButton {
    margin: 0 5px;
    display: inline-block;
    width: 1em;
}

.filteredResultContent {
    height: 100%;
    overflow: auto;
}

.filteredResultContent thead {
    position: sticky;
    top: 0;
    z-index: 1;
}

.filteredResultTable tbody tr {
    border-top: 1px solid #f0f0f0;
    white-space: nowrap;
}

.filteredResultTable tbody tr:hover {
    background-color: #f5f5f5;
}

.filteredResultTable thead th, .filteredResultTable tbody td {
    padding: 5px 5px;
    height: 18px;
    line-height: 18px;
    text-align: left;
    color: #888;
}

.filteredResultTable thead th {
    padding: 10px 5px;
    font-size: 1.1em;
    color: #777;
    font-weight: 600;
}

.filteredResultTable .fieldContainer {
    margin: 0;
    height: 18px;
    line-height: 18px;
    vertical-align: middle;
}

.filteredResultTable .first_col {
    min-width: 20px;
    text-align: center;
}

.filteredResultTable .sortableTitle {
    cursor: pointer;
}

/* filterDataListComponent start */
