.job-list {
    padding: 24px 20px;
    background: #ffffff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #ddd9d9;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    height: 100%;
}

.job-list .job-list-logo {
    margin-right: 20px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
    border: 1px solid #eeeeee;
    height: 80px;
    width: 80px;
    text-align: center;
    padding: 10px;
}

.job-list .job-list-logo img {
    height: 100%;
}

.job-list .job-list-details {
    overflow: hidden;
}

.job-list-title {
    margin-bottom: 5px;
}

.job-list .job-list-details h5 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	font-size:20px;
}

.job-list-details ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 0px;
}

.btn-default-small {
    background: #222222;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px;
    color: #ffffff;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    padding: 4px 20px;
    text-transform: uppercase;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}