﻿/*============================================================================ */

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

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;
    font-size: 100%;
    font: inherit;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

html {
    height: 100%;
    background: #f5f6fa;
}

body {
    height: 100%;
    line-height: 1;
    font-family: Geneva,"Malgun Gothic", 'Segoe UI', Arial, Verdana, sans-serif;
    font-weight: normal;
    color: #222f3e;
    letter-spacing: -0.4px;
}

ol, ul, li {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a:link {
    color: inherit;
    text-decoration: none;
}

a:focus {
}

a:active, a:hover {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
    color: inherit;
}

button:hover,
a {
    cursor: pointer;
}

* { /* Scrollbar : ie */
    scrollbar-arrow-color: #979ea8;
    scrollbar-3dlight-color: #dcdde1;
    scrollbar-darkshadow-color: #dcdde1;
    scrollbar-face-color: #dfe2e9;
    scrollbar-shadow-color: #f5f6fa;
    scrollbar-track-color: #f5f6fa;
}

/* Chrome, Safari용 스크롤 바 */
/*::-webkit-scrollbar {width: 10px; height: 10px; border: 3px solid transparent; }
::-webkit-scrollbar-button:start:decrement, ::-webkit-scrollbar-button:end:increment {display: block; height: 0px; background: url('./images/bg.png') transparent}
::-webkit-scrollbar-track {background: transparent; -webkit-border-radius: 0px; border-radius:0px; }
::-webkit-scrollbar-thumb {height: 50px; width: 50px; background: #dadce0; -webkit-border-radius: 0px; border-radius: 0px; border:1px solid transparent}*/

h4 {
    font-size: 18px;
}

h5 {
    font-size: 13px;
}

textarea {
    resize: none;
}


/*============================================================================
[&5] UI Modules >> [&5-3] Dropdown */

.fxg-select select { /* Reset Select */
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    outline: 0;
    box-shadow: none;
    border: 0 !important;
    background: #f3f5f7;
    background-image: none;
}

.fxg-select { /* Custom Select */
    position: relative;
    display: block;
    width: 12.4em;
    padding: 4px 0;
    background: #f3f5f7;
    border: 1px solid #ced0da;
    overflow: hidden;
    border-radius: 2px;
}

    .fxg-select select {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0 0 0 .5em;
        color: #222f3e;
        cursor: pointer;
        background-image: linear-gradient(#f3f5f7, #edf0f3);
    }

        .fxg-select select::-ms-expand {
            display: none;
        }

    .fxg-select::after { /* Arrow */
        content: '\25BC';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        line-height: 2;
        padding: 4px 1em;
        font-size: 10px;
        background-image: linear-gradient(#f3f5f7, #edf0f3);
        pointer-events: none;
    }

    .fxg-select:hover::after,
    .fxg-select select:hover,
    .fxg-select:hover { /* Transition */
    }

    .fxg-select::after {
        -webkit-transition: .25s all ease;
        -o-transition: .25s all ease;
        transition: .25s all ease;
    }

/*============================================================================*/

[class*='fxg-box'] {
    background: #fff;
    box-sizing: content-box;
    position: relative;
    /* height: 700px; */
    border-radius: 4px;
    border: 1px solid #E6E9ED;
}

    [class*='fxg-box'] .box-header {
        min-height: 60px;
        line-height: 55px;
        border-bottom: 1px solid #ebedf2;
        padding: 0 15px;
    }

        [class*='fxg-box'] .box-header h5 {
            display: inline-block;
            font-size: 14px;
            font-weight: bold;
        }

    [class*='fxg-box'] .box-content {
        padding: 15px 0;
    }

    [class*='fxg-box'] .box-bottom {
        /* min-height: 60px; */
        /* line-height: 55px; */
        padding: 0 15px 15px 15px;
    }

/*============================================================================
[&4] UI Elements >> [&4-6] Form */

input {
    background-color: #fff;
    background-image: none;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

    input:read-only {
        border: 1px solid white;
        color: black;
    }

    input:focus {
        outline: none;
        border: 1px solid #00b9ef;
    }

table input[type=text],
table input[type=datetime],
table textarea {
    width: 100%;
}

textarea {
    border: 1px solid #acb2b6;
}

.k-datepicker {
    width: 110px !important;
}

ul.tbl-filter,
ul.tbl-filter li {
    display: inline-block;
    line-height: 39px;
}

    ul.tbl-filter input,
    ul.tbl-filter .k-dropdown-wrap {
        border-color: #dadce0;
    }

    ul.tbl-filter li {
        margin-right: 3px;
    }

        ul.tbl-filter li:last-child {
            margin-right: 0;
        }

    ul.tbl-filter .k-dropdown {
        display: inline-block; /* for ie9 */
    }

    ul.tbl-filter li div.tf-filter {
        display: inline-block;
        position: relative;
        height: 32px;
        line-height: normal;
        border: 1px solid #dadce0;
        padding-left: 10px;
    }

        ul.tbl-filter li div.tf-filter label {
            font-size: 12px;
        }

            ul.tbl-filter li div.tf-filter label:after {
                content: ':';
                margin-left: 5px;
                margin-right: -5px;
            }

        ul.tbl-filter li div.tf-filter input[type=text] {
            border: none;
            height: 100%;
        }

div.tf-filter:hover {
    border-color: #00b9ef !important;
}

.fxg-input-unit {
    width: calc(100% - 24px) !important;
    margin-right: 4px;
}

.w-p-100 {
    width: 100% !important;
}

/*============================================================================
[&4] UI Elements >> [&4-2] Buttons */

.fxg-btn,
[class*='fxg-btn-'] {
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 7px 12px;
    color: #00b9ef;
    transition: all .15s ease-in-out;
    border: 1px solid #dadce0;
    cursor: pointer;
    opacity: 1;
    line-height: normal;
    background: #fff;
}

    .fxg-btn-sm:hover,
    .fxg-btn:hover {
        border-color: #00b9ef;
        color: #00b9ef;
        text-decoration: none !important;
    }

    .fxg-btn.fxg-bg-primary:hover {
        background: #273dac;
        border-color: #273dac;
        color: #fff;
    }

.fxg-btn-sm.fxg-bg-primary:hover {
    background: #273dac;
    border-color: #273dac;
    color: #fff;
}

.fxg-btn[class*='fxg-bg-'] {
    border: 1px solid transparent;
    color: #fff;
}

.fxg-btn-sm[class*='fxg-bg-'] {
    border: 1px solid transparent;
    color: #fff;
}

.fxg-btn-txt {
    font-size: 12px;
    text-align: center;
    background: transparent;
    border: none;
    padding: 0;
    min-width: auto;
    color: inherit;
}

.fxg-btns {
    display: inline-block;
    /* font-size: 0; */
}

.fxg-btns-line,
.fxg-btns-arrow {
    display: inline-block;
    font-size: 0;
}

    .fxg-btns-line span {
        font-size: 15px;
    }

    .fxg-btns-arrow span {
        font-size: 13px;
    }

    .fxg-btns-arrow .fxg-btn-txt,
    .fxg-btns-line .fxg-btn-txt { /* 웹파트 previous next 버튼 */
        display: inline-block;
        /*border-width: 1px 0px 1px 1px;*/
        border-width: 1px;
        border-style: solid;
        border-color: #dcdde1;
        color: #7a858b;
        padding: 6px 8px;
        background: #fff;
        margin-right: 2px;
    }

    .fxg-btns-line .fxg-btn-txt {
        height: 32px;
        padding-top: 0;
        padding-bottom: 0;
        line-height: 32px;
    }

    .fxg-btns-arrow .fxg-btn-txt {
        padding: 1px 3px !important;
    }

        .fxg-btns-arrow .fxg-btn-txt:last-child,
        .fxg-btns-line .fxg-btn-txt:last-child {
            /*border-right-width: 1px;*/
            margin-right: 0px;
        }

.fxg-btn-txt.selected span {
    color: #00b9ef;
}

.fxg-btn-sm {
    padding: 0px 2px;
}

.fxg-btn.fxg-disabled {
    border-color: #dcdde1;
    color: #dcdde1;
}

.fxg-disabled {
    pointer-events: none;
    -ms-user-select: none;
    -moz-user-select: -moz-none;
    -webkit-user-select: none;
    user-select: none;
}
.icon-arr-down-atch,
.icon-arr-up-atch,
.k-i-search {
    cursor: pointer;
}
/*============================================================================ */

.fxg-wrap-login .fxg-bg-login {
    display: block;
    width: 100%;
    height: 100vh;
    background: #f5f6fa;
    /*background-image: url(bg_login_page.jpg);*/
    background-size: cover;
}

    .fxg-wrap-login .fxg-bg-login:after {
        content: '';
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        /*background-image:radial-gradient(transparent, transparent, rgba(0,0,0,0.15));*/
    }

.fxg-wrap-login .page-body {
    position: absolute;
    top: 50%;
    left: 50%;
    /*margin-top: -270px;
    margin-left: -480px;*/
    transform: translate(-50%, -50%);
    min-width: 960px;
    width: auto;
    z-index: 99;
    box-shadow: 0px 1px 20px 0px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0px 1px 20px 0px rgba(0,0,0,0.1);
    opacity: 0.95;
    padding: 0;
}

    .fxg-wrap-login .page-body [class*='wid-'] {
        padding-right: 0;
        padding-bottom: 0;
        height: auto;
    }

.fxg-wrap-login .page-body {
    border-radius: 10px;
}

    .fxg-wrap-login .page-body .login-r {
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .fxg-wrap-login .page-body .login-l {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }

.fxg-wrap-login .box-header {
    border: none;
    padding: 40px 20px 0 20px;
    height: auto;
}

    .fxg-wrap-login .box-header h4 {
        font-weight: bold;
        font-size: 22px;
        color: #273dac;
        font-family: 'NanumGothic','Nanum Gothic','Malgun Gothic',dotum,Arial,Helvetica,sans-serif;
        line-height:40px;
    }

        .fxg-wrap-login .box-header h4 img {
            height: 30px;
        }

    .fxg-wrap-login .box-header p {
        font-size: 14px;
        color: #979ea8;
        line-height: 15px;
        width: 100%;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        margin-bottom:30px;
    }

.fxg-wrap-login .login-r .box-login {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.fxg-wrap-login .login-l,
.fxg-wrap-login .login-r {
    border: none;
}

.fxg-wrap-login .login-l {
    background: #273dac;
 /*  background: url(/adfs/portal/images/bg_login_2.png?v=1) no-repeat;*/
    background: url(/adfs/portal/images/hit_login_2025.png?v=25) no-repeat;
    background-size: cover;
    background-position: center;
}

.fxg-wrap-login .box-banner {
    padding: 0px 20px 20px 20px;
    position: absolute;
    bottom: 33px;
    right: 0px;
    width: 100%;
}

    .fxg-wrap-login .box-banner .banner {
        background: #edf0f3;
        height: 180px;
    }

        .fxg-wrap-login .box-banner .banner h4 {
            font-weight: 600;
            font-size: 13px;
            padding: 15px 10px 10px 15px;
            text-overflow: ellipsis;
            overflow: hidden;
            white-space: nowrap;
        }

            .fxg-wrap-login .box-banner .banner h4 span {
                margin-right: 10px;
                color: #fbc531;
            }

        .fxg-wrap-login .box-banner .banner li a {
            display: block;
            padding: 10px 0 10px 5px;
            margin: 0 15px;
            font-size: 12px;
            border-bottom: 1px dashed #979ea8;
            text-overflow: ellipsis;
            overflow: hidden;
            white-space: nowrap;
        }

        .fxg-wrap-login .box-banner .banner li:last-child a {
            border-bottom-width: 0;
        }

        .fxg-wrap-login .box-banner .banner li a:hover {
            color: #00b9ef;
        }

        .fxg-wrap-login .box-banner .banner li a:before {
            content: '\2022';
            margin-right: 10px;
        }

.fxg-wrap-login .k-textbox {
    height: 35px;
    text-indent: 15px;
}

.fxg-wrap-login .fxg-btn.fxg-bg-primary {
    padding: 12px;
    font-size: 15px;
    background:#004B88;
    background-image:linear-gradient(to right, #004B88, #00b9ef);
    border:none;
}

.fxg-wrap-login .fxg-btn.fxg-bg-primary:hover {
    opacity:0.8;
}

.h-login {
    height: 600px;
}
/*============================================================================
[&7] Color */

.fxg-bg-primary {
    background: #004B88;
}

.fxg-bg-success {
    background: #44bd32;
}

.fxg-bg-warning {
    background: #e84118;
}

.fxg-bg-white {
    background: #fff !important;
}

.fxg-bg-light {
    background: #f5f6fa;
}

.fxg-bg-notice { /* 공지사항 */
    background: #273dac;
}

.fxg-sta-active {
    background: #44bd32;
}

.fxg-sta-inactive {
    background: #979ea8;
}

.fxg-sta-notstarted,
.fxg-sta-close {
    background: #fff;
    border: 1px solid #979ea8;
    color: #000;
}

.fxg-sta-inprogress {
    background: #44bd32;
}

.fxg-sta-approval,
.fxg-sta-completed {
    background: #424a6e;
}

.fxg-sta-reject,
.fxg-sta-cancelled,
.fxg-sta-hold {
    background: #fbc531;
}

.txt-imp { /* 강조 */
    color: #e84118 !important;
}

.txt-num {
    color: #979ea8 !important;
}

th .txt-imp {
    margin-left: 5px;
}

.bold {
    font-weight: bold;
}

.no-border {
    border: none !important;
}

/*============================================================================
[&8] Basic >> [&8-2] Margin */

.m-t-10 {
    margin-top: 10px !important;
}

.m-t-15 {
    margin-top: 15px !important;
}

.m-t-20 {
    margin-top: 20px !important;
}

.m-b-10 {
    margin-bottom: 10px !important;
}

.m-b-15 {
    margin-bottom: 15px !important;
}

.m-b-20 {
    margin-bottom: 20px !important;
}

/*============================================================================
[&8] Basic >> [&8-3] Padding */

.pd-t-10 {
    padding-top: 10px !important;
}

.pd-t-15 {
    padding-top: 15px !important;
}

.pd-t-20 {
    padding-top: 20px !important;
}

.pd-20 {
    padding: 20px !important;
}

.pd-30 {
    padding: 30px !important;
}


/*============================================================================
Grid System */

[class*='row'],
[class*='wid-m-'],
[class*='wid-pc-'],
.row:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

[class*='wid-'] {
    float: left;
    min-height: 1px;
    padding-right: 15px; /* column-space */
    padding-bottom: 15px;
}
/*[class*='col-'] [class*='col-']:last-child {
    padding-right: 0;
}*/
.row:after {
    content: "";
    display: table;
    clear: both;
}

.row {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
}


.wid-pc-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    width: none;
}

.wid-pc-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    width: 8.333333%;
}

.wid-pc-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    width: 16.666667%;
}

.wid-pc-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    width: 25%;
}

.wid-pc-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    width: 33.333333%;
}

.wid-pc-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    width: 41.666667%;
}

.wid-pc-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
}

