@charset "utf-8";

caption {
    display: none;
}

/* panel */
.panel {
    vertical-align: top;
}

.panel-heading {
    text-align: center;
}

.panel-title {
    display: inline-block;
    vertical-align: top;
    font-size: 1rem;
    ;
}

/* button */
.button-group {
    text-align: center;
    margin: 1rem auto 1.5rem;
}

.button-group-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem auto 1.5rem;
}

.button-group-flex>.btn {
    flex: 1;
    margin: 0 .5rem;
}

.button-group-flex>.btn:first-child {
    margin-left: 0;
}

.button-group-flex>.btn:last-child {
    margin-right: 0;
}

/* .btn{display:inline-block;width:auto;text-align:center;padding:0 .75rem;height:3rem;line-height:2.9rem;background:#333;border:0.125rem solid #333;color:#fff;box-sizing:border-box;word-break:keep-all;vertical-align:middle;border-radius:0;} */
.btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    margin: 0.5rem 0;
    padding: 0 1.5rem;
    height: 3.5rem;
    line-height: 3.125rem;
    color: var(--btn_text);
    font-size: 1.2rem;
    font-weight: normal;
    background: var(--btn_bg);
    border: 0.125rem solid var(--btn_border);
    box-sizing: border-box;
    word-break: keep-all;
    vertical-align: middle;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
}

.btn:hover {
    color: var(--btn_hover_text);
    background-color: var(--btn_hover_bg);
    border-color: var(--btn_hover_border);
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
    /* outline:none; */
    box-shadow: none;
    /* border:0.0625rem solid #ff5500; */
}

.btn.focus,
.btn:focus {
    outline: inherit;
}

.btn:first-child {
    margin-left: 0;
}

.btn:last-child {
    margin-right: 0;
}

.btn:disabled {
    background: var(--btn_light_bg);
}

.btn.btn-disabled {
    background-color: var(--btn_light_bg);
    border-color: var(--btn_light_border);
}

.btn.on {
    background-color: var(--primary);
    color: var(--text_light);
    font-weight: 700;
}

.btn-box {
    position: relative;
    display: inline-block;
    width: 100%;
    min-height: 1.875rem;
    margin-bottom: 0.3125rem;
}

.btn-default,
a.btn-default {
    color: var(--btn_light_text);
    background-color: var(--btn_light_bg);
    border-color: var(--btn_light_border);
}

.btn-default:hover,
.btn-default.active,
.btn-default:active,
.btn-default.focus,
.btn-default:focus,
.btn-default.active.focus,
.btn-default.active:focus,
.btn-default.active:hover,
.btn-default:active.focus,
.btn-default:active:focus,
.btn-default:active:hover,
.open>.dropdown-toggle.btn-default.focus,
.open>.dropdown-toggle.btn-default:focus,
.open>.dropdown-toggle.btn-default:hover,
a.btn-default:hover,
a.btn-default.active,
a.btn-default:active,
a.btn-default.focus,
a.btn-default:focus {
    color: #fff;
    background-color: var(--btn_hover_bg);
    border-color: var(--btn_hover_border);
}

/*.btn-default{background-color:#f5f5f5;padding:0.4rem 0.5rem;border:0.0625rem solid #ddd;background-color:#f5f5f5;color:inherit;}*/

.btn-primary,
a.btn-primary,
.btn_submit,
a.btn_submit {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.btn-primary:hover,
.btn-primary.active,
.btn-primary:active,
.btn-primary.focus,
.btn-primary:focus,
a.btn-primary:hover,
a.btn-primary.active,
a.btn-primary:active,
a.btn-primary.focus,
a.btn-primary:focus,
.btn_submit:hover,
.btn_submit.active,
.btn_submit:active,
.btn_submit.focus,
.btn_submit:focus,
a.btn_submit:hover,
a.btn_submit.active,
a.btn_submit:active,
a.btn_submit.focus,
a.btn_submit:focus {
    background-color: var(--primary_dark);
    border-color: var(--primary_dark);
}

.btn-primary-border {
    background-color: #fff;
    border: 0.0625rem solid var(--primary);
    color: var(--primary);
}

.btn-secondary,
a.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary_dark);
    color: #fff;
}

