.open,
.close {
  box-sizing: border-box;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 5px 0 5px 0;
  margin: 0 auto;
  background-color: grey;
  position: fixed;
  top: 0;
  right: 16px;
  width: 50px;
  height: 50px;
  z-index: 100;
  border-radius: 0 0 10px 10px;
}
.open div {
  width: 30px;
  margin-bottom: 5px;
  height: 6px;
  background-color: rgb(255, 248, 248);
  border-radius: 2px;
}
.close {
  color: rgb(255, 255, 255);
  text-align: center;
  font-family: sans-serif;
  font-size: 30px;
  font-weight: bolder;
}
/* Menu box */
.menubox {
  box-sizing: border-box;
  width: 100%;
  padding: 60px 36px 50px 36px;
  height: 100vh;
  background-color: rgb(84, 84, 84);
  z-index: 50;
  position: fixed;
  top: -1100px;
  left: 0;
  transition: all 1s;
}

.menubox p {
  width: 100%;
  padding: 16px 0;
  font-size: 16px;
  line-height: 22px;
  padding-bottom: 10px;
  color: white;
  border-bottom: 1px dashed white;
  font-family: sans-serif;
  text-transform: uppercase;
}

.menuboxOverflow {
  width: 100%;
  height: 100%;
  padding-right: 20px;
  overflow-x: auto;
}

.show {
  display: block;
}