.wid-pc-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    width: 58.333333%;
}

.wid-pc-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    width: 66.666667%;
}

.wid-pc-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    width: 75%;
}

.wid-pc-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    width: 83.333333%;
}

.wid-pc-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    width: 91.666667%;
}

.wid-pc-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
}

.al-left{
    text-align: left;
}

@media (max-width: 768px) {
    .fxg-wrap-login .page-body {
        min-width: 400px;
        width: calc(100% - 20px);
    }
    .fxg-wrap-login .page-body .login-r{
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }
    .fxg-wrap-login .page-body .wid-pc-7 {
        display: none !important;
    }
    .fxg-wrap-login .page-body .wid-pc-5{
        width: 100%;
    }
}

.k-checkbox-label,
.k-radio-label {
    margin: 0;
    padding-left: 20px;
    min-height: 16px;
    line-height: 17px;
    vertical-align: text-top;
    display: inline-flex;
    align-items: flex-start;
    position: relative;
    cursor: pointer;
    font-size: 13px;
}

.box-link{
    position: absolute;
    bottom: 10px;
    width: 100%;
    padding: 0 24px;
}
.box-link:after {
    content: '';
    display: block;
    clear: both;
}
.box-link ul li{
    display: inline-block;
    float: left;
}
.box-link ul li:first-child{
    width: 100px;
    margin-right: 35px;
}
.box-link ul li:last-child{
    width: 207px;
}
.box-link ul li div{
    float: left;
}
.box-link .icon{
    width: 30px;   
    margin-top: 5px;
}
.box-link .icon span{
    font-size: 20px;
}
.box-link .text{
    width: calc(100% - 31px);
}
.box-link .text span{
    font-size: 12px;
    width: 100%;
    display: block;
    line-height: 16px;
}
.box-link .text span:first-child{
    font-weight: 600;
}
.login-footer{
    position: absolute;
	width: 100%;
    bottom: -42px;
	text-align: center;
}
.login-footer span{
    display: block;
    font-size: 12px;
    color: #777;
    line-height: 17px;
}

#fullPage {
    display: none;
}

.ly_v2 {
    position: absolute;
    max-width: 150px;
    z-index: 10;
    top: 26-px;
    left: 20px;
    display: block;
    zoom: 1;
}
.ly_v2 .ly_box {
    font-size: 11px;
    line-height: 14px;
    position: static;
    margin-top: -11px;
    padding: 9px 9px 7px;
    letter-spacing: -1px;
    color: #777;
    border: solid 1px #d8d1aa;
    background: #fffadc;
}