.mMenuBackground {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.mMenuContainer {
  width: fit-content;
  background-color: white;
  border-right: 1px solid #565656;
}
.mMenu {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
  z-index: 100;
  transition: all 150ms linear;
}
.mMenu.visible {
  left: 0;
}
.mMenu .header {
  padding: 10px;
}
#portalMenuButton {
  display: none;
}
.mPortalHeader {
  padding: 20px 10px;
}
.mobileLoginButtons {
  display: none;
  align-items: stretch;
}
.mobileLoginButtons .materialButton {
  text-align: center;
}
.mobileOnly {
  display: none;
}
