html, body{
    font-family: 'NanumSquareNeo', sans-serif;
    font-size: 24px;
    font-weight: normal;
    line-height: 1.5;
    -webkit-text-size-adjust : none;  /* 크롬, 사파리, 오페라 신버전 */
    -ms-text-size-adjust : none;  /* IE */
    -moz-text-size-adjust : none;  /* 파이어폭스 */
    -o-text-size-adjust : none;  /* 오페라 구버전 */
    color: #fff;
  /*  background: #606060;*/
	margin:0 auto;
}
a:link,
a:visited,
a:active,
a:hover{
    text-decoration: none;
    color: #fff;
}
main{
    max-width: 1280px;
    width: calc(100vw - 32px);
    margin: 0 auto;
    overflow: auto;max-width:720px;
}

/* table */
.table_wrap{
    width: 1156px;
 /*   min-height: calc(100vh - 64px);*/
    margin: 16px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    background: url(../images/locker_bg.png) no-repeat center/100% auto;
}
.table_wrap table{
    transition: .3s;
    margin-bottom: 213px;
	align-self: self-start;
}
.table_wrap table tr td{
    font-family: 'NanumSquareNeoExtraBold', sans-serif;
    width: 68px;
    height: 68px;
    background: transparent;
    cursor: pointer;
    text-align: center;
    vertical-align: middle;
    transition: .1s;
    box-shadow: 0 0 0 2px transparent inset;
    cursor: default;
	border-collapse: collapse;
    border-radius: 8px;
}
.table_wrap table tr td span{
    width: 40px;
    height: 2px;
    display: block;
    background: #fff;
    margin: 0 auto;
}
.table_wrap table tr td.active{
    background: #F39B26;
    cursor: pointer;
    box-shadow: 0 0 0 2px #606060 inset;
	color: #fff;
}

.table_wrap table tr td.using{
    background: #a9a9a9;
    cursor: pointer;
    box-shadow: 0 0 0 2px #606060 inset;
	color: #fff;
}

.table_wrap table tr td.select{
    background: #F34B26;
}


@media screen and (max-width: 768px){

    .table_wrap{
        width: 1020px;
    }
    .table_wrap table{
        margin-bottom: 188px;
    }
    .table_wrap table tr td{
        font-size: 18px;
        width: 60px;
        height: 60px;
        box-shadow: 0 0 0 1px transparent inset;
    }
    .table_wrap table tr td span{
        width: 30px;
    }

}