.eoGrid {
    outline: none;
}
    .eoGrid table {
        border-collapse: separate;
        border-spacing: 0px 2px;
        border-bottom: 1px solid #ececec;
        width: 100%;
    }
.eoGrid table.tableFixed {
    table-layout: fixed;
} 

.eoGrid tr {
    height: 1px;
}
    .eoGrid tr:nth-of-type(2n) {
        background-color: #ececec;
    }
    
    .eoGrid tr:hover {
        background-color: #cccccc;
    }

.eoGrid .divColumnCollapse {
    display: table-cell;
    background-position: center center;
    background-repeat: no-repeat;
    height: 16px;
    width: 16px;
}

.eoGrid td, .eoGrid th {
    padding: 3px;
    color: #062F47;
    position: relative;
}

    .eoGrid th {
        border-bottom: 2px solid #ececec;
        border-top: none;
    }

.eoGrid td.right, .eoGrid th.right {
    text-align: right;
}
.eoGrid td.center, .eoGrid th.center {
    text-align: center;
}

.eoGrid .verticalTreeLine {
    position: absolute;
    width: 2px;
    background-color: #aab1be;
}

    .eoGrid .verticalTreeLine.full {
        top: -1px;
        bottom: 0;
    }

    .eoGrid .verticalTreeLine.bottomhalf {
        top: 50%;
        bottom: -1px;
    }

    .eoGrid .verticalTreeLine.tophalf {
        top: -2px;
        bottom: 50%;
    }

.eoGrid .horizontalTreeLine {
    width: 20px;
    border-top: 2px solid #aab1be;
    height: 1px;
    position: absolute;
    top: 50%;
}

.eoGrid .treeCollapseBtnContainer {
    position: absolute;
    top: 50%;
}
.eoGrid .levelCellContainer {
    position: relative;
    height: 100%;
    display: block;
}
.eoGrid .treeCollapseBtn {
    border: 1px solid #aab1be;
    text-align: center;
    width: 20px;
    height: 20px;
    margin-top: -50%;
    background-color: #FFFFFF;
    font-size: 13px;
}

    .eoGrid .treeCollapseBtn.open::before {
        content: '-';
    }

    .eoGrid .treeCollapseBtn.closed::before {
        content: '+';
    }

.eoGrid .treeCollapseSmallBtn {
    border: 1px solid #aab1be;
    width: 10px;
    height: 10px;
    margin-top: -50%;
    background-color: #FFFFFF;
}
.eoGrid tr.pointableRow {
    cursor: pointer;
}
.eoGrid tr.infiniteRow {
    height: 30px;
}
    .eoGrid tr.infiniteRow td, .eoGrid tr.infiniteRow th {
        text-overflow: ellipsis;
        white-space: nowrap;
    }

.eoGrid tr.infiniteSpaceHolder {
    background-color: #e1e3e8;
}
/*
.eoGrid tr.level3 {
    background-color: #778497;
}
.eoGrid tr.level3 td, .eoGrid tr.level2 td {
    color: #FFFFFF;
}
.eoGrid tr.level2 {
    background-color: #aab1be;
    color: #FFFFFF;
    font-weight: bold;
}
.eoGrid tr.level1 {
    background-color: #e1e3e8;
    font-style: italic;
}
*/
.eoGrid tr.divSortablePlaceholder {
    background-color: #fffbe5;
}
.eoGrid tr.divSortablePlaceholder.notallowed {
    display: none;
}


.eoGrid td.rowSortIcon {
    width: 32px;
    height: 32px;
}

    .eoGrid td.rowSortIcon div {
        width: 16px;
        height: 16px;
        background-image: url('../img/optionsOrange.png');
        background-repeat: no-repeat;
        background-position: center center;
        background-size: contain;
        cursor: pointer;
    }

.eoGrid td.editableCell.left::after,
.eoGrid td.editableCell.right::before {
    display: inline-block;
    width: 12px;
    height: 12px;
    content: '';
    margin-left: 2px;
    margin-right: 2px;
}

    .eoGrid .tableCheckbox {
        width: 9px;
        height: 9px;
        vertical-align: middle;
        border-radius: 3px;
        padding: 10px;
        border: 1px solid #cdcfcf;
    }
    .eoGrid td.center .tableCheckbox {
        margin-left: auto;
        margin-right: auto;
    }
    .eoGrid .tableCheckbox.checked {
        background-image: url('../img/input_checkbox_check.png');
        background-position: center center;
        background-repeat: no-repeat;
    }
    .eoGrid .tableColor {
        position: absolute;
        top: 0;
        right: 2px;
        bottom: 0;
        left: 2px;
    }
.eoGrid .tablePaginationContainer {
    overflow: hidden;
    padding: 10px 20px 8px 20px;
    position: relative;
    border-bottom: 2px solid #ECECEC;
}
.eoGrid .tablePaginationCenteredContainer {
    margin-left: auto;
    margin-right: auto;
    width: 210px;
}
.eoGrid .tableMaxRowContainer {
    position: absolute;
    right: 10px;
    top: 6px;
}
.eoGrid .eoGridRowSelectLabel {
    margin-right: 8px;
    font-weight: bold;
}


