/*글씨 제거용 css*/
.tenKey .ir_pm {
    display: block;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
    text-indent: -9999px;
}

/*마스킹용 css*/
.tenKey .btnSection .btnCustom .clicked {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.3s;
    background: #1f88d9;
    opacity: 0.7;
}

/*/////////////////////// 이미지 없는 10 키패드///////////////////////////////////*/
.tenKey {
    position: absolute;
    z-index: 9999;
    width: 100vw;
    height: 103vw;
    background-color: rgb(209, 211, 211);
    box-sizing: border-box;
}

/*header css*/
.tenKey .header {
    display: none;
    cursor: default;
    box-sizing: border-box;
    width: 100%;
    height: 15.02%;
    padding: 3.52%;
    position: relative;
    font-size: 0;
    line-height: 0;
    background-color: #fff;
}

.tenKey .header .close {
    display: none;
}

.tenKey .header .close.off {
    display: none;
}

/*전체 keypadSection 및 숫자버튼 + dummy css*/
.tenKey .btnSection {
    position: relative;
    margin: 3px;
    font-size: 0;
    text-align: center;
    height: 100%;
}

.tenKey .btnSection .btnCustom {
    cursor: pointer;
    vertical-align: top;
    display: inline-block;
    background: #fff;
    width: calc((100% - 8px) / 3);
    height: calc((100% - 12px) / 4);
    margin: 0 2px 2px 0;
    text-align: center;
    font-size: 1.75rem;
    position: relative;
}

.tenKey .btnSection .btnCustom:nth-child(3n) {
    margin-right: 0;
}

.tenKey .btnCustom:last-child {
    margin-right: 0;
}

.tenKey .btnSection .lastbtn {
    margin-bottom: 0;
    position: relative;
    margin-right: 0;
    left: calc((100% - 8px) / 3 + 1px);
    box-sizing: border-box;
}

.tenKey .btnSection .btnCustom.dummy {
    display: none;
}

/* 아래쪽 cmd btn css */

/* exchange btn css */
.tenKey .btnSection .btnCustom.exchange {
    display: none;
    margin: 0;
}

.tenKey .btnSection .btnCustom.exchange.RNoff {
    display: none;
}

/*Clear 버튼 css*/
.tenKey .btnSection .btnCustom.reset {
    display: none;
    margin: 0;
}

.tenKey .btnSection .btnCustom.reset.ACoff {
    display: none;
}

.tenKey .btnSection .btnCustom.reset::after {
    display: none;
}

/* delete 버튼용 css */
.tenKey .btnSection .btnCustom.delete {
    right: calc((100% - 8px) / 3 + 1px);
    background-color: rgb(45, 71, 79);
}

.tenKey .btnSection .btnCustom.delete.ACoff {
    right: calc((100% - 8px) / 3 + 1px);
}

.tenKey .btnSection .btnCustom.delete.RNoff {
    right: calc((100% - 8px) / 3 + 1px);
}

.tenKey .delete .delBox {
    box-sizing: border-box;
    position: absolute;
    width: 30px;
    height: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tenKey .delete .delBox::before {
    transform: rotate(45deg);
    transform-origin: 14px 2px;
    content: "";
    display: block;
    width: 14.6px;
    height: 2px;
    background: #fff;
    position: absolute;
    bottom: 0px;
    right: 20px;
    border-radius: 1px;
}

.tenKey .delete .delBox::after {
    transform: rotate(-45deg);
    transform-origin: 14px 0px;
    content: "";
    display: block;
    width: 14.6px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 0px;
    right: 20px;
    border-radius: 1px;
}

.tenKey .delete .delBox .square {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    box-sizing: border-box;
    border: 2px solid #fff;
    border-left: 0;
    width: 20px;
    height: 20px;
}

.tenKey .delete .delBox .square::before {
    width: 80%;
    height: 2px;
    content: "";
    display: block;
    position: absolute;
    background-color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.tenKey .delete .delBox .square::after {
    width: 80%;
    height: 2px;
    content: "";
    display: block;
    position: absolute;
    background-color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

/* enter 버튼용 css */
.tenKey .btnSection .btnCustom.enter {
    right: -1px;
    background-color: rgb(31, 136, 217);
}

.tenKey .btnSection .btnCustom .enterBox {
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 15px;
    border: 2px solid #fff;
    border-top: 0;
    border-left: 0;
}

.tenKey .btnCustom .enterBox::before {
    position: absolute;
    bottom: -2px;
    left: 0;
    transform: translateX(-2px) translateY(150%) rotate(45deg);
    width: 10px;
    height: 2px;
    content: "";
    display: block;
    background: #fff;
}

.tenKey .btnCustom .enterBox::after {
    position: absolute;
    bottom: -2px;
    left: 0;
    transform: translateX(-2px) translateY(-150%) rotate(-45deg);
    width: 10px;
    height: 2px;
    content: "";
    display: block;
    background: #fff;
}

/*////////////////////// 반응형 코드 ////////////////////////!*/

@media (min-width: 770px) {
    .tenKey {
        width: 770px;
        height: 793.09px;
    }
}

@media (orientation: landscape) {
    .tenKey {
        width: 70vh;
        height: 72.1vh;
    }
}