@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR&display=swap");

/* TODO : [공용 스타일] */
* {
    margin: 0;
    padding: 0;
}
html {

}

body {
    width: 100%;
    height: 100%;
    /*min-width:1320px;*/
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 14px;
    font-weight: 500;
    background-color: #ffffff;
    color: #000000;
    letter-spacing:-1px;
    line-height:1.3em;
}

table{
    width: 100%;
    border-collapse:collapse;
    border-spacing:0;
}
th {
    font-size:14px;
    background-color: #f5f5f5;
    font-weight:700;
}
th, td{
    border: 1px solid #dddddd;
    text-align:center;
    font-size:12px;
    border-collapse:collapse;
}

li { list-style: none; }

a {
    color: #000000;
    text-decoration: none;
    border:0px;
}
a:hover{
    color: #004ca2;
    text-decoration:none;
    border:0px;
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #959595;
    font-size:12px;
    font-weight:500;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #959595;
    font-size:12px;
    font-weight:500;
    opacity:1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #959595;
    font-size:12px;
    font-weight:500;
    opacity:1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #959595;
    font-size:12px;
    font-weight:500;
}

::-ms-clear {
    display: none;
}

.clear {
    clear:both;
}

/*** LOADING 시작 ********************/
.loading-mask{
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    z-index:9995;
    background-color: #ffffff;
}
.loading-mask-opacity {
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    z-index:9995;
    background-color: #ffffff;
    opacity: .8;
}
.loading{
    position:absolute;
    z-index:9996;
    width : 32px;
    height : 32px;
    left : 50%;
    top : 50%;
    margin : -30px 0px 0px -30px;
    background: url('http://www.thehhopeplus.com/static/images/common/loading_32.gif') no-repeat center center;
}
/*** LOADING 종료 ********************/