.ghost-controls {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  bottom: 0;
  right: 0;
  background: #444444B3;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  color: white;
  margin: 0.5rem;
  border-radius: 3px;
  z-index: 999;
}
.ghost-controls__button {
  transition: color 0.2s;
  background-color: transparent;
  border: 0;
  box-sizing: content-box;
  color: #eaeaea;
  cursor: pointer;
  padding: 0.5rem;
  height: 32px;
  width: 32px;

  &:hover {
    color: #fff;
  }

  &:disabled {
    color: #bbb;
  }

  svg {
    width: 100%;
    height: 100%;
  }
}
.ghost-controls__tracking {
  color: #fff;
  font-family: monospace;
  font-weight: bold;
}
