/** -------- TOP SECTION COMPONENT -------- **/
#topSection {
    flex: 0 0 132px;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    background-color: var(--color-disabled);
}

#topSectionLeft {
    width: auto;
    height: 132px;
}

#topSectionLeftOlMap {
    width: 700px;
    height: 132px;
}

#topSectionRight {
}

/** -------- MIDDLE SECTION COMPONENT -------- **/
#middleSection {
    height: calc(100% - 65px - 132px - 75px);
    flex: 1 1 auto;
    background-color: var(--color-gray-mid);
    width: 100%;
}

#middleSectionView {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

/* lane change screen ui component */
#laneChangeView {
    font-size: 32px;
    padding-top: 5px;
    z-index: 150;
    height: 100%;
}

/* dispatch screen ui component */
#dispatchView {
    display: flex;
    flex-flow: row;
    visibility: hidden;
    position: absolute;
    width: 100%;
    height: calc(100% - 65px - 132px - 75px);
    background-color: var(--color-gray-mid);
}

#rightSideView {
    flex: 0 0 166px;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#middleWrapper {
    display: flex;
    flex-flow: row;
    overflow-y: auto;
    width: 100%;
    height: 100%;
}

#leftWrapper {
    flex: 0 0 370px;
    height: 100%;
}

#truckView {
    width: 370px;
    height: inherit;
    position: absolute;
}

#truckImage {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    z-index: 10;
}

#blockView {
    width: 166px;
    height: 420px;
}

#leftSectionView {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 75%;
    transform: translateY(25%);
    max-width: 270px;
}

#sectionView {
    width: 100%;
    height: 100%;
    flex: 1 1 auto;
    overflow-y: auto;
}