@charset "UTF-8";

.branch-menu-container {
    width: 80px;
    background: white;
    height:auto;
    border-radius: 4px;
}

.grid-container-branch-button {
    display: grid;
    grid-template-rows: 32px 32px 32px;
    grid-template-areas: "first-level" "second-level" "all-level";
}

.first-level {
    grid-area: first-level;
}

.second-level {
    grid-area: second-level;
}

.all-level {
    grid-area: all-level;
}

.collapse-menu-item {
    font-family: 'Roboto', sans-serif;
    align-items: center;
    display: flex;
    font-size: 1em;
    cursor: pointer;
    border-radius: 4px;
    padding-left: 5px;
    line-height: 32px;
    height: 32px;
}

.collapse-menu-item:hover {
    background: var(--col-second);
}

.collapse-menu-item:active {
    background: var(--col-third);
}

.gwt-PopupPanel{
	z-index: 10001;
}
