* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}
:focus {
    outline: 0;
    border:none;
    /*color: rgba(0, 0, 0, 0);*/
}
.hide {
    display: none !important;
}
.hangle {
    font-family: 'Noto Sans KR', 'Roboto', sans-serif;
}
.hangle.wsp {
    white-space: initial;
}
.engnum {
    font-family: 'Roboto', 'Noto Sans KR', sans-serif;
}
 body {
    /* flex container */
    display: flex;
    /* etc */
    width: 100vw;
    height: 100vh;
    font-family: 'Roboto', 'Noto Sans KR', sans-serif;
}
select {
    background-color: transparent;
}
.Page {
    /* flex item */
    flex: auto;
    /* flex container */
    display: flex;
    flex-direction: column;
    /* etc */
    width: 100%;
    height: 100%;
    /* padding-top: 15px; */
}

.Page.not_pd{
    padding-top: 0;
}
/* EmptyData */
.EmptyData {
    /* flex item */
    display: none;
    flex: 1 0 auto;
    /* flex container */
    
    justify-content: center;
    align-items: center;
    /* etc */
}
.EmptyData.show{
    display: flex;
}
.EmptyData > .EmptyData-Item {
    /* flex item */
    flex: 1 0 auto;
    /* flex container */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* etc */
}
.EmptyData > .EmptyData-Item > .EmptyData-Item-Text {
    /* etc */
    padding-top: 10px;
    font-size: 16px;
    letter-spacing: -0.72px;
    line-height: 22px;
    color: #d4d1ca;
}
.EmptyData > .EmptyData-Item > .EmptyData-Item-Text .hangle {
    color: #d4d1ca;
    /* 20230612 lhj */
    display: block;
    width: max-content;
    text-align: center;
}
/* PageLogo */
.PageLogo {
    /* flex item */
    flex: 0 0 50px;
    /* flex container */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    /* etc */
    padding-top: 19px;
}
/* ToolBar */
.ToolBar {
    /* flex item */
    padding-top: 15px;
    flex: 0 0 68px;
    /* flex container */
    display: flex;
    justify-content: center;
    align-content: flex-start;
    /* etc */
    height: 68px;
    background-color: #fff;
    padding-left: 15px;
    padding-right: 15px;
}
.TabBar + .ToolBar{
    padding-top: 0px;
}
.ToolBar > div.flex-gap {
    /* flex item */
    flex: 0 0 5px;
    /* etc */
    width: 5px;
}
.ToolBar > .ToolBarLabel {
    /* flex item */
    flex: 1 0 auto;
    /* flex container */
    display: inline-flex;
    align-content: flex-start;
    /* etc */
    height: 38px;
    padding-top: 7px;
    padding-left: 15px;
}
/* ActionBar */
.ActionBar {
    /* flex item */
    flex: 0 0 50px;
    /* flex container */
    display: flex;
    justify-content: center;
    align-items: center;
    /* etc */
    height: 50px;
    background-color: #fff;
    padding-left: 15px;
    padding-right: 15px;
    font-weight: 500;
}
.ActionBar > .ActionBar-GoBack {
    /* flex item */
    flex: 0 0 26px;
    /* flex container */
    display: inline-flex;
    /* etc */
    width: 26px;
    cursor: pointer;
}
.ActionBar > .ActionBar-Title {
    /* flex item */
    flex: 0 1 auto;
    /* flex container */
    display: inline-flex;
    justify-content: center;
    align-items: center;
    /* etc */
    width: calc(100% - 52px);
}
.ActionBar > .ActionBar-Title > .ActionBar-Title-Text {
    /* etc */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ActionBar > .ActionBar-Title > .text span {
    /* etc */
    color: #39352b;
    font-weight: 500;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: -1.28px;
}
.ActionBar > .ActionBar-More {
    /* flex item */
    flex: 0 0 26px;
    /* flex container */
    display: inline-flex;
    /* etc */
    width: 26px;
}

/* TabBar */
.TabBar {
    /* flex item */
    flex: 0 0 55px;
    /* flex container */
    display: flex;
    /* etc */
    padding-left: 15px;
    padding-right: 15px;
    /* height: 45px; */
    background-color: #fff;
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.03);
    margin-bottom: 16px;
}
.TabBar > .TabBar-Item-List {
    /* flex item */
    flex: 1 1 auto;
    /* flex container */
    display: flex;
    /* etc */
    height: 100%;
}
.TabBar > .TabBar-Item-List > .TabBar-Item {
    /* flex item */
    flex: 1 1 auto;
    /* flex container */
    display: inline-flex;
    flex-direction: column;
    /* etc */
    height: 100%;
    cursor: pointer;
}
.TabBar > .TabBar-Item-List > .TabBar-Item > .TabBar-Item-Label {
     /* etc */
     width: 100%;
     height: calc(100% - 4px);
     text-align: center;

}