.btn-secondary:hover,
.btn-secondary.active,
.btn-secondary:active,
.btn-secondary.focus,
.btn-secondary:focus,
a.btn-secondary:hover,
a.btn-secondary.active,
a.btn-secondary:active,
a.btn-secondary.focus,
a.btn-secondary:focus {
    background-color: var(--secondary_dark);
    border-color: var(--secondary_dark);
}

.btn-warning,
a.btn-warning {
    background-color: var(--warning);
}

.btn-warning:hover,
.btn-warning.active,
.btn-warning:active,
.btn-warning.focus,
.btn-warning:focus,
a.btn-warning:hover,
a.btn-warning.active,
a.btn-warning:active,
a.btn-warning.focus,
a.btn-warning:focus {
    background-color: var(--warning_dark);
    border-color: var(--warning_dark);
}

.btn-gray,
a.btn-gray,
.btn-grey,
a.btn-grey {
    background-color: #bbb;
    border-color: #aaa;
    color: #fff;
}

.btn-gray:hover,
.btn-gray.active,
.btn-gray:active,
.btn-gray.focus,
.btn-gray:focus,
a.btn-gray:hover,
a.btn-gray.active,
a.btn-gray:active,
a.btn-gray.focus,
a.btn-gray:focus,
.btn-grey:hover,
.btn-grey.active,
.btn-grey:active,
.btn-grey.focus,
.btn-grey:focus,
a.btn-grey:hover,
a.btn-grey.active,
a.btn-grey:active,
a.btn-grey.focus,
a.btn-grey:focus {
    background-color: #999;
    border-color: #999;
}

.btn-light,
a.btn-light {
    background-color: #f4f4f4;
    border-color: #ddd;
    color: #777;
}

.btn-light:hover,
.btn-light.active,
.btn-light:active,
.btn-light.focus,
.btn-light:focus,
a.btn-light:hover,
a.btn-light.active,
a.btn-light:active,
a.btn-light.focus,
a.btn-light:focus {
    background-color: #888;
    border-color: #888;
}

.btn-dark,
a.btn-dark {
    background-color: var(--grey-3);
    border-color: var(--grey-3);
    color: var(--btn_text);
}

.btn-dark:hover,
.btn-dark.active,
.btn-dark:active,
.btn-dark.focus,
.btn-dark:focus,
a.btn-dark:hover,
a.btn-dark.active,
a.btn-dark:active,
a.btn-dark.focus,
a.btn-dark:focus {
    background-color: #222;
    border-color: #222;
}

/* .btn-plus{display:inline-block;width:1.25rem;height:1.25rem;background:url('../images/btn-schedule-filter-open.png') center center no-repeat;margin:-0.125rem 0 0 0;vertical-align:middle;} */

.btn-small {
    height: 2.4rem;
    line-height: 2.35rem;
    font-size: 1rem;
    border-radius: 0.5rem;
}

.btn-middle {
    height: auto;
    padding: 0.5rem 1.5rem;
    font-size: 1.2rem;
}

.btn-big {
    /* height:2.8125rem;line-height:2.8125rem; */
    height: auto;
    font-size: 1.4rem;
    padding: 0.5rem 1.5rem;
}

.btn-cancel {
    background-color: #fff;
    border-color: #ddd;
}

.btn-cancel:hover {
    background-color: #f0f0f0;
}

.btn-cancel.focus,
.btn-cancel:focus {
    box-shadow: none;
}

.btn-delete {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    background: url('../Images/btn-delete-list.png') center center no-repeat;
    vertical-align: middle;
}

.btn-list,
a.btn-list {
    display: inline-block;
    height: 1.625rem;
    padding: 0 .5rem;
    font-size: .9rem;
    line-height: 1.5625rem;
    color: #fff;
    background: #7b7265;
    border: 0.0625rem solid #7b7265;
    vertical-align: middle;
    cursor: pointer;
}

