/**
 * Overwrite semantic css html height.
 * Important: DO NOT REMOVE THIS, IS USED FOR iFrameResizer.
 */
html {
    height: inherit;
}

/**
 * Header.
 */
#header {
    position: relative;
}

/**
 * Forms.
 */
#filter {
    position: relative;
    margin-bottom: 40px;
}

#filter-dropdown {
    margin-bottom: 15px;
}

/**
 * Content.
 */
#content {
    padding-bottom: 100px;
}

/**
 * Jobs list.
 */
#jobs-list {
    margin: 0px auto;
    display: flex;
    flex-flow: row wrap;
    margin-left: -30px;
    margin-right: -30px;
}
.job {
    display:block;
    box-sizing: border-box;
    width: calc( 33.333% - 60px );
    margin: 30px;
    border: solid 1px #E6E6E5;
    padding: 20px 20px 100px 20px;
    transition: all .15s ease-in-out;
    position: relative;
    background-color: white;
    box-shadow: 3px 3px 15px rgba(0,0,0,0.2);
    padding: 2rem 2rem 5rem;
    margin-bottom: 30px;
    cursor: pointer;
}
.job:hover {
    box-shadow: 5px 5px 15px rgba(0,0,0,0.4);
}
.job h3 {
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: #3c3c3c;
    overflow: hidden;
}
.job strong {
    font-size:20px;
    line-height: 27px;
    font-weight: bold;
    color: #3c3c3c;
    display:block;
    padding: 0 0 1.6rem 0;
}
.job .mehr {
    position: absolute;
    bottom: 1.6rem;
    color: #2CB3E3;
    font-size:16px;
    letter-spacing: .3px;
    padding-left:30px;
}
.job:hover .mehr {
    color: #BABABA;
}
.mehr:after {
    content: '\002b';
    font-size: 27px;
    line-height: 27px;
    position: absolute;
    left: 0px;
    top: -1px;
    color: #fff;
    background: #2CB3E3;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    padding: 0 5px;
}
#no-results {
    margin:30px;
}

/**
 * Footer.
 */
#footer {
    height: 400px;
}

#footer-filter {
    overflow: hidden;
    margin-top: 20px;
}

/**
 * Media Queries.
 */
.mobile-only {
    display: none !important;
}

.computer-tablet-only {
    display: block !important;
}

@media screen and (max-width: 1200px) {
    .job, .col {
        width: calc( 50% - 60px );
    }
    .col:last-child {
        width:100%;
        text-align: center;
    }
    .submit-button {
        float:none;
        margin:0 auto;
    }
}

@media screen and (max-width: 720px) {
    .form-wrapper {
        margin:0 auto;
    }
    .col {
        margin:20px;
    }
    #jobs-list {
        display: block;
        margin:30px 20px;
    }
    .job {
        margin:30px 0px;
    }
    .job, .col {
        width: 100%;
        overflow: hidden;
    }
    #jobabo {
        padding:0 20px;
    }
    #jobabo-subscribe-button, .moreinfo {
        margin:30px auto;
        float:none;
        padding:15px 30px;
    }
}

@media screen and (max-width: 741px) {
    .mobile-only {
        display: block !important;
    }

    .computer-tablet-only {
        display: none !important;
    }
}