/* Table Styles */

table.smartRecruiters {
    color: #000336;
    text-align: left;
    margin: 70px 0;
}

table.smartRecruiters .title {
    font-size: 16px;
    font-weight: 400;
    padding: 6px 10px;
}

table.smartRecruiters td {
    font-size: 12px;
    font-weight: 400;
    padding: 6px 10px;
    width: auto;
    min-width: 150px;
}

table.smartRecruiters td.remote.true:after, .true-title:after {
    margin-left: 5px;
    vertical-align: middle;
    content: url("../images/remote.svg");
}

table.smartRecruiters th.hidden, table.smartRecruiters td.hidden {
    display: none;
}

table.smartRecruiters tr.hidden {
    display: none;
}

/* Filter Styles */

.table-filters * {
    font-size: 12px !important;
}

.table-filters {
    display: flex;
    flex-wrap: wrap;
}

.filter {
    flex: 1 0 18%;
    margin: 0 10px 10px 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

/* RESPONSIVE TABLE STYLES */

@media screen and (max-width: 600px) {
    table.smartRecruiters {
        border: 0;
        margin: 0 auto;
        margin-top: 5%;
    }
    table.smartRecruiters thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }
    table.smartRecruiters tr {
        border-bottom: 3px solid #ddd;
        display: block;
        margin-bottom: .625em;
    }
    table.smartRecruiters td {
        border-bottom: 1px solid #ddd;
        display: block;
        text-align: right;
    }
    table.smartRecruiters td::before {
        /*
      * aria-label has no advantage, it won't be read inside a table
      content: attr(aria-label);
      */
        content: attr(data-label);
        float: left;
        text-transform: uppercase;
    }
    table.smartRecruiters td:last-child {
        border-bottom: 0;
    }
}