.btn-list:hover,
a.btn-list:hover {
    background-color: #907c5f;
    color: #fff;
}

.btn-list-delete,
a.btn-list-delete {
    display: inline-block;
    height: 1.625rem;
    padding: 0 .5rem;
    ;
    font-size: .9rem;
    line-height: 1.5625rem;
    color: #666;
    background: #fff;
    border: 0.0625rem solid #ddd;
    vertical-align: middle;
    cursor: pointer;
}

.btn-add {
    background-color: #dfd0b9;
    color: #4f412d;
}

.btn-add:hover {
    background-color: #dcc5a2;
    color: #4f412d;
}

.btn-sel-term {
    display: inline-block;
    height: 2.125rem;
    padding: 0 0.9375rem;
    line-height: 2.1875rem;
    color: #888888;
    font-weight: 500;
    background: #d6d6d6;
    vertical-align: middle;
}

.btn-sel-term.active {
    color: #231b10;
    background: #c9b698;
}

.btn-excel,
a.btn-excel {
    background-color: #548746;
    border-color: #548746;
}

.btn-excel:hover,
a.btn-excel:hover {
    background-color: #3e7130;
    border-color: #3e7130;
}

.btn-word {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    margin-left: 0.375rem;
    padding: 0;
    background: #3e69a7 url('../Images/btn-word.png') center center no-repeat;
    /* border-radius:0.25rem; */
    vertical-align: middle;
}

.btn-word:hover {
    background-color: #295391;
}

.btn-attatch {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    background: url('../Images/btn-attatch.png') center center no-repeat;
    vertical-align: middle;
}

.btn-download {
    display: inline-block;
    width: 2.4375rem;
    height: 1.875rem;
    background: url('../Images/btn-download.png') center center no-repeat;
    vertical-align: middle;
}

.btn-download:hover {
    background-color: #fff;
}

.btn-evaluation {
    display: inline-block;
    height: 1.75rem;
    padding: 0 0.9375rem;
    line-height: 1.75rem;
    color: #fff;
    background: #5c7fac;
    border-radius: 0.25rem;
    vertical-align: middle;
}

.btn-evaluation:hover {
    color: #fff;
    background: #506b8e;
}

.btn-evaluation.result {
    background: #ababab;
}

.btn-evaluation.result:hover {
    background: #929292;
}

.btn-fixed-bottom {
    position: fixed;
    right: 3.125rem;
    bottom: 2.5rem;
}

.btn-list-group {
    display: flex;
}

.btn-list-group>a {
    position: relative;
    display: block;
    height: 2rem;
    padding: 0 0.9375rem;
    line-height: 2rem;
    color: #888;
    font-weight: 400;
}

.btn-list-group>a::before {
    content: "";
    position: absolute;
    display: block;
    width: 0.0625rem;
    height: 0.875rem;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: #eaeaea;
}

.btn-list-group>a:last-child:before {
    display: none;
}

.btn-list-group>a.active {
    color: #231b10;
}

.btn-search-input {
    position: absolute;
    width: 2.0625rem;
    height: 2.0625rem;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: url(../Images/btn-input-search.png) center center no-repeat;
}

.btn-link {
    color: inherit;
}

.btn-link:active,
.btn-link:focus,
.btn-link:hover {
    color: #fff;
}

.btn-link.active,
.btn-link:active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
    color: #fff;
}

.btn-group,
.btn-group-vertical {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 1rem auto;
}

.btn-group>* {
    margin-right: 0.5rem;
}

.btn-group>*:last-child {
    margin-right: 0;
}

/* .btn-group .btn+.btn, .btn-group .btn+.btn-group, .btn-group .btn-group+.btn, .btn-group .btn-group+.btn-group{margin-left:0;} */
a.btn-app,
input.btn-app {
    display: inline-block;
    width: auto;
    height: 1.875rem;
    padding: 0 0.9375rem;
    line-height: 1.875rem;
    background: #104aad;
    font-size: 1.15rem;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    border: none;
}

