/* 폰트아이콘 */
.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;}
input::placeholder,
textarea::placeholder{color: #999; font-weight: 400; font-size: 1.5rem;}
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: 'Meiryo', 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 #2FC4BE; }
.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: 'Meiryo', 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 #2FC4BE;}
.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=tel],
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=tel]:focus,
input[type=time]:focus{ border: 1px solid #2FC4BE; 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=tel]:read-only,
input[type=time]:read-only{background: #f5f5f5;}

select{border: 1px solid #ddd; padding: 0 16px; appearance: none; background: url(../images/icon_select.svg) no-repeat right 8px center; }
select:focus{border: 1px solid #2FC4BE; }
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: #2FC4BE;}
.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; }
.pagingWrap a{width: 40px; height: 40px; font-size: 1.6rem; display: flex; align-items: center; justify-content: center; margin: 0 2px; background: #fff; color: #999; border-radius: 8px; border: 1px solid #ddd;}
.pagingWrap .prev,
.pagingWrap .next{text-indent: -9999px; }
.pagingWrap .prev{background:#fff url(../images/icon_pageArrow.png) no-repeat center;}
.pagingWrap .next{background:#fff url(../images/icon_pageArrow.png) no-repeat center; transform: rotate(180deg);}
.pagingWrap a.on{background: #2FC4BE; color: #fff; font-weight: bold; border: 0;}


/* 버튼 */
.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: #2FC4BE; color: #fff;}
.btn.regBtn{background: #996D59; color: #fff;}
.btn.regBtn.regBtn02{border: 1px solid #996D59;color: #996D59;background: #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;}
.bdbtn.bdbtn02{background: #2FC4BE;color: #fff;border: 1px solid #2FC4BE;}
.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;}
.new_btn_box button{width: 100%;height: 36px;color:#996D59;border: 1px solid #996D59;font-size: 14px;font-weight: 700;border-radius: 4px;}
/*.new_btn_box button:not(:first-child){margin-top: 3px;}*/
.new_btn_box button.new_btn_st02{background: #d7e4bd;border: 1px solid #2FC4BE;color: #000000;}
.new_btn_box button.new_btn_st03{border: 1px solid #2FC4BE;color: #2FC4BE;}

.new_btn_box button.new_btn_st04{background: #f2f2f2;border: 1px solid #2FC4BE;color: red;}


.new_box_wrap{display: flex;align-items: center;gap:5px;}
.new_box_wrap .new_btn_box{display: flex;gap:3px;}
.new_box_wrap .new_btn_box button{width: fit-content;padding: 0 5px;height: 25px;font-size: 11px;}


/* 레이어팝업 */
.layerPopup{}
.layerPopup::before{ content: ""; background: rgba(0,0,0,0.5); position: fixed; top: 0; left: 0; bottom: 0; right: 0; z-index: 100;}
.layerPopup_inner{ min-width: 400px; background: #fff; padding: 40px 48px 48px; border-radius: 24px; position: fixed; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 105;}
.layerPopup_inner .layerPopup_top{position: ;}
.layerPopup_inner .layerPopup_top .popupClose{position: absolute; top: 24px; right: 24px; width: 32px; height: 32px; background: url(../images/icon_popupClose.png) no-repeat;}
.popupTitle {margin-bottom: 48px; text-align: center;}
.popupTitle  h3{ font-size: 2.4rem; font-weight: 700; }
.popupTitle  span{font-family: 'Meiryo', sans-serif; font-size: 1.8rem; font-weight: normal; margin-top: 8px; display: block;}
.layerPopup_inner .layerPopup_cont{}

.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 .k.notice{margin-bottom: 5px;}
.messageBox .j{font-family: 'Meiryo', sans-serif;  font-size: 1.6rem; font-weight: 500;}
.messageBox .i_box{display: flex;gap:5px;justify-content: flex-end; margin-top: 10px;}
.messageBox .i_box label{font-size: 15px;font-weight: 500;}
.messageBox .vatmsg{font-size: 14px; text-align: right; margin: 6px 8px 0px 0px; color:red}

.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;}

ul.radio_box li:not(:last-child){margin-bottom: 5px;}
ul.radio_box li input{display: none;}
ul.radio_box li label{display: block; width: 100%;line-height: 50px;text-align: center; border-radius: 6px; font-size: 16px;font-weight: 500;border: 1px solid #999;color: #999;transition: .2s;}
ul.radio_box li label:hover{background: #999;color: #fff;}
ul.radio_box li input:checked + label{background: #999;color: #fff;}

.amount_box{display: flex; margin: 28px 0;padding-bottom: 4px;border-bottom: 1px solid #555; align-items: flex-end;justify-content: space-between;}
.amount_box strong{font-size: 18px;}
.amount_box p{font-size: 16px;font-weight: 500;}


.pay_btn_wrap{display: flex;align-items: center;justify-content: center;gap:5px;}
.pay_btn_wrap button{width: 150px;height: 50px;border-radius: 6px;background: #2FC4BE;color: #fff;font-size: 16px;}
.pay_btn_wrap button:nth-child(1){color: #2FC4BE;background: transparent;border: 1px solid #2FC4BE;}


.subContents[aria-label=normal] .btn.mainBtn{background: #EF95A4}
.subContents[aria-label=normal] .mypageTab ul li.on::before{background: #EF95A4}
.subContents[aria-label=normal] .tableWrap table thead th{background: #FBEBEE}
.subContents[aria-label=normal] .pagingWrap a.on{background: #EF95A4}
.subContents[aria-label=normal] .totalText strong span{color: #EF95A4}
