.btn-menu {
    position:relative;
}

.McButton {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: calc(var(--bar-w) / 2 * -1);
  margin-top: calc(var(--bar-w) / 2 * -1);
  width: var(--bar-w);
  height: calc(var(--bar-w) * 3 / 4);
  cursor: pointer;
}

.McButton b {
    position: absolute;
    left: 0;
    width: var(--bar-w);
    height: var(--bar-h);
    background-color: var(--bar-color);
    &:nth-child(1) {
        top: 0;
        /* background-color: red; */
    }
    &:nth-child(2) {
        top: 50%;
        /* background-color: green; */
    }
    &:nth-child(3) {
        top: 100%;
        /* background-color: blue; */
    }
}