body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.2;
    font-size: .9rem;
}

.header {
    position: fixed;
    padding: 10px;
    width: 100%;
    height: 30px;
}

.left_area h3 {
    margin: 0;
    padding-left: 20px;
    font-size: 30px;
}

.left_area h3 img {
    width: 180px;
}

.left_area span {
    color: #0da2ff;
}

.left_area .header_fc_url {
    padding-left: 100px;
    text-decoration: none;
    color: #0c0c0c;
}

.btn-primary-custom {
    background: #0c87d2;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    outline: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-primary-custom:hover {
    background: #3bb4fc;
    color: #fff;
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.18), 0 5px 5px rgba(0, 0, 0, 0.12);
}

.font-highlight {
    color: #ff2e2e;
    font-weight: 600;
}


.right_area .logout_btn {
    padding: 5px 25px;
    background: #0c87d2;
    text-decoration: none;
    float: right;
    margin-top: -35px;
    margin-right: 20px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    transition: 0.2s;
    transition-property: background;
}

.right_area .logout_btn:hover {
    background: #ff4f03;
}

.sidebar {
    border-right: 1px solid #0c0c0c;
    padding-top: 70px;
    position: fixed;
    left: 0;
    width: 250px;
    height: 100%;
    transition: 0.2s;
    transition-property: left;
    overflow-y: auto;


}

.sidebar .profile_image {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    margin-bottom: 10px;
}

.sidebar h4 {
    color: #0c0c0c;
    margin-top: 0;
    margin-bottom: 20px;
}

.sidebar .menu-title {
    font-weight: bold;
    font-size: 1.2rem;
}

.sidebar a {
    color: #0c0c0c;
    font-size: 1rem;
    display: block;
    width: 100%;
    line-height: 40px;
    text-decoration: none;
    padding-left: 10px;
    box-sizing: border-box;
    transition: 0.2s;
    transition-property: background-color;

}

.sidebar a:hover {
    background: #0da2ff;
    color: #fff;
}

.sidebar i {
    padding-right: 10px;
}


label .sidebar_btn {
    z-index: 1;

    position: fixed;
    cursor: pointer;
    left: 25px;
    top: 22px;
    font-size: 25px;
    margin: 15px 0;
    transition: 0.2s;
    transition-property: color;
}

label .sidebar_btn:hover {
    color: #ff620d;
}

.sidebar_check:checked ~ .sidebar {
    left: -240px;
    transition: 0.2s;
}

.sidebar_check:checked ~ .sidebar a span {
    display: none;
}

.sidebar_check:checked ~ .sidebar a {

    margin-left: 170px;
    width: 80px;
    transition: 0.2s;
}

.container_wrap {
    margin-left: 250px;
    padding-top: 75px;
    height: 100vh;
    transition: 0.2s;
}

.sidebar_check:checked ~ .container_wrap {
    margin-left: 15px;
    transition: 0.2s;
}

.sidebar_check {
    display: none;
}

.display_none {
    display: none;
}

.inputBox, .selectBox {
    position: relative;
    margin: 15px 0;
}

.checkBox, .btnBox {
    position: relative;
}

.inputBox input {
    background: none;
    color: #2a2a2a;
    font-size: 18px;
    padding: 10px 10px 10px 5px;
    display: block;
    width: 98%;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #c6c6c6;
}

.inputBox input:focus {
    outline: none;
}

.inputBox label {
    color: #c6c6c6;
    font-size: 16px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 10px;
    transition: 300ms ease all;
}

.inputBox input:focus ~ label, .inputBox input:valid ~ label {
    top: -14px;
    font-size: 12px;
    color: #2196F3;
}

.inputBox textarea:focus ~ label {
    top: -20px;
    font-size: 12px;
    color: #2196F3;
}

.inputBox input:focus ~ .bar:before {
    width: 100%;
}

.inputBox input[type=password] {
    letter-spacing: 0.3em;
}


