/* CSS Document */
@font-face {
    font-family: 'Pretendard GOV';
    font-weight: 700;
    font-display: swap;
    src: url(fonts/PretendardGOV/PretendardGOV-Bold.subset.woff2) format('woff2')
}

@font-face {
    font-family: 'Pretendard GOV';
    font-weight: 600;
    font-display: swap;
    src: url(fonts/PretendardGOV/PretendardGOV-SemiBold.subset.woff2) format('woff2')
}

@font-face {
    font-family: 'Pretendard GOV';
    font-weight: 500;
    font-display: swap;
    src: url(fonts/PretendardGOV/PretendardGOV-Medium.subset.woff2) format('woff2')
}

@font-face {
    font-family: 'Pretendard GOV';
    font-weight: 400;
    font-display: swap;
    src: url(fonts/PretendardGOV/PretendardGOV-Regular.subset.woff2) format('woff2')
}

html * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Pretendard GOV','Malgun Gothic', Geneva, Verdana, sans-serif;
}

html, body, div, main, article, aside, header, footer, nav, div, p, ul, li, ol, dd, dt, input, text, textarea, select, h1, h2, h3, h4, h5 {
    margin: 0;
    padding: 0;
    border: 0;   
}

ul, li, ol, dd, dt {
    text-decoration: none;
    list-style: none;
}

a {
    text-decoration: none;
}

input, textarea, button, select {
    outline-style: none;
    box-shadow: none;
    border-color: transparent;
}
/*웹접근성 스크린리더용 요소*/
.readonly-wa {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    clip: rect(1px,1px,1px,1px);
    clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
    padding: 0;
    margin: -1px;
    border: 0;
    overflow: hidden;
}
/*Toggle 사용을 위한 숨김 체크*/
.hiddenCheck {
    display: none;
}
/*스크롤*/

body * {
    color: #333;
}

    body *::-webkit-scrollbar {
        width: 7px;
        height: 7px;
    }

    body *::-webkit-scrollbar-track {
        background: transparent;
    }

    body *::-webkit-scrollbar-thumb {
        background: #d9d9d9;
    }

        body *::-webkit-scrollbar-thumb:hover {
            background: #c2c2c2;
        }

        body *::-webkit-scrollbar-thumb:active {
            background: #cecece;
        }

    body *::-webkit-scrollbar-corner {
        background: transparent;
    }

    body *::-webkit-scrollbar-button {
        background: transparent;
    }
/*이미지 사용*/
i {
    display: inline-block;
    background-repeat: no-repeat;
}

.ProcessTree i {
    background-image: url('../images/iconProcessTree.svg');
    background-size: 117px 127px;
}

header i {
    background-image: url('../images/iconHeader.svg?EDIT240117=01');    
    background-repeat: no-repeat;
}

.processArea .toolbarArea i {
    background-image: url('../images/iconToolbar.svg');
}
/*
    .LoginInputArea > ul > li.input:before{
    background-image: url('../images/iconLogin.png');}
*/
/*Color*/
.c00 {
    background-color: #44c9cc
}

.c01 {
    background-color: #379800
}

.c02 {
    background-color: #65db00
}

.c03 {
    background-color: #cc76f0
}

.c04 {
    background-color: #f8da00
}

.c05 {
    background-color: #f10057
}
/*icon*/
.iconMsg {
    position: relative;
    width: 0px;
    height: 0px;
    border-width: 10px 10px 17px;
    border-style: solid;
    border-color: transparent transparent orangered;
}

    .iconMsg:before {
        content: 'i';
        position: absolute;
        left: -2px;
        top: 2px;
        color: #fff;
        font-size: 12px;
        font-weight: bold;
    }