a.btn-app-img {
    display: inline-block;
    width: auto;
    height: 1.875rem;
    padding: 0 0.9375rem;
    line-height: 2.625rem;
    background: #000;
    font-size: 2rem;
    color: #fff;
    text-align: center;
    vertical-align: middle;
}

.text-left .btn {
    margin-right: 0.4375rem;
}

.text-center .btn {
    margin-left: 0.1875rem;
    margin-right: 0.1875rem;
}

.text-right .btn {
    margin-left: 0.4375rem;
}

.btn-division {
    position: relative;
    display: inline-block;
    height: 2.125rem;
    margin-left: 0.625rem;
    padding: 0 0.9375rem;
    border: 0.0625rem solid #ddd;
    line-height: 2.125rem;
}

.btn-division>span {
    /* position:absolute;top:50%;left:50%;transform:translate(-50%,-50%); */
    display: block;
    background: url(../Images/btn-work-add.png) left center no-repeat;
    white-space: nowrap;
    padding: 0 0 0 1.25rem;
}

/* table */
table thead th,
table tbody th {
    background-color: var(--bg);
}

.table {
    width: 100%;
    ;
    table-layout: fixed;
    margin-bottom: 0;
    font-size: .9rem;
}

.table th,
.table td {
    border: none;
    border-bottom: 0.0625rem solid var(--border);
    padding: .5rem .75rem;
    vertical-align: middle;
}

.table thead th {
    color: var(--text_light);
    border-top: 0 solid var(--border);
    border-bottom: 0 solid var(--border);
    vertical-align: middle;
    text-align: center;
}

.table thead tr:nth-child(1) th {
    border-bottom: 0.0625rem solid var(--border);
}

.table thead tr:nth-last-child(1) th {
    border-bottom: none;
}

.table-bordered {
    margin-top: 0.3125rem;
    border: none;
    border-top: 0.0625rem solid #7b7265;
    border-bottom: 0.0625rem solid var(--border);
}

.table-bordered thead th {
    padding: 0.625rem 0.4375rem;
}

.table-bordered td

/* , .table-bordered th */
    {
    border-right: 0.0625rem solid var(--border);
}

.table-bordered td:last-child {
    border-right: none;
}

.table-bordered thead td,
.table-bordered thead th {
    border-bottom-width: 0.0625rem;
}

.table-no-border thead td,
.table-no-border thead th {
    border: none;
}

.table-no-border tbody td,
.table-no-tbody thead th {
    border: none;
}