.inputBox .bar {
    position: relative;
    display: block;
    width: 100%;
}

.inputBox .bar:before {
    content: "";
    height: 2px;
    width: 0;
    bottom: 0;
    position: absolute;
    background: #2196F3;
    transition: 300ms ease all;
    left: 0;
}

.btnBox .btn {

    color: #959595;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    outline: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btnBox .btn:hover {
    color: #8b8b8b;
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.18), 0 5px 5px rgba(0, 0, 0, 0.12);
}

.btnBox .btn.btn-link {
    background: #2196F3;
    color: #d3eafd;
}

.btnBox .btn.btn-link:hover {
    background: #0d8aee;
    color: #deeffd;
}

.btnBox .btn.btn-submit {
    background: #2196F3;
    color: #ecf6fd;
    width: 50%;
    font-size: 1.5rem;
}

.btnBox .btn.btn-next {
    background: #2196F3;
    color: #ecf6fd;
    width: 50%;
    font-size: 1.5rem;
}

.btnBox .btn.btn-submit:hover {
    background: #0d8aee;
    color: #deeffd;
}

.btnBox .btn.btn-cancel {
    background: #eee;
}

.btnBox .btn.btn-cancel:hover {
    background: #e1e1e1;
    color: #8b8b8b;
}

.btnBox {
    text-align: center;
    margin: 25px 0;
}

.box-url {
    width: 100%;
    border: 3px solid #eee;
    border-radius: 15px;
    padding: 1rem;
}

.box-url span {
    display: inline-block;
}

.form-table {
    display: table;
    width: 100%;
}

.form-table-border {
    border: 2px solid #7e7e7e;
}

.form-table-row {
    display: table-row;
}

.form-table-cell {
    display: table-cell;
    padding: .5rem;
}

.btn-wide {
    padding: 0.5rem 2rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}

.form-table-cell.form-table-label {
    width: 100px;
}

.form-table-cell:first-child {
    text-align: right;
}

.form-table-cell input[type=text] {
    background: none;
    color: #2a2a2a;
    font-size: 1rem;
    padding: 5px;
    display: inline-block;
    border-radius: 5px;
    border: 1px solid #c6c6c6;
    height: calc(1.5em + 0.75rem + 2px);
}

.form-table-cell input[type=text].input-date {
    width: 165px;
}

.form-table-cell .custom-select {
    vertical-align: baseline;
}

.form-table-cell.cell-label {
    width: 150px;
}

.btn-outline-light-custom {
    border: 1px solid #a5a5a5;
    vertical-align: baseline;
}

.btn-outline-light-custom:hover {
    color: #fff;
    background-color: #217ac5;
}

.btn-search {
    padding: 4px 25px;
    background: #0c87d2;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 400;
    color: #fff;
    transition: 0.2s;
    vertical-align: top;
    transition-property: background;
    height: calc(1.5em + 0.75rem + 2px);
}

.btn-search:hover {
    background: #0f98ee;
    color: #fff;
}

.btn-outline-light-custom.active {
    color: #fff;
    background-color: #217ac5;
}

.btn-outline-light-custom.active:hover {
    color: #fff;
    background-color: #2690ea;
}

div.dataTables_wrapper div.dataTables_paginate {
    margin: 15px 0 0 0 !important;
    white-space: nowrap;
    text-align: right;
}

.page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    line-height: 1.25;
    color: #0ba42d;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 50%;
    margin: 0 5px;
}

