.menu.areas {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    padding: 0px;
    overflow: scroll;
}

.menu-item.area {
    -webkit-flex-direction: row;
    flex-direction: row;
    width: 100px;
    height: 50px;
}

.menu-item.area>.text {
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 90px;
    height: 50px;
    order: 1;
}

.menu-item.area>.text>.label {
    width: 72px;
    height: 16px;
    font-size: 11px;
    order: 1;
    margin: 5px;
}

.menu-item.area>.text>.status {
    height: 20px;
    font-size: 8px;
    color: rgb(255, 95, 2);
    text-align: center;
    align-self: stretch;
    order: 2;
    margin-top: 10px;
}

.menu-item.area>.indicator {
    margin: 3px;
    height: 24px;
    width: 12px;
    font-size: 10px;
    fill: rgb(26, 25, 25);
    order: 2;
}

.menu-item.area.on>.indicator>circle {
    fill: rgb(30, 255, 0);
}

.menu-item.area.selected {
    background-color: rgb(97, 96, 96);
}