.table th.nowrap,
.table td.nowrap {
    display: table-cell;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.grid-table {
    overflow-x: auto;
    width: 100%;
    table-layout: fixed;
    background-color: #f2f2f2;
}

.grid-table .table {
    margin-bottom: 0;
    width: auto;
    background-color: var(--bg_dark);
}

.grid-table tbody>tr>td,
.grid-table tbody>tr>th,
.grid-table tfoot>tr>td,
.grid-table tfoot>tr>th,
.grid-table thead>tr>td,
.grid-table thead>tr>th {
    padding: 0.25rem .75rem;
    text-align: center;
    white-space: nowrap;
}

.grid-table tbody>tr>td,
.grid-table tbody>tr>th {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.grid-table tbody>tr>td.ellipsis {
    border: 0.0625rem solid var(--bg_dark);
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: var(--bg_dark);
}

.table tfoot tr {
    background-color: #f6efe5;
}

.table th.number,
.table td.number {
    min-width: 3.125rem
}

.table th.check,
.table td.check {
    min-width: 3.125rem
}

.text-nowrap>table {
    position: relative;
    margin-bottom: 0;
}

.table-sm>thead>tr>td,
.table-sm>thead>tr>th {
    line-height: 1.5625rem;
    padding: 0.5625rem 0.4375rem;
    text-align: center;
}

.table-sm>tbody>tr>td,
.table-sm>tbody>tr>th {
    line-height: 1.375rem;
    padding: 0.5rem;
}

.table-sm>tfoot>tr>td,
.table-sm>tfoot>tr>th {
    line-height: 1.5625rem;
    padding: 0.3125rem 0.4375rem;
    /* vertical-align:middle;text-align:center; */
}

.table.pink thead>tr>th {
    background-color: #f6efe5;
}

.table.table-selector tbody>tr:hover {
    cursor: pointer;
}

.table.write tbody>tr:hover {
    background-color: inherit;
}

.table.lh-20>tbody>tr>td,
.table.lh-20>tbody>tr>th,
.table.lh-20>tfoot>tr>td,
.table.lh-20>tfoot>tr>th,
.table.lh-20>thead>tr>td,
.table.lh-20>thead>tr>th {
    padding: 0.625rem 0.4375rem;
    line-height: 1.25rem;
}

.table.view {
    border-bottom: none;
}

.table.view thead>tr>th {
    text-align: left;
    border-bottom: none;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
}

.table.view tbody>tr:hover {
    background-color: inherit;
}

.table.view thead>tr>th.subject {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    font-size: 1.125rem;
    font-weight: 400;
}

.table.view thead>tr>th.date {
    position: relative;
    text-align: right;
}

.table.view thead>tr>th.date::before {
    content: "";
    position: absolute;
    display: block;
    width: 0.0625rem;
    height: 0.8125rem;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: var(--bg_dark);
}

.table.view thead>tr>th.attatch {
    padding-left: 0;
}

.table.view tbody>tr>td {
    padding: 1.875rem 0.9375rem;
    text-align: left;
    line-height: 1.5rem;
    border-bottom: none;
}

.table tbody>tr.done>td {
    color: #888;
}

.table.text-left>tbody>tr>td,
.table.text-left>tbody>tr>th,
.table.text-left>tfoot>tr>td,
.table.text-left>tfoot>tr>th,
.table.text-left>thead>tr>td,
.table.text-left>thead>tr>th {
    text-align: left;
}

ul.text-left>li {
    text-align: left !important;
}

.table-company {
    width: 100%;
}

.table-company tr th {
    position: relative;
    color: #555;
    font-weight: 400;
    text-align: left;
    border: none;
    padding: .8rem 0rem .8rem 1.5rem;
    line-height: 1.2;
    background: transparent;
}

.table-company tr th:before {
    content: "";
    position: absolute;
    display: block;
    width: 0.875rem;
    height: 0.875rem;
    top: 50%;
    transform: translate(0, -50%);
    left: 0.4375rem;
    margin-left: -0.4375rem;
    background: #104aad;
    border-radius: 50%;
}

.table-company tr th:after {
    content: "";
    position: absolute;
    display: block;
    width: 0.375rem;
    height: 0.375rem;
    top: 50%;
    transform: translate(0, -50%);
    left: 0.4375rem;
    margin-left: -0.1875rem;
    background: #fff;
    border-radius: 50%;
}

.table-company tr td {
    color: #111;
    font-weight: 500;
    text-align: left;
    border: none;
    padding: .8rem 0rem .8rem 1rem;
    line-height: 1.2;
}

.table-company tbody tr:hover {
    background: transparent;
}

.table.calendar td {
    vertical-align: top;
    text-align: right;
}


/* form */
/* textarea, .frm_input, select{border:0.0625rem solid #dedede;background-color:var(--form_bg)} */
.form-wrap {
    width: 100%;
    /* max-width:31.25rem; */
    text-align: left;
    margin: 0;
    padding: 0;
    /* font-weight:300; */
}

.form-wrap h1 {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.form-wrap .el-right {
    /* position:absolute; */
    display: inline;
    top: 0;
    right: 0;
    font-size: 1rem;
    /* font-weight:300; */
    color: #999;
}

.form-wrap .el-right a {
    color: var(--text);
}

.form-wrap>p {
    width: 100%;
    margin-top: .5rem;
    line-height: 1.35;
}

.form-group {
    position: relative;
    display: inline-flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: .75rem 0;
    text-align: left;
    /* color:#999; */
    line-height: 1.4rem;
}

.form-group a {
    color: var(--text_light);
}

.form-group .info {
    font-size: .9rem;
    font-weight: 200;
    letter-spacing: -0.02rem;
}

.form-group label {
    color: var(--text);
    display: flex;
    align-items: center;
}

select,
.form-group textarea,
.form-group input,
.form-group select,
.frm_input,
.btn_submit {
    width: 100%;
    margin: 0;
    height: 3.5rem;
    padding: 0 .75rem;
    color: var(--form_text);
    /* background-color: var(--form_bg); */
    border: 0.0625rem solid var(--form_border);
    border-radius: 0.625rem;
    z-index: 1;
    transition: all 0.3s;
    box-sizing: border-box;
}

.btn_submit {
    color: #fff;
    border: none;
}

select:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0056b3;
    outline: none;
    box-shadow: 0 0 0 0.1875rem rgba(0, 86, 179, 0.1);
}

select::placeholder,
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text_dark);
}

