.menu-button {
    position: fixed; 
    top: 9px;
    right: 9px;
	cursor: pointer;
	background-color: #d0d0d0;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
	z-index: 100;
  }

.menu-button{
	width: 2em;
    height: 2em;
	font-size: 1em;
	line-height: 2em; 
	text-align: center;
	border-radius: 50%;
}
  
  .menu-drawer {
	position: fixed; 
    top: 0;
    right: -100vw;
    width: 100vw; 
    height: 100vh; 
    overflow-y: auto; 
	background-color: #1c1c1c;
	color: #808080;
	transition: right 0.3s;
	z-index: 50;
  }

  .card-counter {
	position: fixed;
	padding-left: 15px; 
	padding-top: 10px;
	padding-bottom: 15px;
	height: 2.25em;
	color: #1c1c1c; 
	background-color: #808080;
	z-index: 55;
	width: 100vw;
}

.menu-list {
    list-style-type: none;
    padding: 0;
    margin: 0; 
}

.menu-item {
    padding: 10px 15px; 
    border-top: 1px solid #808080; 
    cursor: pointer; 
}

.menu-item:first-child {
    border-top: none; 
}

.menu-container {
    position: relative;
    z-index: 200;
}

.menu-groups {
	display: flex;
	flex-direction: row;
	margin-top: 3.75em;
}

.menu-group-item {
	border-top: 1px solid #808080; 
	border-right: 1px solid #808080;
	border-bottom: 1px solid #808080;  
	width: 3em;
	height: 3em;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.menu-group-item:first-of-type{
	border-left: 1px solid #808080;  
}

.menu-group-item:last-of-type{
	border-left: 1px solid #808080;  
	width: 100%;
}

.menu-item {
	display: none;
}

.menu-item.show{
	display: list-item;
}