/* UI Groups */
.toolbar {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #313335;
}

.sidebar {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #3C3F41;
}

.properties {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #313335;
    padding: 1em 0 1em 1em;
}


.main-wrapper {
    height: calc(100vh - 4em);
}

#toolbar-right-div {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    display: block;
}