/* 2022-11-21 */
.TabBar > .TabBar-Item-List > .TabBar-Item > .TabBar-Item-Label > .TabBar-Item-Label-Text{
    position: relative;
    top: calc(50% - 12px);
}
/* 2022-11-21 end */

.TabBar > .TabBar-Item-List > .TabBar-Item > .TabBar-Item-Index {
     /* etc */
     width: 100%;
     height: 4px;
     border-radius: 2px;
}
.TabBar > .TabBar-Item-List > .TabBar-Item > .selected {
     /* etc */
     background-color: #ffae29;
}

@media screen and ( max-width : 360px ) {
    .ToolBar{
        flex: 0 0 auto;
        padding-bottom: 15px;
        height: auto;
        flex-wrap: wrap;
    }

    .SelectDistrict:nth-child(3) + .flex-gap{
        display: none;
    }
}



/* search keyword */
.SearchKeyword {
    /* flex item */
    flex: 1 0 122px;
    /* flex container */
    display: inline-flex;
    align-content: flex-start;
    /* etc */
    height: 38px;
    padding-left: 10px;
    padding-right: 9px;
    border: 1px solid #d4d1ca;
    border-radius: 5px;
}
.SearchKeyword > .SearchKeyword-Input {
    /* flex item */
    flex: 1 0 77px;
    /* flex container */
    display: inline-flex;
    /* etc */
    padding-top: 8px;
    padding-bottom: 8px;
}
.SearchKeyword > .SearchKeyword-Input > input {
    /* etc */
    padding: 0;
    border: none;
    width: 100%;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: -0.9px;
    color: #39352b;
    font-weight: 300;
    font-family: 'Noto Sans KR', 'Roboto', sans-serif;
}
.SearchKeyword > .SearchKeyword-Button {
    /* flex item */
    flex: 0 0 26px;
    /* flex container */
    display: inline-flex;
}

.SearchKeyword > .SearchKeyword-Button img {
    width: 100%;
}

@media screen and ( max-width : 360px ) {
    .SearchKeyword{
        flex-basis: 100%;
        margin-top: 10px;
        width: 100%;
    }
}

.Page ul{
    list-style-type: none;
}


/* select date */
.SelectDate {
    /* flex item */
    flex: 1 0 128px;
    /* flex container */
    display: inline-flex;
    align-content: flex-start;
    /* etc */
    height: 38px;
    padding-left: 12px;
    padding-right: 1px;
    border: 1px solid #d4d1ca;
    border-radius: 5px;
}
.SelectDate > .SelectDate-Input {
    /* flex item */
    flex: 1 0 78px;
    /* flex container */
    display: inline-flex;
    /* etc */
    padding-top: 8px;
    padding-bottom: 8px;
}
.SelectDate > .SelectDate-Button {
    /* flex item */
    flex: 0 0 36px;
    /* flex container */
    display: inline-flex;
    padding: 7px;
}
.SelectDate > .SelectDate-Button img {
    width: 100%;
}
.SelectDate > .SelectDate-Input > input {
    /* etc */
    padding: 0;
    border: none;
    width: 100%;
    font-size: 15px;
    line-height: 24px;
    color: #39352b;
    font-weight: 500;
    font-family: 'Roboto', 'Noto Sans KR', sans-serif;
}

