.projectCard {
    background: white;
    padding: 20px;
    padding-top: 15px;
    box-sizing: border-box;
    border-radius: 13px;
    width: 300px;
    margin-top: 20px;
    font-size: 12px;
}

.projectCardDetails {display: flex;margin-bottom: 18px;}

.projectCardDetails>div {
    width: 50%;
}

.flex {
    display: flex;
    align-items: center;
}

.rep {
    display: flex;
    text-align: right;
    margin-bottom: -20px;
    cursor: pointer;
    line-height: 13px;
}

.rep .imageRounded {
    margin-left: 8px;
    margin-top: -7px;
    display: none;
}

.flex.between {
    justify-content: space-between;
}

.dueDate {
    background: #f2f2f2;
    padding: 14px 26px;
    font-size: 14px;
    margin-left: -20px;
    margin-bottom: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0px;
    border-radius: 0px 13px 0px 13px;
}

.dueDate.red{
    background: red;
}

.dueDate.yellow{
    background: yellow;
}

.customerInfo .imageRounded {
    margin-right: 8px;
}

.customerInfo {
    margin-bottom: 15px;
    cursor: pointer;
    line-height: 13px;
}

.dueDate span {
    margin-left: 8px;
}

.projectCard h3 {
    margin: 0;
}