/*** header ***********************************************************************************************************/
#career header,
#sendStatus header{
    position: relative;
}
#sendStatus header .background,
#career header .background{
    position: absolute;
    z-index: 0;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    content: '';
    width: 100%;
    height: 100%;
    min-height: 365px;
    background-image: url('../images/career_header-bg.svg');
    background-repeat: no-repeat;
    background-position: center top 20px;
    background-size: 1889px;
    background-color: var(--blue-grey);
}
#sendStatus header .container,
#career header .container{
    display: block;
    position: relative;
    z-index: 1;
    padding-top: 75px;
    padding-bottom: 55px;
    color: #fff;
    font-size: 17px;
}
#career header h1,
#sendStatus header h1{
    margin-bottom: 25px;
}
#career header p{
    margin-bottom: 0;
}

/*** job list *********************************************************************************************************/
#joblist .container{
    display: block;
    padding-bottom: 220px;
}
#joblist .card{
    position: relative;
    padding: 40px 50px;
    border-radius: 4px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 30px 0 rgba(0,0,0,0.16);
    -moz-box-shadow: 0 0 30px 0 rgba(0,0,0,0.16);
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.16);
}
#joblist .card:after{
    position: absolute;
    z-index: 0;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background-color: #fff;
}
#joblist .card .background{
    position: absolute;
    left: -30px;
    bottom: -40px;
    width: calc(100% + 60px);
    height: 100%;
    background-image: url('../images/career_joblist-bg.svg');
    background-position: bottom center;
    background-repeat: no-repeat;
}



/*** job entry ***/
#joblist dl{
    position: relative;
    z-index: 1;
    margin: 0 0 25px 0;
    border-bottom: 2px solid var(--dark-grey-10);
}
#joblist dl:last-of-type{
    margin: 0;
}

#joblist dt{
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    padding-bottom: 25px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
#joblist dt span{
    display: block;
}

#joblist dt span.appendix{
    display: inline-block;
    font-weight: normal;
}

#joblist dt .title{

}
#joblist dt .type{
    position: relative;
    margin-right: 0;
    margin-left: auto;
    width: 30%;
    min-width: 300px;
}
#joblist dt .dropdown-arrow{
    width: 5%;
    min-width: 55px;
}
#joblist dt .dropdown-arrow:after{
    position: relative;
    margin-left: auto;
    margin-right: 0;
    content: '';
    display: block;
    width: 20px;
    height: 100%;
    background-image: url('../images/dropdown-arrow.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 20px 11px;
    transition: transform 500ms;
    transform: rotate(0);
}
#joblist dl.open .dropdown-arrow:after{
    transform: rotate(180deg);
}


#joblist dd {
    margin-left: 0;
    display: none;
}
#joblist dd p{
    width: 60%;
}
#joblist dd p.title{
    font-weight: bold;
    margin-bottom: 3px;
}
#joblist dd p:last-of-type {
    margin-bottom: 25px;
}
#joblist dd p:last-of-type span{
    font-weight: bold;
    display: block;
}


#joblist dd ul{
    margin-bottom: 20px;
    padding: 0;
    list-style: none;
}
#joblist dd li:before{
    display: inline-block;
    background-color: var(--dark-grey-100);
    width: 4px;
    height: 4px;
    content:'';
    vertical-align: top;
    margin: 10px 7px 0 0;
    border-radius: 50%;
}
#joblist dd button{
    margin-bottom: 35px;
}


/*** modal ************************************************************************************************************/
#job-modal .modal-body .select{
    margin-bottom: 30px;
}
#job-modal .modal-body .customSelect {
    max-width: none;
}
#job-modal .modal-body p:last-of-type{
    margin-bottom: 40px;
}



/*** file upload ***/
#job-modal .filelist{
    margin-bottom: 15px;
}
#job-modal .file-upload {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    margin-bottom: 30px;
}
#job-modal .file-upload:hover button {
    font-weight: bold;
}

#job-modal .file-upload button {
    display: block;
    margin: auto;
    width: 100%;
    height: auto;
    min-height: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: var(--dark-grey-5);
    border: 1px solid transparent;
    border-radius: 2px;
    color: var(--dark-grey-100);
    font-size: 14px;
    font-weight: bold;
}
#job-modal .file-upload button img{
    margin-right: 15px;
    vertical-align: bottom;
}
#job-modal .file-upload input[type=file] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    border-radius: 2px;
    cursor: pointer;
}


/*** validation ***/
.modal #jb_cntct_email,     /** dummy inputs to avoid spam **/
.modal #jb_cntct_name{
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    visibility: hidden;
}
#job-modal .error-box{
    display: none;
}

