//legacy aspx still uses the old sprite file, which is included in grid.css; we need to add additional css for theme
.grid .specializedFilters .removeFilter {
    position: absolute;
    top: -4px;
    right: 0;
}

.grid .specializedFilters select {
    min-width: 140px;
}

//ASPX checkmark on selected specialize filter (Note: add/remove via jq, see grid.js)
.data-grid-filters__filter-option--active {
    .icon-checkmark;
    background-position: right 15px center;
}

//aspx add-filter popover container
.grid .addFilterModule{
    width: 180px;
    margin-top: 30px;
}

.grid .data-grid-filters__facet .property-suggestion-box input[type="text"] {
    margin-bottom: 0; //When zoomed in, margin bottom makes it too long to fit in the filter section and runs into the grid causing shift
}