.next-table-fixed .next-table-header th {
  border-top-width: 0;
}

.next-table-fixed .next-table-header tr th:last-child {
  border-right-width: 0;
}

.next-table-fixed .next-table-body td {
  border-top-width: 0;
}

.next-table-fixed .next-table-body tr:last-child td {
  border-bottom-width: 0;
}

.next-table-fixed .next-table-body tr td:last-child {
  border-right-width: 0;
}

.next-table-lock .next-table-body {
  overflow-x: auto;
  overflow-y: visible;
}

.next-table-group {
  border-width: 0;
}

.next-table-group .next-table-body {
  margin-top: 8px;
}

.next-table-group .next-table-body table {
  margin-bottom: 8px;
}

.next-table-group .next-table-body table tr:first-child td {
  border-top-width: 1px;
}

.next-table-group .next-table-group-header td {
  background: #EBECF0;
}

.next-table-lock {
  position: relative;
}

.next-table-lock .next-table-header-inner, .next-table-fixed .next-table-header-inner {
  overflow: hidden;
}

.next-table-lock-left, .next-table-lock-right {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.next-table-lock-left table, .next-table-lock-right table {
  width: auto;
}

.next-table-lock-left .next-table-body, .next-table-lock-right .next-table-body {
  overflow: hidden;
}

.next-table-lock-right {
  right: 0;
  left: auto;
}

.next-table-lock-right table tr td:first-child, .next-table-lock-right table tr th:first-child {
  border-left-width: 1px;
}

.next-table-lock-right.shadow {
  box-shadow: -2px 0 3px rgba(0, 0, 0, 0.12);
}

.next-table-lock-left.shadow {
  box-shadow: 2px 0 3px rgba(0, 0, 0, 0.12);
}

.next-table-filter {
  line-height: 1;
}

.next-table-sort {
  position: relative;
  width: 16px;
  height: 15px;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}

.next-table-sort .next-icon {
  position: absolute;
  left: 0;
  color: #333333;
}

.next-table-sort .next-icon:before {
  width: 12px;
  font-size: 12px;
  line-height: inherit;
}

.next-table-sort .current .next-icon {
  color: #15AD9D;
}

.next-table-sort .next-icon-ascending {
  left: 4px;
}

.next-table-filter {
  margin-left: 5px;
  cursor: pointer;
  width: 20px;
  display: inline-block;
}

.next-table-filter .next-icon {
  color: #333333;
}

.next-table-filter .next-icon:before {
  width: 12px;
  font-size: 12px;
  line-height: inherit;
}

.next-table-expanded-ctrl.disabled {
  color: #999999;
}

.next-table-expanded-ctrl .next-icon:before {
  width: 12px;
  font-size: 12px;
  line-height: inherit;
}

.next-tag-selectable .next-tag-body, .next-tag-link .next-tag-body, .next-tag-readonly .next-tag-body {
  overflow: hidden;
  text-overflow: ellipsis;
}

@-webkit-keyframes artZoomIn {
  0% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes artZoomIn {
  0% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes artZoomOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}

@keyframes artZoomOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}