select,
.form-group select {
    padding-right: 2rem;
}

.btn-input-control {
    position: absolute;
    display: flex;
    align-items: center;
    bottom: 0.75rem;
    ;
    right: 1rem;
    z-index: 1;
}

.btn-text-detete {
    width: 1.8rem;
    height: 1.8rem;
    background: url('../img/btn-text-detete.png') center center no-repeat;
    background-size: 100%;
    font-size: 0;
    cursor: pointer;
}

.btn-pass-view {
    margin-left: 0.35rem;
    width: 1.8rem;
    height: 1.8rem;
    background: url('../img/btn-pass-view.png') center center no-repeat;
    background-size: 100%;
    font-size: 0;
    cursor: pointer;
}

.btn-pass-view.view {
    width: 1.8rem;
    height: 1.8rem;
    background: url('../img/btn-pass-hide.png') center center no-repeat;
    background-size: 100%;
    font-size: 0;
    cursor: pointer;
}

.form-group ul {
    width: 100%;
}

.form-group iframe {
    border-radius: 0.75rem;
}

select,
.form-group .frm_input,
.frm_input,
.btn_submit {
    margin-top: 0;
}

.form-group textarea {
    line-height: 1.4;
}

select:disabled,
.form-group textarea:disabled,
.form-group input:disabled,
.form-group select:disabled,
.frm_input:disabled,
.btn_submit:disabled {
    color: var(--form_disabled_text);
    background-color: var(--form_disabled_bg);
    border-color: var(--form_disabled_border);
}

.form-group h3 {
    display: flex;
    justify-content: space-between;
    width: 100%;
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.5;
    word-break: keep-all;
}

.form-group h3~span {
    margin: 1rem 0 2rem;
}

input[type="radio"],
input[type="checkbox"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

/* 선택박스:유형 공통 */
input[type='checkbox'],
input[type='radio'] {
    display: none;
}

label {
    display: inline-block;
    position: relative;
    vertical-align: middle;
}

label[class*="ct-"] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    line-height: 1.05;
}

label[class*="ct-"] em {
    position: relative;
    width: 1.4rem;
    height: 1.4rem;
    margin-right: 0.5rem;
}

label[class*="ct-"] em:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    /* background-color:var(--form_bg); */
    border: 0.0625rem solid var(--default);
    transition: 0.4s ease-in-out;
    transition-property: background-color, background-image, background-repeat, border;
}

label[class*="ct-"] em:after {
    content: '';
    position: absolute;
}

label[class*="ct-"] input:disabled {
    cursor: default;
}

label[class*="ct-"] input:disabled~em {
    color: var(--text_dark);
}

label[class*="ct-"] input:disabled~em:before,
label[class*="ct-"] input:disabled~em:after {
    opacity: 0.3;
}

/* 선택박스:CHECK */
/* label.ct-chk em:before{border-radius:0.125rem;} */
label.ct-chk em:before {
    border-radius: .25rem;
}