/* select term */
.SelectTerm {
    /* flex item */
    flex: 1 0 128px;
    /* flex container */
    display: inline-flex;
    align-content: flex-start;
    /* etc */
    height: 38px;
    padding-left: 12px;
    padding-right: 10px;
    border: 1px solid #d4d1ca;
    border-radius: 5px;
}
.SelectTerm > .SelectTerm-Start-Input {
    /* flex item */
    flex: 1 0 78px;
    /* flex container */
    display: inline-flex;
    /* etc */
    padding-top: 8px;
    padding-bottom: 8px;
}
.SelectTerm > .SelectTerm-Start-Button {
    /* flex item */
    flex: 0 0 36px;
    /* flex container */
    display: inline-flex;
}
.SelectTerm > .SelectTerm-Start-Input > input {
    /* etc */
    padding: 0;
    border: none;
    width: 100%;
    font-size: 15px;
    line-height: 24px;
    color: #39352b;
    font-weight: 500;
    font-family: 'Roboto', 'Noto Sans KR', sans-serif;
}
.SelectTerm > .SelectTerm-Delim {
    /* flex item */
    flex: 0 0 auto;
    /* flex container */
    display: inline-flex;
    align-items: center;
    padding-right: 8px;
}
.SelectTerm > .SelectTerm-End-Input {
    /* flex item */
    flex: 1 0 78px;
    /* flex container */
    display: inline-flex;
    /* etc */
    padding-top: 8px;
    padding-bottom: 8px;
}
.SelectTerm > .SelectTerm-End-Button {
    /* flex item */
    flex: 0 0 36px;
    /* flex container */
    display: inline-flex;
}
.SelectTerm > .SelectTerm-End-Input > input {
    /* etc */
    padding: 0;
    border: none;
    width: 100%;
    font-size: 15px;
    line-height: 24px;
    color: #39352b;
    font-weight: 500;
    font-family: 'Roboto', 'Noto Sans KR', sans-serif;
}
.SelectTerm > .SelectTerm-Gap {
    /* flex item */
    flex: 0 0 37px;
    /* flex container */
    display: inline-flex;
    align-content: center;
}
.SelectTerm > .SelectTerm-Search-Button {
    /* flex item */
    flex: 0 0 26px;
    /* flex container */
    display: inline-flex;
}

.SelectTerm > .SelectTerm-Search-Button img{
    width: 100%;
}

.SelectTerm > .SelectTerm-Delim{
    padding: 0 8px;
}
.SelectTerm > .SelectTerm-Start-Button,
.SelectTerm > .SelectTerm-End-Button {
    /* flex item */
    flex: 0 0 20px;
}

.SelectTerm > .SelectTerm-Start-Button img,
.SelectTerm > .SelectTerm-End-Button img{
    width: 100%;
}

@media screen and ( max-width: 360px ) {
    .SelectTerm > .SelectTerm-Gap{
        flex: 0 0 auto;
        min-width: 7px;
    }
}



/* select year */
.SelectYear {
    /* flex item */
    flex: 1 0 70px;
    /* flex container */
    display: inline-flex;
    align-content: flex-start;
    /* etc */
    height: 38px;
    padding-top: 6px;
    padding-left: 10px;
    padding-right: 4px;
    border: 1px solid #d4d1ca;
    border-radius: 5px;
}
.SelectYear > .SelectYear-Select {
    /* etc */
    width: 100%;
}
.SelectYear > .SelectYear-Select > select {
    /* etc */
    border: none;
    width: 100%;
    color: #39352b;
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
    font-family: 'Roboto', 'Noto Sans KR', sans-serif;
    padding-right: 4px;
}

/* select month */
.SelectMonth {
    /* flex item */
    flex: 1 0 70px;
    /* flex container */
    display: inline-flex;
    align-content: flex-start;
    /* etc */
    height: 38px;
    padding-top: 6px;
    padding-left: 10px;
    padding-right: 4px;
    border: 1px solid #d4d1ca;
    border-radius: 5px;
}
.SelectMonth > .SelectMonth-Select {
    /* etc */
    width: 100%;
}
.SelectMonth > .SelectMonth-Select > select {
    /* etc */
    border: none;
    width: 100%;
    color: #39352b;
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
    font-family: 'Roboto', 'Noto Sans KR', sans-serif;
    padding-right: 4px;
}

/* select district */
.SelectDistrict {
    /* flex item */
    flex: 1 0 70px;
    /* flex container */
    display: inline-flex;
    align-content: flex-start;
    /* etc */
    height: 38px;
    padding-top: 6px;
    padding-left: 10px;
    padding-right: 4px;
    border: 1px solid #d4d1ca;
    border-radius: 5px;
}
.SelectDistrict > .SelectDistrict-Select {
    /* etc */
    width: 100%;
}
.SelectDistrict > .SelectDistrict-Select > select {
    /* etc */
    border: none;
    width: 100%;
    color: #39352b;
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
    font-family: 'Noto Sans KR', 'Roboto', sans-serif;
    padding-right: 4px;
}

