
.virtual-keyboard.hg-theme-default {
    font-family: HelveticaNeue-Light, Helvetica, Arial, sans-serif, system-ui, -apple-system, BlinkMacSystemFont;
    font-size: 16px;
    line-height: 1.2em;
}

input:first-child {
    border-bottom: 1px solid rgba(0,0,0,0.2);
}

.virtual-keyboard {
    /* .virtual-keyboard {*/
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    animation: smooth-appear 0.4s ease-in-out 0s normal;
    z-index: 9999;
    overflow: visible;
} 

@keyframes smooth-appear {
    from{
        bottom: -100%;
    }
    to{
      bottom: 0;
      /* opacity:1; */
    } 
}

.virtual-keyboard.hg-theme-default {
    background: #454c53 /*#cccccc*/;
    padding: 6px 7px;
}

.virtual-keyboard[class^="hg-layout-"],
.virtual-keyboard[class*=" hg-layout-"] .hg-button {
    width: 25%;
    color: #ffffff;
    /*font-size: 18px;*/
    height: 5.7vh;
    background: #758aa5
}
    .virtual-keyboard .hg-button:active, .virtual-keyboard .hg-button:hover {
        filter: brightness(1.1);
    }
/*.virtual-keyboard.hg-layout-default .hg-button.hg-btn-zero, .virtual-keyboard.hg-layout-na_lim .hg-button.hg-btn-zero {
    width: calc(50% + 5px);
}*/
    
/*    .virtual-keyboard .hg-button.hg-btn-ok {
        font-size: 28px;
    }*/
    .virtual-keyboard .hg-button.hg-btn-backspace {
        font-size: 1.4em;
    }
        .virtual-keyboard .hg-button.hg-btn-space > span {
            transform: scaleX(2);
        }        
    .virtual-keyboard .hg-button.hg-btn-num {
        font-size: 1.4em;
    }
    .virtual-keyboard .hg-button.hg-btn-dot
    , .virtual-keyboard .hg-button.hg-btn-gt
    , .virtual-keyboard .hg-button.hg-btn-lt
    , .virtual-keyboard .hg-button.hg-btn-dash {
        font-size: 1.5em;
    }
    .virtual-keyboard .hg-button.hg-btn-ok
    ,.virtual-keyboard .hg-button.hg-btn-clear
    , .virtual-keyboard .hg-button.hg-btn-na {
        font-size: 1.1em;
    }
    .virtual-keyboard .hg-button.hg-btn-kva {
        font-size: 0.9em;
    }

    .virtual-keyboard .hg-button.hg-btn-action {
        background: #5d6f85 /*#efefef;*/
        /* width: 24%; */
        /* color: white; */
    }
       /* .virtual-keyboard .hg-button.hg-btn-action:active {
            background: #dfdfdf;
        }*/

.virtual-keyboard .hg-button-container {
    width: 25%;
}

/*.virtual-keyboard .hg-button.hg-btn-type1.disabled,
.virtual-keyboard .hg-button.hg-btn-type2.disabled,
.virtual-keyboard .hg-button.hg-btn-type3.disabled {
    cursor: not-allowed;
    pointer-events: none;
    color: #cccccc;
}*/

#btn-keyboard-disable {
    position: absolute;
    right: 0;
    top: -25px;
    width: 2.5em;
    height: 25px;
    background-color: rgb(69 76 83);
    color: white;
    font-size: 0.7em;
    font-weight: bold;
    line-height: 20px;
    text-align: center;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
    z-index: 9999;
    user-select: none;
    padding: 4px 5px 0;
}


@media (max-height: 450px) {
    .virtual-keyboard.hg-theme-default {
        font-size: 10px;
    }
    .virtual-keyboard .hg-button {
        height: 7vh;
    }
}