label.ct-chk input:checked~em:before {
    border-color: var(--border);
    background: var(--primary);
}

label.ct-chk input:checked~em:after {
    left: 50%;
    top: 50%;
    width: 0.75rem;
    height: 0.4rem;
    margin-top: -0.15rem;
    border: solid #fff;
    border-width: 0 0 0.175rem 0.175rem;
    transform: translate(-50%, -50%) rotate(-45deg);
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
}

/* 선택박스:RADIO */
label.ct-rdo em:before {
    border-radius: 50%;
}

label.ct-rdo input:checked~em:before {
    border-width: .45rem;
    border-color: var(--border);
}

/* input[type="file"]{border:none;line-height:2.125rem;} */

select {
    appearance: none;
    width: 100%;
    margin: 0;
    z-index: 1;
    background: url('../img/select-arrow.png') no-repeat right 0.35rem center;
    background-size: 1.4rem;
}

.area-custom-select {
    position: relative;
    width: 100%;
    margin-top: 1rem;
}

.custom-select {
    position: relative;
    display: block;
    width: 100%;
    height: 3.5rem;
    padding: 0 0.75rem;
    line-height: 3.125rem;
    border: 0.0625rem solid #ddd;
    border-radius: 0.75rem;
    /* background-color:var(--form_bg); */
    cursor: pointer;
    z-index: 2;
}

.custom-select-text {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
}

.custom-select-arrow {
    position: absolute;
    display: block;
    width: 1.4rem;
    height: 1.4rem;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    background: url('../img/select-arrow.png') center center no-repeat;
    background-size: cover;
}

.custom-select.selected .custom-select-arrow {
    transform: translateY(-50%) scaleY(-1);
    transition: .3s;
}

.custom-select-list {
    position: absolute;
    width: 100%;
    top: 3.5rem;
    padding: 0;
    border: solid 0.0625rem #ddd;
    border-radius: 0.75rem;
    /* background-color:var(--form_bg); */
    z-index: 3;
}

.form-group .custom-select-list li {
    height: 3.5rem;
    margin: 0;
    padding: 0 0.75rem;
    line-height: 3.125rem;
    border-bottom: solid 0.0625rem #ddd;
    cursor: pointer;
}

.custom-select-list li:first-child {
    border-radius: 0.85rem 0.85rem 0 0;
}

.custom-select-list li:last-child {
    border-bottom: none;
    border-radius: 0 0 0.85rem 0.85rem;
}

.custom-select-list li.on {
    color: var(--text);
    background: #f4f4f4;
}

.custom-select-list li:hover {
    background-color: var(--form_bg)
}

.form-group .select-origin {
    position: absolute;
    top: 0;
    margin: 0;
}



/*tit-type */
[class*="tit-type"] {
    position: relative;
}

h1.tit-type1 {
    /*margin-bottom:1.25rem;*/
    padding-left: 1.375rem;
    clear: both;
    font-size: 1.5rem;
    font-weight: 500;
    height: 2.5rem;
    line-height: 2.5rem;
}

h1.tit-type1:after {
    content: "";
    position: absolute;
    display: block;
    width: 0.375rem;
    height: 0.375rem;
    top: 50%;
    transform: translate(0, -50%);
    left: 0.4375rem;
    margin-left: -0.1875rem;
    background: #fff;
    border-radius: 50%;
}

h1.tit-type1:before {
    content: "";
    position: absolute;
    display: block;
    width: 0.875rem;
    height: 0.875rem;
    top: 50%;
    transform: translate(0, -50%);
    left: 0.4375rem;
    margin-left: -0.4375rem;
    background: #104aad;
    border-radius: 50%;
}

h2.tit-type {
    font-size: 1.5rem;
    font-weight: 400;
    padding-bottom: 0.8125rem;
    /* border-bottom:0.125rem solid #7b7265; */
}

h2.tit-type.no-border {
    border-bottom: none;
}

h2.tit-type2 {
    margin: 0.4375rem 0;
    padding-left: 0.9375rem;
    font-size: 1.15rem;
    font-weight: 500;
}

