
/*######################   XTABLE   #########################*/
.x-table {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .x-table.hovered .xbody ul:hover {
    background-color: #e6f0fc;
  }
  .x-table.selectable .xbody ul {
    cursor: pointer;
  }
  .x-table.selectable .xbody ul:hover {
    background-color: #e6f0fc;
  }
  .x-table.selectable .xbody ul.active {
    background-color: #4300c9;
  }
  .x-table.selectable .xbody ul.active * {
    color: #fff !important;
    fill: #fff !important;
  }
  .x-table.have-row-fixed {
    position: relative;
  }
  .x-table.have-row-fixed .xbody ul.is-row-fixed {
    width: 100%;
    left: 0;
    border-top: 1px #ddd solid;
    background: #FFF;
  }
  .x-table.have-row-fixed .xbody ul.is-row-fixed li {
    line-height: 3rem;
    font-weight: bold;
    font-size: 0.9rem;
  }
  .x-table, .x-table * {
    -webkit-transition: all 0.25s ease !important;
    transition: all 0.25s ease !important;
  }
  .x-table ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: auto;
  }
  .x-table li {
    line-height: 48px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .x-table li:first-child {
    padding-left: 15px;
  }
  .x-table .xheader {
    padding-right: 15px;
  }
  .x-table .xheader ul {
    margin: auto;
  }
  .x-table .xheader ul li {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.75rem;
    line-height: 4;
  }
  .x-table .xbody {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    overflow-y: scroll;
    height: 83vh;
    position: relative;
  }
  .x-table .xbody::-webkit-scrollbar{
    background: #e4eefa;
    border-radius: 7px;
    width: 7px;
  }
  .x-table .xbody::-webkit-scrollbar-thumb{
    background: #555;
    border-radius: 7px;
  }
  .x-table .xbody ul {
    margin-bottom: 10px;
    position: relative;
    border-radius: 3px;
    -webkit-box-shadow: 0 2px 5px rgba(102, 102, 102, 0.05);
            box-shadow: 0 2px 5px rgba(102, 102, 102, 0.05);
    background: #FFF;
  }
  .x-table .xbody ul li {
    font-size: 0.85rem;
    line-height: 56px;
  }
  .x-table .xbody ul li span{
    margin: 0 1rem;
    cursor: pointer;
    padding: .5rem;
    font-size: .8rem;
     background: #28418c;
    border-radius: 50%;
    color: #FFF;
  }
  .x-table .xbody ul li span:hover{
    color: #fff;
    background: rgb(22, 180, 22);
  }
  .x-table .xbody ul li i{
    cursor: pointer;
    padding: .5rem;
    font-size: .8rem;
     background: #28418c;
    border-radius: 50%;
    color: #FFF;
  }
  .x-table .xbody ul li i:hover{
    color: #fff;
    background: tomato;
  }