/*공통 컨트롤 스타일*/

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    height: 40px;
    color: #fff;
    border-radius: 5px;
    background-color: #44c9cc;
}

    .btn.Cancel {
        background-color: #a7b2c4;
    }

    .btn:hover {
        cursor: pointer;
        box-shadow: rgba(0,0,0,0.1) 3px 5px 5px;
    }

    .btn + .btn {
        margin-left: 10px;
    }

    .btn.Excel {
        border: 1px solid #1b7346;
        color: #1b7346;
        background-color: #fff;
    }

        .btn.Excel:before {
            content: '';
            display: inline-block;
            width: 16px;
            height: 15px;
            margin-right: 5px;
            background-image: url('../images/icon.svg');
            background-position: -4px -234px;
        }

.checkboxControl {
    display: inline-flex;
    align-items: center;
}

    .checkboxControl > input[type=checkbox] {
        display: none;
    }

        .checkboxControl > input[type=checkbox] + label {
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            position: relative;
            font-size: 12px;
        }

            .checkboxControl > input[type=checkbox] + label > span {
                position: relative;
                flex-shrink:0;
                width: 13px;
                height: 13px;
                margin-right: 7px;
                border: 1px solid #454e5f;
                border-radius: 2px;
                background-color: #fff;
            }

        .checkboxControl > input[type=checkbox]:checked + label > span:after {
            content: '';
            position: absolute;
            left: 2px;
            top: -1px;
            width: 11px;
            height: 5px;
            border: solid #44c9cd;
            border-width: 0 0 2px 2px;
            transform: rotate(-45deg);
        }

        .checkboxControl > input[type=checkbox] + label:active > span {
            transform: scale(1.2);
        }

.radioControl {
    display: inline-flex;
    align-items: center;
}

    .radioControl > input[type=radio] {
        display: none;
    }

        .radioControl > input[type=radio] + label {
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            position: relative;
            font-size: 12px;
        }

            .radioControl > input[type=radio] + label > span {
                position: relative;
                display: inline-flex;
                justify-content: center;
                align-items: center;
                width: 16px;
                height: 16px;
                margin-right: 7px;
                border: 1px solid #454e5f;
                border-radius: 50%;
                background-color: #fff;
            }

        .radioControl > input[type=radio]:checked + label > span:after {
            content: '';
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #44c9cd;
        }

        .radioControl > input[type=radio] + label:active > span {
            transform: scale(1.2);
        }

.splitor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .splitor > span {
        position: relative;
    }

        .splitor > span,
        .splitor > span:before,
        .splitor > span:after {
            display: inline-block;
            width: 3px;
            height: 3px;
            background-color: #ccc;
            border-radius: 50%;
        }

            .splitor > span:before,
            .splitor > span:after {
                content: '';
                position: absolute;
                top: 0;
            }

            .splitor > span:before {
                left: -5px;
            }

            .splitor > span:after {
                left: 5px;
            }

    .splitor:hover {
        cursor: row-resize;
        background-color: #454e5f;
    }
/*등록 UI*/
.inputGroup dt {
    position: relative;
    font-size: 13px;
}

.inputGroup > dl.Ess dt {
    padding-left: 15px;
}

    .inputGroup > dl.Ess dt:before {
        content: '';
        position: absolute;
        left: 3px;
        top: 1px;
        width: 4px;
        height: 9px;
        transform: rotate(45deg);
        border-right: 2px solid #fb792a;
        border-bottom: 2px solid #fb792a;
    }

.inputGroup dd {
    position: relative;
}