h3.tit-type3 {
    margin: 0.625rem 0 0.75rem;
    font-size: 1.35rem;
    font-weight: 400;
    padding-left: 0.9375rem;
}

/* h3.tit-type3::before{position:absolute;content:"\f15c";width:0.875rem;height:0.875rem;left:0;top:50%;transform:translateY(-50%);color:#666;font-weight:400;font-family:"FontAwesome";font-size:1rem;;} */
/* h3.tit-type3::before{position:absolute;content:"";width:0.625rem;height:0.1875rem;left:0;top:0.9375rem;background:#7b7265;} */
h4.tit-type4 {
    font-size: 1.15rem;
    ;
    font-weight: 400;
}

/* 태그 */
.tag {
    display: inline-block;
    padding: 0 0.5625rem;
    /* font-size:0.8125rem;font-weight:200; */
    line-height: 1.375rem;
    color: #888;
    background: #ddd;
    border-radius: 0.125rem;
    margin-right: 0.9375rem;
}

.tag-green {
    color: #fff;
    background: #6c8934;
}

.tag-gold {
    color: #fff;
    background: #ba8e41;
}

.tag-blue {
    color: #fff;
    background: #677e9c;
}

.tag-brick {
    color: #fff;
    background: #9c8581;
}

.list-tag {
    border-radius: 0;
    margin-right: 0;
}

.tag-ing {
    color: #b24b00;
    font-weight: 400;
}

.tag-done {
    color: #818080;
    font-weight: 400;
}

.tag-1 {
    color: #222;
    background: #ffe084;
}

.tag-2 {
    color: #222;
    background: #ffb400;
}

.tag-3 {
    color: #222;
    background: #9cd574;
}

.tag-4 {
    color: #fff;
    background: #be8200;
}

.tag-5 {
    color: #222;
    background: #f8cbad;
}

.tag-6 {
    color: #222;
    background: #bcd1ff;
}

.tag-7 {
    color: #fff;
    background: #e45b00;
}

.icon-urgent {
    /* position:absolute; */
    position: relative;
    display: inline-block;
    width: 0.875rem;
    height: 0.875rem;
    /* top:50%;left:0.6875rem;transform:translateY(-65%); */
}

.icon-urgent.active {
    background: url('../Images/icon-urgent.png') no-repeat center center;
}

.icon-urgent-disable {
    position: relative;
    display: inline-block;
    width: 0.875rem;
    height: 0.875rem;
    background: url('../Images/icon-urgent-off.png') no-repeat center center;
}

.level-s {
    background: #fe5f11;
}

.level-a {
    background: #31aae6;
}

.level-b {
    background: #7879b9;
}

.info-box {
    position: relative;
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    padding: .9rem;
    font-size: .9rem;
    background: #f4f4f4;
    box-sizing: border-box;
    border-radius: 0.8rem;
}

.info-box p {
    position: relative;
    padding-left: 0.75rem;
}

.info-box p::before {
    content: "·";
    position: absolute;
    width: 0.625rem;
    height: 0.625rem;
    top: 0;
    left: 0;
    color: #999;
}

.info-box .btn-mywork-level {
    display: inline-block;
    width: 1.1875rem;
    height: 1.1875rem;
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.128;
    text-align: center;
    background: #31aae6;
    border-radius: 50%;
    margin: 0;
    margin-top: 0.0625rem;
}

@media (max-width:48rem) {
    .btn {
        height: 2.75rem;
        padding: 0 0.5rem;
        line-height: 2.65rem;
        /* font-size: 1rem; */
        /* border: none; */
        /* border-radius: 0.5rem; */
    }

    select,
    .form-group input,
    .form-group select,
    .frm_input,
    .btn_submit {
        height: 2.75rem;
        line-height: 2.65rem;
        /* font-size: 1rem; */
        /* border: none; */
        /* border-radius: 0.5rem; */
    }

    .form-group h3 {
        font-size: 1.25rem;
    }
}