.table.actiontable{
    display: none;
    background-color: #fff;      
      
}
.table.actiontable tbody tr{
    cursor: pointer;
}
.table.actiontable tbody tr:hover{
    background-color: #d1e4f33f ;
}
.table.actiontable tr.active{
    /* background-color: rgb(235, 235, 235); */
    background-color: #d1e4f33f  ;
}
.table.actiontable td{
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 0.8rem;
    border-top-color: rgb(172, 210, 243);
}
.table.actiontable thead td{
    border-top: 0;
    font-weight: 400;
}
.table.actiontable td dt{
    font-size: 0.8rem;
    font-weight: 400;    
}
.table.actiontable td dd{
    font-size: 0.8rem;
    margin-bottom: 0px;
    font-weight: 400;
}
.table.actiontable td dd.strong{
    font-weight: 500;
}
.table.actiontable td h6{
    margin: 0;
    padding: 0;
}
.table.actiontable .action-td-container{
    height: 18px;
    overflow: hidden;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.table.actiontable tr.active .action-td-container{
    height: 100px !important;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

/* HOVER */
.actiontable-hover{
    display: none;
    position: absolute;
    margin-left: 30px;
    margin-top: -15px;
    min-width: 450px;
    max-width: 90vw;
}
.actiontable-hover-info{
    float: left;
    padding-right: 10px;
}
.table.actiontable .actiontable-hover-info:hover .actiontable-hover{
    display: block;
}

/* SIDE-INFO-CONTAINER */

.actiontable-side-info-container-wrapper{
    position: -webkit-sticky;
    position: sticky;
    top: 110px;    
    overflow-y: auto;
    /* height: calc(100vh - 50px); */
    border-left: 0px solid #b0dfff;    
}

/* Pagination */
.actiontable-container .pagination{
    margin-left: 15px;

}
.pagination .page-item.active .page-link {
    border-radius: 0;
}
.actiontable-container .pagination .page-item a{
    box-shadow: none;       
    border-radius: 0;
}

.actiontable-container .pagination .page-item.active a{
    background-color: #3F729B;
    color: #fff;
    box-shadow: none;
}