﻿.e-grid .e-filtermenudiv {
    position: relative;
}

    .e-grid .e-filtermenudiv::before {
        content: "\f3ca" !important;
        font-family: "bootstrap-icons";
        font-size: 16px;
        position: absolute;
        right: 50%;
    }

    .e-grid .e-filtermenudiv.e-filtered::before {
        display: none;
    }

    .e-grid .e-filtermenudiv.e-filtered::after {
        content: "\f3ca" !important;
        font-family: "bootstrap-icons";
        font-size: 16px;
        position: absolute;
        right: 50%;
    }

/*Hides the Operation picker dropdown on FilterType.Menu*/
.e-grid .e-flm_optrdiv {
    display: none !important;
}
/*Hides "Blanks" as an option when FilterType.Checkbox has null values*/
.e-grid .e-ftrchk.e-blanks {
    display: none !important;
}
/*Hides the Search Box on FilterType.Checkbox since it allows you to create new enums and do weird crashy stuff*/
.e-grid .e-searchbox.e-fields {
    display: none !important;
}