.custom-tablepress-table {
    border: 1px solid #666;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
}

.custom-tablepress-table table {
    width: 100%;
    border: 1px solid #666;
    margin-bottom: 10px;

    table-layout: fixed;
    word-wrap: break-word;

}

.custom-tablepress-table thead {
    border-bottom: 1px solid #666;
    font-size: 0.7em;
    ;
}

.custom-tablepress-table th,
.custom-tablepress-table td {
    padding: 8px;
    border-bottom: 1px solid #666;
    text-align: left;
}

.custom-tablepress-table th {
    background-color: #222;
    text-align: center !important;
    /* Center the text */
}

.custom-tablepress-table td {
    text-align: center !important;
    /* Center the content in td */
}

.custom-tablepress-table iframe {
    border: none;
    max-width: 277px;
    height: 655px;
}

.custom-tablepress-table input[type="search"],
.custom-tablepress-table select {
    background-color: #333;
    color: #ccc;
    border: 1px solid #222;
    padding: 8px;
}

.custom-tablepress-table .dataTables_paginate .paginate_button {
    color: #777;
    text-decoration: none;
}

.custom-tablepress-table .dataTables_paginate .paginate_button:hover {
    color: #fff;
}

.custom-tablepress-table a {
    color: #777;
}

.custom-tablepress-table a:hover {
    color: #aaa;
}

@media only screen and (max-width: 1000px) {

    .custom-tablepress-table {
            margin-bottom: 80px !important;
        }
        
    .custom-tablepress-table th,
    .custom-tablepress-table td {
        display: block;
        width: 100%;
    }

    .ct-mobile-heading {
        display: block !important;
    }

    .custom-tablepress-table table thead th {
        width: 100% !important;

    }
                .custom-tablepress-table table tr td:first-child{
                    display: none;
        
                }
}


.custom-tablepress-table .iframe-container {
    max-width: 280px;
    margin: 0 auto;
}

.custom-tablepress-table table.dataTable thead .sorting::after,
.custom-tablepress-table table.dataTable thead .sorting_asc::after {
    display: none;
}

.custom-tablepress-table table.dataTable thead .sorting_desc::after {
    display: none;
}

.custom-tablepress-table table.dataTable thead .sorting {
    background-image: url(https://datatables.net/media/images/sort_both.png);
    background-repeat: no-repeat;
    background-position: center right;
}

.custom-tablepress-table table.dataTable thead .sorting_asc {
    background-image: url(https://datatables.net/media/images/sort_asc.png);
    background-repeat: no-repeat;
    background-position: center right;
}

.custom-tablepress-table table.dataTable thead .sorting_desc {
    background-image: url(https://datatables.net/media/images/sort_desc.png);
    background-repeat: no-repeat;
    background-position: center right;
}

.dataTables_length select[name="custom-tablepress-1_length"],
.custom-tablepress-table input[type="search"],
.custom-tablepress-table select {
    padding: 0;
    margin-bottom: 5px;
    ;
}

#custom-tablepress-1_wrapper {
    margin: 0;
}

.ct-mobile-heading {
    background: #222;
    display: none;
}

.custom-tablepress-table tbody tr td {
    padding: 10px;
}
.custom-tablepress-table tbody tr {
    vertical-align:top;
}

.custom-tablepress-table th,
.custom-tablepress-table td {
    border: none;
}

.custom-tablepress-table table {
    border-collapse: collapse;
}

.custom-tablepress-table tr.blank-row {
    border: 2px solid #666;
        border-right: 1px solid #000;
            border-left: 1px solid #000;
    height: 80px;
}

.custom-tablepress-table tr.blank-row:last-child {
    display: none;
}



.tri-state-toggle {
    background: rgba(165, 170, 174, 0.25);
    box-shadow: inset 0 2px 8px 0 rgba(165, 170, 174, 0.25);
    border-radius: 24px;
    display: inline-block;
    overflow: hidden;
    display: inline-flex;
    flex-direction: column;
    transition: all 500ms ease;
}

.tri-state-toggle-button {
    border-radius: 22px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    background-color: transparent;
    border: 0px solid transparent;
    margin: 2px;
    color: #727C8F;
    cursor: pointer;
    padding:10px;
    font-size: 0.7em;
}

.tri-state-toggle-button.active {
    background-image: linear-gradient(-180deg, #fff 0%, #FAFAFA 81%, #F2F2F2 100%);
    border: 1px solid rgba(207, 207, 207, 0.6);
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.1);
    color: #6744B1;
    font-weight: 500;
    transition: all .5s ease-in;
}

.tri-state-toggle-button:focus {
    outline: none;
}