.controls {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    margin: auto;
    width: 140px;
  }
  .controls input {
    width: 30px;
  }
  .controls .control-pos-button-container {
    height: 70px;
    width: 70px;
    position: relative;
  }
  .controls .control-pos-button {
    height: 24px;
    width: 24px;
    border: 1px solid black;
    background: white;
    border-radius: 0px;
    position: absolute;
    margin: auto;
    font-size: 0.7em;
    padding: 0;
    cursor: pointer;
    outline: 0;
  }
  .controls .control-pos-button:hover {
    background: #EFEFEF;
  }
  .controls .control-pos-button:active {
    background: #DFDFDF;
  }
  .controls .control-pos-button.top {
    top: 0;
    left: 0;
    right: 0;
  }

  .controls .control-pos-button.right {
    top: 0;
    right: 0;
    bottom: 0;
  }
  .controls .control-pos-button.left {
    top: 0;
    left: 0;
    bottom: 0;
  }
  .controls .control-pos-button.bottom {
    right: 0;
    bottom: 0;
    left: 0;
  }

  #generation-loader {
    position: absolute;
    top: 10px;
    left: 10px;
    display: none;
  }
  #generation-loader .loading-state:after {
    content: '%';
  }