.page-link:hover {
    z-index: 2;
    color: #0db531;
    text-decoration: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.page-link:focus {
    z-index: 3;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

.page-item.active .page-link {
    z-index: 0;
    color: #fff;
    background-color: #0ba42d;
    border-color: #0ba42d;
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6;
    border-radius: 50%;
}

.page-item:first-child .page-link {
    border-radius: 50%;
}

.page-item:last-child .page-link {
    border-radius: 50%;
}

@media screen and (max-width: 850px) {
    .header {

    }

    .header .left_area {
        display: inline-block;
    }

    .header .companyNm img {
        width: 35vw;
    }


    .header .right_area {
        display: inline-block;
        float: right;
    }

    .sidebar {
        position: relative;
        z-index: 1000;
        width: 100%;
        height: 100vh;
        padding-top: 0;
    }

    .sidebar a {
        font-size: 1.5rem;
        padding-left: 25px;
        margin-bottom: 15px;
    }

    .sidebar .side-title {
        padding: 0 15px;
    }

    .sidebar .loginNm {
        display: inline-block;
    }

    .sidebar .loginBtn {
        display: inline-block;
        float: right;
        text-align: right;
        width: 70%;
    }

    .btn-primary-custom {
        padding: 7px 20px;
    }

    .card-body {
        padding: .5rem;
    }

    .container_wrap {
        margin: 0;
        padding-top: 75px;
        height: 100vh;
        width: 100vw;
        transition: 0.2s;
    }

    .form-table-cell.form-table-label {
        width: 60px;
    }

    .form-table-cell input[type=text].input-date {
        width: 130px;
    }

    .form-table-cell input[type=text].input-search {
        width: 185px;
    }

    .btn-outline-light-custom {
        width: 86px;
    }

    .dataTables_scrollHead {
        display: none;
    }

    .btn-wide {
        padding: 0.5rem 1.5rem;
        font-size: 1rem;
        line-height: 1;
    }

    .cell-title {
        padding-left: .2rem;
        margin-bottom: .2rem;
        font-size: 1.5rem;
        font-weight: bold;
    }

    .cell-green {
        color: #0B7500;
        font-size: 1.5rem;
        font-weight: bold;
        vertical-align: middle;
    }

    .cell-blue {
        color: #1e7fe5;
        font-size: 2.5rem;
        font-weight: bold;
        vertical-align: middle;
    }

    .cell-blue .upperText {
        font-size: .9rem;
        font-weight: 400;
    }

    .cell-middle {
        vertical-align: middle !important;
    }

    .table td span {
        display: block;
    }


    .inputBox, .selectBox, .checkBox, .btnBox {
        position: relative;
        margin: 15px 0 20px 0;
    }

    .checkBox, .btnBox {
        margin: 25px 0;
    }

    .inputBox input {
        background: none;
        color: #2a2a2a;
        font-size: 18px;
        padding: 8px;
        display: inline-block;
        width: 98%;
        border: none;
        border-radius: 0;
        border-bottom: 1px solid #c6c6c6;
    }

    .inputBox input.inputWithBtn {
        width: 65%;
    }

    .inputBox input:focus {
        outline: none;
    }

    .inputBox label {
        color: #c6c6c6;
        font-size: 16px;
        font-weight: normal;
        position: absolute;
        pointer-events: none;
        left: 5px;
        top: 10px;
        transition: 300ms ease all;
    }

    .inputBox input:focus ~ label, .inputBox input:valid ~ label, .inputBox select:focus ~ label, .inputBox select:valid ~ label {
        top: -14px;
        font-size: 12px;
        color: #1183e1;
    }

    .inputBox input:focus ~ .bar:before {
        width: 100%;
    }

    .selectBox label {
        top: -14px;
        font-size: 12px;
        color: #1183e1;
        font-weight: normal;
        position: absolute;
        pointer-events: none;
        left: 5px;
        transition: 300ms ease all;
    }

    .selectBox select {
        width: 100%;
        outline: none;
        border: none;
        border-bottom: 1px solid #c6c6c6;
        background: none;
        color: #2a2a2a;
        font-size: 18px;
        padding: 5px 0;

    }

    .page-link {
        padding: .3rem .6rem;
        line-height: 1.6;
        font-size: .8rem;
        margin: 0 2px;
    }

    #dataTable_info {
        text-align: left;
    }
}