﻿@charset "utf-8";
/* CSS Document */
body * {
    box-sizing: border-box;
    font-family: 'Malgun Gothic',Apple SD Gothic Neo, roboto;
}


html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    letter-spacing: 0px;
}


a {
    text-decoration: none;
    padding: 0;
    margin: 0;
    color: #000;
    cursor: pointer;
}

input, textarea, select {
    color: #464646;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    font-size: 13px;
}

    input[type="text"], input[type="password"], select, textarea {
        outline-style: none;
    }

    /* 크롬에서만 password 타입 흰색으로 보이는 현상 : 나눔스퀘어 폰트 때문에 이부분만 변경 */
    input[type="password"] {
        font-family: 'Malgun Gothic';
    }

    input[type="checkbox"] {
        vertical-align: middle;
    }

    input[type="radio"] {
        vertical-align: middle;
    }

select, p, h1, h2, h3 {
    padding: 0px;
    margin: 0;
}

ul, ol, dl, li, dt, dd {
    padding: 0;
    margin: 0;
    list-style: none;
}

img {
    border: 0px;
    margin: 0;
}

/*Control공통*/
input {
    margin: 5px 0;
    padding: 0px 6px;
    height: 30px;
    font-size: 16px;
    color: #333;
    border: 1px solid #ccc;
}
input:focus {
    border: 2px solid #93d50a;
}

select::selection {
    border: 2px solid #93d50a;
    background-color: #93d50a;
}

input:disabled, select:disabled {
    color: #888;
    background-color: #eee;
    opacity:.8;
}
input:disabled {
    padding: 0 4px 1px !important;
}


/*공통 다이얼로그*/
.dlg {
    display: none;
    position: fixed;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 11;
}

    .dlg > .dlgBox {
        width: 540px;
        height: 400px;
        padding: 30px;
        border: 1px solid #999;
        background-color: #fff;
    }

        .dlg > .dlgBox > .titleArea {
            position: relative;
            width: 100%;
            height: 50px;
        }

            .dlg > .dlgBox > .titleArea > .txtTitle {
                font-size: 21px;
                letter-spacing: -.1em;
            }

            .dlg > .dlgBox > .titleArea > .btnClose {
                position: absolute;
                display: flex;
                align-items: center;
                justify-content: center;
                top: 0;
                right: 0;
                width: 30px;
                height: 30px;
            }

                .dlg > .dlgBox > .titleArea > .btnClose:hover:before,
                .dlg > .dlgBox > .titleArea > .btnClose:hover:after {
                    background-color:#333;
                }

                .dlg > .dlgBox > .titleArea > .btnClose:before,
                .dlg > .dlgBox > .titleArea > .btnClose:after {
                    content: "";
                    background-color: #999;
                    transform: rotate(45deg);
                }

                .dlg > .dlgBox > .titleArea > .btnClose:before {
                    position: absolute;
                    width: 23px;
                    height:1px;
                }

                .dlg > .dlgBox > .titleArea > .btnClose:after {
                    position: absolute;
                    width: 1px;
                    height: 23px;
                }

            .dlg > .dlgBox > .titleArea > .txtDescription {
                font-size: 13px;
            }

        .dlg > .dlgBox > .contentArea .txtTitle {
            padding-bottom: 10px;
            color: #999;
            font-weight: bold;
        }

        .dlg > .dlgBox > .contentArea .dlgTable {
            width: 100%;
            margin-bottom: 20px;
            border-spacing: 0;
            border-top: 1px solid #ddd;
        }
            .dlg > .dlgBox > .contentArea .dlgTable th,
            .dlg > .dlgBox > .contentArea .dlgTable td {
                padding: 8px 10px;
                border-bottom: 1px solid #ddd;
            }

            .dlg > .dlgBox > .contentArea .dlgTable th {
                width: 140px;
                background-color: #F2F6F8;
                text-align: left;
                color: #888;
            }

            .dlg > .dlgBox > .contentArea .dlgTable .btn {
                display: flex;
                align-items: center;
                justify-content: center;
                width: fit-content;
                min-width: 60px;
                min-height: 22px;
                padding: 0 12px;
                border-radius: 3px;
                background-color: #072A4D;
                color: #fff;
                font-size: 11px;
            }

                .dlg > .dlgBox > .contentArea .dlgTable .btn:hover {
                    box-shadow: 2px 2px 3px rgba(0,0,0,.3);
                }

            .dlg > .dlgBox > .contentArea .dlgTable .combobox {
                width: 100%;
                height: 30px;
                padding: 3px 3px;
                border: none;
                font-size: 12px;
                color: #666;
                letter-spacing: -.06em;
            }

            .dlg > .dlgBox > .contentArea .dlgTable textarea {
                width: 100%;
                height: 150px;
                padding: 10px;
                border: none;
                font-size: 13px;
                letter-spacing: -.06em;
                resize: none;
            }

        .dlg > .dlgBox .dlgBtnArea {
            display:flex;
            justify-content: flex-end;
        }

            .dlg > .dlgBox .dlgBtnArea > .btn {
                display: flex;
                align-items: center;
                justify-content: center;
                min-width: 100px;
                height: 30px;
                padding: 4px 16px;
                border: none;
                border-radius: 3px;
                background-color: #15B4C2;
                color: #fff;
            }

                .dlg > .dlgBox .dlgBtnArea > .btn:hover {
                    background-color: #0b8a96;
                    cursor: pointer;
                } 

/*버튼 공통*/
.btnArea > .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 200px;
    height: 50px;
    border: 0px;
    border-radius: 25px;
    background-color: #000;
    color: #7CD800;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: -.06em;
}

    .btnArea > .btn:hover {
        cursor: pointer;
        background-color: #7CD800;
        color: #fff;
    }

    .btnArea > .btn + .btn {
        margin-left: 10px;
    }

    .btnArea > .btn.gray {
        cursor: pointer;
        background-color: #e7e7e7;
        color: #424558;
    }

/* Change the color to your own background color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-transition: background-color 9999s ease-out;
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

/*로그인,회원가입,ID&PW찾기*/
.membersArea {
    display: flex;
    align-content: center;
    justify-content: center;
    width: 100%;
}

.maxWidth1000 {
    max-width: 1000px;
}

/* datepicker z-index */
.ui-datepicker {
    z-index: 999 !important;
}