.inputGroup input,
.inputGroup select,
.inputGroup textarea {
    width: 100%;
    height: 35px;
    font-size: 14px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.inputGroup inputp[type=checkbox] {
    width: 30px;
    height: 30px;
}

.inputGroup input:focus,
.inputGroup textarea:focus {
    color: #44c9cd;
    font-weight: bold;
    border-bottom: 2px solid #44c9cd;
}

.btnCodeHelp {
    position: absolute;
    right: 0;
    top: calc(50% - 13px);
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

    .btnCodeHelp:hover {
        cursor: pointer;
        background-color: #dce1e4;
    }

        .btnCodeHelp:hover:before {
            animation: aniCodehlpeRotate .3s infinite;
        }

@keyframes aniCodehlpeRotate {
    0% {
        transform: scale(1)
    }

    70% {
        transform: scale(1.2)
    }

    100% {
        transform: scale(1)
    }
}

.btnCodeHelp:before,
.btnCodeHelp:after {
    content: '';
    position: absolute;
}

.btnCodeHelp:before {
    top: 6px;
    left: 6px;
    width: 11px;
    height: 11px;
    border: 2px solid #3f4b5a;
    border-radius: 50%;
}

.btnCodeHelp:after {
    top: 17px;
    left: 20px;
    width: 0px;
    height: 5px;
    border: 1px solid #3f4b5a;
    transform: rotate(-45deg);
}


.inputGroup > dl.Dis input {
    cursor: not-allowed;
    background-color: #dce1e4 !important;
}

    .inputGroup > dl.Dis input:focus {
        border-bottom: 1px solid #ccc;
    }
/*그룹박스*/
.groupBox {
    position: relative;
}

    .groupBox > .txtTitle {
        position: relative;
        display: flex;
        align-items: center;
        height: 30px;
        padding: 0 10px;
        font-size: 13px;
        border-top: 1px solid #454e5f;
    }

        .groupBox > .txtTitle:hover {
            cursor: pointer;
            background-color: #dce1e4;
        }

        .groupBox > .txtTitle > i {
            position: relative;
            display: inline-block;
            width: 20px;
            height: 20px;
            background-image: none;
        }

            .groupBox > .txtTitle > i:before,
            .groupBox > .txtTitle > i:after {
                content: '';
                position: absolute;
                top: 30%;
                left: 50%;
                width: 2px;
                height: 8px;
                background-color: #454e5f;
            }

            .groupBox > .txtTitle > i:before {
                transform: rotate(-45deg);
                margin-left: -4px;
            }

            .groupBox > .txtTitle > i:after {
                transform: rotate(45deg);
                margin-left: 1px;
            }

    .groupBox.Close > .txtTitle > i:before {
        transform: rotate(45deg);
    }

    .groupBox.Close > .txtTitle > i:after {
        transform: rotate(-45deg);
    }

    .groupBox.Close > ul {
        display: none;
    }
/*파일업로드*/
.FileUpLoad {
    position: relative;
}

    .FileUpLoad .fileList {
        display: inline-block;
        width: 100%;
        min-height: 35px;
        padding: 4px 20px 2px 0;
        border-bottom: 1px solid #dce1e4;
    }

        .FileUpLoad .fileList > .item {
            display: inline-flex;
            align-items: center;
            padding: 2px 2px 2px 8px;
            margin-bottom: 4px;
            position: relative;
            font-size: 12px;
            color: #0f1f31;
            border: 1px solid #0f1f31;
            border-radius: 15px;
        }

            .FileUpLoad .fileList > .item:hover {
                cursor: pointer;
                color: #fff;
                background-color: #0f1f31;
            }

                .FileUpLoad .fileList > .item:hover > .btnDel:before,
                .FileUpLoad .fileList > .item:hover > .btnDel:after {
                    background-color: #fff;
                }

            .FileUpLoad .fileList > .item > .btnDel {
                display: inline-block;
                position: relative;
                margin: 0 3px;
                width: 15px;
                height: 15px;
                border-radius: 50%;
            }

                .FileUpLoad .fileList > .item > .btnDel:before,
                .FileUpLoad .fileList > .item > .btnDel:after {
                    content: '';
                    position: absolute;
                    left: 7px;
                    top: 3px;
                    width: 1px;
                    height: 10px;
                    background-color: #454e5f;
                }

                .FileUpLoad .fileList > .item > .btnDel:before {
                    transform: rotate(45deg);
                }

                .FileUpLoad .fileList > .item > .btnDel:after {
                    transform: rotate(-45deg);
                }

    .FileUpLoad > .btnFileAdd {
        position: absolute;
        right: 5px;
        bottom: 5px;
        width: 20px;
        height: 20px;
        border-radius: 50%;
    }

        .FileUpLoad > .btnFileAdd:hover {
            cursor: pointer;
            background-color: #eef2f4;
            transform: scale(1.2);
        }

        .FileUpLoad > .btnFileAdd:before,
        .FileUpLoad > .btnFileAdd:after {
            content: '';
            position: absolute;
            background-color: #454e5f;
        }

        .FileUpLoad > .btnFileAdd:before {
            top: 5px;
            left: 10px;
            width: 2px;
            height: 12px;
        }

        .FileUpLoad > .btnFileAdd:after {
            top: 10px;
            left: 5px;
            width: 12px;
            height: 2px;
        }
/*멀티코드헬프*/
.multiCodeHelpList {
    display: inline-block;
    width: 100%;
    height: 100%;
    min-height: 35px;
    padding: 4px 20px 2px 0;
    border-bottom: 1px solid #dce1e4;
}

    .multiCodeHelpList > .item {
        display: inline-flex;
        align-items: center;
        padding: 2px 2px 2px 8px;
        margin-bottom: 4px;
        position: relative;
        font-size: 12px;
        color: #5f989a;
        border: 1px solid #5f989a;
        border-radius: 15px;
    }

        .multiCodeHelpList > .item:hover {
            cursor: pointer;
            color: #fff;
            background-color: #5f989a;
        }

            .multiCodeHelpList > .item:hover > .btnDel:before,
            .multiCodeHelpList > .item:hover > .btnDel:after {
                background-color: #fff;
            }

        .multiCodeHelpList > .item > .btnDel {
            display: inline-block;
            position: relative;
            margin: 0 3px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
        }

            .multiCodeHelpList > .item > .btnDel:before,
            .multiCodeHelpList > .item > .btnDel:after {
                content: '';
                position: absolute;
                left: 7px;
                top: 3px;
                width: 1px;
                height: 10px;
                background-color: #5f989a;
            }

            .multiCodeHelpList > .item > .btnDel:before {
                transform: rotate(45deg);
            }

            .multiCodeHelpList > .item > .btnDel:after {
                transform: rotate(-45deg);
            }

.multicodeHelpAdd {
    position: absolute;
    right: 5px;
    bottom: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

    .multicodeHelpAdd:hover {
        cursor: pointer;
        background-color: #eef2f4;
        transform: scale(1.2);
    }

    .multicodeHelpAdd:before,
    .multicodeHelpAdd:after {
        content: '';
        position: absolute;
        background-color: #454e5f;
    }

    .multicodeHelpAdd:before {
        top: 5px;
        left: 10px;
        width: 2px;
        height: 12px;
    }

    .multicodeHelpAdd:after {
        top: 10px;
        left: 5px;
        width: 12px;
        height: 2px;
    }
/*팝업*/
.popupbg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.5);
    z-index: 9;
}

.popup {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 10px 30px;
    box-shadow: rgba(0,0,0,0.3) 0px 0px 10px;
    background-color: #fff;
    z-index: 3;
}

    .popup.flexDirectionVertical > .contentsArea {
        flex-direction: column;
    }

    .popup .btnClose {
        position: absolute;
        right: 10px;
        top: 10px;
        width: 30px;
        height: 30px;
        border-radius: 50%;
    }

        .popup .btnClose:hover {
            cursor: pointer;
            background-color: #d3d8e1;
            transform: rotate(180deg);
        }

        .popup .btnClose:active {
            transform: rotate(0deg);
        }

        .popup .btnClose:before,
        .popup .btnClose:after {
            content: '';
            position: absolute;
            top: 8px;
            left: 14px;
            width: 2px;
            height: 15px;
            background-color: #000;
        }

        .popup .btnClose:before {
            transform: rotate(45deg);
        }

        .popup .btnClose:after {
            transform: rotate(-45deg);
        }

    .popup > h2.txtTitle {
        height: 50px;
        width: 100%;
        display: flex;
        align-items: center;
        font-size: 16px;
    }

    .popup > .contentsArea {
        display: flex;
        flex-direction: row; /*요소비교에서 halfContents 좌우로 나오게 하기 위해 변경 */
        height: calc(100% - 50px);
        width: 100%;
    }

        .popup > .contentsArea > .queryArea {
            position: relative;
            height: 40px;
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

            .popup > .contentsArea > .queryArea:before,
            .popup > .contentsArea > .queryArea:after {
                content: '';
                position: absolute;
            }

            .popup > .contentsArea > .queryArea:before {
                left: 5px;
                top: 10px;
                width: 15px;
                height: 15px;
                border: 1px solid #454e5f;
                border-radius: 50%;
            }

            .popup > .contentsArea > .queryArea:after {
                left: 22px;
                top: 23px;
                width: 1px;
                height: 7px;
                background-color: #454e5f;
                transform: rotate(-45deg);
            }

            .popup > .contentsArea > .queryArea > input[type=text] {
                width: 100%;
                height: 100%;
                padding-left: 40px;
                font-size: 16px;
                color: #454e5f;
                border: 0;
                border-bottom: 1px solid #454e5f;
                background-color: transparent;
            }

        .popup > .contentsArea > .inputGroup {
            width: 100%;
            display: flex;
            flex-wrap: wrap;
        }

            .popup > .contentsArea > .inputGroup > dl {
                width: 100%;
                height: 50px;
                margin: 0 0 16px 0;
            }

        .popup > .contentsArea input[type=text]:focus,
        .popup > .contentsArea textarea:focus {
            color: #44c9cd;
            font-weight: bold;
            border-bottom: 2px solid #44c9cd;
        }

        .popup > .contentsArea > .queryArea > button {
            display: inline-block;
            height: 100%;
            min-width: 80px;
            padding: 0 10px;
            color: #fff;
            font-size: 16px;
            background-color: #454e5f;
        }

            .popup > .contentsArea > .queryArea > button:hover {
                cursor: pointer;
                background-color: #44c9cd;
            }

        .popup > .contentsArea > .scrollArea {
            height: 100%;
            overflow-y: auto;
            border-bottom: 1px solid #E6E4E5;
        }

        .popup > .contentsArea > .sectionHalf {
            height: 100%;
            width: 50%;
            border-left: 1px solid #E6E4E5;
            border-bottom: 1px solid #E6E4E5;
        }

            .popup > .contentsArea > .sectionHalf:first-child {
                border-left: 0px;
            }

        .popup > .contentsArea > .section {
            height: 100%;
            width: 100%;
            border-left: 1px solid #E6E4E5;
            border-bottom: 1px solid #E6E4E5;
        }

            .popup > .contentsArea > .section:first-child {
                border-left: 0px;
            }

        .popup > .contentsArea > .queryResultArea {
            display: flex;
            justify-content: center;
            align-items: center;
            height: calc(100% - 50px);
            border-bottom: 1px solid #E6E4E5;
        }

            .popup > .contentsArea > .queryResultArea > .txtMessage {
                font-size: 16px;
                text-align: center;
                color: #454E5F;
            }

                .popup > .contentsArea > .queryResultArea > .txtMessage > .txtKeyword {
                    color: #44c9cd;
                }

    .popup .btnArea {
        display: flex;
        flex-shrink: 0;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 50px;
    }

    .popup > .contentsArea > .inputArea {
        width: 100%;
        height: 100%;
    }
    .popup > .contentsArea dl{
        width:100%;
    }
        .popup > .contentsArea dl >dt{
            padding:8px 0;
            font-size:12px;
        }
        .popup > .contentsArea .inputArea > input[type=text],
        .popup > .contentsArea .inputArea > input[type=password],
        .popup > .contentsArea .inputArea > textarea {
            width: 100%;
            font-size: 16px;
            min-height: 40px;
            color: #454e5f;
            border: 0;
            border-bottom: 1px solid #454e5f;
        }

    .popup .btnArea > button {
        height: 30px;
        /* margin: 0 8px; */
    }

        .popup .btnArea > button + button {
            margin-left: 10px;
        }

        .popup .btnArea > button.btnPoint {
            color: #fff;
            background-color: #0f1f31;
        }

.loadingBg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: none;
    /*display:flex;*/
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.7);
    z-index: 9;
}

