:root {
  --x-table-border: 1px solid rgba(0, 0, 0, 0.12);
}

.x-menu {
  border-radius: 4px;
  background-color: #fff;
  z-index: 99;
  position: absolute;
  overflow-y: auto;
  max-height: 288px;
  -webkit-box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
          box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
}

.x-table {
  table-layout: fixed;
  width: 100%;
  min-width: 100%;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
}
.x-table.auto {
  table-layout: auto;
}
.x-table tr.space-occupation {
  position: relative;
  border: none;
}
.x-table tr.space-occupation > td {
  height: 0px;
  border: none !important;
}
.x-table tr.hidden-observer > td {
  padding-top: 0px;
  padding-bottom: 0px;
  height: 0px;
  border: none !important;
  visibility: hidden;
}
.x-table tr > td.no-data {
  text-align: center;
}
.x-table tr > th, .x-table tr > td {
  height: 56px;
  padding: 6px 16px;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.x-table tr > th.is-left, .x-table tr > td.is-left {
  text-align: left;
}
.x-table tr > th.is-center, .x-table tr > td.is-center {
  text-align: center;
}
.x-table tr > th.is-right, .x-table tr > td.is-right {
  text-align: right;
}
.x-table tr > th .cell, .x-table tr > td .cell {
  overflow: hidden;
}
.x-table tr > th .ellipsis, .x-table tr > td .ellipsis {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.x-table tr > th.front-fixed, .x-table tr > td.front-fixed {
  position: sticky;
  z-index: 1;
}
.x-table tr > th.behind-fixed, .x-table tr > td.behind-fixed {
  position: sticky;
  z-index: 1;
}
.x-table-wrapper {
  max-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: left;
  font-size: 14px;
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.x-table-wrapper-scroll {
  overflow: auto;
}
.x-table-wrapper tr > th.front-fixed-last::before, .x-table-wrapper tr > th.behind-fixed-first::before, .x-table-wrapper tr > td.front-fixed-last::before, .x-table-wrapper tr > td.behind-fixed-first::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30px;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
  pointer-events: none;
}
.x-table-wrapper tr > th.front-fixed-last::before, .x-table-wrapper tr > td.front-fixed-last::before {
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.x-table-wrapper tr > th.behind-fixed-first::before, .x-table-wrapper tr > td.behind-fixed-first::before {
  left: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.x-table-wrapper-header {
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.x-table-wrapper-body {
  overflow: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.x-table-scrolling-top .behind-fixed-first::before {
  -webkit-box-shadow: inset -10px 0 8px -8px rgba(5, 5, 5, 0.06);
          box-shadow: inset -10px 0 8px -8px rgba(5, 5, 5, 0.06);
}
.x-table-scrolling-middle .front-fixed-last {
  border-right: none !important;
}
.x-table-scrolling-middle .front-fixed-last::before {
  -webkit-box-shadow: inset 10px 0 8px -8px rgba(5, 5, 5, 0.06);
          box-shadow: inset 10px 0 8px -8px rgba(5, 5, 5, 0.06);
}
.x-table-scrolling-middle .behind-fixed-first::before {
  -webkit-box-shadow: inset -10px 0 8px -8px rgba(5, 5, 5, 0.06);
          box-shadow: inset -10px 0 8px -8px rgba(5, 5, 5, 0.06);
}
.x-table-scrolling-bottom .front-fixed-last {
  border-right: none !important;
}
.x-table-scrolling-bottom .front-fixed-last::before {
  -webkit-box-shadow: inset 10px 0 8px -8px rgba(5, 5, 5, 0.06);
          box-shadow: inset 10px 0 8px -8px rgba(5, 5, 5, 0.06);
}
.x-table-header tr > th {
  border-left: none;
  border-bottom: var(--x-table-border);
}
.x-table-header tr > th .x-table-icon {
  display: inline-block;
  font-size: 16px;
  opacity: 0.3;
}
.x-table-header tr > th .x-table-icon.ascend, .x-table-header tr > th .x-table-icon.active {
  opacity: 1;
}
.x-table-header tr > th .x-table-icon.descend {
  opacity: 1;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.x-table-header tr > th:hover .x-table-icon:not(.ascend, .descend, .active) {
  opacity: 0.5;
}
.x-table-body tr:not(:last-child) > td {
  border-bottom: var(--x-table-border);
}
.x-table-border {
  border: var(--x-table-border);
}
.x-table-border tr > th:not(:last-child),
.x-table-border tr > td:not(:last-child) {
  border-right: var(--x-table-border);
}
.x-table .x-progress-linear {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 9;
  -webkit-transition: height 0.3s ease-out;
  transition: height 0.3s ease-out;
}