tableContainer{
    position: absolute;
    bottom:0;
    left:0;
    display: block;
    background:rgb(0,0,0);
    width:100%;
    box-sizing: border-box;
    height:calc(100% - 65px);
    overflow: auto;
}

table{
    width:100%;
    background:rgb(0,0,0);
    font-family: 'Regular';
    border-collapse: collapse;
}

td{

    text-align: left;
    border:none;
    height:30px;
}
tr{

    border-bottom:1px solid rgba(125,125,125,0.5);
    height:30px;
}

td *,td,th *,th{
  cursor: pointer;
}


th{

    text-align: left;
    position: sticky;
    height:35px;
    top:0;
    left:0;
    padding:10px;
    background: rgba(0,0,0,0.85);
}

thead{
    border-top-left-radius:20px;
    border-top-right-radius:20px;
    height:35px;
    overflow: hidden;
}
