#data-table-component{
    font-family: 'Titillium Web';
}

#data-table-component .title h2 {
    position: relative;
    width: 100%;
    text-align: center;
    padding: 30px;
    background: #333333;
    color: white;
}

label select {
    padding: 4px 10px;
    color: black;
    border: 1px solid gray;
    border-radius: 6px;
}

table thead {
    background-color: #333333;
    color: white;
}

.dropdown {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    background-color: #333333;
}

.dropdown select {
    width: 18%;
    margin: 0px 30px 26px 30px;
    padding: 9px 105px 9px 14px;
    font-size: 14px;
    color: #828282dd;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    overflow: hidden;
}

.dropdown select option{
    color: #000000;
    border: none;
}
.dropdown .minimal{
    background-image: linear-gradient(45deg, transparent 50%, red 50%), linear-gradient(135deg, red 50%, transparent 50%), linear-gradient(to right, transparent, transparent);
    background-position: calc(100% - 16px) calc(1em + 3px), calc(100% - 11px) calc(1em + 3px), calc(100% - 2.5em) 0.5em;
    background-size: 5px 5px, 5px 5px, 1px 1.5em;
    background-repeat: no-repeat;
}

.dropdown .select-label{
    color: #ffff;
    padding: 6px 10px 10px 10px;
}

.position-fixed {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px 98px 10px 74px;
}

.dataTables_wrapper .dataTables_info {
    padding: 4px;
}

.dataTables_wrapper .dataTables_filter {
    float: right;
    text-align: right;
    visibility: hidden;
}

.dataTables_wrapper .dataTables_paginate {
    position: relative;
    text-align: center;
    float: none;
    font-weight: bold;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active,
.dataTables_wrapper .dataTables_paginate .previous, .dataTables_wrapper .dataTables_paginate .next{
    color: #e42402 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: none;
    border: 1px solid rgba(0, 0, 0, .0);
    color: #e42402 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:active {
    box-shadow: inset 0 0 3px rgba(0, 0, 0, .0);
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    color: #dc0000 !important;
    border: 1px solid rgba(0, 0, 0, .0);
    background: #f9f9f9;
}

tbody th, table.dataTable tbody td {
    padding: 8px 10px 8px 20px;
}

label select {
    padding: 0px 10px 0px 0px;
    color: black;
    border-radius: 0px;
    margin-right: 5px;
    margin-left: 5px;

    border: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: linear-gradient(45deg, transparent 50%, red 50%), linear-gradient(135deg, red 50%, transparent 50%), linear-gradient(to right, transparent, transparent);
    background-position: calc(100% - 8px) calc(1em + -5px), calc(100% - 3px) calc(1em + -5px), calc(100% - 2.5em) 0.5em;
    background-size: 5px 5px, 5px 5px, 1px 1.5em;
    background-repeat: no-repeat;
}

@media (max-width: 800px) {
    .dropdown{
        padding-top: 14px;
    }
    .dropdown select {
        margin: 0px 12px 11px 12px;
        width: 18%;
    }
    .dropdown .select-label {
        padding: 0px;
        margin: 8px 0px 0px 0px;
    }
    .dropdown select {
        padding: 9px 26px 9px 14px;
    }
    .position-fixed {
        justify-content: space-between;
        padding: 10px 60px 10px 44px;
    }
}

@media (max-width: 600px) {
    .dropdown {
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 10px 0px 20px;
    }
    .dropdown .minimal {
        width: 80%;
    }
    .dropdown select {
        /*margin: 6px 30px 6px 30px;*/
        margin: 4px 12px 0px 12px;
    }
    .position-fixed {
        flex-direction: column;
        padding: 10px 0px;
    }
}