.eoGrid .tablePagination {
    float: left;
    cursor: pointer;
    width: 32px;
    height: 16px;
    text-align: center;
    background-repeat: no-repeat;
    background-position: center center;
    margin-top: 3px;
}

    .eoGrid .tablePagination.firstPage {
        background-image: url('../img/fastbackward.png');
    }

    .eoGrid .tablePagination.previousPage {
        background-image: url('../img/backward.png');
    }

    .eoGrid .tablePagination.nextPage {
        background-image: url('../img/forward.png');
    }

    .eoGrid .tablePagination.lastPage {
        background-image: url('../img/fastforward.png');
    }

    .eoGrid .tablePagination.disabledPage {
        opacity: 0.2;
        cursor: default;
    }

.ejTableHeadColumn {
    position: relative;
}

.ejTableHeadColumn.sort-asc span, .ejTableHeadColumn.sort-desc span {
    float: left;
}
.ejTableHeadColumn.sort-asc::after, .ejTableHeadColumn.sort-desc::after {
    content: '';
    float: left;
    height: 13px;
    width: 13px;
    margin-top: 3px;
    margin-left: 3px;
    background-repeat: no-repeat;
    
    position: absolute;
    top: 5px;
    right: 0px;
}
    .ejTableHeadColumn.sort-desc::after {
        background-image: url('../img/arrow_down.png');
    }
    .ejTableHeadColumn.sort-asc::after {
        background-image: url('../img/arrow_up.png');
    }

.eoGrid .editorElement.right {
    text-align: right;
}
.eoGrid .editorElement.left {
    text-align: left;
}
.eoGrid .editorElement.center {
    text-align: center;
}

.eoGrid .tablePaginationSelected {
    text-align: center;
    margin-top: 0px;
    width: 80px;
}

.eoGrid tr.tableSelectedRow {
    background-color: #ECECEC;
}
.modal-content .eoGrid tr.tableSelectedRow {
    background-color: #CCCCCC;
}

.eoGridControls {
    float: right;
    width: 32px;
    height: 32px;
    cursor: pointer;
    margin-left: 10px;
}

.eoGridControlAddView {
    background-image: url('../img/add.png');
}

.eoGridControlEditView {
    background-image: url('../img/edit.png');
}

.columnEditor .ui-dialog-titlebar {
    display: none
}
.columnEditor.ui-widget-content {
    background-color: #ECECEC;
    background: #ECECEC;
    z-index: 1050;
    border: 2px solid #CCCCCC;
    font-family: Calibri, sans-serif;
}
.columnEditor .ui-dialog-content {
    outline: none;
}
.btnColumnEditorClose, .btnColumnEditorSave {
    background-position: center center;
    width: 32px;
    height: 32px;
    border: none;
    margin: 0px;
    padding: 0px;
    border-radius: 50%;
}
.btnColumnEditorClose {
    background-image: url('../img/cancel.png');
}
.btnColumnEditorSave {
    background-image: url('../img/save.png');
}
/*.columnEditor .deleteicon {
    background-image: url("../img/deleteWhite.png");
    height: 35px;
    background-repeat: no-repeat;
    width: 35px;
}*/
/*.eoGridVisualState {
    float: left;
    display: none;
    width: 16px;
    height: 16px;
    background-image: url("../img/progress.gif");
    background-repeat: no-repeat;
    background-position: center center;
    margin-top: 10px;
}*/
.eoGridViewLabelSelector {
    font-weight: bold;
    cursor: pointer;
    float: right;
    padding: 3px;
    padding-right: 30px;
    background-image: url(../img/viewBlack.png);
    background-position: center right;
    background-repeat: no-repeat;
    margin-top: 3px;
    margin-right: 20px;
}

.eoGridSortSelector {
    font-weight: bold;
    cursor: pointer;
    float: right;
    padding: 3px;
    padding-right: 30px;
    background-image: url(../img/optionsGrey.png);
    background-position: center right;
    background-repeat: no-repeat;
    margin-top: 3px;
    margin-right: 20px;
}
    .eoGridSortSelector.active {
        background-image: url(../img/optionsOrange.png);
    }

.eoGridHeadIcon {
    overflow: hidden;
    float: left;
    margin: 8px 60px 6px 5px;
    cursor: pointer;
}
    .eoGridHeadIcon .caption {
        float: left;
        margin-top: -2px;
        font-weight: bold;
    }

    /*.eoGridHeadIcon .icon {
        width: 16px;
        height: 16px;
        background-repeat: no-repeat;
        background-position: center center;
        float: left;
        margin-right: 15px;
        background-image: url('../img/ui-images.png');
    }
        .eoGridHeadIcon .icon.add {
            background-position: -6px -438px;
        }
        .eoGridHeadIcon .icon.edit {
            background-position: -136px -438px;
        }*/

.eoGrid .eoGridSelect {
    float: right;
    background-color: #FFFFFF;
    font-weight: bold;
    outline: none;
    border: none;
}
    .eoGrid .eoGridSelect option {
        background-color: #FFFFFF;
    }


