.fxm_keyboard {
    position: absolute;
    display: none;
    z-index: 100000;
    top: 0px;
    left: 0px;
    margin: 0px;
    padding: 0px;
    width: 1280px;
    height: 720px;
    color: #fff;
    overflow: hidden;
}

/*added +font family 1 vs 0.8*/
.fxm_keyboard_wrapper {
    position: absolute;
    margin: 0px;
    padding: 0px;
    font-size: 22px;
    bottom: 0px;
    width: 1280px;
    height: 380px;
    background-color: rgba(12, 15, 18, 1);
    font-family: 'Open Sans', sans-serif;
}

.fxm_kbdInputWrapper.text,
.fxm_kbdInputWrapper.password,
.fxm_kbdInputWrapper.textarea {
    position: absolute;
    top: 18px;
    left: 305px;
    width: 625px;
    height: 34px;
    padding: 7px 16px;
    overflow: hidden;
    background-color: #36414d;
    border: 1px solid #506173;
    border-radius: 25px;
}

.fxm_kbdInputWrapper.textarea {
    height: 96px;
}

#kbdInput {
    height: 26px;
    line-height: 26px;
}

.fxm_kbdControls_left {
    position: absolute;
    top: 184px;
    left: 188px;
    width: 115px;
    height: 115px;
}

/*added right(193) */
.fxm_kbdControls_right {
    position: absolute;
    top: 128px;
    right: 194px;
    width: 115px;
    height: 221px;
}

.fxm_kbdKeys {
    position: absolute;
    top: 72px;
    left: 300px;
    width: 672px;
    height: 224px;
}

.fxm_kbdControls {
    position: absolute;
    top: 296px;
    left: 188px;
    width: 910px;
    height: 48px;
}

/* added border-radius(15)*/
.fxm_kbdKeys li,
li.fxm_kbdControl_1,
li.fxm_kbdControl_2,
li.fxm_kbdControl_3,
li.fxm_kbdControl_backspace,
li.fxm_kbdControl_backward,
li.fxm_kbdControl_forward,
li.fxm_kbdControl_smallChars,
li.fxm_kbdControl_bigChars {
    float: left;
    list-style-type: none;
    margin: 0px;
    text-align: center;
    color: #fff;
    padding: 0px;
    margin: 3px;
    font-size: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: #20272f;
    border-radius: 100px;
}

.fxm_kbdKeys li.focus,
li.fxm_kbdControl_1.focus,
li.fxm_kbdControl_2.focus,
li.fxm_kbdControl_3.focus,
li.fxm_kbdControl_backspace.focus,
li.fxm_kbdControl_backward.focus,
li.fxm_kbdControl_forward.focus,
li.fxm_kbdControl_smallChars.focus,
li.fxm_kbdControl_bigChars.focus {
    box-sizing: border-box;
    border: 2px solid greenyellow;
}

li.fxm_kbdControl_2,
li.fxm_kbdControl_backspace,
li.fxm_kbdControl_bigChars,
li.fxm_kbdControl_smallChars {
    width: 106px;
}

li.fxm_kbdControl_3 {
    width: 162px;
}

.fxm_kbdCursor {
    color: #fff;
    margin-left: -4px;
    vertical-align: text-top;
    animation-name: blink;
    -webkit-animation-name: blink;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

@-moz-keyframes blink {
    0% {
        opacity: 1.0;
    }
    50% {
        opacity: 0.0;
    }
    100% {
        opacity: 1.0;
    }
}

@-webkit-keyframes blink {
    0% {
        opacity: 1.0;
    }
    50% {
        opacity: 0.0;
    }
    100% {
        opacity: 1.0;
    }
}

@keyframes blink {
    0% {
        opacity: 1.0;
    }
    50% {
        opacity: 0.0;
    }
    100% {
        opacity: 1.0;
    }
}

li#kbdControl_abcChars {
    position: absolute;
    top: 56px;
}

/* ICONS */
li.fxm_kbdControl_smallChars,
li.fxm_kbdControl_bigChars,
li.fxm_kbdControl_backspace,
li.fxm_kbdControl_backward,
li.fxm_kbdControl_forward {
    background-repeat: no-repeat;
}

li.fxm_kbdControl_smallChars {
    background-image: url("../images/images_keyboard/kbd_smallChar_cehtml.png");
    background-position: 38px 12px;
}

li.fxm_kbdControl_bigChars {
    background-image: url("../images/images_keyboard/kbd_bigChar_cehtml.png");
    background-position: 38px 12px;
}

li.fxm_kbdControl_backspace {
    background-image: url("../images/images_keyboard/kbd_backspace_cehtml.png");
    background-position: 28px 12px;
}

li.fxm_kbdControl_backward {
    background-image: url("../images/images_keyboard/kbd_backward_cehtml.png");
    background-position: 12px 16px;
}

li.fxm_kbdControl_forward {
    background-image: url("../images/images_keyboard/kbd_forward_cehtml.png");
    background-position: 12px 16px;
}

li#kbdControl_space {
    background-image: url("../images/images_keyboard/kbd_forward_cehtml.png");
    background-position: 12px 16px;
}

ul {
    -webkit-margin-before: 0em;
    -webkit-margin-after: 0em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    -webkit-padding-start: 0px;
    margin: 0px;
    padding: 0px;
}  
