.eraser {
  cursor: url(eraser.cur), auto;
}

.pencil {
  cursor: url(pencil.cur), auto;
}

.grabbable {
  cursor: move;
  /* fallback if grab cursor is unsupported */
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}

/* (Optional) Apply a "closed-hand" cursor during drag operation. */
.grabbable:active {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}

.pointer {
  cursor: pointer;
}

body.waiting * {
  cursor: progress;
}

#LoadingAniCH1 {
  visibility: hidden;
}

#LoadingAniCH2 {
  visibility: hidden;
}

.vertical-center {
  height: 100px;
  display: flex;
  align-items: center;
  padding-right: 20px;
}

.savegame {
  cursor: pointer;
}

.savegame:hover {
  opacity: 0.6;
  transform: scale(1.02);
}

.blink {
  animation: blink-animation 1s steps(5, start) infinite;
  -webkit-animation: blink-animation 1s steps(5, start) infinite;
}

#menu {
  display: none;
  position: absolute;
  width: 80px;
  background-color: white;
  box-shadow: 0 0 5px grey;
  border-radius: 20px;
  z-index: 100;
}

#menu button {
  width: 100%;
  background-color: white;
  border: none;
  border-bottom: grey 1px solid;
  margin: 0;
  padding: 5px;
}

#menu button:hover {
  background-color: lightgray;
}

@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
