/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

/*table view*/
table.job-table span.sorter {
    width: 20px;
    height: 30px;
    display: block;
    float: left;
    padding: 0px;
    margin: 0px;
    line-height: 15px;
    top: -10px;
    position: relative;
}

table.job-table span.text {
    display: block;
    float: left;
}

table.job-table th {
    width: 150px;
}

table.job-table span.sorter a:hover {
    text-decoration: none;
}

/*detail view*/

div.job-detail-view h3.job-heading {
    margin-top: 0;
    color: #fff;
    background-color: #00316D;
    padding: 0 5px;
}

div.job-description span.label, div.extra-infos span.label {
    clear: both;
    display: block;
    margin-bottom: 10px;
}

div.extra-infos span.label {
    background-color: #00316D;
}

div.job-qualreqs, div.job-specs {
    margin: 10px 0;
}

div.job-qualreqs span.label, div.job-specs span.label {
    width: 90px;
    display: inline-block;
    margin-right: 10px;
}

/*responsive view*/
@media only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px) {

    /* Force table to not be like tables anymore */
    table, thead, tbody, th, td, tr {
        display: block;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    tr {
        border: 1px solid #ccc;
    }

    td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
    }

    td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
    }
}

/* Smartphones (portrait and landscape) ----------- */
@media only screen
and (min-device-width: 320px)
and (max-device-width: 480px) {
    body {
        padding: 0;
        margin: 0;
        width: 320px;
    }
}

/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    body {
        width: 495px;
    }
}