.loading {
    display: inline-block;
}

    .loading > p {
        color: #fff;
        padding-bottom: 8px;
    }

    .loading i {
        width: 12px;
        height: 12px;
        margin-right: 8px;
        display: inline-block;
        border-radius: 50%;
        background: #f9b544;
        -webkit-animation: animIn 1s ease-in-out 0s infinite;
        animation: animIn 1s ease-in-out 0s infinite;
    }

        .loading i:nth-child(1) {
            -webkit-animation-delay: 0s;
            animation-delay: 0s;
        }

        .loading i:nth-child(2) {
            -webkit-animation-delay: 0.15s;
            animation-delay: 0.15s;
        }

        .loading i:nth-child(3) {
            -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
        }

        .loading i:nth-child(4) {
            -webkit-animation-delay: 0.45s;
            animation-delay: 0.45s;
        }

@keyframes animIn {
    0% {
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(100px);
        transform: translateX(100px);
        opacity: 0;
    }
}

@keyframes loading-ani1 {
    100% {
        transform: translate(40px);
        opacity: 0;
    }
}

@keyframes loading-ani2 {
    100% {
        transform: translate(20px);
        opacity: 1;
    }
}

@keyframes loading-ani3 {
    100% {
        transform: translate(20px);
    }
}

.messageBg {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.1);
    z-index: 21; /* 에디터 index 보다 위에 보여야 함 */
}

    .messageBg > .messageArea {
        position: relative;
        display: inline-block;
        min-width: 250px;
        max-width: 600px;
        padding: 15px 30px;
        background-color: #fff;
        box-shadow: rgba(0,0,0,0.2) 0 0 10px;
        text-align: center;
    }

        .messageBg > .messageArea i.icon {
            border: 5px solid rgba(255,255,255,0.2);
            display: inline-block;
            position: relative;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #5381ff;
        }

            .messageBg > .messageArea i.icon:before,
            .messageBg > .messageArea i.icon:after {
                content: "";
                position: absolute;
                top: 9px;
                left: calc(50% - 2px);
                width: 4px;
                height: 30px;
                border-radius: 2px;
                background-color: #fff;
            }

        .messageBg > .messageArea .txtTitle {
            padding-top: 5px;
        }

        .messageBg > .messageArea .txtDescription {
            display: none;
            padding-top: 5px;
            font-size: 12px;
            color: #666;
        }

        .messageBg > .messageArea .btnArea {
            display: none;
            width: 100%;
            padding-top: 20px;
        }

            .messageBg > .messageArea .btnArea > button {
                display: inline-block;
                padding: 5px 15px;
                color: #fff;
                font-size: 12px;
                border-radius: 2px;
                border: 1px solid #454e5f;
                background-color: #454e5f;
            }

                .messageBg > .messageArea .btnArea > button:hover {
                    cursor: pointer;
                    color: #454e5f;
                    background-color: #fff;
                }

                .messageBg > .messageArea .btnArea > button + button {
                    margin-left: 5px;
                }
    /*메세지 유형별 디자인*/
    /*1. 정보*/
    .messageBg.Info > .messageArea i.icon {
        background-color: #5381ff;
    }

        .messageBg.Info > .messageArea i.icon:before {
            height: 5px;
        }

        .messageBg.Info > .messageArea i.icon:after {
            top: 18px;
            height: 14px;
        }

    .messageBg.Info > .messageArea .txtTitle {
        color: #5381ff;
    }
    /*2. 오류*/
    .messageBg.Error > .messageArea i.icon {
        background-color: #f25f7e;
    }

        .messageBg.Error > .messageArea i.icon:before {
            top: 5px;
            transform: rotate(-45deg);
        }

        .messageBg.Error > .messageArea i.icon:after {
            top: 5px;
            transform: rotate(45deg);
        }

    .messageBg.Error > .messageArea .txtTitle {
        color: #f25f7e;
    }
    /*3. 경고*/
    .messageBg.Alert > .messageArea i.icon {
        background-color: #f9b544;
    }

        .messageBg.Alert > .messageArea i.icon:before {
            height: 14px;
        }

        .messageBg.Alert > .messageArea i.icon:after {
            top: 28px;
            height: 5px;
        }

    .messageBg.Alert > .messageArea .txtTitle {
        color: #f9b544;
    }
    /*4. 성공*/
    .messageBg.Success > .messageArea i.icon {
        background-color: #12bd12;
    }

        .messageBg.Success > .messageArea i.icon:before {
            left: 13px;
            top: 17px;
            height: 10px;
            transform: rotate(-45deg);
        }

        .messageBg.Success > .messageArea i.icon:after {
            left: 22px;
            top: 10px;
            height: 20px;
            transform: rotate(45deg);
        }

    .messageBg.Success > .messageArea .txtTitle {
        color: #12bd12;
    }

