.adte_table_wrapper table.adte_table tr td,
.adte_table_wrapper table.adte_table tr,
.adte_table_wrapper table.adte_table tr:hover,
.adte_table_wrapper table.adte_table tr:hover td {
    background-color: transparent;
}

table.adte_table {
    margin: 0;
    width: 100%;
    max-width: 100%;
}

table.adte_table tr th {
    border-color: #0077FF;
}

input.dt-input {
    border: 1px solid #CCCCCC;
}

.adte_pagination_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.adte_search_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.adte_search_wrap:has(.dt-search:only-child) {
    justify-content: flex-end;
}

.adte_pagination_wrap:has(.dt-info:only-child) {
    justify-content: flex-start;
}

.adte_pagination_wrap:has(.dt-paging:only-child) {
    justify-content: flex-end;
}

.adte_search_wrap .dt-search {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.adte_search_wrap .dt-search label {
    position: absolute;
    top: 1px;
    right: 1px;
    top: 50%;
    transform: translateY(-50%);
    height: calc(100% - 2px);
    width: 44px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adte-search-label {
    height: 20px;
    width: 20px;
}

.dt-search input {
    border-radius: 0;
    outline: none;
}

div.dt-processing {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    margin-left: -100px;
    margin-top: -22px;
    text-align: center;
    padding: 2px;
    z-index: 10;
}

div.dt-processing>div:last-child {
    position: relative;
    width: 80px;
    height: 15px;
    margin: 1em auto;
}

div.dt-processing>div:last-child>div {
    position: absolute;
    top: 0;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: rgb(13, 110, 253);
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

div.dt-processing>div:last-child>div:nth-child(1) {
    left: 8px;
    animation: datatables-loader-1 0.6s infinite;
}

div.dt-processing>div:last-child>div:nth-child(2) {
    left: 8px;
    animation: datatables-loader-2 0.6s infinite;
}

div.dt-processing>div:last-child>div:nth-child(3) {
    left: 32px;
    animation: datatables-loader-2 0.6s infinite;
}

div.dt-processing>div:last-child>div:nth-child(4) {
    left: 56px;
    animation: datatables-loader-3 0.6s infinite;
}

@keyframes datatables-loader-1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes datatables-loader-3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes datatables-loader-2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}

.adte_search_wrap .dt-length label {
    display: flex;
    align-items: center;
    background-color: #fff;
    color: #2e3d44;
    font-size: 16px;
    line-height: 26px;
    padding: 0 16px;
    text-transform: capitalize;
    border: 1px solid #dfdfe5;
}

.adte_search_wrap .dt-length label select {
    display: inline-block;
    width: auto;
    border: none;
    color: #2e3d44;
    background-color: #fff;
    border-left: 1px solid #dfdfe5;
    border-right: 1px solid #dfdfe5;
    border-top: 0px;
    border-bottom: 0px;
    line-height: 26px;
    margin: 0 10px;
    height: auto;
    cursor: pointer;
    border-radius: 0;
    outline: none;
    text-align: center;
}

.adte_search_wrap .dt-length label select {
    -webkit-appearance: none;
    -ms-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.adte_pagination_wrap .dt-info {
    transition: 0.3s;
}

.adte_pagination_wrap nav {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.adte_pagination_wrap .dt-paging .dt-paging-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    outline: none;
}

.td-content-type-editor p:last-child {
    margin: 0;
}

.adte_pagination_wrap .dt-paging-button.previous:focus,
.adte_pagination_wrap .dt-paging-button.next:focus {
    background: transparent;
}

.adte_search_wrap .dt-buttons {
    display: flex;
    align-items: center;
    flex-direction: row;
}

.adte_pagination_wrap .dt-paging .dt-paging-button.disabled {
    cursor: not-allowed;
    opacity: .4;
    color: #000000 !important;
    border-color: #000000 !important;
}

.adte_pagination_wrap .dt-paging .dt-paging-button.disabled:hover {
    background: transparent !important;
}

@media only screen and (max-width: 767px) {
    .adte_responsive_scroll {
        overflow-y: scroll;
    }

    .adte_search_wrap .dt-search {
        width: 100%;
    }

    .adte_pagination_wrap {
        flex-direction: column;
        gap: 15px;
    }

    .adte_search_wrap {
        flex-direction: column;
        gap: 15px;
        align-items: start;
    }

    .adte_table_body tr.child ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .adte_table_body tr.child ul li .dtr-title {
        font-weight: 600;
        display: block;
    }
}