/*!
 * GestureKit Helper v2.1.1
 * http://gesturekit.com/
 *
 * Copyright (c) 2014, RoamTouch
 * Released under the Apache v2 License.
 * http://gesturekit.com/
 */

@keyframes gkHelper-animation-enter
{
     from {
        width: 0px;
    }
    to {
        width: 360px;
    }
}

@-webkit-keyframes gkHelper-animation-enter /*Safari and Chrome*/
{
    from {
        width: 0px;
    }
    to {
        width: 360px;
    }
}

@keyframes gkGesture-animation-enter
{
     from {
        -ms-transform: scale(0.5); /* IE 9 */
        -webkit-transform: scale(0.5); /* Chrome, Safari, Opera */
        transform: scale(0.5);
    }
    to {
        -ms-transform: scale(1); /* IE 9 */
        -webkit-transform: scale(1); /* Chrome, Safari, Opera */
        transform: scale(1);
    }
}

@-webkit-keyframes gkGesture-animation-enter /*Safari and Chrome*/
{
    from {
        -ms-transform: scale(0.5); /* IE 9 */
        -webkit-transform: scale(0.5); /* Chrome, Safari, Opera */
        transform: scale(0.5);
    }
    to {
        -ms-transform: scale(1); /* IE 9 */
        -webkit-transform: scale(1); /* Chrome, Safari, Opera */
        transform: scale(1);
    }
}

.gk-helper-hide {
    display: none;
}

.gk-helper-container {
    overflow: hidden;
    position: relative;
    animation:gkHelper-animation-enter 1s ease-in-out;
    -webkit-animation:gkHelper-animation-enter 1s ease-in-out;
    background-color: rgba(201, 178, 178, 0.7);
    color: #FFF;
    font-family: 'Helvetica', 'Arial', sans-serif;
    position: absolute;
    height: 60px;
    /*max-height: 120px;*/
    border-radius: 10px;
    padding-left: 60px; 
}

.gk-helper-gesture-container {
    display: inline-block;
    -webkit-perspective: 500px; /* Chrome, Safari, Opera */
    perspective: 500px;
    position: relative;
}

.gk-helper-title {
    font-weight: normal;
    padding: 15px 0;
    margin: 0 50px 10px 10px;
    font-size: 2em;
}

.gk-helper-gesture {
    display: inline-block;
    text-align: center;
    height: 60px;
    vertical-align: top;
}

.gk-helper-gesture img {
    animation:gkGesture-animation-enter 0.2s ease-in-out;
    -webkit-animation:gkGesture-animation-enter 0.2s ease-in-out;
}

.gk-helper-gestureDescription {
    animation:gkGesture-animation-enter 0.2s ease-in-out;
    -webkit-animation:gkGesture-animation-enter 0.2s ease-in-out;
    display: none;
    width: 60px;
    height: 60px;
    margin: 0px;
    padding: 0px;
    padding-top: 10px;
}

.gk-helper-label {
    text-align: center;
    font-weight: normal;
    margin: 5px;
}

.gk-helper-close {
    border: 1px solid #EEE;
    border-radius: 5px;
    padding: 0;
    width: 42px;
    height: 42px;
    color: #FFF;
    background-color: rgba(0,0,0,.5);
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 9999;
}

.gk-helper-close:before{
    content: '˟';
    font-size: 6em;
    position: relative;
    top: -9px;
}