.messageTextBg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    /*background-color:rgba(255,244,244,0.7);*/
}

    .messageTextBg > .messageArea {
        text-align: center;
    }

        .messageTextBg > .messageArea > .icon {
            display: inline-block;
            width: 50px;
            height: 60px;
            background-repeat: no-repeat;
            background-image: url('../images/imgNotConnected.svg');
            background-size: 100%;
        }

        .messageTextBg > .messageArea > .txtMessage,
        .messageTextBg > .messageArea > .txtDescription {
            font-size: 13px;
        }
/*Message-dlg*/
.messageBg.Dlg {
    background-color: rgba(0,0,0,0.5);
}

    .messageBg.Dlg > .messageArea .btnArea {
        display: block;
    }

    .messageBg.Dlg > .messageArea {
        padding: 30px 30px 20px 30px;
        animation: aniDlg 0.5s ease-out 1;
    }

        .messageBg.Dlg > .messageArea > .txtDescription {
            display: block;
        }

@keyframes aniDlg {
    50% {
        transform: translateY(-30px);
    }
}
/*Message-Toast*/
.messageBg.Toast .messageArea {
    animation: aniToast 3s ease-out 1 forwards;
}

@keyframes aniToast {
    15% {
        transform: translateY(-30px);
    }

    85% {
        opacity: 1;
        transform: translateY(-30px);
    }

    100% {
        opacity: 0;
        transform: translateY(0px);
    }
}

