.lastWeekWrapper {background: white;margin-top: -10px;}

.tripleDetails {
    display: flex;
    justify-content: space-between;
    background: #F1F4F8;
}

.tripleDetails>div {
    width: 33%;
    box-sizing: border-box;
    padding: 18px;
    border-right: 2px solid #DDE2E8;
}

.tripleDetails h5 {
    margin: 0px;
    color: #9C9EA1;
}

.tripleDetails h2 {
    margin: 5px 0px;
    margin-bottom: 0px;
}

.tripleDetails>div:last-of-type {
    border: none;
}

.weekGraph {
    height: 250px;
    padding: 20px;
}

.lineSpacer {
    width: 96%;
    border-bottom: 1px solid #DDE2E8;
    margin: auto;
}

.lastWeekWrapper .flex.spaceBetween>div {width: 50%;padding: 0px 30px;padding-bottom: 15px;align-items: start;margin-top: 25px;}

.lastWeekWrapper .flex.spaceBetween {
    align-items: start;
}

.barWrapper {
    position: relative;
    margin-bottom: 15px;
}

.bar {
    height: 18px;
    border-radius: 4px;
    background: linear-gradient(90deg, #80DD42 0%, #16C83C 100%);
}

.totalHrs {
    position: absolute;
    font-size: 10px;
    white-space: nowrap;
    top: 2px;
    left: 0;
}

.expectedLine {
    position: absolute;
    height: 19px;
    width: 3px;
    background: #DDE2E8;
    top: 0;
    left: 0;
}

.error .bar {
    background: linear-gradient(90deg, #DD9F42 0%, #C84116 100%);
}

.graphItem {
    font-size: 11px;
    color: #9C9EA1;
}

.graphItem>div:first-of-type {
    text-transform: uppercase;
    max-width: 90%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: 3px;
}

.contributors .graphItem {
    width: 30%;
    font-size: 13px;
    margin-bottom: 6px;
}

.miniBarWrapper .bar {
    height: 4px;
}

.contributors .graphItem .totalHrs {
    position: relative;
    margin-bottom: 10px;
}

.miniBarWrapper {
    position: relative;
}

.miniBarWrapper .expectedLine {
    height: 13px;
    top: -5px;
}

.contributors {
    border-left: 1px solid #dde2e7;
}

.contributors>div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contributors>div::after {
    content: "";
    width: 30%;
}

.light {
    color: #9b9ea1;
}

.lastWeekWrapper .flex.spaceBetween>div h3 {
    margin-top: 5px;
}