@charset "UTF-8";


@font-face {
    font-family: "Pretendard";
    src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Thin.woff") format("woff");
    font-weight: 100;
    font-style: normal;
  }
  @font-face {
    font-family: "Pretendard";
    src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
  }
  @font-face {
    font-family: "Pretendard";
    src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
  }
  @font-face {
    font-family: "Pretendard";
    src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-SemiBold.woff") format("woff");
    font-weight: 500;
    font-style: normal;
  }
  @font-face {
    font-family: "Pretendard";
    src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
  }

:root {
    /* var 메인 컨텐츠 너비 */
    --width-content:1200px;
    --width-content-wide:1440px;
    --font-family : "Pretendard", "Malgun Gothic", dotum, gulim, sans-serif;
    --font-color-base : #171717;
    --font-size-base:14px;

}

html{
    /* 브라우저가 지정해주는 기본 폰트 사이즈는 100%=16px
    이걸 계산하기 쉽게 62.5%=10px로 변경해주는것이다.
    따라서 위 설정을 통해 1rem=10px 이 된다. (16px *62.5%=10px   // 62.5%=0.625) */
        font-size:62.5%;
}
@media screen and (min-width: 681px) and (max-width: 1024px) {
    html{
            font-size:56%;
        }
}
@media screen and (max-width: 680px) {
    html{
        font-size:53%;
        }
}

@media screen and (max-width: 1199px) {
    :root {
        /* var 메인 컨텐츠 너비 */
        --width-content:96%;
    }
}


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: middle;
    box-sizing: border-box;
    word-break: keep-all;
}
body{
    font-family: var(--font-family);
    color:var(--font-color-base);
    -webkit-text-size-adjust: none;
    font-size:var(--font-size-base);
    font-weight: 400;
}

iframe{
    line-height: 0;
    font-size: 0;
}
ol, ul {
	list-style: none;
    padding:0;
    margin:0;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse:collapse;
	border-spacing:0;
    width:100%;
}
input, select, textarea{
	vertical-align:middle;
	font-size:initial;
    box-sizing:border-box;
}
a{
	color:inherit;
	margin:0;
	padding:0;
	text-decoration: none;
    cursor: pointer;
}
button {
    cursor: pointer;
}
table caption {	
    display:none;
}
label{
    display: inline-block;
    cursor:pointer;
    font-weight: 400;
}
hr,caption{
    display:none
}
legend{
    overflow:hidden;
    position:absolute;
    height:0;
    font-size:0;
    line-height:0;
    text-indent:-20000px
}
.text-right{
    text-align:right;
}

textarea{
    padding:5px;
    border:0px solid #e1e0de
}
input[type=text],
input[type=password]{
    height:37px;
    border:solid 1px #d0d0d0;
    line-height:37px;
}
input[type=radio],
input[type=checkbox]{
width: 20px;
height:20px;
}
input[type=file]{
    font-size: 14px;
}
textarea{
    border:solid 1px #d0d0d0;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	cursor: pointer;
	padding: 0;
	background:transparent;
	border:none;
    color: var(--font-color-base);
}
select{
    border:solid 1px #d0d0d0;
    line-height:18px;
    font-family: var(--font-family);
    color:var(--font-color-base);
    font-size:var(--font-size-base);
}
select.no{
    border:0;
}
table td,
table th {
  font-size: 14px;
}

::placeholder {
    color: #bababa;
    opacity: 1; /* Firefox */
}
::-ms-input-placeholder { /* Edge 12 -18 */
color: #bababa;
}