.eoGridHeadInputContainer {
    overflow: hidden;
    padding-left: 6px;
    margin-top: 10px;
    margin-bottom: 5px;
    background-color: #e1e3e8;
}

    .eoGridHeadInputContainer input, .eoGridHeadInputContainer input[type=text] {
        background-color: transparent;
        border: none;
    }
@media (min-width: 992px) {
    .eoGridHeadInputItem {
        float: left;
        margin-left: 20px;
    }
}
@media (max-width: 991px) {
    .eoGridHeadInputContainer div.input-row input[type=text].dateinput, 
    .eoGridHeadInputContainer input[type=text].dateinput {
        display: block;
        text-align: left;
    }

    .eoGridHeadInputItem {
        float: none;
        display: block;
        overflow: hidden;
    }
}
.eoGridHeadInputContainer ::-webkit-input-placeholder {
    color: #c9cfd9;
}

.eoGridHeadInputContainer :-moz-placeholder {
    color: #c9cfd9;
    opacity: 1;
}

.eoGridHeadInputContainer ::-moz-placeholder {
    color: #c9cfd9;
    opacity: 1;
}

.eoGridHeadInputContainer :-ms-input-placeholder {
    color: #c9cfd9;
}

.eoGridHeadInputContainer ::-ms-input-placeholder {
    color: #c9cfd9;
}

.eoGridHeadInputContainer input:focus {
    background-color: transparent;
    border: none;
    outline: none;
}

.eoGridHeadInputContainer .searchIcon {
    width: 32px;
    height: 32px;
    float: left;
}


    /* Column Editor */
    .divColAssignContainer {
        overflow: hidden;
        margin-top: 10px;
    }

    .dragAndDropContainerTitle {
        font-weight: bold;
    }

    .inputColAssignViewName {
        min-width: 100%;
    }

    .dragAndDropContainer {
        padding: 0px;
        margin: 0px;
    }

        .dragAndDropContainer li {
            list-style: none;
            margin: 5px 5px 5px 0px;
            padding: 2px;
            overflow: hidden;
            background-color: #ECECEC;
        }

            .dragAndDropContainer li input[type=checkbox] {
                float: left;
                min-height: initial;
                margin-right: 10px;
                margin-top: 3px;
            }

            .dragAndDropContainer li span {
                float: left;
                max-width: 135px;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .dragAndDropContainer li .verticalDragableIcon {
                float: right;
                height: 16px;
                width: 16px;
                background-image: url('../img/options.png');
                background-repeat: no-repeat;
                cursor: pointer;
            }

                .dragAndDropContainer li .verticalDragableIcon:hover {
                    background-image: url('../img/optionsfocus.png');
                }

            .dragAndDropContainer li .columnSizeConfiguration {
                float: right;
                height: 18px;
                width: 75px;
                overflow: hidden;
                margin-right: 10px;
            }
                .dragAndDropContainer li .columnSizeConfiguration .numericIteration {
                    width: 25px;
                    line-height: 16px;
                    float: left;
                    background-color: #ECECEC;
                    border: 1px solid #CCCCCC;
                    text-align: center;
                    cursor: pointer;
                }
                .dragAndDropContainer li .columnSizeConfiguration .numericIterationInput {
                    width: 25px;
                    float: left;
                    line-height: 16px;
                    text-align: center;
                }

.gridViewSelectTitle {
    font-weight: bold;
    color: #e3e5ea;
    margin-top: 5px;
}
.gridViewSelectContainerModal {
    padding: 0px !important;
    font-size: 14px !important;
}
.gridViewSelectContainerItem {
    border-bottom: 1px solid #FFFFFF;
    margin-top: 2px;
    cursor: pointer;
}
    .gridViewSelectContainerItem:hover, 
    .gridViewSelectContainerItem.active {
        border-bottom: 1px solid #b6becb;
    }

.gridViewSelectContainerModal .divTableForm {
    display: table;
    table-layout: auto;
    width: 100%;
}

.gridViewSelectContainerModal .divTableFormRow {
    display: table-row;
}

.gridViewSelectContainerModal .divTableFormBoldCell {
    display: table-cell;
    font-weight: 600;
    vertical-align: middle;
}

.gridViewSelectContainerModal .divTableFormCell {
    display: table-cell;
    vertical-align: middle;
}

.gridViewSelectContainerModal .divTableForm.smalllineheight {
    border-spacing: 0px 3px;
    line-height: 1.1;
}

.gridViewSelectContainerModal .divTableForm.verticaltop .divTableFormCell, .gridViewSelectContainerModal .divTableForm.verticaltop .divTableFormBoldCell {
    vertical-align: top;
}

.gridViewSelectContainerModal .divTableForm .divTableFormCell .divTableFormCellContent {
    overflow: hidden;
}

.gridcontrol td button.contextmenubutton {
    position: absolute;
    top: 3px;
    right: 2px;
    padding: 0px 7px;
}
.gridcontrol td button.contextmenubutton:hover {
    background-color: #FFFFFF;
}