.blockrain-game-holder {
  position: relative;
  padding: 0;
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 140%;
}

/* Touch Controls */
.blockrain-touch {
    position: absolute;
    width: 45px;
    height: 45px;
    display: block;
    border-radius: 10px;
    border: 2px solid #c2ffae;
    z-index: 10;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 45px;
    text-align: center;
    font-family: FontAwesome;
    cursor: pointer;
    color:#c2ffae;
}
    .blockrain-touch:hover {
        text-decoration: none;
        background-color: #c2ffae;
        color: #000;
    }
    .blockrain-touch:active {
        background-color: #c2ffae;
        color:#000;
    }

.blockrain-touch-left {left: -50px;  bottom: 0px; } .blockrain-touch-left::after {content: "\f060";}
.blockrain-touch-right {right: -50px; bottom: 0px; } .blockrain-touch-right::after {content: "\f061 ";}
.blockrain-touch-rotate-left {left: -50px;  bottom: 70px;} .blockrain-touch-rotate-left::after {content: "\f0e2"; }
.blockrain-touch-rotate-right {right: -50px;  bottom: 70px;} .blockrain-touch-rotate-right::after {content: "\f01e";}
.blockrain-touch-drop { left: 50%;  margin-left: -25px;  bottom: -50px;} .blockrain-touch-drop::after {content: "\f063";}

/* Buttons */
.blockrain-btn {
    position: relative;
    display: inline-block;
    background: none;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid #c2ffae;
    padding: 15px 30px;
    font-size: 18px;
    text-align: center;
    cursor: default;
    cursor: pointer;
    color: #c2ffae;
}
    .blockrain-btn:hover {
        text-decoration: none;
        background-color: #c2ffae;
        color: #000;
    }
    /* Score */
    .blockrain-score-holder {
        position: absolute;
        top: 20px;
        right: 20px;
        text-align: right;
    }
.blockrain-score-msg {
  font-size: 14px;  
  line-height: 100%;
  margin-bottom: 0.2em;
}
.blockrain-score-num {
  font-size: 20px;
  font-weight: bold;
}

/* Menu */
.blockrain-start-holder, .blockrain-game-over-holder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background: rgba(0,0,0,0.8);
  text-align: center;
}
.blockrain-start, .blockrain-game-over {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.blockrain-start-msg, .blockrain-game-over-msg {
  font-size: 18px;
  margin-bottom: 30px;
}

