div.data-grid{
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    /* user-select: none; */
}

div.data-grid-container {
    width: 100%;
    height: 100%;
    padding-bottom: 35px;
    box-sizing: border-box;
    position: relative;
}

div.data-grid-header {
    width: 100%;
    height: 35px;
    border: 1px solid rgba(220, 220, 220, .2);
    box-sizing: border-box;
    /* background:linear-gradient(#f9f9f9, #efefef); */
    background: #f2f2f2;
    position: relative;
    z-index: 10;
    overflow: hidden;
    /* box-shadow: 0 0 2px rgba(0, 0, 0, .2); */
}

div.data-grid-header ul.data-grid-columns {
    width: 9999px;
    padding: 0px;
    margin: 0px;
    white-space: nowrap;
}

div.data-grid-header ul.data-grid-columns > li {
    display: block;
    float: left;
    line-height: 35px;
    height: 35px;
    list-style: none;
    padding: 0px 10px;
    margin: 0px;
    border-right: 1px solid rgba(220, 220, 220, .8);
    box-sizing: border-box;
    font-weight: bold;
}

div.data-grid-header ul.data-grid-columns > li > span.data-grid-columns-label{
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    cursor: default;
}

div.data-grid-header li{
    position: relative;
}

div.data-grid-header i.fa-sort-up,
div.data-grid-header i.fa-sort-down{
    position: absolute;
    right: 10px;
    /* margin-top: 10px; */
    color: #ccc;
    height: 5px;
    /* overflow: hidden; */
}

div.data-grid-header i.fa-sort-down{
    z-index: 1;
    top: 18px;
    line-height: 0px;
}

div.data-grid-header i.fa-sort-up{
    top: 10px;
    z-index: 4;
    line-height: 12px;
}

div.data-grid-header i:hover{
    color: #333;
}

