/*! ngTable v0.5.3 by Vitalii Savchuk(esvit666@gmail.com) - https://github.com/esvit/ng-table - New BSD License */

.ng-table th {
    text-align: center;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}
.ng-table th.sortable {
    cursor: pointer
}
.ng-table th.sortable .sort-indicator {
    padding-right: 15px;
    position: relative
}
.ng-table th.sortable .sort-indicator:after,
.ng-table th.sortable .sort-indicator:before {
    content: "";
    border-width: 0 4px 4px;
    border-style: solid;
    border-color: #4f5f6f transparent;
    visibility: visible;
    right:0px;
    top: 50%;
    position: absolute;
    opacity: .3;
    margin-top: -4px
}
.ng-table th.sortable .sort-indicator:before {
    margin-top: 2px;
    border-bottom: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #4f5f6f
}
.ng-table th.sortable .sort-indicator:hover:after,
.ng-table th.sortable .sort-indicator:hover:before {
    opacity: 1;
    visibility: visible
}
.ng-table th.sortable.sort-desc,
.ng-table th.sortable.sort-asc {
    background-color: #f4f6fb;
}
.ng-table th.sortable.sort-desc .sort-indicator:after,
.ng-table th.sortable.sort-asc .sort-indicator:after {
    margin-top: 0px
}
.ng-table th.sortable.sort-desc .sort-indicator:before,
.ng-table th.sortable.sort-asc .sort-indicator:before {
    visibility: hidden
}
.ng-table th.sortable.sort-asc .sort-indicator:after,
.ng-table th.sortable.sort-asc .sort-indicator:hover:after {
    visibility: visible;
    filter: alpha(opacity=60);
    -khtml-opacity: .6;
    -moz-opacity: .6;
    opacity: .6
}
.ng-table th.sortable.sort-desc .sort-indicator:after {
    border-bottom: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #000;
    visibility: visible;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    filter: alpha(opacity=60);
    -khtml-opacity: .6;
    -moz-opacity: .6;
    opacity: .6
}
.ng-table th.filter .input-filter {
    margin: 0;
    display: block;
    width: 100%;
    min-height: 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}
.ng-table+.pagination {
    margin-top: 0
}
@media only screen and (max-width: 800px) {
    .ng-table-responsive {
        border-bottom: 1px solid #d7dde4
    }
    .ng-table-responsive tr {
        border-top: 1px solid #d7dde4;
        border-left: 1px solid #d7dde4;
        border-right: 1px solid #d7dde4
    }
    .ng-table-responsive td:before {
        position: absolute;
        padding: 8px;
        left: 0;
        top: 0;
        width: 50%;
        white-space: nowrap;
        text-align: left;
        font-weight: 700
    }
    .ng-table-responsive thead tr th {
        text-align: left
    }
    .ng-table-responsive thead tr.ng-table-filters th {
        padding: 0
    }
    .ng-table-responsive thead tr.ng-table-filters th form>div {
        padding: 8px
    }
    .ng-table-responsive td {
        border: 0;
        border-bottom: 1px solid #d7dde4;
        position: relative;
        padding-left: 50%;
        white-space: normal;
        text-align: left
    }
    .ng-table-responsive td:before {
        content: attr(data-title-text)
    }
    .ng-table-responsive,
    .ng-table-responsive thead,
    .ng-table-responsive tbody,
    .ng-table-responsive th,
    .ng-table-responsive td,
    .ng-table-responsive tr {
        display: block
    }
}