.jkeyboard {
  display: inline-block;
}
.jkeyboard, .jkeyboard .jline, .jkeyboard .jline ul {
  display: block;
  margin: 0;
  padding: 0;
}

/* Portrait and Landscape */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
    .jkeyboard .jline ul li {
        height: 1.5em;
        width: 1.5em;
    }
    }

.jkeyboard .jline {
    text-align: center;
    margin-left: -14px;
    width: 100%;
    margin: 0;
}
    .jkeyboard .jline ul li {
        font-family: arial, sans-serif;
        background-color: #185a82;
        font-size: 20px;
        display: inline-block;
        border: 1px solid #468db3;
        -webkit-box-shadow: 0 0 3px #468db3;
        -webkit-box-shadow: inset 0 0 3px #468db3;
        /*margin: 10px 0 1px 14px;*/
        margin: 1px;
        color: #f7faf7;
        border-radius: 5px;
        width: 10%;
        height: 10%;
        box-sizing: border-box;
        text-align: center;
        /*line-height: 52px;*/
        overflow: hidden;
        cursor: pointer;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: -moz-none;
        -ms-user-select: none;
        user-select: none;
        min-width: 1em;
        height: 3em;
        width: 4em;
        min-width: 1em;
    }
.jkeyboard .jline ul li.uppercase {
  text-transform: uppercase;
}
        .jkeyboard .jline ul li:hover, .jkeyboard .jline ul li:active {
            background-color: #093753;
        }
.jkeyboard .jline .return {
  width: 120px;
}
    .jkeyboard .jline .space {
        width: 100%;
        height: 3em;
        width: 8em;
        min-width: 1em;
    }
.jkeyboard .jline .numeric_switch {
  width: 84px;
}
    .jkeyboard .jline .layout_switch {
        background: url("/img/keyboard/locale.png") no-repeat center right;
        padding-left: 21px;
        padding-right: 21px;
    }
    .jkeyboard .jline .shift {
        width: 69px;
        background: url("/img/keyboard/shift.png") no-repeat center center;
    }
    .jkeyboard .jline .ok {
        width: 100px;
        background: url("/img/keyboard/ok.png") no-repeat center center;
    }
.jkeyboard .jline .shift.active {
  border-color: #fff;
}
.jkeyboard .jline .shift.lock {
  transform: rotate(180deg);
}
    .jkeyboard .jline .backspace {
        width: 69px;
        background: url("/img/keyboard/backspace.png") no-repeat center center;
    }


body {
    font-family: 'Roboto';
}

a {
    text-decoration: none;
}

.easy-get:hover {
    cursor: pointer;
}

.easy-numpad-frame {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: none;
    /*display: -webkit-flex;*/
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    background-color: rgba(236,240,241,0.8);
}

.easy-numpad-container {
    position: relative;
    /*width: 100%;*/
    width: auto;
    /*max-width: 50%;*/
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    /*padding: 10px;*/
    padding: 3px;
}

.easy-numpad-output-container {
    position: relative;
    width: 100%;
}

.easy-numpad-output {
    width: 100%;
    border: 1px solid #666;
    background-color: rgba(255, 255, 255, 0.8);
    box-sizing: border-box;
    margin: 0px;
    text-align: center;
    min-height: 60px;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    font-size: 24px;
}