div#DaysLines {
    display: flex;
    height: 48px;
    box-sizing: b;
}

div#DaysLines .dayMonthGroup>div {
    display: flex;
}

div#DaysLines .dayLine {
    width: 30px;
    height: 20px;
    font-size: 12px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

div#DaysLines .dayMonthGroup h5 {
    margin: 5px 0px;
}

div#DaysLines .dayMonthGroup {
    /* border-right: 3px solid #ffffff0f; */
    /* margin-right: 10px; */
}

#Schedule .header {
    display: flex;
    font-size: 13px;
    margin-bottom: 15px;
}

div#GantTasksList {
    /* position: absolute; */
    /* top: 50px; */
    /* left: 0px; */
    font-size: 12px;
    /* pointer-events: none; */
}

#Schedule .gantDayItem {
    position: absolute;
    background: #52c2ff;
    border-radius: 4px;
    font-size: 8px;
    height: 28px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #12161f;
    cursor: grab;
    margin-left: 0px;
    z-index: 1;
}

div#LeftTaskNames {
    font-size: 12px;
    position: absolute;
    left: 0;
    width: 200px;
    top: 47px;
    border-right: 1px solid white;
}

div#GantSection {
    left: 205px;
    position: absolute;
    overflow: auto;
    right: 0px;
}

.gantTaskRow {
    width: 95%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 7px 5px;
    position: relative;
    cursor: pointer;
    height: 30px;
    box-sizing: border-box;
}

.dayLine:hover {
    background: #ffffff0f;
}

.gantItemRow {
    height: 30px;
}

div#GantCursor {
    position: absolute;
    top: 0;
    left: 0;
    background: #ffffff00;
    height: 20px;
    width: 30px;
    margin-top: 4px;
    border-radius: 3px;
    pointer-events: all;
    z-index: 0;
}

div#GantHorzCursor {
    position: absolute;
    top: 0;
    left: 0;
    background: #0000001f;
    background: #2b546f63;
    height: 30px;
    width: 100%;
    margin-top: 0px;
    pointer-events: none;
    z-index: -1;
}

div#GantVertCursor {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: #2b546f63;
    width: 30px;
    pointer-events: none;
    z-index: -1;
}

section#Schedule {
    position: fixed;
    right: 0px;
    left: 220px;
    top: 60px;
    bottom: 0px;
    overflow: auto;
}

#LeftTaskNames .gantTaskRow.selected {
    background: #52c2ff5c;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    color: white;
}

section#Schedule .gantDayItem.red {
    background: #ff5252;
}

section#Schedule .gantDayItem.green {
    background: #68E76D;
}

section#Schedule .gantDayItem.blue {
    background: #52c2ff;
}

section#Schedule .gantDayItem.purple {
    background: #c852ff;
}

section#Schedule .gantDayItem.orange {
    background: #ffba52;
}

section#Schedule .gantDayItem.yellow {
    background: #fffe52;
}

#Schedule .header>div {
    margin-right: 10px;
}

#Schedule .header select {
    background: none;
    border: 1px solid #ffffff4d;
    border-radius: 4px;
    color: #ffffffba;
    font-size: 12px;
    padding: 3px;
    background-color: #07080b;
}

#Schedule .dayLine.weekend {
    background: black;
}

#Schedule .gantTaskRow.overdue {
    color: #ff5252;
}

#Schedule .gantTaskRow.isProject {
    background: #07080b;
    font-weight: b;
}

#Schedule .gantTaskRow.isProject .counter {
    right: 3px;
}

@media only screen and (max-height: 450px) {
    section#Schedule {
        left: 10px;
        top: 10px;
        background: #12161f;
    }
}

@media only screen and (max-width: 600px) {
    section#Schedule {
        left: 10px;
        top: 10px;
        background: #12161f;
    }
}

.gantItemRow:nth-of-type(2n+1) {
    background: #ffffff03;
}

.gantTaskRow:nth-of-type(2n+1) {
    background: #ffffff05;
}