section#ProjectActivitys .select {
    margin-left: 15px;
}

.timelineItem {
    position: absolute;
    font-size: 10px;
    opacity: .5;
    cursor: pointer;
    white-space: nowrap;
    margin-top: 35px;
}

section#ProjectActivitys .listWrapper {
    position: relative;
    width: 100%;
    height: calc(100vh - 228px);
    overflow: auto;
}

.timelineItem .line {
    height: 1px;
    background: white;
    position: relative;
}

.timelineItem .line:before,.timelineItem .line:after {
    content: '';
    height: 6px;
    width: 1px;
    background: white;
    position: absolute;
    top: -6px;
}

.timelineItem .line:after {
    right: 0px;
}

.timelineItem:hover {
    opacity: 1;
}


.dayLine {
    position: absolute;
    top: 0px;
    height: 100%;
    border-left: .5px solid white;
    opacity: .05;
    font-size: 13px;
    box-sizing: border-box;
}

.dayLine.sunday {
    opacity: .15;
    font-size: 10px;
    padding-left: 1px;
    padding-top: 9px;
}

.dayLine.newMonth {
    opacity: .4;
    padding-left: 4px;
    padding-top: 0px;
    line-height: 11px;
}

.dayLine.today {
    border-left: .5px solid #51f4f7;
    opacity: 1;
}

.dayLine.today:before {
    content: 'TODAY';
    font-size: 6px;
    background: #51f4f7;
    padding: 0px 4px;
    transform: rotate(-90deg);
    display: block;
    color: #333;
    margin-top: 10px;
    margin-left: -10px;
}

.timelineWrapper {
    position: relative;
    overflow-y: scroll;
    overflow-x: visible;
    height: 100%;
    width: 300vw;
}

.completeLine {
    position: absolute;
    left: 0px;
    bottom: 2px;
    height: 2px;
    background: #72ff72;
}

.timelineItem.timelineMarker {
    height: 100%;
    border-left: 1px solid #51f4f7;
    top: 0px;
    opacity: .7;
}

.timelineItem.timelineMarker div {
    background: #51f4f7;
    color: #333;
    padding: 0px 5px;
    font-size: 8px;
    position: absolute;
}

.timelineItem.timelineMarker:hover {
    opacity: 1;
}



@media screen and (max-width: 600px) {
    #ProjectActivitys .timelineWrapper {
        overflow: unset;
    }
}