.table-body-wrapper{
    overflow:hidden;
    max-height: 100%;
}

.table-body-parent{
    overflow-y: auto;
    max-height: 70vh;
}
.table-header {
    background-color: rgb(214, 214, 214); 
    color: black;
    line-height: 3;
    border-bottom: 1px solid black;
    font-size: 12px;
    cursor: pointer;
}

.table-paging {
    background-color: darkgray;
    color: rgba(255, 255, 255, 0.7);
    line-height: 3;
    border-top: 1px solid black
}

.table-paging-button {
    float:right;
    outline: 1px solid #666;
    font-size: 10px;
    margin: 1.5%;
}

.table-paging-page {
    float:right;
    text-align: center;
    line-height: 1.5;
}

.table-row {
    line-height : 1.5;
}

.table-row:nth-child(even) {
    background: lightgray;
}

/* .table-row:nth-child(even) {
    background: white;
} */

.table-row-hide {
    display:none;
}

.table-row:hover { 
    background: rgba(0,0,0,.2);
}

.table-row-active {
    outline: 2px solid blue;
}

.table-row:focus {
    outline: 2px solid blue;
}



.fa{
    padding-top: 3px;
    display:inline;
    font-size:18px;
    color: rgba(255, 255, 255, 0.5);
}

.button-tab {
    line-height: 1.7;
    text-align: center;
    margin-right: 1%;
    cursor: pointer;
    outline: none;
    color: #fff;
    border: none;
    border-radius: 3px;
    box-shadow: 0px 2px 10px rgba(153,153,153,0.17512156);
    background-color:  rgb(66, 66, 66);
  }

.button-tab:hover {
    /*filter: brightness(180%);*/
    animation: glow 1s infinite ease-in-out;
    box-shadow: 4px 4px 15px rgb(126, 125, 125);
}

.button-tab:active {
    filter:opacity(0.6);
    box-shadow: 0 2px 10px #666;
    transform: translateY(3px);
}

.chose-page-size{
    display:none;
    line-height: 1;
    margin-top: 0px;
    margin-bottom: 10px;
    font-size: 13px;
}

.select-page-size{
    cursor: pointer;
    font-size: 0.8vw
}

.select-page-size:hover{
    filter: brightness(180%);
    animation: glow 1s infinite ease-in-out;
}

.select-page-size:hover .chose-page-size{
    display: block;
}
