
@charset "utf-8";

/* webfont
========================================================================== */
@import url(https://fonts.googleapis.com/css?family=Noto+Sans+KR:400,500,700&display=swap&subset=korean);

/* css reset
========================================================================== */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: 0;
    outline: none;
    word-break: keep-all;
    /* -webkit-tap-highlight-color : transparent; */
}
html, body {
    font-family: 
    'Noto Sans KR',
    'malgun gothic',
    'AppleGothicNeoSD',
    'Microsoft NeoGothic',
    'Droid sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #363b4b;
    height: 100vh;
}

article, aside, details, figcaption, figure, footer,
header, hgroup, main, menu, nav, section, summary{
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    background-color: transparent;
}

a:active, a:hover {
    outline: 0;
}

ul {
    list-style-type: none;
}
b {
    font-weight: 500;
}
img {
    border: 0;
    vertical-align: sub;
}

svg:not(:root) {
    overflow: hidden;
}

fieldset {
    border: 0;
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
    vertical-align: middle;
}


/* Input : number 초기화 */
input[type=number] {
    -moz-appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input,
select {
    height: 38px;
    padding: 0 10px;
    border: 1px solid #cfcdcd;
    border-radius: 3px;
    background-color: #fff;
}
input::-webkit-input-placeholder{
    color: #c6c6c6;
}
input:-ms-input-placeholder {
    color: #c6c6c6;
}
input::placeholder {
    color: #c6c6c6;
}
input:focus, select:focus {
    border-width: 3px;
    border-color: #5c70cc;
}
input:disabled , select:disabled {
    background-color: #f1f1f1;
}
input[type="text"]::-ms-clear {
    display: none;
}
input[type="radio"],
input[type="checkbox"] {
    background-color: transparent;
}
input[type="file"] i {
    display: none;
}
input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
    height: auto;
}

button {
    background-color: transparent;
    overflow: visible;
    outline: none;
}

button, select {
    text-transform: none;
}

button, html input[type="button"], input[type="reset"],input[type="submit"] {
    -webkit-appearance: button;
    /*cursor: pointer;*/
}

button[disabled],
html input[disabled] {
    cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
td, th {
    padding: 0;
    font-weight: 400;
}

.blind {
    text-indent: -9999px;
    overflow: hidden;
    line-height: 0;
    height: 0;
    width: 0;
}
 h1,h2,h3,h4,h5 {
     font-weight: 500;
 }


 /* 커스텀 체크/라디오 박스 */
 .custom-use {
     display: block;
     position: relative;
     padding-left: 25px;
     /*cursor: pointer;*/
     -webkit-user-select: none;
     -moz-user-select: none;
     -ms-user-select: none;
     user-select: none;
 }

 .custom-use input {
     position: absolute;
     opacity: 0;
     /*cursor: pointer;*/
     height: 0;
     width: 0;
 }

 .custom-chk,
 .custom-radio {
     position: absolute;
     top: 2px;
     left: 0;
     height: 18px;
     width: 18px;
     background-color: #d7d7d7;
 }

 .custom-radio {
     border-radius: 50%;
 }

 .custom-use input:checked~.custom-chk,
 .custom-use input:checked~.custom-radio {
     background-color: #5c70cb;
 }

 .custom-chk::after,
 .custom-radio::after {
     content: "";
     position: absolute;
 }

 .custom-use .custom-chk::after {
     left: 6px;
     top: 2px;
     width: 5px;
     height: 10px;
     border: solid white;
     border-width: 0 2px 2px 0;
     -webkit-transform: rotate(45deg);
     -ms-transform: rotate(45deg);
     transform: rotate(45deg);
 }

 .custom-use .custom-radio::after {
     left: 6px;
     top: 6px;
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background-color: #fff;
 }

 
/* textarea */
textarea {
    width: 100%;
    overflow: auto;
    border: 1px solid #cfcdcd;
    border-radius: 3px;
    resize: none;
    padding: 5px 10px;
}
.textarea-wrap {
    border: 1px solid #cfcdcd;
    border-radius: 3px;
}
.textarea-wrap textarea {
    border: 0;
}
.textarea-wrap .txt-length {
    padding: 5px 10px;
    text-align: right;
    font-size: 0.813rem;
}
.textarea-wrap + button {
    width: 100%;
    height: 30px;
    margin-top: 10px;
}