/* TableHead */
.TableHead {
    /* flex item */
    flex: 0 0 auto;
    /* flex container */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: flex-start;
    /* etc */
    padding-left: 15px;
    padding-right: 15px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -1.2px;
    color: #39352b;
    font-weight: 500;
}
.TableHead > .TableHead-Row {
    /* flex item */
    flex: 0 0 42px;
    /* flex container */
    display: flex;
    justify-content: center;
    /* etc */
    background-color: #f9f9f9;
    border-top: 1px solid #39352b;
    border-bottom: 1px solid #d4d1ca;
    padding-left: 15px;
    padding-right: 15px;
}
.TableHead > .TableHead-Row:first-child {
    /* etc */
    border-top: 1px solid #39352b;
}
.TableHead > .TableHead-Row > .TableHead-Row-Cell {
    /* flex item */
    flex: 1 1 auto;
    /* flex container */
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    /* etc */
}

/* TableFoot */
.TableFoot {
    /* flex item */
    flex: 0 0 auto;
    /* flex container */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: flex-start;
    /* etc */
    padding-left: 15px;
    padding-right: 15px;
    font-size: 15px;
    line-height: 24px;
    color: #39352b;
}
.TableFoot > .TableFoot-Row {
    /* flex item */
    flex: 0 0 49px;
    /* flex container */
    display: flex;
    justify-content: center;
    align-content: flex-start;
    /* etc */
    padding-left: 15px;
    padding-right: 15px;
    border-top: 1px solid rgba(212, 209, 202, 0.3);
}
.TableFoot > .TableFoot-Row > .TableFoot-Row-Cell {
    /* flex item */
    flex: 1 1 auto;
    /* flex container */
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    /* etc */
    vertical-align: top;
    font-size: 15px;
    line-height: 24px;
    font-family: 'Noto Sans KR', sans-serif;
}
.TableFoot > .TableFoot-Row > .TableFoot-Row-Cell-Left {
    /* flex container */
    justify-content: flex-start;
    /* etc */
}
.TableFoot > .TableFoot-Row > .TableFoot-Row-Cell-Right {
    /* flex container */
    justify-content: flex-end;
    /* etc */
}
.TableFoot > .TableFoot-Row > .TableFoot-Row-Cell-Right img {
    max-width: 100%;
}

