 
 

.menu {
  max-height: 200px;
  overflow-y: auto;
  background: #fff;
  cursor: -webkit-grab;
  cursor: grab;
  
}
.menu.is-dragging {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.menu ul {
  counter-reset: count;
  max-height: 200px;
  overflow: hidden;
}
.menu--item {
  counter-increment: count;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  font-size: 25px;
  line-height: 1;
  padding:  0;
  color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  .menu--item {
    font-size: 24px;
    padding:  0;
  }
}
 
.menu--item button {
  color: #ffffff;
  text-decoration: none;
  position: relative;
  z-index: 1;
  display: inline-block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
 
  -webkit-appearance: none;
  background: none;
  padding: 0;
  border: none;
  outline: none;
  box-shadow: none;
  color: #ffffff;
  font-family: "Orelo-sw-db", serif;
  cursor: pointer;
}
@media (max-width: 767px) {
  .menu--item button {
   
  }
}
.menu--item button:before {
  position: absolute;
  z-index: -1;
  left: 0;
  display: inline-block;
  transform: translateX(-100%) scale(0.4);
  /*content: "0" counter(count);*/
  color: #862929;
  font-family: cursive;
}

.version {
  display: inline-block;
  position: fixed;
  z-index: 1;
  text-decoration: none;
  background: #333;
  font-family: sans-serif;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  border-radius: 10px;
  box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.2);
  top: -30px;
  right: -60px;
  bottom: auto;
  transform: rotate(45deg);
  transform-origin: 0% 100%;
  border-radius: 0;
  padding: 8px 30px;
  font-size: 11px;
}
.version:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100px;
  bottom: 0;
  right: 0%;
  background: transparent;
}
@media (max-width: 767px) {
  .version {
    transform: scale(0.6) rotate(45deg);
    right: -110px;
  }
}

 