/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 5 Apr, 2017, 2:59:17 PM
    Author     : shubham
*/

.jobGlobalHeader{
    padding: 10px 25px;
    border-bottom: 1px solid #eaeeea;

}
.jobsHeadertext{
    font-size: 22px;
    display: inline;
    color: #636363;
}
.jobsHeaderFunctions{
    display: flex;
    float: right;
    margin-top: 5px;
}
.jobsSort{
    margin-left: 10px;
    color: gray;
    width: 75px;
    display: none;
}
.jobsCredits{
    color: gray;
}
.sortByText{
    color:#777777;
    font-size: 12px;
}
.soryByOptionHolder{

    position: relative;
    cursor: pointer;
}
.sortByOptions{
    position: absolute;
    list-style-type: none;
    display: none;
    padding: 0px;
    background: #eaeaea;
    border-radius: 2px;
    top: 25px;
    z-index: 2;
    right:-25px;
}
.optionSelected{
    width: 75px;
}
ul.sortByOptions li{
    padding: 7px 30px;
    border-bottom: 1px solid #d0d0d0;
}
ul.sortByOptions li:hover{
    background: #efefef;
    color:gray;
}
@media only screen and (max-width:500px){
    .jobsHeaderFunctions{
        margin-right: 1%;
    }
    .sortByOptions{
        right: 0px;
    }
    .jobGlobalHeader{
        padding: 10px 15px;
    }
}