
.dataTables_wrapper {
    margin-top: 30px;
}

.custom-select , .dataTables_filter input{
    background-color: #121212;
    background: none;
    color:#f0b90b;
}

.custom-select:hover ,.dataTables_filter input:hover{
    background-color:#f0b90b !important;
    color: #121212 !important;
}

.dataTables_length , .dataTables_info{
    text-align: start;
    color:#f0b90b;
}

.dataTables_filter{
    text-align: end !important;
    color: #f0b90b;
}

table.dataTable thead{
    text-align: center;
    display: flex;
    width: 100% !important;
    justify-content: center;
}

table.dataTable{
    width: 100%;
    color: white;
    border: 0.5px solid #f0b90b52;
    border-radius: 2px;
    box-shadow: rgb(240, 185, 11) 0px 0px 30px 0px !important;
}

table.dataTable thead{
    border-bottom: 1px solid #f0b90b;
}

table.dataTable tbody{
    background: rgba(168, 155, 155, 0.082);
    width: 100% !important;
    display: block;
    justify-content: center;
}

table.dataTable tr{
    width: 100% !important;
    display: flex;
    justify-content: space-around;
    padding: 10px 0px;
}

table.dataTable tbody tr:hover{
    background-color: rgb(109, 109, 109);
}

table.dataTable tbody tr{
    border-bottom:  8px solid black;
    cursor: pointer;
}

table.dataTable tr th{
    padding:0px !important;
    font-weight: bold;
}

table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:after{
    content: none !important;
}

table.dataTable thead .sorting:before,
table.dataTable thead .sorting_asc:before, 
table.dataTable thead .sorting_desc:before, 
table.dataTable thead .sorting_asc_disabled:before, 
table.dataTable thead .sorting_desc_disabled:before{
    content: none !important;
}

.pagination{
    direction: ltr;
}

.page-link{
    color: #f0b90b !important;
    background-color: #121212 !important;
    font-size: 16px !important;
}

.page-link:hover{
    color: #121212;
    background-color: #f0b90b;
}

/* /////////////////////////////media ////////////////////////////*/
@media(min-width : 768px){
    .pagination{
        justify-content: start !important;
    }
}
@media (min-width: 500px) and (max-width: 767px){
    .dataTables_length{
        text-align: start !important;
        margin-bottom: -50px;
    }

    .dataTables_info{
        text-align: start !important;
    }

    .pagination{
        margin-top: -28px !important;
        justify-content: start !important;
    }
}

@media (max-width : 499px){
    .dataTables_filter{
        text-align: center !important;
    }
    .pagination{
        justify-content: center !important;
    }
}