@charset "utf-8";

/* div table */
.tbl-wrap {
    display: table;
    width: 100%;
}
.tbl-row {
    display: table-row;
}
.tbl-cell {
    display: table-cell;
}

/* form tag common style */
input,
textarea,
select {
    font-family: "NotoSansKR-Regular", sans-serif;
    font-weight: 400;
    box-sizing: border-box;
}

input[type="text"],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #f4f4f4;
    border: 0;
    outline: none;
}
select {
    border: 0;
    outline: none;
    cursor: pointer;
}

/* form table */
.form-wrap .brd-top {
    border-top: 2px solid #000;
}
.form-wrap .brd-btm {
    border-bottom: 1px solid #000;
}

.form-tbl .tbl-cell {
    padding: 0.75rem 0;
    border-top: 1px solid #e9e9e9;
}
.form-tbl .cell-ctg {
    width: 22%;
    font-size: 0.9rem;
}
.form-tbl .cell-ctg b {
    color: #ee212c;
}
.form-tbl .cell-cont {
    width: 78%;
}

.input-box input[type="text"],
.input-box input[type="password"] {
    padding: 0 1rem;
    font-size: 0.9rem;
    line-height: 2.5rem;
    width: 16rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { /* IE10+ */
    .input-box input[type="text"],
    .input-box input[type="password"] {
        height: 2.5rem;
    }
}
@media screen and (min-width: 640px), screen\9 { /* IE6,7,9,10 */
    .input-box input[type="text"],
    .input-box input[type="password"] {
        height: 2.5rem;
    }
}
@media screen\9 { /* IE6,7 */
    .input-box input[type="text"],
    .input-box input[type="password"] {
        height: 2.5rem;
    }
}
@media \0screen { /* IE8 */
    .input-box input[type="text"],
    .input-box input[type="password"] {
        height: 2.5rem;
    }
}

.chk-box {
    line-height: 2.5rem;
}
.chk-box input[type="checkbox"] {
    display: none;
}
.chk-box .chk-label {
    display: inline-block;
    font-size: 0.9rem;
    cursor: pointer;
}
.chk-box input[type="checkbox"] + .box {
    display: inline-block;
    position: relative;
    margin-right: 5px;
    width: 0.75rem;
    height: 0.75rem;
    border: 1px solid #000;
}
.chk-box input[type="checkbox"] + .box:after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background-color: #000;
    transition: 0.15s ease-in-out;
}
.chk-box input[type="checkbox"]:checked + .box:after {
    width: 100%;
    height: 100%;
}

.form-wrap textarea {
    padding: 1rem;
    width: 100%;
    height: 11rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media screen and (min-color-index:0) and(-webkit-min-device-pixel-ratio:0) {
    @media { /* safari */
        .input-box input[type="text"],
        .input-box input[type="password"],
        .form-wrap textarea {
            font-size: 16px;
        }
    }
}


/******************************
@ media query
*******************************/
@media screen and (max-width: 576px) {

    /* form table */
    .form-tbl .cell-ctg,
    .input-box input[type="text"],
    .input-box input[type="password"],
    .form-wrap textarea {
        font-size: 1rem;
    }

}