/*=== SS TABLE ===*/
.ss-table
{
    width: 100%;
    padding: 0;
    margin: 0;
    border-collapse: collapse;
    border-spacing: 0px;
}

.ss-table thead
{
    background-color: #F4F7F9;
}

.ss-table thead th
{
    color: #828C94;
    font-size: 0.8rem;
    padding: 10px;
    font-weight: 400;
    text-align: left;
}

.ss-table thead th[data-sortdir]:hover
{
    cursor: pointer;
}

.ss-table thead th:after
{
    content: '';
    margin: 0px 5px;
}

.ss-table thead th[data-sortdir="-1"]:after
{
    font-family: "Font Awesome 5 Free";
    content: '\f0d8';
    font-weight: 900;
    margin: 0px 5px;
}

.ss-table thead th[data-sortdir="1"]:after
{
    font-family: "Font Awesome 5 Free";
    content: '\f0d7';
    margin: 0px 5px;
    font-weight: 900;
}

.ss-table tbody td
{
    padding: 16px 10px 16px 10px;
    text-align: left;
    border-bottom: 1px solid #D0D7DD;
}

.ss-table tbody tr:last-child td
{
    border-bottom: 1px solid transparent;
}

.ss-table.ss-table--striped tbody tr:nth-child(even) {
    background-color: #f8f8f8;
}

.ss-table.ss-table--plain thead
{
    background-color: inherit;
    border-bottom: 1px solid #D0D7DD;
}

.ss-table.ss-table--borderless td { border-bottom: 1px solid transparent; }

.ss-table.ss-table--tight td { padding: 8px 5px 8px 5px; }
.ss-table.ss-table--tight th { padding: 5px; }

.ss-table.ss-table--collapsed td { padding: 0px }
.ss-table.ss-table--collapsed th { padding: 0px; }

.ss-table--floating-header {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    padding: 0px;
    border-bottom: 1px solid #f1f1f1;
    background-color: #ffffff;
    padding: 0px 40px;
    transition: opacity 0.3s ease-in-out, height 0.3s ease-in-out;
    overflow: hidden;
    height: 0px;
    z-index: 1000;
    opacity: 0;
    padding-top: 10px;
}

.ss-table--floating-header.float {
    height: 70px;
    opacity: 1;
}

/*=== PAGINATION ===*/

.ss-pagination { margin: 2px 0px; }

.ss-pagination a, .ss-pagination span {
    color: #828C94;
    margin: 0px 5px;
    font-size: 1rem;
}

.ss-pagination .page:hover { cursor: pointer; }

.ss-pagination .selected {
    background-color: #00AEEF;
    color: #FFF;
    border-radius: 4px;
    padding: 5px 10px;
}

