/**
 * Overwrite semantic css html height.
 * Important: DO NOT REMOVE THIS, IS USED FOR iFrameResizer.
 */
html, body {
    height: 100%;
    padding: 0;
    margin: 0;
}
.cc {
    min-height:100%;
    position:relative;
}

/**
 * Total.
 */
#total {
    font-size: 18px;
    line-height: 21px;
    color: #333;
    margin-bottom: 22px;
}

/**
 * Forms.
 */
#form-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

#search {
    margin-bottom: 30px;
}

/**
 * Buttons.
 */
#submit-button {
    float: right;
    margin-top: 20px;
}

/**
 * Content.
 */
#content {
    padding-bottom: 300px;
    box-sizing: border-box;
}

/**
 * Jobs.
 */
#jobs {
    border-top: 1px solid #347ECA;
    overflow: auto;
}
#jobs .job {
    padding: 24px 30px;
    position: relative;
    display: block;
    border-bottom: 1px solid #C2D8EF;
    background: #ffffff;
    -moz-transition: background 0.3s ease;
    -o-transition: background 0.3s ease;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
    overflow: auto;
}

#jobs .job:hover {
    background: #5D98D5;
}

#jobs .job .header {
    float:left;
    width:75%;
}

#jobs .job .meta-data {
    float:right;
    width:24%;
    margin:0 0 0 1%;
}

#jobs .job .title,
#jobs .job .workplace {
    font-size: 23px;
    font-weight: 600;
    line-height: 29px;
    color: #003494;
}

#jobs .job .subtitle {
    font-size:16px;
    line-height: 20px;
    color: #003494;
    font-weight: 400;
    margin:5px 0 0;
}


#jobs .job:hover .title,
#jobs .job:hover .subtitle,
#jobs .job:hover .workplace {
    color: #fff;
}

#jobs .job .workplace {
    font-weight: normal;
}

.jobabo {
    margin-top:40px;
}

@media screen and (max-width: 700px) {
    #jobs .job {
        padding: 15px 0px;
    }
    #job .job .header {
        float:none;
        width:100%;
    }

    #jobs .job .meta-data {
        float:none;
        width:100%;
        display: block;
        margin-left:0;
        margin-top: 10px;
    }
}

/**
 * No results.
 */
#no-results {
    font-weight: bold;
}

/**
 * Pagination.
 */
#pagination {
    margin-top: 20px;
    float: right;
}

#pagination a.button {
    width:33px;
    height:33px;
    text-align: center;
    vertical-align: middle;
    display: block;
    margin-right: 0;
    margin-left: 15px;
    font-size: 18px;
    font-weight: bold;
    line-height: 31px;
    color:#fff;
    background: #347ECA;
    border: 1px solid #347ECA;
    border-radius: 50%;
    float: left;
    transition: background 0.3s ease;
}

#pagination a.button:hover {
    color:#ffffff;
    background: #347ECA;
}


#pagination a.active {
    background: #fff;
    color: #347ECA;
    border: 1px solid #347ECA;

}

/**
 * Footer.
 */

footer {
    width: 100%;
    max-width: 100%;
    background: #003494;
    overflow:auto;
    z-index: 1000;
    position:absolute;
    bottom:0;
    height:60px;
}
footer .wrap {
    width:100%;
    max-width: 1200px;
    margin:0 auto;
    box-sizing: border-box;
    padding-left:20px;
    padding-right:20px;
}
footer p {
    color:#ffffff;
    margin: 20px 0px;
    font-size: 15px;
    line-height: 18px;
}