input[type=text].form_control,
input[type=password].form_control {
    box-sizing: border-box;
    height: 26px;
    padding: 3px 5px;
    color: #666;
    font-size: 14px;
    line-height: 16px;
    border: 1px solid #d4d4d4;
    border-radius: 0;
    font-family: var(--font-family);
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
textarea.form_control {
    box-sizing: border-box;
    padding: 3px 5px;
    color: #666;
    font-size: 14px;
    line-height: 16px;
    border: 1px solid #d4d4d4;
    border-radius: 0;
    font-family: var(--font-family);
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

input[type=text].form_control:focus,
input[type=password].form_control:focus,
textarea.form_control:focus {
    background-color: #f6fafd;
    border: 1px solid #278de0;
    outline: 0;
}

input[type=text].form_control[disabled],
input[type=text].form_control[readonly],
fieldset[disabled] input[type=text].form_control,
input[type=password].form_control[disabled],
input[type=password].form_control[readonly],
fieldset[disabled] input[type=password].form_control {
    opacity: .6;
    background: #ebebeb;
    border: 1px solid #d5d5d5;
}

textarea.form_control {
    width: 100% !important;
    height: auto;
}
select.form_select.bold,
input[type="text"].form_control.bold,
input[type="password"].form_control.bold,
textarea.form_control.bold{
    font-weight: 700;
}
select.form_select.fs-15,
input[type="text"].form_control.fs-15,
input[type="password"].form_control.fs-15,
textarea.form_control.fs-15{
    font-size: 15px;
}
select.form_select.fs-16,
input[type="text"].form_control.fs-16,
input[type="password"].form_control.fs-16,
textarea.form_control.fs-16{
    font-size: 16px;
}
.form_select {
    box-sizing: border-box;
    font-size: 14px;
    line-height: 16px;
    border-radius: 0;
    font-family: var(--font-family);
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;

    min-height: 26px;
    padding: 0 16px;
    color: #666;
    border: solid 1px #d1d1d1;
}

.form_select:focus {
    background-color: #f6fafd;
    border: 1px solid #278de0;
    outline: 0;
}

.form_select[disabled],
.form_select[readonly],
fieldset[disabled] .form_select {
    opacity: .6;
    background: #ebebeb;
    border: 1px solid #d5d5d5;
}


table.ex {border:0px;text-align:left; border-spacing:0;}
table.ex td{border:1px solid #909090; border-collapse: collapse;height:24px; font: 9pt "����"}
table.ex2 {border:0px;text-align:left;border-spacing:0;}
table.ex2 td{border:0px;border-collapse:collapse;height:24px; font: 9pt "����"}
.td_pad {padding:3px 0 0 10px;}

.checkbox-wrap {
    display: inline-block;
    margin-right: 0.625rem;
    width: 1.5rem;
    position: relative;
}
.checkbox-wrap input[type=checkbox] {
    width: 1.5rem;
    height: 1.5rem;
    margin: 0;
    border:1px solid #aaa;
}

.radio-wrap input[type=radio] {
    position: relative;
    width: 24px;
    height: 24px;
    appearance: none;
    font-size: 0;
}
.radio-wrap input[type=radio]:before {
    content: "";
    position: absolute;
    bottom: -0.3125rem;
    left: 0;
    display: inline-block;
    width: 0.8125rem;
    height: 0.8125rem;
    border: 1px solid #d0d0d0;
    border-radius: 50%;
}
.radio-wrap input[type=radio]:checked:after {
    content: "";
    position: absolute;
    bottom: 0rem;
    left: 0.3125rem;
    width: 0.3125rem;
    height: 0.3125rem;
    border-radius: 50%;
    background-color: #31b9f2;
}
.label + input[type=radio]{
    margin-right:5px;
}

.fw-bold {
    font-weight: bold;
}

.align-c {
    text-align: center;
}

.align-l {
    text-align: left;
}

.align-r {
    text-align: right;
}

.valign-t {
    vertical-align: top;
}

.valign-b {
    vertical-align: bottom;
}

.valign-m {
    vertical-align: middle;
}

.fc-primary {
    color: #1b61aa;
}
.red {
    background-color: red;
}

.black {
    background-color: #000;
}


.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 0;
  }
  
  .btn-tiny {
    border-radius: 12px;
    padding: 4px 10px;
    border: none;
    color: #fff;
    font-weight: 600;
  }
  .btn.btn-outline-gray {
    border: 1px solid #999999;
    color: #999999;
  }
  .btn.btn-round {
    border-radius: 20px;
  }
  .btn.btn-sm {
    height: 30px;
    font-size: 14px;
    padding: 0 14px;
  }
  .btn.btn-white {
    background-color: #ffffff;
  }
  .btn.btn-primary {
    background-color: #31b9f2;
    color: #ffffff;
  }
  .btn.btn-secondary {
    background-color: #0066cb;
    color: #ffffff;
  }
  .btn.btn-red {
    background-color: red;
    color: #ffffff;
  }
  .btn.btn-black {
    background-color: #000000;
    color: #ffffff;
  }
  .btn.btn-md {
    height: 4rem;
    border-radius: 4px;
    font-size: 1.5rem;
    font-weight: 600;
  }
  .btn.btn-wide {
    width: 100%;
  }

  .btn-modify,
.btn-write{
   border: 1px solid #cc3535;
   border-radius: 20px;
   min-width: 80px;
   height: 32px;
   font-size: 12px;
   font-weight: 600;
   color: #cc3535;
   background: #fff;
  
}

.btn-modify:hover,
.btn-write:hover{
    background:#cc3535;
    color: #fff;
}
.btn-seldel{
    border: 1px solid #000000;
    border-radius: 20px;
    min-width: 80px;
    height: 32px;
    font-size: 12px;
    font-weight: 600;
    color: #000000;
    background: #fff;
}
.btn-seldel:hover{
    background: #000;
    color: #fff;
}

.btn-listview{
    border: 1px solid #0066CC;
    border-radius: 20px;
    min-width: 80px;
    height: 32px;
    font-size: 12px;
    color:#0066CC;
    background: #fff;
    font-weight:600;
}
.btn-listview:hover{
    background: #0066CC;
    color: #fff;
}
.btn-search{
    cursor: pointer;
    background-color: #fff;
    color: #0d6efd;
    border: #0d6efd 1px solid;
    min-height: 26px;
    border-radius: 5px;
    font-weight:500;
    vertical-align: middle;
    width: 50px;
}
.btn-search:hover{
	background: #0d6efd;
	color: #fff;
}

/* icon */
[class*=icon-] {
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
}


.mt-3{
    margin-top:30px;
}

.text-center{
    text-align:center;
}
.text-left{
    text-align:left !important;
}
.text-left2{
    text-align:left !important;
    padding-left: 10px !important;
}
.text-center{
    text-align: center;
}



.bi::before,
[class*=" bi-"]::before,
[class^=bi-]::before {
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.bi-login:before{
    content:"\f525";
    transform: rotate(-90deg);
}
.bi-join:before{
    content:"\f4e1";
    font-size: 20px;
    vertical-align: baseline;
    height:19px
}


.color-red{
    color:#e20000;
}
.bold{
    font-weight: 700;
}
.form-side-text{
    display: inline-block;
    margin-left: 10px;
}
.type-mobile{
    display: none;
}

@media screen and (max-width:1199px) {
    .type-pc{
        display:none;
    }


}
@media screen and (max-width:760px) {
    .btn.btn-sm {
        padding: 0 8px;
      }
}
