.eo-offer{
    display: block;
    float: left;
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #BBBBBB;
    box-sizing: border-box;
}

.eo-offer-info{
    display: block;
    float: left;
    width: 75%;
    box-sizing: border-box;
}

.eo-offer-info h4{
    display: block;
    float: left;
    width: 100%;
    font-size: 16px;
    box-sizing: border-box;
}

.eo-offer-info span{
    display: block;
    float: left;
    width: 100%;
    box-sizing: border-box;
}

.eo-offer-actions{
    display: block;
    float: left;
    width: 25%;
    box-sizing: border-box;
}

.eo-offer-actions .eo-details {
    display: block;
    float: left;
    width: 100%;
    text-align: center;
    padding: 5px 10px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
    text-decoration: none;
    background-color: #5d9c0a;
    color: #ffffff;
    box-sizing: border-box;
}

.eo-offer-actions .eo-details:hover{
    background-color: #4d9200;
}

.eo-offer-actions .eo-job{
    display: block;
    float: left;
    width: 100%;
    text-align: center;
    padding: 5px 10px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
    text-decoration: none;
    background-color: #0e90d2;
    color: #ffffff;
    box-sizing: border-box;
}

.eo-offer-actions .eo-job:hover{
    background-color: #1f6377;
}

@media screen and (max-width: 767px){
    .eo-offer-info{
        width: 100%;
    }
    .eo-offer-actions{
        width: 100%;
    }

    .eo-offer-actions .eo-details {
        width: 50%;
    }

    .eo-offer-actions .eo-job{
        width: 50%;
    }
}