div.data-grid-body {
    width: 100%;
    height: 100%;
    padding: 35px 0px 0px 40px;
    margin-top: -35px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

div.data-grid-body-cloud{
    width: 100%;
    height: 100%;
    padding: 35px 100px 0px 40px;
    margin-top: -35px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

div.data-grid-viewport{
    width: 100%;
    height: 100%;
    overflow: auto;
    box-sizing: border-box;
    border-width: 0px 0px 1px 1px;
    border-color: rgba(220, 220, 220, .8);
    border-style: solid;
    position: relative;
}

div.data-grid-column-resize{
    width: 0px;
    height: 100%;
    position: absolute;
    border-width: 0px 1px;
    border-style: dashed;
    border-color: rgba(0, 0, 0, .6);
    top: 0px;
    left: -9999px;
    margin-left: -1px;
    background: rgba(0, 0, 0, .1)
}

div.data-grid-main > ul.data-grid-row {
    display: block;
    height: 30px;
    padding: 0px;
    margin: 0px;
    transition: all .5s;
    width: 100%;
    white-space: nowrap;
}

div.data-grid-main > ul:nth-child(even) {
    background: #fff;
}

div.data-grid-main > ul:hover li{
    background: rgb(240, 240, 240);
    cursor: default;
}

div.data-grid-main > ul.data-grid-selected li {
    background: rgb(215, 226, 244);
}

div.data-grid-main > ul > li {
    display: inline-block;
    height: 30px;
    line-height: 30px;
    box-sizing: border-box;
    border-width: 0px 1px 1px 0px;
    border-color: rgba(220, 220, 220, .8);
    border-style: solid;
    padding: 0px 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

div.data-grid-selects-wrapper{
    width: 40px;
    height: 100%;
    box-sizing: border-box;
    position: absolute;
    top: 0px;
    left: 0px;
    padding-top: 35px;
    margin-top: -35px;
    z-index: 50;
    background: #fff;
}

div.data-grid-selects{
    width: 40px;
    height: 100%;
    overflow: hidden;
    box-shadow: 3px 0 3px -2px rgba(0,0,0,0.15);
    border-bottom: 1px solid #e8e8e8;
}

div.data-grid-selects ul {
    padding: 0px;
    margin: 0px;
}

div.data-grid-selects li{
    display: block;
    float: left;
    width: 40px;
    height: 30px;
    line-height: 30px;
    box-sizing: border-box;
    border-width: 0px 0px 1px;
    border-color: rgba(220, 220, 220, .8);
    border-style: solid;
    padding: 0px 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
    /* background: #eee; */
}

div.data-grid-selects li:nth-child(even) {
    background: #fff;
}

div.data-grid-selects li.first-child{
    display: block;
    float: left;
    line-height: 35px;
    height: 35px;
    list-style: none;
    padding: 0px 10px;
    margin: 0px;
    border-style: solid;
    border-width: 0px;
    border-color: rgba(220, 220, 220, .2); 
    box-sizing: border-box;
    font-weight: bold;
    background:linear-gradient(#f9f9f9, #efefef);
    /* box-shadow: 0 0 2px rgba(0, 0, 0, .2); */
}

ul.data-grid-header-checkeds{
    position: relative;
    z-index: 2;
}

ul.data-grid-body-checkeds{
    position: relative;
    z-index: 1;
}

div.data-grid-actions-wrapper{
    width: 100px;
    height: 100%;
    box-sizing: border-box;
    position: absolute;
    top: 0px;
    right: 0px;
    padding-top: 35px;
    margin-top: -35px;
    z-index: 50;
    background: #fff;
}

div.data-grid-actions{
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-shadow: 0px -2px 3px 0px rgba(0,0,0,0.15);
    border-bottom: 1px solid #e8e8e8;
}

div.data-grid-actions ul {
    padding: 0px;
    margin: 0px;
}

div.data-grid-actions li{
    display: block;
    float: left;
    width: 100%;
    height: 30px;
    line-height: 30px;
    box-sizing: border-box;
    border-width: 0px 1px 1px 0px;
    border-color: rgba(220, 220, 220, .8);
    border-style: solid;
    padding: 0px 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: left;
    /* background: #eee; */
}

div.data-grid-actions li:nth-child(even) {
    background: #fff;
}

div.data-grid-actions li.first-child{
    display: block;
    float: left;
    line-height: 35px;
    height: 35px;
    list-style: none;
    padding: 0px 10px;
    margin: 0px;
    border-width: 0px 0px 1px 0px;
    border-color: rgba(220, 220, 220, .8);
    border-style: solid;
    box-sizing: border-box;
    font-weight: bold;
    background:linear-gradient(#f9f9f9, #efefef);
}

ul.data-grid-header-actions{
    position: relative;
    z-index: 2;
}

ul.data-grid-body-actions{
    position: relative;
    z-index: 1;
}

ul.data-grid-body-actions a{
    outline: none;
    margin: 0px 10px;
}



ul.data-grid-body-actions a i.fa-eye-slash{
    color: rgb(66, 209, 47);
}

ul.data-grid-body-actions a i.fa-file-pdf-o{
    color: #f30;
}

ul.data-grid-body-actions a:focus, 
ul.data-grid-body-actions a:hover{
    outline: none
}

div.data-notify{
    width: 500px;
    box-sizing: border-box;
    padding: 15px;
}

span.data-grid-inline{
    width:20px;
    height: 35px;
    background: rgba(255, 177, 0, 0);
    position: absolute;
    top: 0px;
    display: inline-block;
    z-index: 9999;
    margin-left: -10px;
    cursor: col-resize;
}

div.data-grid-footer{
    width: 100%;
    height: 35px;
    box-sizing: border-box;
    padding-top: 6px;
    text-align: right;
    position: relative;
    z-index: 100;
}

div.data-grid-footer ul{
    display: inline-block;
}

div.data-grid-evals > ul.data-grid-row, 
ul.data-grid-body-evals {
    height: 120px;
}

div.data-grid-evals > ul[data-disable="1"],div.data-grid-evals > ul[data-disable="1"] li {
    background: #eee;
}

div.data-grid-evals > ul > li, 
ul.data-grid-evals > li,
ul.data-grid-body-evals > li {
    height: 120px;
}

ul.data-grid-evals > li[data-disable="1"]{
    background: #eee;
}

ul.data-grid-body-evals > li {
    line-height: 120px;
}

ol.upper-alpha, ol li {
    list-style-type: upper-alpha;
    list-style-position: inside;
    padding-left: 0px;
}

ol.upper-alpha span.range{
    margin-left: 15px;
}

ol.upper-alpha span.min{
    display: inline-block;
    width: 16px;
    text-align: right;
}

div.root-logger ul.data-grid-body-actions li a:first-child{
    display: none;
}

div.ant-spin-nested-loading{
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

div.data-grid-footer{
    margin-top: -35px;
}

div.ant-spin-container{
    width: 100%;
    height: 100%;
}

div.root-listen{
    width: 100%;
    height: 100%;
}

div.root-listen i.anticon-edit{
    display: none;
}

div.data-grid-actions-wrapper{
    display: none;
}

div.data-grid-actions-wrapper-cloud{
    display: block;
}

div.data-grid-actions-wrapper-cloud ul.data-grid-body-actions a{
    outline: none;
    margin: 0px 5px;
}

div.data-grid-action-file-wrapper{
    display: block;
}

a.sumbit-button, a.undo-button {
    border: 1px solid rgb(243, 232, 232);
    padding: 3px 5px;
    border-radius: 2px;
    background: #fff;
}

a.sumbit-button:focus, a.undo-button:focus{
    border: 1px solid rgb(229, 243, 255);
    text-decoration: none;
    outline: none;
}

a.sumbit-button:hover, a.undo-button:hover{
    border: 1px solid rgb(229, 243, 255);
}

div.data-grid-header span.grid-sort-up, div.data-grid-header span.grid-sort-down {
    width: 10px;
    height: 10px;
    display: block;
    overflow: hidden;
    position: absolute;
    top: 8px;
    right: 10px;
}

div.data-grid-header span.grid-sort-down {
    top: 13px;
}

div.data-grid-header span.grid-sort-up i{
    top: -10px;
    left: 0px;
    position: relative;
    cursor: pointer;
}

div.data-grid-header span.grid-sort-down i {
    top: -15px;
    left: 0px;
    position: relative;
    cursor: pointer;
}

div.data-grid-header span.grid-sort-up.active, span.grid-sort-down.active{
    color: #111;
}

div.data-grid-header ul.data-grid-columns li:first-child span.grid-sort-up, 
div.data-grid-header ul.data-grid-columns li:first-child span.grid-sort-down{
    display: none;
}