.messageBg.Toast > .messageArea .txtTitle {
    font-size: 14px;
}

/*Process 개발 상태값*/
.processStatus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    padding: 4px 0;
    font-size: 12px;
    font-weight: 600;
    border-radius: 12px;
}

    .processStatus.Design {
        color: #1CC2AC !important;
        background: rgba(28, 194, 172, 0.09);
    }

    .processStatus.Packaging {
        color: #5574F7 !important;
        background: rgba(85, 116, 247, 0.09);
    }

    .processStatus.Test {
        color: #EE6723 !important;
        background: rgba(238, 103, 35, 0.09);
    }

    .processStatus.IO {
        color: #7424A3 !important;
        background: rgba(116, 36, 163, 0.09);
    }

    .processStatus.Complete {
        color: #6C717D !important;
        border: 1px solid #6C717D !important;
    }

/*Message Empty*/
.emptyData {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .emptyData section {
        text-align: center;
    }

        .emptyData section > i {
            width: 90px;
            height: 71px;
            background-image: url('../images/imgProAs.svg');
            background-size: 90px 70px;
            background-repeat: no-repeat;
            background-position: center;
        }

        .emptyData section > .txtMessage {
            font-size: 13px;
            color: #2D3B4B;
        }
/*에러메세지*/
.errorArea {
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #f9f9f9;
}

    .errorArea > .errorWrap {
        text-align: center;
    }

        .errorArea > .errorWrap > .img {
            display: inline-block;
            width: 102px;
            height: 73px;
            background-image: url('../images/imgSessionEnd.svg');
        }

        .errorArea > .errorWrap > .txtMessageTitle {
            font-size: 30px;
        }

        .errorArea > .errorWrap > .txtMessageDescription {
            margin-bottom: 20px;
            font-size: 16px;
            opacity: .7;
        }

/*이벤트 전용 레이아웃*/
.onlyEvent {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 8;
    opacity: .05
}
