.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.empty-state-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/*table*/
.contact-table {
    border-collapse: collapse;
    width: 100%;
    font-size: 1em;
    margin: 0;
    border: 0px;
}

.contact-table tbody>tr:nth-child(odd)>td,
table tbody>tr:nth-child(odd)>th {
    background: unset;
    padding: 8px;
}

table caption+thead tr:first-child td,
table caption+thead tr:first-child th,
table colgroup+thead tr:first-child td,
table colgroup+thead tr:first-child th,
table thead:first-child tr:first-child td,
table thead:first-child tr:first-child th {
    border-block-start: 0px;
}

.contact-table td,
.contact-table th {
    line-height: 1;
    vertical-align: middle;
    border: 0px;
    text-align: right;
    padding: 10px 8px;
}

.contact-table tr {
    border-bottom: 1px solid var(--e-global-color-752e732);
}

.contact-data {
    padding: 32px 16px 32px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.contact-table tbody>tr:nth-child(odd):hover,
table tbody>tr:nth-child(odd):hover {
    background: unset;
    background: var(--e-global-color-8d5e3bd);
}

th.sort-date {
    display: flex;
    align-items: center;
    gap: 4px;
}

.show-more-tbl {
    color: var(--e-global-color-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 20px 14px;
    cursor: pointer;
    margin: 0 auto;
    border: 0;
    color: #000000;
}

.contact-filter-div {
    display: flex;
    justify-content: space-between;
}

.flip {
    transform: rotate(-180deg);
}


@media only screen and (max-width: 768px) {
    .contact-table thead {
        display: none;
    }

    .contact-table tr {
        margin-bottom: 16px;
        display: block;
    }

    .contact-table td {
        display: block;
        text-align: left !important;
    }

    .contact-table td:last-child {
        border-bottom: 0;
        text-align: left;
    }

    .contact-table td:before {
        content: attr(data-label);
        float: right;
        text-transform: uppercase;
        font-weight: 600;
    }
}