/* TableBody */
.TableBody {
    /* flex item */
    flex: 1 1 auto;
    /* flex container */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* etc */
    overflow-y: auto;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 15px;
    line-height: 24px;
    color: #39352b;
}
.TableBody > .TableBody-Row {
    /* flex item */
    flex: 0 0 41px;
    /* flex container */
    display: flex;
    justify-content: center;
    align-content: flex-start;
    /* etc */
    border-bottom: 1px solid rgba(212, 209, 202, 0.3);
    padding-left: 15px;
    padding-right: 15px;
}
.TableBody > .TableBody-Row:nth-child(2n) {
    /* etc */
    background-color: #fffcf8;
}
.TableBody > .TableBody-Row > .TableBody-Row-Cell {
    /* flex item */
    flex: 1 1 auto;
    /* flex container */
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}
.TableBody > .TableBody-Row.std_left > .TableBody-Row-Cell.row_02 {
    justify-content: space-evenly;
    padding-top: 4px;
    width: 100%;
}
.TableBody > .TableBody-Row > .TableBody-Row-Cell-Left {
    /* flex container */
    justify-content: flex-start;
    /* etc */
}
.TableBody > .TableBody-Row.std_left > .TableBody-Row-Cell-Left:nth-child(2){
    max-width: calc(100% - 80px);
}
.TableBody > .TableBody-Row > .TableBody-Row-Cell-Right {
    /* flex container */
    justify-content: flex-end;
    /* etc */
}
.TableBody > .TableBody-Row > .TableBody-Row-Cell > .TableBody-Row-Cell-MultiLine {
    /* etc */
}
.TableBody > .TableBody-Row > .TableBody-Row-Cell > .TableBody-Row-Cell-Text {
    /* etc */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.TableBody > .TableBody-Row > .TableBody-Row-Cell > .TableBody-Row-Cell-Graph {
    /* etc */
    width: 100%;
    align-self: flex-end;
    padding-bottom: 3px;
}
.TableBody > .TableBody-Row > .TableBody-Row-Cell > .TableBody-Row-Cell-Graph > .graph {
    /* etc */
    display: inline-block;
    background-color: #00b896;
    font-size: 1px;
    height: 10px;
}

/* etc */
.totalCounter {
    font-family: 'Roboto', 'Noto Sans KR', sans-serif;
    color: #ffae29;
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
}
.totalMoney {
    font-family: 'Roboto', 'Noto Sans KR', sans-serif;
    color: #00b896;
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
}
.kickup {
    display: inline-block;
    padding-bottom: 3px;
}

.select_detail{
    display: none;
    margin-bottom: 15px;
    padding: 10px 12px;
    background-color: #fff;
    border: 1px solid #586565;
    border-radius: 10px;
}

.select_detail *{
    font-size: 15px;
    color: #586565;
}

.select_detail ul, 
.select_detail ol, 
.select_detail li{
    list-style: none;
}

.allotment.active + .select_detail{
    display: block;
}

/* .select_detail li:not(:last-child){
    padding-bottom: 10px;
} */

/* 점검관리 평가 버튼 */
.YN.exPtN,
.YN.exPtX,
.YN.exPtY{
    text-align: center;
}

.YN.exPtN img,
.YN.exPtX img,
.YN.exPtY img{
    max-width: 100%;
}

.ask-box .camera{
    font-size: 0;
    line-height: 0;
}

.YN.exPtN.hide ~ .reason_wrap{
    display: none;
}

.exPt1 .innerYN{
    height: auto;
}

.reason_wrap{
    padding-bottom: 10px;
    /* border-radius: 8px;
    border: 1px solid #ddd; */
}

.reason_wrap h5{
    font-size: 16px;
    padding-bottom: 5px;
}

.reason_wrap textarea{
    resize: none;
    padding: 10px;
    width: 100%;
    min-height: 100px;
    font-family: 'Roboto', 'Noto Sans KR', sans-serif;
    color: #586565;
    border: 1px solid #ddd;
    border-radius: 8px;

}

.reason_wrap,
.reason_wrap *{
    word-wrap: break-word;
    word-break: break-all;
}

/* 점검관리 탭 버튼 */
.PageHList-Item-Footer > .item-button:not(:nth-last-of-type(1)),
.PageVList-Item-Footer > .item-button:not(:nth-last-of-type(1)){
    margin-right: 10px;
    font-size: 0;
    line-height: 0;
}

.PageVList-Item-Footer > .item-button.btn_text{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    min-width: 63px;
    height: 31px;
    background-color: #7d7971;
    border-radius: 16px;
}

.PageVList-Item-Footer > .item-button.btn_text .text{
    display: block;
    padding-bottom: 2px;
    text-align: center;
    font-size: 14.5px;
    color: #fff;
}

@media screen and ( max-width : 360px ) {
    .PageHList-Item-Footer > .item-button img,
    .PageVList-Item-Footer > .item-button img{
        width: 55px;
    }

    .PageHList-Item-Footer > .item-button:not(:nth-last-of-type(1)){
        margin-right: 5px;
    }

    .PageVList-Item-Footer > .item-button.btn_text{
        flex-shrink: 0;
        padding: 0 10px;
        min-width: 55px;
        height: 27px;
    }
    
    .PageVList-Item-Footer > .item-button.btn_text .text{
        line-height: initial;
        font-size: 12.5px;
    }
}




/* loading animation */
.display-none{
    display: none;
}
.wrap-loading{
    position: absolute;
    top: calc(50% - 20px);
    left: calc(50% - 20px);
}
.wrap-loading .loading{
    position: relative;
    width: 40px;
    height: 40px;
}

.wrap-loading .loading:after{
    content: '';
    display: block;
    opacity: 0;
    width: 100%;
    height: 100%;
    border: 4px solid #ffae29;
    border-radius: 50%;
    border-color: #ffae29 transparent #ffae29 transparent;
    animation: loading 1.5s .3s infinite;
}

@keyframes loading {
    from{
        opacity: 1;
        transform: rotate(0deg);
    }

    to{
        opacity: 1;
        transform: rotate(360deg);
    }
}