/* 폰트아이콘 */
.fontIcons{}
.fontIcons.google{
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}


/* 폼태그의 초기화 */
input, select, textarea, button{vertical-align: middle; /*-webkit-appearance: none; appearance: none;*/ color: #332a26; background: #fff; font-size: 1.6rem;}
textarea{resize: none; min-height: 80px; width: 100%;}
button {cursor:pointer; background: transparent;}
select{text-overflow: ellipsis; font-size: 1.6rem;}
input::placeholder,
textarea::placeholder{color: #999; font-weight: 400; font-size: 1.6rem;}
input[type=radio],
input[type=checkbox] {cursor:pointer;}
label{cursor:pointer; vertical-align: middle;}
input::-ms-clear,
input::-ms-reveal{
    display:none;
}
input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration{
    display:none;
}

/* a태그 */
a{cursor: pointer; color:var(--fontDefultColor);}
a:link{text-decoration:none; }
a:active{text-decoration:none; }
a:visited{text-decoration:none;}
a:hover{text-decoration:none; }

/* checkbox, radio, input, select 
input[type=checkbox]{position:relative; margin-right:3px; width:20px; height: 20px; appearance: none; background: transparent;}
input[type=checkbox]:before{display:block; content:''; position:absolute; width:20px; height:20px; z-index:2; cursor:pointer; background: url(../images/icon_circleCheck_off.svg) ;}
input[type=checkbox]:checked:after{display:block; content:''; position:absolute; width:20px; height:20px; z-index:2;  background: url(../images/icon_circleCheck_on.svg); }
input[type=checkbox] + label{margin-right: 10px;}
input[type=checkbox].square:before{display:block; content:''; position:absolute; width:20px; height:20px; z-index:2; cursor:pointer; background: url(../images/icon_squareCheck_off.svg) ;}
input[type=checkbox].square:checked:after{display:block; content:''; position:absolute; width:20px; height:20px; z-index:2;  background: url(../images/icon_squareCheck_on.svg); }


input[type=radio]{position:relative; margin-right:3px; width:20px; height: 20px;}
input[type=radio]:before{display:block; content:''; position:absolute; width:20px; height:20px; z-index:2; cursor:pointer; background: url(../images/icon_circleRadio_off.svg) ;}
input[type=radio]:checked:after{display:block; content:''; position:absolute; width:20px; height:20px; z-index:2;  background: url(../images/icon_circleRadio_on.svg); }

input[type=radio] + label{margin-right: 10px;}

/* 버튼형 라디오 */
.tabRadio{display: flex; margin-bottom: 20px; font-size: 1.6rem;}
.tabRadio label{display: block; height: 52px; line-height: 52px; background: #f5f5f5; color: #bbbec9; border: 1px solid #bbb;  text-align: center; position: relative; font-weight: 500;}
.tabRadio label span{font-family: 'Zen Kaku Gothic New', sans-serif;}
.tabRadio input[type=radio] + label{margin-right: 0;}
.tabRadio input[type=radio]:checked + label{background: #fff; color: #332A26; font-weight: 700; border: 2px solid #0e4194; }
.tabRadio input[type=radio]{display: none;}
.tabRadio label:first-of-type{border-radius: 8px 0 0 8px; }
.tabRadio label:last-of-type{border-radius: 0 8px 8px 0; border-right: 1px solid #bbb; }
.tabRadio label:not(:first-of-type){border-left: 0;}

.tabRadio[aria-label="2"] label{width: 50%;}
.tabRadio[aria-label="3"] label{width: calc(100% / 3)}
.tabRadio[aria-label="4"] label{width: calc(100% / 4)}
.tabRadio[aria-label="5"] label{width: calc(100% / 5)}


/* 버튼형 체크박스 */
.tabChkbox{display: flex; margin-bottom: 20px; font-size: 1.6rem;}
.tabChkbox label{display: block; height: 52px; line-height: 52px; background: #f5f5f5; color: #bbbec9; border: 1px solid #bbb; border-right: none; text-align: center; position: relative; font-weight: 500;}
.tabChkbox label span{font-family: 'Zen Kaku Gothic New', sans-serif;}
.tabChkbox input[type=radio] + label{margin-right: 0;}
.tabChkbox input[type=radio]:checked + label{background: #fff; color: #332A26; font-weight: 700; border: 2px solid #0e4194;}
.tabChkbox input[type=radio]{display: none;}
.tabChkbox label:first-of-type{border-radius: 8px 0 0 8px; }
.tabChkbox label:last-of-type{border-radius: 0 8px 8px 0; border-right: 1px solid #bbb; }
.tabChkbox[aria-label="2"] label{width: 50%;}
.tabChkbox[aria-label="3"] label{width: calc(100% / 3)}
.tabChkbox[aria-label="4"] label{width: calc(100% / 4)}
.tabChkbox[aria-label="5"] label{width: calc(100% / 5)}



textarea,
input[type=text],
input[type=file],
input[type=password],
input[type=email],
input[type=number],
input[type=search],
input[type=serch],
input[type=date],
input[type=time]{border: 1px solid #ddd; }

textarea:focus,
input[type=text]:focus,
input[type=file]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=search]:focus,
input[type=serch]:focus,
input[type=date]:focus,
input[type=time]:focus{ border: 1px solid #0e4194; color: #332a26; font-weight: 500;}

textarea:disabled,
input[type=text]:disabled,
input[type=file]:disabled,
input[type=password]:disabled,
input[type=email]:disabled,
input[type=number]:disabled,
input[type=search]:disabled,
input[type=serch]:disabled,
input[type=date]:disabled,
input[type=time]:disabled{}


textarea:read-only,
input[type=text]:read-only,
input[type=file]:read-only,
input[type=password]:read-only,
input[type=email]:read-only,
input[type=number]:read-only,
input[type=search]:read-only,
input[type=serch]:read-only,
input[type=date]:read-only,
input[type=time]:read-only{background: #f5f5f5;}

select{border: 1px solid #ddd; padding: 0 16px; appearance: auto;  }
select:focus{border: 1px solid #0e4194; }
select:disabled{border: 1px solid #ddd;  }

.dateInput{background: url(../images/icon_date.svg) no-repeat right 16px center !important;  }
.valueInput{border: 0 !important; pointer-events: none;}


/* toggle버튼 */
.toggleInput {position: relative; display: inline-block; width:36px; height: 12px; border-radius: 6px; background: #edf0f9;}
.toggleInput input {opacity:0; width:0; height:0;}
.toggleInput input:checked + span:before {transform: translateY(-50%) translateX(20px);}
.toggleInput span{position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background: #edf0f9; border-radius: 6px;}
.toggleInput span:before {border-radius: 50%; position: absolute; content: ""; height: 20px; width: 20px; left:0px; top: 50%; transform: translateY(-50%); background: #fff; box-shadow: 3px 0 10px rgba(73, 75, 83, 0.3); transition: all 0.5s;}
.toggleInput input:checked + span{background: #0e4194;}
.toggleInput input:disabled + span::before{background: #dfe2ed;}
.toggleInput input:disabled + span{background: #f4f6fc;}

/* tbody스크롤 */
.scollTable{overflow: hidden; overflow-y: auto; height: 400px;}


/* 페이징 */
.pagingWrap{font-size: 0; display:flex; justify-content: center; align-items: center; margin-top: 70px;}
.pagingWrap a{width: 36px; height: 36px; line-height: 36px;  display: inline-block; font-size: 1.4rem; margin: 0 8px; text-align: center; color: #666; font-family: 'Pretendard';}
.pagingWrap .prev, .pagingWrap .next{display:inline-block; cursor: pointer; margin: 0;}
.pagingWrap .prev{background: url(../images/icon_prev.svg) no-repeat center; margin-right: 16px;}
.pagingWrap .next{background: url(../images/icon_next.svg) no-repeat center; margin-left: 16px;}
.pagingWrap .first{background: url(../images/icon_first.svg) no-repeat center;}
.pagingWrap .last{background: url(../images/icon_last.svg) no-repeat center;}
.pagingWrap a.on{border-radius: 50%; background: #0e4194; color: #fff; font-weight: bold;}

/* 버튼 */
.btn{ font-weight: 700; font-size: 1.4rem; line-height: 1; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-direction: column;  }
.btn .jp{font-weight: 400; display: block; font-size: inherit;}
.btn.blackBtn{ background: #666; color: #fff; }
.btn.whiteBtn{background: #fff; color: #332A26; border: 1px solid #bbb;}
.btn.mainBtn{background: #F66C84; color: #fff;}
.btn.regBtn{background: #996D59; color: #fff;}
.btn.regdarkBtn{background: #6C341E; color: #fff;}
.bdbtn{background: #fff; width: 72px; height: 36px; line-height: 36px; border: 1px solid #bbb; color: #332A26; font-size: 1.4rem; font-weight: 700; border-radius: 4px; display: inline-block; }
.bdbtn.copy{width: 148px;}
.bdbtn.copy::before{content: ""; display: inline-block; width: 16px; height: 16px; background: url(../images/icon_copy.svg) no-repeat center; margin-right: 4px; vertical-align: middle;}
.bdbtn.edit::before{content: ""; display: inline-block; width: 16px; height: 16px; background: url(../images/icon_edit.svg) no-repeat center; margin-right: 4px; vertical-align: middle;}
.bdbtn.delete::before{content: ""; display: inline-block; width: 16px; height: 16px; background: url(../images/icon_delete.svg) no-repeat center; margin-right: 4px; vertical-align: middle;}
.jpbtn{background: #fff; padding: 0 16px; height: 36px; line-height: 36px; border: 1px solid #bbb; color: #332A26; font-size: 1.4rem; font-weight: 700; border-radius: 4px; display: inline-block; }
.jpbtn .jp{font-weight: 400;}
.formBtn{height: 52px; width: 140px;}

.bdbtnWrap{display: flex; flex-wrap: wrap; gap: 4px; justify-content: center;}



.messageBox{width: 400px; margin-bottom: 28px; }
.messageBox > p{line-height: 1.5; text-align: center;}
.messageBox .k{font-size: 1.6rem; font-weight: 500; }
.messageBox .j{font-family: 'Zen Kaku Gothic New', sans-serif;  font-size: 1.6rem; font-weight: 500;}

.cancleBtn_wrap{margin-top: 16px; text-align: center;}
.cancleBtn_wrap a{font-weight: 700; color: #332A26; border-bottom: 1px solid #332A26;}
.cancleBtn_wrap a .jp{font-weight: 400;}


.statIcon{display: inline-flex; align-items: center; color: #fff; font-weight: 700; font-size: 1.3rem; padding: 0 10px; height: 24px; border-radius: 12px;}
.statIcon.ing{background: #5170EB;}
.statIcon.end{background: #666;}
.statIcon.wait{background: #08CBCB;}