.input-keypad {
    width: 100%;
    margin: 0 auto;
    display: flex;
    padding: 0;
    /*max-width: 320px;*/
    min-width: 320px;
    flex-direction: column;
    background-color: #aeaeae;
}

.input-keypad.qwerty {
    position: fixed;
    left: 1vw;
    right: 0;
    bottom: 0;
    z-index: 9999999999;
    margin: 0;
    width: 98vw;
    box-shadow: 1px 1px 50px rgba(0,0,0,.2);
    overflow: hidden;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}
.modal-open .input-keypad.qwerty {
    width: 70vw;
}

.input-keypad .keypad-row {
    display: flex;
    padding: 0;
    justify-content: space-around;
}

.input-keypad .keypad-row .keypad-col {
    flex: 1;
    box-shadow: 0 0 1px 0 #aeaeae;
}

.input-keypad .keypad-row .keypad-col.wide {
    flex: 2;
}

.input-keypad .keypad-btn {
    width: 100%;
    color: #2a2a2b;
    border: none;
    cursor: pointer;
    padding: 0.8rem;
    outline: none;
    font-size: 1.6rem;
    transition: all 0.3s ease-in-out;
    font-weight: 200;
    justify-content: center;
    background-color: #eee;
    min-height: 40px;
}

.input-keypad .keypad-btn.accent {
    background-color: #f49e3f;
    color: #fff;
}

.input-keypad .keypad-btn.gray {
    background-color: #dbdbdb;
}

/*.input-keypad .keypad-btn:active {
    background-color: #2f2f31;
}*/

.input-keypad .keypad-btn:hover {
    opacity: .8;
}

.input-keypad.alternar .keypad-btn {
    text-transform: uppercase;
}