/*
 * The MIT License (MIT)
 * 
 * Copyright (c) 2014 Invisiball
 * 
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 * 
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

.joystickc {
    position: absolute;
    height: 10px;
    width: 10px;
    background: red;
    left: calc( 50% - 5px );
    top: calc( 50% - 5px );
    border-radius: 5px;
}

.joysticki {
    position: absolute;
	border: 1px solid black;
	-moz-border-radius: 12px;
	-webkit-border-radius: 12px;
	border-radius: 12px;
	background-image: -moz-linear-gradient(-0deg, #6a6a6a 1%, #bfbfbf 24%, #d4d4d4 75%, #7f7f7f 100%), -moz-linear-gradient(90deg, #6a6a6a 1%, #bfbfbf 24%, #d4d4d4 75%, #7f7f7f 100%);
	background-image: -o-linear-gradient(-0deg, #6a6a6a 1%, #bfbfbf 24%, #d4d4d4 75%, #7f7f7f 100%), -o-linear-gradient(90deg, #6a6a6a 1%, #bfbfbf 24%, #d4d4d4 75%, #7f7f7f 100%);
	background-image: -ms-linear-gradient(-0deg, #6a6a6a 1%, #bfbfbf 24%, #d4d4d4 75%, #7f7f7f 100%), -ms-linear-gradient(90deg, #6a6a6a 1%, #bfbfbf 24%, #d4d4d4 75%, #7f7f7f 100%);
	background-image: -webkit-linear-gradient(-0deg, #6a6a6a 1%, #bfbfbf 24%, #d4d4d4 75%, #7f7f7f 100%), -webkit-linear-gradient(90deg, #6a6a6a 1%, #bfbfbf 24%, #d4d4d4 75%, #7f7f7f 100%);
	background-image: linear-gradient(90deg, #6a6a6a 1%, #bfbfbf 24%, #d4d4d4 75%, #7f7f7f 100%), linear-gradient(0deg, #6a6a6a 1%, #bfbfbf 24%, #d4d4d4 75%, #7f7f7f 100%);
    background-blend-mode: hard-light;
}

.JoyStick {
    position: relative;
    background: #999999;
    margin: 60px auto;
        -moz-box-shadow: inset 0 0 15px #CCCCCC;
    -webkit-box-shadow: inset 0 0 15px #CCCCCC;
    box-shadow: inner 0 0 15px #CCCCCC;
}

.Joy-background{
    background: #CCCCCC;
    -moz-border-radius: 12px;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    margin: 10px auto;
    margin-top: -15px;
    height: 240px;
    width: 240px;
    border: 1px solid black;
    -moz-box-shadow: 0px 2px 5px rgba(0,0,0,0.75), inset 0 0 15px white;
    -webkit-box-shadow: 0px 2px 5px rgba(0,0,0,0.75), inset 0 0 15px white;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.75), inner 0 0 15px white;
    }