@charset "utf-8";


.keyboard{
    z-index: 10000;
    opacity: 1;
/*     padding:1%; */
    position: fixed;
    top: 150%;
    width: 100%;
    list-style: none;
    text-align: center;
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    /* ie10 */
    -ms-user-select: none;
    user-select: none;
}
.keyboardArr {
    width: calc(100% - 24px);
    padding:15px;	
    position: relative;
    left: 50%;
    transform: translate(-50%);
    border-radius:10px;
	background: white;
}
.line1, .line2, .line3, .line4 {
	overflow:hidden;
	display: flex;
    justify-content: center;
}
.line1 .symbol:nth-child(1) {
	margin-left:0;
}
.keyboard span.null{
    opacity: 0;
}

.uppercase {
    text-transform: uppercase;
}

.kr {
    display: none;
}

.others{
    display:none;
}

.upper{
    display: none;
}

.on {
    display: none;
}

.symbol:not(.null):hover, .letter:not(.null):hover, .number:not(.null):hover{
    position: relative;
    top: 1px;
    border-color: black;
    cursor: pointer;
}

.symbol{
    float: left;
    margin: 0 0 1% 0;
    width: 72px;
    height: 40px;
    line-height: 40px;
    font-weight:600;
    background: url("/assets/images/keyboard/Btn_Bg.png") no-repeat center center;
    background-size: cover;
    color: #596877;
    border: 1px solid #ababab; 
    margin-left:8px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius:5px;
    box-shadow: 0 3px 1px rgba(0,0,0,.1);
}
.symbol.null{
    width: 0%;
    margin-left:0;
    display:none;
}

.symbol.del {
    width: 152px;
    font-size: 15px;
    background: url("/assets/images/keyboard/Btn_Bg.png") no-repeat center center;
    background-size: cover;
}

.symbol.tab{
    width: 12%;
    background: url("/assets/images/keyboard/Btn_Bg.png") no-repeat center center;
    background-size: cover;
}

.symbol.enter{
    width: 152px;
    background: url("/assets/images/keyboard/Btn_Bg.png") no-repeat center center;
    background-size: cover;
}

.symbol.shift{
    width: 152px;
    background: url("/assets/images/keyboard/Btn_Bg.png") no-repeat center center;
    background-size: cover;
}

.symbol.space{
    width: 65%;
    background: url("/assets/images/keyboard/Btn_Bg.png") no-repeat center center;
    background-size: cover;
}

.symbol.local{
    width: 152px;
    background: url("/assets/images/keyboard/Btn_Bg.png") no-repeat center center;
    background-size: cover;
}

.symbol.specials{
    width: 10.5%;
    background: url("/assets/images/keyboard/Btn_Bg.png") no-repeat center center;
    background-size: cover;
}

span[class="off"], span[class="on"]{
    pointer-events: none;
}

.letter{
    float: left;
    margin: 0 0 1% 0;
    width: 8%;
    height: 40px;
    line-height: 40px;
    background: #0d1c30;
    color: ghostwhite;
    border: 2px ridge white;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}
.line3>.letter.null{
    width: 5%;
}

.letter.null{
    width: 4%;
}

.letter.local{
    background: silver;
    font-size: 20px;
    width: 24%;
}

.letter.⌫{
    background: silver;
    font-size: 20px;
    width: 16%;
}

.letter.del{
    background: silver;
    font-size: 20px;
    width: 16%;
}

.letter.enter{
    background: silver;
    font-size: 15px;
    width: 20%;
}

.letter.shift{
    background: silver;
    font-size: 15px;
    width: 24%;
}

.letter.space{
    background: silver;
    font-size: 15px;
    width: 76%;
}

.number{
    float: left;
    width: 20%;
    height: 40px;
    line-height: 40px;
    background: url(/assets/images/keyboard/Btn_Bg.png) no-repeat center center;
    background-size: cover;
    color: #596877;
    border: 1px solid #ababab;
    font-size: 20px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    margin: 0 0 1% 1%;
}

.number.lastitem, .number.close, .number.enter, .number.del, .number.reset{
    background: url("/assets/images/keyboard/Btn_Bg.png") no-repeat center center;
    background-size: cover;
}

@media (min-height: 700px) {
    /** 대화면 tablet, laptop **/
    .number{
        height: 58px;
        line-height: 58px;
        font-size: 25px;
    }

    .letter{
        height: 50px;
        line-height: 50px;
        font-size: 17px;
    }

    .symbol{
        height: 58px;
        line-height: 58px;
        font-size: 20px;
    }
}

@media (min-height: 1500px){
    /** 데스크탑 환경 **/
    .number{
        height: 50px;
        line-height: 50px;
        font-size: 30px;
    }

    .letter{
        height: 50px;
        line-height: 50px;
        font-size: 30px;
    }

    .symbol{
        height: 50px;
        line-height: 50px;
        font-size: 30px;
    }
}