.tooltip {
  position: absolute;
  z-index: 99999;
  width: 0;
  height: 0;
  cursor: pointer;
}
.tooltip.show .tooltip-content {
  opacity: 1;
  visibility: visible;
}
.tooltip .tooltip-content {
  opacity: 0;
  visibility: hidden;
  position: relative;
  top: -35px;
  transform: translateX(-50%);
  display: inline-block;
  padding: 5px;
  white-space: nowrap;
  font-size: 10.5px;
  line-height: 1.3;
  background: #333;
  color: #fff;
  border-radius: 3px;
  transition: 0.2s ease-in;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.tooltip .tooltip-content:before {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  margin-left: -7px;
  border: 7px solid transparent;
  border-top: 7px solid #333;
}

/*#region icon*/
.sort-icon-content {
  display: inline-block;
  padding: 0.2em 0.2em 0.2em 0.5em;
}
.sort-icon-content.sort-order-up .sort-icon-up {
  display: inline-flex;
}
.sort-icon-content.sort-order-up .sort-icon {
  display: none;
}
.sort-icon-content.sort-order-down .sort-icon-down {
  display: inline-flex;
}
.sort-icon-content.sort-order-down .sort-icon {
  display: none;
}
.sort-icon-content .sort-icon {
  display: block;
}
.sort-icon-content .sort-icon-up,
.sort-icon-content .sort-icon-down {
  display: none;
}
/*#endregion*/
.top-table {
  font-size: 14px;
  margin-bottom: 1.5em;
  width: 100%;
  text-align: center;
  overflow: auto;
  display: inline-block;
  position: relative;
}
.top-table.movable {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.top-table .movable {
  z-index: 99999;
}
.top-table tr {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  background: white;
}
.top-table tr:nth-child(even) td {
  background: #eee;
}
.top-table tr:nth-child(odd) td {
  background: #fdfdfd;
}
.top-table td {
  border: 1px solid #ddd;
  text-align: center;
  padding: 5px;
  vertical-align: middle;
  background: white;
}
.top-table tbody {
  white-space: nowrap;
  position: relative;
}
.top-table .header {
  position: relative;
}
.top-table .header > td {
  cursor: pointer;
}
.top-table .movable-header > td {
  transition: all 0.2s;
}
.top-table .movable-header .movable-td-clone {
  transition: unset;
  box-shadow: 2px 2px 6px 0px #aaa;
}
.top-table .movable-header .movable-td-to {
  border: 1px solid #666;
}
.top-table .fixed-header > td {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
.top-table .fixed-header .fixed-td {
  z-index: 11000;
}
.top-table .fixed-row-head {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
}
.top-table .fixed-td {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  z-index: 10000;
  box-shadow: 4px 0px 6px #e6e6e6;
}
.top-table .movable-td-from {
  opacity: 0.4;
}